diff --git a/app/assets/javascripts/components/emoji.jsx b/app/assets/javascripts/components/emoji.jsx index c93c07c74..eee657b86 100644 --- a/app/assets/javascripts/components/emoji.jsx +++ b/app/assets/javascripts/components/emoji.jsx @@ -1,9 +1,35 @@ import emojione from 'emojione'; -emojione.imageType = 'png'; -emojione.sprites = false; -emojione.imagePathPNG = '/emoji/'; +const toImage = str => shortnameToImage(unicodeToImage(str)); + +const unicodeToImage = str => { + const mappedUnicode = emojione.mapUnicodeToShort(); + + return str.replace(emojione.regUnicode, unicodeChar => { + if (typeof unicodeChar === 'undefined' || unicodeChar === '' || !(unicodeChar in emojione.jsEscapeMap)) { + return unicodeChar; + } + + const unicode = emojione.jsEscapeMap[unicodeChar]; + const short = mappedUnicode[unicode]; + const filename = emojione.emojioneList[short].fname; + const alt = emojione.convert(unicode.toUpperCase()); + + return `${alt}`; + }); +}; + +const shortnameToImage = str => str.replace(emojione.regShortNames, shortname => { + if (typeof shortname === 'undefined' || shortname === '' || !(shortname in emojione.emojioneList)) { + return shortname; + } + + const unicode = emojione.emojioneList[shortname].unicode[emojione.emojioneList[shortname].unicode.length - 1]; + const alt = emojione.convert(unicode.toUpperCase()); + + return `${alt}`; +}); export default function emojify(text) { - return emojione.toImage(text); + return toImage(text); }; diff --git a/app/assets/javascripts/components/features/compose/components/emoji_picker_dropdown.jsx b/app/assets/javascripts/components/features/compose/components/emoji_picker_dropdown.jsx index 471f0e1bb..1920b29bf 100644 --- a/app/assets/javascripts/components/features/compose/components/emoji_picker_dropdown.jsx +++ b/app/assets/javascripts/components/features/compose/components/emoji_picker_dropdown.jsx @@ -43,7 +43,7 @@ const EmojiPickerDropdown = React.createClass({ return ( - 🙂 + 🙂 diff --git a/app/assets/javascripts/components/features/getting_started/index.jsx b/app/assets/javascripts/components/features/getting_started/index.jsx index 846e4f53b..6f9e988ba 100644 --- a/app/assets/javascripts/components/features/getting_started/index.jsx +++ b/app/assets/javascripts/components/features/getting_started/index.jsx @@ -41,7 +41,7 @@ const GettingStarted = ({ intl, me }) => { -
+

diff --git a/app/assets/stylesheets/components.scss b/app/assets/stylesheets/components.scss index 45f93ef90..04d37546c 100644 --- a/app/assets/stylesheets/components.scss +++ b/app/assets/stylesheets/components.scss @@ -771,6 +771,7 @@ a.status__content__spoiler-link { padding: 0; display: flex; flex-direction: column; + overflow: hidden; overflow-y: auto; flex-grow: 1; } diff --git a/package.json b/package.json index 35ce56ee5..14c8abe79 100644 --- a/package.json +++ b/package.json @@ -23,7 +23,7 @@ "chai-enzyme": "^0.6.1", "css-loader": "^0.26.2", "dotenv": "^4.0.0", - "emojione": "latest", + "emojione": "^2.2.7", "emojione-picker": "^2.0.1", "enzyme": "^2.7.1", "es6-promise": "^3.2.1", diff --git a/public/emoji/0023-20e3.svg b/public/emoji/0023-20e3.svg new file mode 100644 index 000000000..a29d90113 --- /dev/null +++ b/public/emoji/0023-20e3.svg @@ -0,0 +1,2 @@ + \ No newline at end of file diff --git a/public/emoji/0023.svg b/public/emoji/0023.svg new file mode 100644 index 000000000..76c606dd0 --- /dev/null +++ b/public/emoji/0023.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/002a-20e3.svg b/public/emoji/002a-20e3.svg new file mode 100644 index 000000000..bc3b2e6eb --- /dev/null +++ b/public/emoji/002a-20e3.svg @@ -0,0 +1,2 @@ + \ No newline at end of file diff --git a/public/emoji/002a.svg b/public/emoji/002a.svg new file mode 100644 index 000000000..258414904 --- /dev/null +++ b/public/emoji/002a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/0030-20e3.svg b/public/emoji/0030-20e3.svg new file mode 100644 index 000000000..57dc88909 --- /dev/null +++ b/public/emoji/0030-20e3.svg @@ -0,0 +1,2 @@ + \ No newline at end of file diff --git a/public/emoji/0030.svg b/public/emoji/0030.svg new file mode 100644 index 000000000..8ea076ce9 --- /dev/null +++ b/public/emoji/0030.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/0031-20e3.svg b/public/emoji/0031-20e3.svg new file mode 100644 index 000000000..e18178a17 --- /dev/null +++ b/public/emoji/0031-20e3.svg @@ -0,0 +1,2 @@ + \ No newline at end of file diff --git a/public/emoji/0031.svg b/public/emoji/0031.svg new file mode 100644 index 000000000..c0ca63e68 --- /dev/null +++ b/public/emoji/0031.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/0032-20e3.svg b/public/emoji/0032-20e3.svg new file mode 100644 index 000000000..c2eb5bd50 --- /dev/null +++ b/public/emoji/0032-20e3.svg @@ -0,0 +1,2 @@ + \ No newline at end of file diff --git a/public/emoji/0032.svg b/public/emoji/0032.svg new file mode 100644 index 000000000..abd01370a --- /dev/null +++ b/public/emoji/0032.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/0033-20e3.svg b/public/emoji/0033-20e3.svg new file mode 100644 index 000000000..295276013 --- /dev/null +++ b/public/emoji/0033-20e3.svg @@ -0,0 +1,2 @@ + \ No newline at end of file diff --git a/public/emoji/0033.svg b/public/emoji/0033.svg new file mode 100644 index 000000000..3136230ff --- /dev/null +++ b/public/emoji/0033.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/0034-20e3.svg b/public/emoji/0034-20e3.svg new file mode 100644 index 000000000..f530a7542 --- /dev/null +++ b/public/emoji/0034-20e3.svg @@ -0,0 +1,2 @@ + \ No newline at end of file diff --git a/public/emoji/0034.svg b/public/emoji/0034.svg new file mode 100644 index 000000000..1722ee958 --- /dev/null +++ b/public/emoji/0034.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/0035-20e3.svg b/public/emoji/0035-20e3.svg new file mode 100644 index 000000000..dc4e1d81a --- /dev/null +++ b/public/emoji/0035-20e3.svg @@ -0,0 +1,2 @@ + \ No newline at end of file diff --git a/public/emoji/0035.svg b/public/emoji/0035.svg new file mode 100644 index 000000000..3e7717f08 --- /dev/null +++ b/public/emoji/0035.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/0036-20e3.svg b/public/emoji/0036-20e3.svg new file mode 100644 index 000000000..9ce3a594f --- /dev/null +++ b/public/emoji/0036-20e3.svg @@ -0,0 +1,2 @@ + \ No newline at end of file diff --git a/public/emoji/0036.svg b/public/emoji/0036.svg new file mode 100644 index 000000000..2ff6d9390 --- /dev/null +++ b/public/emoji/0036.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/0037-20e3.svg b/public/emoji/0037-20e3.svg new file mode 100644 index 000000000..1f01b9db8 --- /dev/null +++ b/public/emoji/0037-20e3.svg @@ -0,0 +1,2 @@ + \ No newline at end of file diff --git a/public/emoji/0037.svg b/public/emoji/0037.svg new file mode 100644 index 000000000..6079e4930 --- /dev/null +++ b/public/emoji/0037.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/0038-20e3.svg b/public/emoji/0038-20e3.svg new file mode 100644 index 000000000..b6ed90a32 --- /dev/null +++ b/public/emoji/0038-20e3.svg @@ -0,0 +1,2 @@ + \ No newline at end of file diff --git a/public/emoji/0038.svg b/public/emoji/0038.svg new file mode 100644 index 000000000..014bf2631 --- /dev/null +++ b/public/emoji/0038.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/0039-20e3.svg b/public/emoji/0039-20e3.svg new file mode 100644 index 000000000..c88341970 --- /dev/null +++ b/public/emoji/0039-20e3.svg @@ -0,0 +1,2 @@ + \ No newline at end of file diff --git a/public/emoji/0039.svg b/public/emoji/0039.svg new file mode 100644 index 000000000..afda6d7b6 --- /dev/null +++ b/public/emoji/0039.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/00a9.svg b/public/emoji/00a9.svg new file mode 100644 index 000000000..68a770227 --- /dev/null +++ b/public/emoji/00a9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/00ae.svg b/public/emoji/00ae.svg new file mode 100644 index 000000000..8b084f6bf --- /dev/null +++ b/public/emoji/00ae.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f004.svg b/public/emoji/1f004.svg new file mode 100644 index 000000000..45867fb5a --- /dev/null +++ b/public/emoji/1f004.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f0cf.svg b/public/emoji/1f0cf.svg new file mode 100644 index 000000000..45ae8abcc --- /dev/null +++ b/public/emoji/1f0cf.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f170.svg b/public/emoji/1f170.svg new file mode 100644 index 000000000..a2ed41f33 --- /dev/null +++ b/public/emoji/1f170.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f171.svg b/public/emoji/1f171.svg new file mode 100644 index 000000000..d0f8e6494 --- /dev/null +++ b/public/emoji/1f171.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f17e.svg b/public/emoji/1f17e.svg new file mode 100644 index 000000000..8844efa53 --- /dev/null +++ b/public/emoji/1f17e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f17f.svg b/public/emoji/1f17f.svg new file mode 100644 index 000000000..5d8564444 --- /dev/null +++ b/public/emoji/1f17f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f18e.svg b/public/emoji/1f18e.svg new file mode 100644 index 000000000..6c5e8866f --- /dev/null +++ b/public/emoji/1f18e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f191.svg b/public/emoji/1f191.svg new file mode 100644 index 000000000..ef2cbf896 --- /dev/null +++ b/public/emoji/1f191.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f192.svg b/public/emoji/1f192.svg new file mode 100644 index 000000000..4bcdb3b91 --- /dev/null +++ b/public/emoji/1f192.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f193.svg b/public/emoji/1f193.svg new file mode 100644 index 000000000..d26b8c27c --- /dev/null +++ b/public/emoji/1f193.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f194.svg b/public/emoji/1f194.svg new file mode 100644 index 000000000..0c36d517b --- /dev/null +++ b/public/emoji/1f194.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f195.svg b/public/emoji/1f195.svg new file mode 100644 index 000000000..ad6466f5e --- /dev/null +++ b/public/emoji/1f195.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f196.svg b/public/emoji/1f196.svg new file mode 100644 index 000000000..fe38c95a4 --- /dev/null +++ b/public/emoji/1f196.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f197.svg b/public/emoji/1f197.svg new file mode 100644 index 000000000..c45e4e1c9 --- /dev/null +++ b/public/emoji/1f197.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f198.svg b/public/emoji/1f198.svg new file mode 100644 index 000000000..fef773a90 --- /dev/null +++ b/public/emoji/1f198.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f199.svg b/public/emoji/1f199.svg new file mode 100644 index 000000000..f5bc638ac --- /dev/null +++ b/public/emoji/1f199.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f19a.svg b/public/emoji/1f19a.svg new file mode 100644 index 000000000..6d2545d60 --- /dev/null +++ b/public/emoji/1f19a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1e6-1f1e8.svg b/public/emoji/1f1e6-1f1e8.svg new file mode 100644 index 000000000..23d700999 --- /dev/null +++ b/public/emoji/1f1e6-1f1e8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1e6-1f1e9.svg b/public/emoji/1f1e6-1f1e9.svg new file mode 100644 index 000000000..0340b9d6d --- /dev/null +++ b/public/emoji/1f1e6-1f1e9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1e6-1f1ea.svg b/public/emoji/1f1e6-1f1ea.svg new file mode 100644 index 000000000..6610e894c --- /dev/null +++ b/public/emoji/1f1e6-1f1ea.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1e6-1f1eb.svg b/public/emoji/1f1e6-1f1eb.svg new file mode 100644 index 000000000..e1998a6b2 --- /dev/null +++ b/public/emoji/1f1e6-1f1eb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1e6-1f1ec.svg b/public/emoji/1f1e6-1f1ec.svg new file mode 100644 index 000000000..0bcf4ebdc --- /dev/null +++ b/public/emoji/1f1e6-1f1ec.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1e6-1f1ee.svg b/public/emoji/1f1e6-1f1ee.svg new file mode 100644 index 000000000..c117d6087 --- /dev/null +++ b/public/emoji/1f1e6-1f1ee.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1e6-1f1f1.svg b/public/emoji/1f1e6-1f1f1.svg new file mode 100644 index 000000000..62c373cb0 --- /dev/null +++ b/public/emoji/1f1e6-1f1f1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1e6-1f1f2.svg b/public/emoji/1f1e6-1f1f2.svg new file mode 100644 index 000000000..619935b02 --- /dev/null +++ b/public/emoji/1f1e6-1f1f2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1e6-1f1f4.svg b/public/emoji/1f1e6-1f1f4.svg new file mode 100644 index 000000000..7440d2d23 --- /dev/null +++ b/public/emoji/1f1e6-1f1f4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1e6-1f1f6.svg b/public/emoji/1f1e6-1f1f6.svg new file mode 100644 index 000000000..476eac881 --- /dev/null +++ b/public/emoji/1f1e6-1f1f6.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1e6-1f1f7.svg b/public/emoji/1f1e6-1f1f7.svg new file mode 100644 index 000000000..040ef76bb --- /dev/null +++ b/public/emoji/1f1e6-1f1f7.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1e6-1f1f8.svg b/public/emoji/1f1e6-1f1f8.svg new file mode 100644 index 000000000..158d0c6f4 --- /dev/null +++ b/public/emoji/1f1e6-1f1f8.svg @@ -0,0 +1,2 @@ + \ No newline at end of file diff --git a/public/emoji/1f1e6-1f1f9.svg b/public/emoji/1f1e6-1f1f9.svg new file mode 100644 index 000000000..407ac4035 --- /dev/null +++ b/public/emoji/1f1e6-1f1f9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1e6-1f1fa.svg b/public/emoji/1f1e6-1f1fa.svg new file mode 100644 index 000000000..48ab1dc09 --- /dev/null +++ b/public/emoji/1f1e6-1f1fa.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1e6-1f1fc.svg b/public/emoji/1f1e6-1f1fc.svg new file mode 100644 index 000000000..ab3f2d057 --- /dev/null +++ b/public/emoji/1f1e6-1f1fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1e6-1f1fd.svg b/public/emoji/1f1e6-1f1fd.svg new file mode 100644 index 000000000..81ab22551 --- /dev/null +++ b/public/emoji/1f1e6-1f1fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1e6-1f1ff.svg b/public/emoji/1f1e6-1f1ff.svg new file mode 100644 index 000000000..4ac419fbc --- /dev/null +++ b/public/emoji/1f1e6-1f1ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1e6.svg b/public/emoji/1f1e6.svg new file mode 100644 index 000000000..5670a81a0 --- /dev/null +++ b/public/emoji/1f1e6.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1e7-1f1e6.svg b/public/emoji/1f1e7-1f1e6.svg new file mode 100644 index 000000000..9c14bd4b6 --- /dev/null +++ b/public/emoji/1f1e7-1f1e6.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1e7-1f1e7.svg b/public/emoji/1f1e7-1f1e7.svg new file mode 100644 index 000000000..6bf8ae2cd --- /dev/null +++ b/public/emoji/1f1e7-1f1e7.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1e7-1f1e9.svg b/public/emoji/1f1e7-1f1e9.svg new file mode 100644 index 000000000..e2713372a --- /dev/null +++ b/public/emoji/1f1e7-1f1e9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1e7-1f1ea.svg b/public/emoji/1f1e7-1f1ea.svg new file mode 100644 index 000000000..085c2cdb6 --- /dev/null +++ b/public/emoji/1f1e7-1f1ea.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1e7-1f1eb.svg b/public/emoji/1f1e7-1f1eb.svg new file mode 100644 index 000000000..eeb129a77 --- /dev/null +++ b/public/emoji/1f1e7-1f1eb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1e7-1f1ec.svg b/public/emoji/1f1e7-1f1ec.svg new file mode 100644 index 000000000..f6a6723c0 --- /dev/null +++ b/public/emoji/1f1e7-1f1ec.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1e7-1f1ed.svg b/public/emoji/1f1e7-1f1ed.svg new file mode 100644 index 000000000..f708818b1 --- /dev/null +++ b/public/emoji/1f1e7-1f1ed.svg @@ -0,0 +1,2 @@ + \ No newline at end of file diff --git a/public/emoji/1f1e7-1f1ee.svg b/public/emoji/1f1e7-1f1ee.svg new file mode 100644 index 000000000..7ea0077c0 --- /dev/null +++ b/public/emoji/1f1e7-1f1ee.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1e7-1f1ef.svg b/public/emoji/1f1e7-1f1ef.svg new file mode 100644 index 000000000..0e99fb00d --- /dev/null +++ b/public/emoji/1f1e7-1f1ef.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1e7-1f1f1.svg b/public/emoji/1f1e7-1f1f1.svg new file mode 100644 index 000000000..ad59884c6 --- /dev/null +++ b/public/emoji/1f1e7-1f1f1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1e7-1f1f2.svg b/public/emoji/1f1e7-1f1f2.svg new file mode 100644 index 000000000..ba96edd0e --- /dev/null +++ b/public/emoji/1f1e7-1f1f2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1e7-1f1f3.svg b/public/emoji/1f1e7-1f1f3.svg new file mode 100644 index 000000000..3271af93c --- /dev/null +++ b/public/emoji/1f1e7-1f1f3.svg @@ -0,0 +1,2 @@ + \ No newline at end of file diff --git a/public/emoji/1f1e7-1f1f4.svg b/public/emoji/1f1e7-1f1f4.svg new file mode 100644 index 000000000..49a94e9e9 --- /dev/null +++ b/public/emoji/1f1e7-1f1f4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1e7-1f1f6.svg b/public/emoji/1f1e7-1f1f6.svg new file mode 100644 index 000000000..a835cb570 --- /dev/null +++ b/public/emoji/1f1e7-1f1f6.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1e7-1f1f7.svg b/public/emoji/1f1e7-1f1f7.svg new file mode 100644 index 000000000..3191070a2 --- /dev/null +++ b/public/emoji/1f1e7-1f1f7.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1e7-1f1f8.svg b/public/emoji/1f1e7-1f1f8.svg new file mode 100644 index 000000000..a353225a2 --- /dev/null +++ b/public/emoji/1f1e7-1f1f8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1e7-1f1f9.svg b/public/emoji/1f1e7-1f1f9.svg new file mode 100644 index 000000000..fb5784cc7 --- /dev/null +++ b/public/emoji/1f1e7-1f1f9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1e7-1f1fb.svg b/public/emoji/1f1e7-1f1fb.svg new file mode 100644 index 000000000..e9f5672c6 --- /dev/null +++ b/public/emoji/1f1e7-1f1fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1e7-1f1fc.svg b/public/emoji/1f1e7-1f1fc.svg new file mode 100644 index 000000000..05f152a37 --- /dev/null +++ b/public/emoji/1f1e7-1f1fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1e7-1f1fe.svg b/public/emoji/1f1e7-1f1fe.svg new file mode 100644 index 000000000..f27068ab6 --- /dev/null +++ b/public/emoji/1f1e7-1f1fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1e7-1f1ff.svg b/public/emoji/1f1e7-1f1ff.svg new file mode 100644 index 000000000..a2e5cffc0 --- /dev/null +++ b/public/emoji/1f1e7-1f1ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1e7.svg b/public/emoji/1f1e7.svg new file mode 100644 index 000000000..7590fdd8e --- /dev/null +++ b/public/emoji/1f1e7.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1e8-1f1e6.svg b/public/emoji/1f1e8-1f1e6.svg new file mode 100644 index 000000000..886c66e27 --- /dev/null +++ b/public/emoji/1f1e8-1f1e6.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1e8-1f1e8.svg b/public/emoji/1f1e8-1f1e8.svg new file mode 100644 index 000000000..8d002807b --- /dev/null +++ b/public/emoji/1f1e8-1f1e8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1e8-1f1e9.svg b/public/emoji/1f1e8-1f1e9.svg new file mode 100644 index 000000000..c635b47e7 --- /dev/null +++ b/public/emoji/1f1e8-1f1e9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1e8-1f1eb.svg b/public/emoji/1f1e8-1f1eb.svg new file mode 100644 index 000000000..919121cd3 --- /dev/null +++ b/public/emoji/1f1e8-1f1eb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1e8-1f1ec.svg b/public/emoji/1f1e8-1f1ec.svg new file mode 100644 index 000000000..d511520b9 --- /dev/null +++ b/public/emoji/1f1e8-1f1ec.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1e8-1f1ed.svg b/public/emoji/1f1e8-1f1ed.svg new file mode 100644 index 000000000..507afb370 --- /dev/null +++ b/public/emoji/1f1e8-1f1ed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1e8-1f1ee.svg b/public/emoji/1f1e8-1f1ee.svg new file mode 100644 index 000000000..4ae397b28 --- /dev/null +++ b/public/emoji/1f1e8-1f1ee.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1e8-1f1f0.svg b/public/emoji/1f1e8-1f1f0.svg new file mode 100644 index 000000000..683223e29 --- /dev/null +++ b/public/emoji/1f1e8-1f1f0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1e8-1f1f1.svg b/public/emoji/1f1e8-1f1f1.svg new file mode 100644 index 000000000..51be06e67 --- /dev/null +++ b/public/emoji/1f1e8-1f1f1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1e8-1f1f2.svg b/public/emoji/1f1e8-1f1f2.svg new file mode 100644 index 000000000..e86d029a4 --- /dev/null +++ b/public/emoji/1f1e8-1f1f2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1e8-1f1f3.svg b/public/emoji/1f1e8-1f1f3.svg new file mode 100644 index 000000000..9e5bd6650 --- /dev/null +++ b/public/emoji/1f1e8-1f1f3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1e8-1f1f4.svg b/public/emoji/1f1e8-1f1f4.svg new file mode 100644 index 000000000..387be03c3 --- /dev/null +++ b/public/emoji/1f1e8-1f1f4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1e8-1f1f5.svg b/public/emoji/1f1e8-1f1f5.svg new file mode 100644 index 000000000..16bfba0cf --- /dev/null +++ b/public/emoji/1f1e8-1f1f5.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1e8-1f1f7.svg b/public/emoji/1f1e8-1f1f7.svg new file mode 100644 index 000000000..e8510bc05 --- /dev/null +++ b/public/emoji/1f1e8-1f1f7.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1e8-1f1fa.svg b/public/emoji/1f1e8-1f1fa.svg new file mode 100644 index 000000000..ae73709b6 --- /dev/null +++ b/public/emoji/1f1e8-1f1fa.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1e8-1f1fb.svg b/public/emoji/1f1e8-1f1fb.svg new file mode 100644 index 000000000..c3c11d621 --- /dev/null +++ b/public/emoji/1f1e8-1f1fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1e8-1f1fc.svg b/public/emoji/1f1e8-1f1fc.svg new file mode 100644 index 000000000..cecfdbffd --- /dev/null +++ b/public/emoji/1f1e8-1f1fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1e8-1f1fd.svg b/public/emoji/1f1e8-1f1fd.svg new file mode 100644 index 000000000..281154200 --- /dev/null +++ b/public/emoji/1f1e8-1f1fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1e8-1f1fe.svg b/public/emoji/1f1e8-1f1fe.svg new file mode 100644 index 000000000..4529030d1 --- /dev/null +++ b/public/emoji/1f1e8-1f1fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1e8-1f1ff.svg b/public/emoji/1f1e8-1f1ff.svg new file mode 100644 index 000000000..3226720be --- /dev/null +++ b/public/emoji/1f1e8-1f1ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1e8.svg b/public/emoji/1f1e8.svg new file mode 100644 index 000000000..1aa1eabd4 --- /dev/null +++ b/public/emoji/1f1e8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1e9-1f1ea.svg b/public/emoji/1f1e9-1f1ea.svg new file mode 100644 index 000000000..b2015a77a --- /dev/null +++ b/public/emoji/1f1e9-1f1ea.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1e9-1f1ec.svg b/public/emoji/1f1e9-1f1ec.svg new file mode 100644 index 000000000..04d9b4ee6 --- /dev/null +++ b/public/emoji/1f1e9-1f1ec.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1e9-1f1ef.svg b/public/emoji/1f1e9-1f1ef.svg new file mode 100644 index 000000000..f4ae5eafa --- /dev/null +++ b/public/emoji/1f1e9-1f1ef.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1e9-1f1f0.svg b/public/emoji/1f1e9-1f1f0.svg new file mode 100644 index 000000000..fd2d704d0 --- /dev/null +++ b/public/emoji/1f1e9-1f1f0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1e9-1f1f2.svg b/public/emoji/1f1e9-1f1f2.svg new file mode 100644 index 000000000..27fc817ba --- /dev/null +++ b/public/emoji/1f1e9-1f1f2.svg @@ -0,0 +1,2 @@ + \ No newline at end of file diff --git a/public/emoji/1f1e9-1f1f4.svg b/public/emoji/1f1e9-1f1f4.svg new file mode 100644 index 000000000..133278cbb --- /dev/null +++ b/public/emoji/1f1e9-1f1f4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1e9-1f1ff.svg b/public/emoji/1f1e9-1f1ff.svg new file mode 100644 index 000000000..081674e2a --- /dev/null +++ b/public/emoji/1f1e9-1f1ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1e9.svg b/public/emoji/1f1e9.svg new file mode 100644 index 000000000..e7085af16 --- /dev/null +++ b/public/emoji/1f1e9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1ea-1f1e6.svg b/public/emoji/1f1ea-1f1e6.svg new file mode 100644 index 000000000..0a39cf63e --- /dev/null +++ b/public/emoji/1f1ea-1f1e6.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1ea-1f1e8.svg b/public/emoji/1f1ea-1f1e8.svg new file mode 100644 index 000000000..2d7bf4d1b --- /dev/null +++ b/public/emoji/1f1ea-1f1e8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1ea-1f1ea.svg b/public/emoji/1f1ea-1f1ea.svg new file mode 100644 index 000000000..0f3f6d8ed --- /dev/null +++ b/public/emoji/1f1ea-1f1ea.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1ea-1f1ec.svg b/public/emoji/1f1ea-1f1ec.svg new file mode 100644 index 000000000..ee47f26c9 --- /dev/null +++ b/public/emoji/1f1ea-1f1ec.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1ea-1f1ed.svg b/public/emoji/1f1ea-1f1ed.svg new file mode 100644 index 000000000..63f1fe8ac --- /dev/null +++ b/public/emoji/1f1ea-1f1ed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1ea-1f1f7.svg b/public/emoji/1f1ea-1f1f7.svg new file mode 100644 index 000000000..616efd6cc --- /dev/null +++ b/public/emoji/1f1ea-1f1f7.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1ea-1f1f8.svg b/public/emoji/1f1ea-1f1f8.svg new file mode 100644 index 000000000..891a2597b --- /dev/null +++ b/public/emoji/1f1ea-1f1f8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1ea-1f1f9.svg b/public/emoji/1f1ea-1f1f9.svg new file mode 100644 index 000000000..ab724478e --- /dev/null +++ b/public/emoji/1f1ea-1f1f9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1ea-1f1fa.svg b/public/emoji/1f1ea-1f1fa.svg new file mode 100644 index 000000000..40416b4ba --- /dev/null +++ b/public/emoji/1f1ea-1f1fa.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1ea.svg b/public/emoji/1f1ea.svg new file mode 100644 index 000000000..6727438c4 --- /dev/null +++ b/public/emoji/1f1ea.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1eb-1f1ee.svg b/public/emoji/1f1eb-1f1ee.svg new file mode 100644 index 000000000..0894ffc58 --- /dev/null +++ b/public/emoji/1f1eb-1f1ee.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1eb-1f1ef.svg b/public/emoji/1f1eb-1f1ef.svg new file mode 100644 index 000000000..0bbbeae0f --- /dev/null +++ b/public/emoji/1f1eb-1f1ef.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1eb-1f1f0.svg b/public/emoji/1f1eb-1f1f0.svg new file mode 100644 index 000000000..29f0c8548 --- /dev/null +++ b/public/emoji/1f1eb-1f1f0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1eb-1f1f2.svg b/public/emoji/1f1eb-1f1f2.svg new file mode 100644 index 000000000..ca329d00a --- /dev/null +++ b/public/emoji/1f1eb-1f1f2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1eb-1f1f4.svg b/public/emoji/1f1eb-1f1f4.svg new file mode 100644 index 000000000..d5b522ebe --- /dev/null +++ b/public/emoji/1f1eb-1f1f4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1eb-1f1f7.svg b/public/emoji/1f1eb-1f1f7.svg new file mode 100644 index 000000000..7f9d0ab32 --- /dev/null +++ b/public/emoji/1f1eb-1f1f7.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1eb.svg b/public/emoji/1f1eb.svg new file mode 100644 index 000000000..2d54ed238 --- /dev/null +++ b/public/emoji/1f1eb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1ec-1f1e6.svg b/public/emoji/1f1ec-1f1e6.svg new file mode 100644 index 000000000..f30f1e044 --- /dev/null +++ b/public/emoji/1f1ec-1f1e6.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1ec-1f1e7.svg b/public/emoji/1f1ec-1f1e7.svg new file mode 100644 index 000000000..f745d658d --- /dev/null +++ b/public/emoji/1f1ec-1f1e7.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1ec-1f1e9.svg b/public/emoji/1f1ec-1f1e9.svg new file mode 100644 index 000000000..c33b39dfc --- /dev/null +++ b/public/emoji/1f1ec-1f1e9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1ec-1f1ea.svg b/public/emoji/1f1ec-1f1ea.svg new file mode 100644 index 000000000..044d07dca --- /dev/null +++ b/public/emoji/1f1ec-1f1ea.svg @@ -0,0 +1,2 @@ + \ No newline at end of file diff --git a/public/emoji/1f1ec-1f1eb.svg b/public/emoji/1f1ec-1f1eb.svg new file mode 100644 index 000000000..328baf263 --- /dev/null +++ b/public/emoji/1f1ec-1f1eb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1ec-1f1ec.svg b/public/emoji/1f1ec-1f1ec.svg new file mode 100644 index 000000000..3e4098e42 --- /dev/null +++ b/public/emoji/1f1ec-1f1ec.svg @@ -0,0 +1,2 @@ + \ No newline at end of file diff --git a/public/emoji/1f1ec-1f1ed.svg b/public/emoji/1f1ec-1f1ed.svg new file mode 100644 index 000000000..f3558ad05 --- /dev/null +++ b/public/emoji/1f1ec-1f1ed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1ec-1f1ee.svg b/public/emoji/1f1ec-1f1ee.svg new file mode 100644 index 000000000..c980311a0 --- /dev/null +++ b/public/emoji/1f1ec-1f1ee.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1ec-1f1f1.svg b/public/emoji/1f1ec-1f1f1.svg new file mode 100644 index 000000000..484b80c08 --- /dev/null +++ b/public/emoji/1f1ec-1f1f1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1ec-1f1f2.svg b/public/emoji/1f1ec-1f1f2.svg new file mode 100644 index 000000000..5fa53d532 --- /dev/null +++ b/public/emoji/1f1ec-1f1f2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1ec-1f1f3.svg b/public/emoji/1f1ec-1f1f3.svg new file mode 100644 index 000000000..ea98260a4 --- /dev/null +++ b/public/emoji/1f1ec-1f1f3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1ec-1f1f5.svg b/public/emoji/1f1ec-1f1f5.svg new file mode 100644 index 000000000..f044d48d2 --- /dev/null +++ b/public/emoji/1f1ec-1f1f5.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1ec-1f1f6.svg b/public/emoji/1f1ec-1f1f6.svg new file mode 100644 index 000000000..6c4a1581a --- /dev/null +++ b/public/emoji/1f1ec-1f1f6.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1ec-1f1f7.svg b/public/emoji/1f1ec-1f1f7.svg new file mode 100644 index 000000000..75c9bc6a4 --- /dev/null +++ b/public/emoji/1f1ec-1f1f7.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1ec-1f1f8.svg b/public/emoji/1f1ec-1f1f8.svg new file mode 100644 index 000000000..68772ee19 --- /dev/null +++ b/public/emoji/1f1ec-1f1f8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1ec-1f1f9.svg b/public/emoji/1f1ec-1f1f9.svg new file mode 100644 index 000000000..bc4f58471 --- /dev/null +++ b/public/emoji/1f1ec-1f1f9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1ec-1f1fa.svg b/public/emoji/1f1ec-1f1fa.svg new file mode 100644 index 000000000..6cdd6bf36 --- /dev/null +++ b/public/emoji/1f1ec-1f1fa.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1ec-1f1fc.svg b/public/emoji/1f1ec-1f1fc.svg new file mode 100644 index 000000000..30ed7effb --- /dev/null +++ b/public/emoji/1f1ec-1f1fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1ec-1f1fe.svg b/public/emoji/1f1ec-1f1fe.svg new file mode 100644 index 000000000..b4f6743d2 --- /dev/null +++ b/public/emoji/1f1ec-1f1fe.svg @@ -0,0 +1,2 @@ + \ No newline at end of file diff --git a/public/emoji/1f1ec.svg b/public/emoji/1f1ec.svg new file mode 100644 index 000000000..2fb801430 --- /dev/null +++ b/public/emoji/1f1ec.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1ed-1f1f0.svg b/public/emoji/1f1ed-1f1f0.svg new file mode 100644 index 000000000..20f6508be --- /dev/null +++ b/public/emoji/1f1ed-1f1f0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1ed-1f1f2.svg b/public/emoji/1f1ed-1f1f2.svg new file mode 100644 index 000000000..ee741bb19 --- /dev/null +++ b/public/emoji/1f1ed-1f1f2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1ed-1f1f3.svg b/public/emoji/1f1ed-1f1f3.svg new file mode 100644 index 000000000..0b56c947b --- /dev/null +++ b/public/emoji/1f1ed-1f1f3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1ed-1f1f7.svg b/public/emoji/1f1ed-1f1f7.svg new file mode 100644 index 000000000..938504a0d --- /dev/null +++ b/public/emoji/1f1ed-1f1f7.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1ed-1f1f9.svg b/public/emoji/1f1ed-1f1f9.svg new file mode 100644 index 000000000..6162c6a4d --- /dev/null +++ b/public/emoji/1f1ed-1f1f9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1ed-1f1fa.svg b/public/emoji/1f1ed-1f1fa.svg new file mode 100644 index 000000000..48b8aced6 --- /dev/null +++ b/public/emoji/1f1ed-1f1fa.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1ed.svg b/public/emoji/1f1ed.svg new file mode 100644 index 000000000..6add3c7e0 --- /dev/null +++ b/public/emoji/1f1ed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1ee-1f1e8.svg b/public/emoji/1f1ee-1f1e8.svg new file mode 100644 index 000000000..540234ef7 --- /dev/null +++ b/public/emoji/1f1ee-1f1e8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1ee-1f1e9.svg b/public/emoji/1f1ee-1f1e9.svg new file mode 100644 index 000000000..d92e0a009 --- /dev/null +++ b/public/emoji/1f1ee-1f1e9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1ee-1f1ea.svg b/public/emoji/1f1ee-1f1ea.svg new file mode 100644 index 000000000..c3f32f72d --- /dev/null +++ b/public/emoji/1f1ee-1f1ea.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1ee-1f1f1.svg b/public/emoji/1f1ee-1f1f1.svg new file mode 100644 index 000000000..4118fdf99 --- /dev/null +++ b/public/emoji/1f1ee-1f1f1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1ee-1f1f2.svg b/public/emoji/1f1ee-1f1f2.svg new file mode 100644 index 000000000..17632dc76 --- /dev/null +++ b/public/emoji/1f1ee-1f1f2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1ee-1f1f3.svg b/public/emoji/1f1ee-1f1f3.svg new file mode 100644 index 000000000..0f8b13d57 --- /dev/null +++ b/public/emoji/1f1ee-1f1f3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1ee-1f1f4.svg b/public/emoji/1f1ee-1f1f4.svg new file mode 100644 index 000000000..04d9b4ee6 --- /dev/null +++ b/public/emoji/1f1ee-1f1f4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1ee-1f1f6.svg b/public/emoji/1f1ee-1f1f6.svg new file mode 100644 index 000000000..c260e2925 --- /dev/null +++ b/public/emoji/1f1ee-1f1f6.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1ee-1f1f7.svg b/public/emoji/1f1ee-1f1f7.svg new file mode 100644 index 000000000..d7b36f5e8 --- /dev/null +++ b/public/emoji/1f1ee-1f1f7.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1ee-1f1f8.svg b/public/emoji/1f1ee-1f1f8.svg new file mode 100644 index 000000000..485bbd003 --- /dev/null +++ b/public/emoji/1f1ee-1f1f8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1ee-1f1f9.svg b/public/emoji/1f1ee-1f1f9.svg new file mode 100644 index 000000000..f14b06522 --- /dev/null +++ b/public/emoji/1f1ee-1f1f9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1ee.svg b/public/emoji/1f1ee.svg new file mode 100644 index 000000000..dc8d231b8 --- /dev/null +++ b/public/emoji/1f1ee.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1ef-1f1ea.svg b/public/emoji/1f1ef-1f1ea.svg new file mode 100644 index 000000000..d71bf48ee --- /dev/null +++ b/public/emoji/1f1ef-1f1ea.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1ef-1f1f2.svg b/public/emoji/1f1ef-1f1f2.svg new file mode 100644 index 000000000..810f5ab71 --- /dev/null +++ b/public/emoji/1f1ef-1f1f2.svg @@ -0,0 +1,2 @@ + \ No newline at end of file diff --git a/public/emoji/1f1ef-1f1f4.svg b/public/emoji/1f1ef-1f1f4.svg new file mode 100644 index 000000000..2acfb9a8e --- /dev/null +++ b/public/emoji/1f1ef-1f1f4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1ef-1f1f5.svg b/public/emoji/1f1ef-1f1f5.svg new file mode 100644 index 000000000..8ffa66be6 --- /dev/null +++ b/public/emoji/1f1ef-1f1f5.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1ef.svg b/public/emoji/1f1ef.svg new file mode 100644 index 000000000..249efde29 --- /dev/null +++ b/public/emoji/1f1ef.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f0-1f1ea.svg b/public/emoji/1f1f0-1f1ea.svg new file mode 100644 index 000000000..65828fd76 --- /dev/null +++ b/public/emoji/1f1f0-1f1ea.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f0-1f1ec.svg b/public/emoji/1f1f0-1f1ec.svg new file mode 100644 index 000000000..c2b532f66 --- /dev/null +++ b/public/emoji/1f1f0-1f1ec.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f0-1f1ed.svg b/public/emoji/1f1f0-1f1ed.svg new file mode 100644 index 000000000..a28e0243e --- /dev/null +++ b/public/emoji/1f1f0-1f1ed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f0-1f1ee.svg b/public/emoji/1f1f0-1f1ee.svg new file mode 100644 index 000000000..81f5fc9e5 --- /dev/null +++ b/public/emoji/1f1f0-1f1ee.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f0-1f1f2.svg b/public/emoji/1f1f0-1f1f2.svg new file mode 100644 index 000000000..8e9ba574d --- /dev/null +++ b/public/emoji/1f1f0-1f1f2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f0-1f1f3.svg b/public/emoji/1f1f0-1f1f3.svg new file mode 100644 index 000000000..505ac748d --- /dev/null +++ b/public/emoji/1f1f0-1f1f3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f0-1f1f5.svg b/public/emoji/1f1f0-1f1f5.svg new file mode 100644 index 000000000..dc4d67981 --- /dev/null +++ b/public/emoji/1f1f0-1f1f5.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f0-1f1f7.svg b/public/emoji/1f1f0-1f1f7.svg new file mode 100644 index 000000000..5b28e3595 --- /dev/null +++ b/public/emoji/1f1f0-1f1f7.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f0-1f1fc.svg b/public/emoji/1f1f0-1f1fc.svg new file mode 100644 index 000000000..f3076ffb4 --- /dev/null +++ b/public/emoji/1f1f0-1f1fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f0-1f1fe.svg b/public/emoji/1f1f0-1f1fe.svg new file mode 100644 index 000000000..6d0432cb8 --- /dev/null +++ b/public/emoji/1f1f0-1f1fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f0-1f1ff.svg b/public/emoji/1f1f0-1f1ff.svg new file mode 100644 index 000000000..107bf17ac --- /dev/null +++ b/public/emoji/1f1f0-1f1ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f0.svg b/public/emoji/1f1f0.svg new file mode 100644 index 000000000..0ae3f9a3b --- /dev/null +++ b/public/emoji/1f1f0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f1-1f1e6.svg b/public/emoji/1f1f1-1f1e6.svg new file mode 100644 index 000000000..a9ebf083c --- /dev/null +++ b/public/emoji/1f1f1-1f1e6.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f1-1f1e7.svg b/public/emoji/1f1f1-1f1e7.svg new file mode 100644 index 000000000..d000185e5 --- /dev/null +++ b/public/emoji/1f1f1-1f1e7.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f1-1f1e8.svg b/public/emoji/1f1f1-1f1e8.svg new file mode 100644 index 000000000..9f5255714 --- /dev/null +++ b/public/emoji/1f1f1-1f1e8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f1-1f1ee.svg b/public/emoji/1f1f1-1f1ee.svg new file mode 100644 index 000000000..51b11472b --- /dev/null +++ b/public/emoji/1f1f1-1f1ee.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f1-1f1f0.svg b/public/emoji/1f1f1-1f1f0.svg new file mode 100644 index 000000000..5eb3cd7ee --- /dev/null +++ b/public/emoji/1f1f1-1f1f0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f1-1f1f7.svg b/public/emoji/1f1f1-1f1f7.svg new file mode 100644 index 000000000..13995a6bf --- /dev/null +++ b/public/emoji/1f1f1-1f1f7.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f1-1f1f8.svg b/public/emoji/1f1f1-1f1f8.svg new file mode 100644 index 000000000..ef9b0346c --- /dev/null +++ b/public/emoji/1f1f1-1f1f8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f1-1f1f9.svg b/public/emoji/1f1f1-1f1f9.svg new file mode 100644 index 000000000..513d722c0 --- /dev/null +++ b/public/emoji/1f1f1-1f1f9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f1-1f1fa.svg b/public/emoji/1f1f1-1f1fa.svg new file mode 100644 index 000000000..78de14835 --- /dev/null +++ b/public/emoji/1f1f1-1f1fa.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f1-1f1fb.svg b/public/emoji/1f1f1-1f1fb.svg new file mode 100644 index 000000000..b3fa271e0 --- /dev/null +++ b/public/emoji/1f1f1-1f1fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f1-1f1fe.svg b/public/emoji/1f1f1-1f1fe.svg new file mode 100644 index 000000000..dd29b3b31 --- /dev/null +++ b/public/emoji/1f1f1-1f1fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f1.svg b/public/emoji/1f1f1.svg new file mode 100644 index 000000000..9239d516e --- /dev/null +++ b/public/emoji/1f1f1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f2-1f1e6.svg b/public/emoji/1f1f2-1f1e6.svg new file mode 100644 index 000000000..f2e7c5aab --- /dev/null +++ b/public/emoji/1f1f2-1f1e6.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f2-1f1e8.svg b/public/emoji/1f1f2-1f1e8.svg new file mode 100644 index 000000000..a0228346b --- /dev/null +++ b/public/emoji/1f1f2-1f1e8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f2-1f1e9.svg b/public/emoji/1f1f2-1f1e9.svg new file mode 100644 index 000000000..76845b662 --- /dev/null +++ b/public/emoji/1f1f2-1f1e9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f2-1f1ea.svg b/public/emoji/1f1f2-1f1ea.svg new file mode 100644 index 000000000..7eb38ad81 --- /dev/null +++ b/public/emoji/1f1f2-1f1ea.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f2-1f1eb.svg b/public/emoji/1f1f2-1f1eb.svg new file mode 100644 index 000000000..16bfba0cf --- /dev/null +++ b/public/emoji/1f1f2-1f1eb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f2-1f1ec.svg b/public/emoji/1f1f2-1f1ec.svg new file mode 100644 index 000000000..3571c0a7f --- /dev/null +++ b/public/emoji/1f1f2-1f1ec.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f2-1f1ed.svg b/public/emoji/1f1f2-1f1ed.svg new file mode 100644 index 000000000..bc53ad966 --- /dev/null +++ b/public/emoji/1f1f2-1f1ed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f2-1f1f0.svg b/public/emoji/1f1f2-1f1f0.svg new file mode 100644 index 000000000..8a3bc3e7c --- /dev/null +++ b/public/emoji/1f1f2-1f1f0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f2-1f1f1.svg b/public/emoji/1f1f2-1f1f1.svg new file mode 100644 index 000000000..650d974a9 --- /dev/null +++ b/public/emoji/1f1f2-1f1f1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f2-1f1f2.svg b/public/emoji/1f1f2-1f1f2.svg new file mode 100644 index 000000000..2df73cff5 --- /dev/null +++ b/public/emoji/1f1f2-1f1f2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f2-1f1f3.svg b/public/emoji/1f1f2-1f1f3.svg new file mode 100644 index 000000000..bfb46eb04 --- /dev/null +++ b/public/emoji/1f1f2-1f1f3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f2-1f1f4.svg b/public/emoji/1f1f2-1f1f4.svg new file mode 100644 index 000000000..30c75b65a --- /dev/null +++ b/public/emoji/1f1f2-1f1f4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f2-1f1f5.svg b/public/emoji/1f1f2-1f1f5.svg new file mode 100644 index 000000000..823a275f3 --- /dev/null +++ b/public/emoji/1f1f2-1f1f5.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f2-1f1f6.svg b/public/emoji/1f1f2-1f1f6.svg new file mode 100644 index 000000000..79c46fd4a --- /dev/null +++ b/public/emoji/1f1f2-1f1f6.svg @@ -0,0 +1,2 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f2-1f1f7.svg b/public/emoji/1f1f2-1f1f7.svg new file mode 100644 index 000000000..7878b6bbf --- /dev/null +++ b/public/emoji/1f1f2-1f1f7.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f2-1f1f8.svg b/public/emoji/1f1f2-1f1f8.svg new file mode 100644 index 000000000..97cb964c8 --- /dev/null +++ b/public/emoji/1f1f2-1f1f8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f2-1f1f9.svg b/public/emoji/1f1f2-1f1f9.svg new file mode 100644 index 000000000..f24473275 --- /dev/null +++ b/public/emoji/1f1f2-1f1f9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f2-1f1fa.svg b/public/emoji/1f1f2-1f1fa.svg new file mode 100644 index 000000000..03c638846 --- /dev/null +++ b/public/emoji/1f1f2-1f1fa.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f2-1f1fb.svg b/public/emoji/1f1f2-1f1fb.svg new file mode 100644 index 000000000..9326ae793 --- /dev/null +++ b/public/emoji/1f1f2-1f1fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f2-1f1fc.svg b/public/emoji/1f1f2-1f1fc.svg new file mode 100644 index 000000000..4fd4f5aef --- /dev/null +++ b/public/emoji/1f1f2-1f1fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f2-1f1fd.svg b/public/emoji/1f1f2-1f1fd.svg new file mode 100644 index 000000000..7ccbceb6a --- /dev/null +++ b/public/emoji/1f1f2-1f1fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f2-1f1fe.svg b/public/emoji/1f1f2-1f1fe.svg new file mode 100644 index 000000000..580bc7f9f --- /dev/null +++ b/public/emoji/1f1f2-1f1fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f2-1f1ff.svg b/public/emoji/1f1f2-1f1ff.svg new file mode 100644 index 000000000..42ff00cef --- /dev/null +++ b/public/emoji/1f1f2-1f1ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f2.svg b/public/emoji/1f1f2.svg new file mode 100644 index 000000000..c04f37116 --- /dev/null +++ b/public/emoji/1f1f2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f3-1f1e6.svg b/public/emoji/1f1f3-1f1e6.svg new file mode 100644 index 000000000..c53c7ddc6 --- /dev/null +++ b/public/emoji/1f1f3-1f1e6.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f3-1f1e8.svg b/public/emoji/1f1f3-1f1e8.svg new file mode 100644 index 000000000..7a9113f80 --- /dev/null +++ b/public/emoji/1f1f3-1f1e8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f3-1f1ea.svg b/public/emoji/1f1f3-1f1ea.svg new file mode 100644 index 000000000..b7f470788 --- /dev/null +++ b/public/emoji/1f1f3-1f1ea.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f3-1f1eb.svg b/public/emoji/1f1f3-1f1eb.svg new file mode 100644 index 000000000..21005fb0d --- /dev/null +++ b/public/emoji/1f1f3-1f1eb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f3-1f1ec.svg b/public/emoji/1f1f3-1f1ec.svg new file mode 100644 index 000000000..0701d0cdf --- /dev/null +++ b/public/emoji/1f1f3-1f1ec.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f3-1f1ee.svg b/public/emoji/1f1f3-1f1ee.svg new file mode 100644 index 000000000..8792eddc8 --- /dev/null +++ b/public/emoji/1f1f3-1f1ee.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f3-1f1f1.svg b/public/emoji/1f1f3-1f1f1.svg new file mode 100644 index 000000000..c150ee594 --- /dev/null +++ b/public/emoji/1f1f3-1f1f1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f3-1f1f4.svg b/public/emoji/1f1f3-1f1f4.svg new file mode 100644 index 000000000..85182d983 --- /dev/null +++ b/public/emoji/1f1f3-1f1f4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f3-1f1f5.svg b/public/emoji/1f1f3-1f1f5.svg new file mode 100644 index 000000000..a1e7545ba --- /dev/null +++ b/public/emoji/1f1f3-1f1f5.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f3-1f1f7.svg b/public/emoji/1f1f3-1f1f7.svg new file mode 100644 index 000000000..eba929277 --- /dev/null +++ b/public/emoji/1f1f3-1f1f7.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f3-1f1fa.svg b/public/emoji/1f1f3-1f1fa.svg new file mode 100644 index 000000000..f4b61fd5e --- /dev/null +++ b/public/emoji/1f1f3-1f1fa.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f3-1f1ff.svg b/public/emoji/1f1f3-1f1ff.svg new file mode 100644 index 000000000..688b145c1 --- /dev/null +++ b/public/emoji/1f1f3-1f1ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f3.svg b/public/emoji/1f1f3.svg new file mode 100644 index 000000000..a32f05590 --- /dev/null +++ b/public/emoji/1f1f3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f4-1f1f2.svg b/public/emoji/1f1f4-1f1f2.svg new file mode 100644 index 000000000..3a23ddcb9 --- /dev/null +++ b/public/emoji/1f1f4-1f1f2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f4.svg b/public/emoji/1f1f4.svg new file mode 100644 index 000000000..079e2b1a9 --- /dev/null +++ b/public/emoji/1f1f4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f5-1f1e6.svg b/public/emoji/1f1f5-1f1e6.svg new file mode 100644 index 000000000..cbeb3037f --- /dev/null +++ b/public/emoji/1f1f5-1f1e6.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f5-1f1ea.svg b/public/emoji/1f1f5-1f1ea.svg new file mode 100644 index 000000000..dab27b636 --- /dev/null +++ b/public/emoji/1f1f5-1f1ea.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f5-1f1eb.svg b/public/emoji/1f1f5-1f1eb.svg new file mode 100644 index 000000000..d68516daa --- /dev/null +++ b/public/emoji/1f1f5-1f1eb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f5-1f1ec.svg b/public/emoji/1f1f5-1f1ec.svg new file mode 100644 index 000000000..094bf895f --- /dev/null +++ b/public/emoji/1f1f5-1f1ec.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f5-1f1ed.svg b/public/emoji/1f1f5-1f1ed.svg new file mode 100644 index 000000000..57ebde425 --- /dev/null +++ b/public/emoji/1f1f5-1f1ed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f5-1f1f0.svg b/public/emoji/1f1f5-1f1f0.svg new file mode 100644 index 000000000..3a8cfd9b2 --- /dev/null +++ b/public/emoji/1f1f5-1f1f0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f5-1f1f1.svg b/public/emoji/1f1f5-1f1f1.svg new file mode 100644 index 000000000..bf78dbbce --- /dev/null +++ b/public/emoji/1f1f5-1f1f1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f5-1f1f2.svg b/public/emoji/1f1f5-1f1f2.svg new file mode 100644 index 000000000..517c6682a --- /dev/null +++ b/public/emoji/1f1f5-1f1f2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f5-1f1f3.svg b/public/emoji/1f1f5-1f1f3.svg new file mode 100644 index 000000000..adf57ca1a --- /dev/null +++ b/public/emoji/1f1f5-1f1f3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f5-1f1f7.svg b/public/emoji/1f1f5-1f1f7.svg new file mode 100644 index 000000000..9008a5585 --- /dev/null +++ b/public/emoji/1f1f5-1f1f7.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f5-1f1f8.svg b/public/emoji/1f1f5-1f1f8.svg new file mode 100644 index 000000000..e3f5f4248 --- /dev/null +++ b/public/emoji/1f1f5-1f1f8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f5-1f1f9.svg b/public/emoji/1f1f5-1f1f9.svg new file mode 100644 index 000000000..f4866075c --- /dev/null +++ b/public/emoji/1f1f5-1f1f9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f5-1f1fc.svg b/public/emoji/1f1f5-1f1fc.svg new file mode 100644 index 000000000..a88c9f8fb --- /dev/null +++ b/public/emoji/1f1f5-1f1fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f5-1f1fe.svg b/public/emoji/1f1f5-1f1fe.svg new file mode 100644 index 000000000..93e40d091 --- /dev/null +++ b/public/emoji/1f1f5-1f1fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f5.svg b/public/emoji/1f1f5.svg new file mode 100644 index 000000000..2a769ae73 --- /dev/null +++ b/public/emoji/1f1f5.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f6-1f1e6.svg b/public/emoji/1f1f6-1f1e6.svg new file mode 100644 index 000000000..6c5ce7947 --- /dev/null +++ b/public/emoji/1f1f6-1f1e6.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f6.svg b/public/emoji/1f1f6.svg new file mode 100644 index 000000000..ea3e84d3c --- /dev/null +++ b/public/emoji/1f1f6.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f7-1f1ea.svg b/public/emoji/1f1f7-1f1ea.svg new file mode 100644 index 000000000..634a34f5c --- /dev/null +++ b/public/emoji/1f1f7-1f1ea.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f7-1f1f4.svg b/public/emoji/1f1f7-1f1f4.svg new file mode 100644 index 000000000..20553c771 --- /dev/null +++ b/public/emoji/1f1f7-1f1f4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f7-1f1f8.svg b/public/emoji/1f1f7-1f1f8.svg new file mode 100644 index 000000000..276ec5da5 --- /dev/null +++ b/public/emoji/1f1f7-1f1f8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f7-1f1fa.svg b/public/emoji/1f1f7-1f1fa.svg new file mode 100644 index 000000000..ba85d44e8 --- /dev/null +++ b/public/emoji/1f1f7-1f1fa.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f7-1f1fc.svg b/public/emoji/1f1f7-1f1fc.svg new file mode 100644 index 000000000..d02fc12ba --- /dev/null +++ b/public/emoji/1f1f7-1f1fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f7.svg b/public/emoji/1f1f7.svg new file mode 100644 index 000000000..1e8673ffa --- /dev/null +++ b/public/emoji/1f1f7.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f8-1f1e6.svg b/public/emoji/1f1f8-1f1e6.svg new file mode 100644 index 000000000..73d0b056b --- /dev/null +++ b/public/emoji/1f1f8-1f1e6.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f8-1f1e7.svg b/public/emoji/1f1f8-1f1e7.svg new file mode 100644 index 000000000..1253585e9 --- /dev/null +++ b/public/emoji/1f1f8-1f1e7.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f8-1f1e8.svg b/public/emoji/1f1f8-1f1e8.svg new file mode 100644 index 000000000..c1632e696 --- /dev/null +++ b/public/emoji/1f1f8-1f1e8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f8-1f1e9.svg b/public/emoji/1f1f8-1f1e9.svg new file mode 100644 index 000000000..4fe07ce32 --- /dev/null +++ b/public/emoji/1f1f8-1f1e9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f8-1f1ea.svg b/public/emoji/1f1f8-1f1ea.svg new file mode 100644 index 000000000..ccd38777b --- /dev/null +++ b/public/emoji/1f1f8-1f1ea.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f8-1f1ec.svg b/public/emoji/1f1f8-1f1ec.svg new file mode 100644 index 000000000..91caccd4a --- /dev/null +++ b/public/emoji/1f1f8-1f1ec.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f8-1f1ed.svg b/public/emoji/1f1f8-1f1ed.svg new file mode 100644 index 000000000..ac8dfd1a0 --- /dev/null +++ b/public/emoji/1f1f8-1f1ed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f8-1f1ee.svg b/public/emoji/1f1f8-1f1ee.svg new file mode 100644 index 000000000..85338c99c --- /dev/null +++ b/public/emoji/1f1f8-1f1ee.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f8-1f1ef.svg b/public/emoji/1f1f8-1f1ef.svg new file mode 100644 index 000000000..e9f5672c6 --- /dev/null +++ b/public/emoji/1f1f8-1f1ef.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f8-1f1f0.svg b/public/emoji/1f1f8-1f1f0.svg new file mode 100644 index 000000000..5b0e54356 --- /dev/null +++ b/public/emoji/1f1f8-1f1f0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f8-1f1f1.svg b/public/emoji/1f1f8-1f1f1.svg new file mode 100644 index 000000000..50fafc277 --- /dev/null +++ b/public/emoji/1f1f8-1f1f1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f8-1f1f2.svg b/public/emoji/1f1f8-1f1f2.svg new file mode 100644 index 000000000..abe63183d --- /dev/null +++ b/public/emoji/1f1f8-1f1f2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f8-1f1f3.svg b/public/emoji/1f1f8-1f1f3.svg new file mode 100644 index 000000000..548243e3b --- /dev/null +++ b/public/emoji/1f1f8-1f1f3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f8-1f1f4.svg b/public/emoji/1f1f8-1f1f4.svg new file mode 100644 index 000000000..967be6174 --- /dev/null +++ b/public/emoji/1f1f8-1f1f4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f8-1f1f7.svg b/public/emoji/1f1f8-1f1f7.svg new file mode 100644 index 000000000..6348d1a78 --- /dev/null +++ b/public/emoji/1f1f8-1f1f7.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f8-1f1f8.svg b/public/emoji/1f1f8-1f1f8.svg new file mode 100644 index 000000000..9bbb66542 --- /dev/null +++ b/public/emoji/1f1f8-1f1f8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f8-1f1f9.svg b/public/emoji/1f1f8-1f1f9.svg new file mode 100644 index 000000000..08a1d8fbb --- /dev/null +++ b/public/emoji/1f1f8-1f1f9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f8-1f1fb.svg b/public/emoji/1f1f8-1f1fb.svg new file mode 100644 index 000000000..9c9370475 --- /dev/null +++ b/public/emoji/1f1f8-1f1fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f8-1f1fd.svg b/public/emoji/1f1f8-1f1fd.svg new file mode 100644 index 000000000..b0cd97a07 --- /dev/null +++ b/public/emoji/1f1f8-1f1fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f8-1f1fe.svg b/public/emoji/1f1f8-1f1fe.svg new file mode 100644 index 000000000..62fbea40b --- /dev/null +++ b/public/emoji/1f1f8-1f1fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f8-1f1ff.svg b/public/emoji/1f1f8-1f1ff.svg new file mode 100644 index 000000000..deafce4e2 --- /dev/null +++ b/public/emoji/1f1f8-1f1ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f8.svg b/public/emoji/1f1f8.svg new file mode 100644 index 000000000..a39d2010e --- /dev/null +++ b/public/emoji/1f1f8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f9-1f1e6.svg b/public/emoji/1f1f9-1f1e6.svg new file mode 100644 index 000000000..68e6e9ce7 --- /dev/null +++ b/public/emoji/1f1f9-1f1e6.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f9-1f1e8.svg b/public/emoji/1f1f9-1f1e8.svg new file mode 100644 index 000000000..ba12e33df --- /dev/null +++ b/public/emoji/1f1f9-1f1e8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f9-1f1e9.svg b/public/emoji/1f1f9-1f1e9.svg new file mode 100644 index 000000000..3976073fb --- /dev/null +++ b/public/emoji/1f1f9-1f1e9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f9-1f1eb.svg b/public/emoji/1f1f9-1f1eb.svg new file mode 100644 index 000000000..f374f23f6 --- /dev/null +++ b/public/emoji/1f1f9-1f1eb.svg @@ -0,0 +1,2 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f9-1f1ec.svg b/public/emoji/1f1f9-1f1ec.svg new file mode 100644 index 000000000..1c9e70f45 --- /dev/null +++ b/public/emoji/1f1f9-1f1ec.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f9-1f1ed.svg b/public/emoji/1f1f9-1f1ed.svg new file mode 100644 index 000000000..d5a54a4d8 --- /dev/null +++ b/public/emoji/1f1f9-1f1ed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f9-1f1ef.svg b/public/emoji/1f1f9-1f1ef.svg new file mode 100644 index 000000000..a7d29de9d --- /dev/null +++ b/public/emoji/1f1f9-1f1ef.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f9-1f1f0.svg b/public/emoji/1f1f9-1f1f0.svg new file mode 100644 index 000000000..7c869591e --- /dev/null +++ b/public/emoji/1f1f9-1f1f0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f9-1f1f1.svg b/public/emoji/1f1f9-1f1f1.svg new file mode 100644 index 000000000..43e983ac3 --- /dev/null +++ b/public/emoji/1f1f9-1f1f1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f9-1f1f2.svg b/public/emoji/1f1f9-1f1f2.svg new file mode 100644 index 000000000..785f91cbb --- /dev/null +++ b/public/emoji/1f1f9-1f1f2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f9-1f1f3.svg b/public/emoji/1f1f9-1f1f3.svg new file mode 100644 index 000000000..b27930a65 --- /dev/null +++ b/public/emoji/1f1f9-1f1f3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f9-1f1f4.svg b/public/emoji/1f1f9-1f1f4.svg new file mode 100644 index 000000000..4adcb0343 --- /dev/null +++ b/public/emoji/1f1f9-1f1f4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f9-1f1f7.svg b/public/emoji/1f1f9-1f1f7.svg new file mode 100644 index 000000000..57ab90b7d --- /dev/null +++ b/public/emoji/1f1f9-1f1f7.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f9-1f1f9.svg b/public/emoji/1f1f9-1f1f9.svg new file mode 100644 index 000000000..d0322a71a --- /dev/null +++ b/public/emoji/1f1f9-1f1f9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f9-1f1fb.svg b/public/emoji/1f1f9-1f1fb.svg new file mode 100644 index 000000000..e911e865f --- /dev/null +++ b/public/emoji/1f1f9-1f1fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f9-1f1fc.svg b/public/emoji/1f1f9-1f1fc.svg new file mode 100644 index 000000000..8ac4ed831 --- /dev/null +++ b/public/emoji/1f1f9-1f1fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f9-1f1ff.svg b/public/emoji/1f1f9-1f1ff.svg new file mode 100644 index 000000000..9e65b4b84 --- /dev/null +++ b/public/emoji/1f1f9-1f1ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1f9.svg b/public/emoji/1f1f9.svg new file mode 100644 index 000000000..6d8e6eda8 --- /dev/null +++ b/public/emoji/1f1f9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1fa-1f1e6.svg b/public/emoji/1f1fa-1f1e6.svg new file mode 100644 index 000000000..3d4e0e3b5 --- /dev/null +++ b/public/emoji/1f1fa-1f1e6.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1fa-1f1ec.svg b/public/emoji/1f1fa-1f1ec.svg new file mode 100644 index 000000000..450937689 --- /dev/null +++ b/public/emoji/1f1fa-1f1ec.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1fa-1f1f2.svg b/public/emoji/1f1fa-1f1f2.svg new file mode 100644 index 000000000..48488ea24 --- /dev/null +++ b/public/emoji/1f1fa-1f1f2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1fa-1f1f8.svg b/public/emoji/1f1fa-1f1f8.svg new file mode 100644 index 000000000..28e8578e1 --- /dev/null +++ b/public/emoji/1f1fa-1f1f8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1fa-1f1fe.svg b/public/emoji/1f1fa-1f1fe.svg new file mode 100644 index 000000000..bc4ad7003 --- /dev/null +++ b/public/emoji/1f1fa-1f1fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1fa-1f1ff.svg b/public/emoji/1f1fa-1f1ff.svg new file mode 100644 index 000000000..a6bb6cbfd --- /dev/null +++ b/public/emoji/1f1fa-1f1ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1fa.svg b/public/emoji/1f1fa.svg new file mode 100644 index 000000000..9966d1323 --- /dev/null +++ b/public/emoji/1f1fa.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1fb-1f1e6.svg b/public/emoji/1f1fb-1f1e6.svg new file mode 100644 index 000000000..d0078effe --- /dev/null +++ b/public/emoji/1f1fb-1f1e6.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1fb-1f1e8.svg b/public/emoji/1f1fb-1f1e8.svg new file mode 100644 index 000000000..5cafb43d9 --- /dev/null +++ b/public/emoji/1f1fb-1f1e8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1fb-1f1ea.svg b/public/emoji/1f1fb-1f1ea.svg new file mode 100644 index 000000000..8274ed0b4 --- /dev/null +++ b/public/emoji/1f1fb-1f1ea.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1fb-1f1ec.svg b/public/emoji/1f1fb-1f1ec.svg new file mode 100644 index 000000000..e5afefcad --- /dev/null +++ b/public/emoji/1f1fb-1f1ec.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1fb-1f1ee.svg b/public/emoji/1f1fb-1f1ee.svg new file mode 100644 index 000000000..2364a0c8c --- /dev/null +++ b/public/emoji/1f1fb-1f1ee.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1fb-1f1f3.svg b/public/emoji/1f1fb-1f1f3.svg new file mode 100644 index 000000000..a35b203fd --- /dev/null +++ b/public/emoji/1f1fb-1f1f3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1fb-1f1fa.svg b/public/emoji/1f1fb-1f1fa.svg new file mode 100644 index 000000000..51ac13f4f --- /dev/null +++ b/public/emoji/1f1fb-1f1fa.svg @@ -0,0 +1,2 @@ + \ No newline at end of file diff --git a/public/emoji/1f1fb.svg b/public/emoji/1f1fb.svg new file mode 100644 index 000000000..fd7586dca --- /dev/null +++ b/public/emoji/1f1fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1fc-1f1eb.svg b/public/emoji/1f1fc-1f1eb.svg new file mode 100644 index 000000000..16bfba0cf --- /dev/null +++ b/public/emoji/1f1fc-1f1eb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1fc-1f1f8.svg b/public/emoji/1f1fc-1f1f8.svg new file mode 100644 index 000000000..67b769ca6 --- /dev/null +++ b/public/emoji/1f1fc-1f1f8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1fc.svg b/public/emoji/1f1fc.svg new file mode 100644 index 000000000..3f2ce79fd --- /dev/null +++ b/public/emoji/1f1fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1fd-1f1f0.svg b/public/emoji/1f1fd-1f1f0.svg new file mode 100644 index 000000000..4a771e938 --- /dev/null +++ b/public/emoji/1f1fd-1f1f0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1fd.svg b/public/emoji/1f1fd.svg new file mode 100644 index 000000000..0b95b597c --- /dev/null +++ b/public/emoji/1f1fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1fe-1f1ea.svg b/public/emoji/1f1fe-1f1ea.svg new file mode 100644 index 000000000..beeca6229 --- /dev/null +++ b/public/emoji/1f1fe-1f1ea.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1fe-1f1f9.svg b/public/emoji/1f1fe-1f1f9.svg new file mode 100644 index 000000000..b2627bf9b --- /dev/null +++ b/public/emoji/1f1fe-1f1f9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1fe.svg b/public/emoji/1f1fe.svg new file mode 100644 index 000000000..fe9e109c0 --- /dev/null +++ b/public/emoji/1f1fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1ff-1f1e6.svg b/public/emoji/1f1ff-1f1e6.svg new file mode 100644 index 000000000..5253e6360 --- /dev/null +++ b/public/emoji/1f1ff-1f1e6.svg @@ -0,0 +1,2 @@ + \ No newline at end of file diff --git a/public/emoji/1f1ff-1f1f2.svg b/public/emoji/1f1ff-1f1f2.svg new file mode 100644 index 000000000..16306c739 --- /dev/null +++ b/public/emoji/1f1ff-1f1f2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1ff-1f1fc.svg b/public/emoji/1f1ff-1f1fc.svg new file mode 100644 index 000000000..77f539e5f --- /dev/null +++ b/public/emoji/1f1ff-1f1fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f1ff.svg b/public/emoji/1f1ff.svg new file mode 100644 index 000000000..133cd3cf3 --- /dev/null +++ b/public/emoji/1f1ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f201.svg b/public/emoji/1f201.svg new file mode 100644 index 000000000..44714e7ea --- /dev/null +++ b/public/emoji/1f201.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f202.svg b/public/emoji/1f202.svg new file mode 100644 index 000000000..a6e36bc7d --- /dev/null +++ b/public/emoji/1f202.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f21a.svg b/public/emoji/1f21a.svg new file mode 100644 index 000000000..74c92f22c --- /dev/null +++ b/public/emoji/1f21a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f22f.svg b/public/emoji/1f22f.svg new file mode 100644 index 000000000..07d785adf --- /dev/null +++ b/public/emoji/1f22f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f232.svg b/public/emoji/1f232.svg new file mode 100644 index 000000000..5cc5826ce --- /dev/null +++ b/public/emoji/1f232.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f233.svg b/public/emoji/1f233.svg new file mode 100644 index 000000000..ae8c7bdad --- /dev/null +++ b/public/emoji/1f233.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f234.svg b/public/emoji/1f234.svg new file mode 100644 index 000000000..ea346b666 --- /dev/null +++ b/public/emoji/1f234.svg @@ -0,0 +1,2 @@ + \ No newline at end of file diff --git a/public/emoji/1f235.svg b/public/emoji/1f235.svg new file mode 100644 index 000000000..ed4265dc3 --- /dev/null +++ b/public/emoji/1f235.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f236.svg b/public/emoji/1f236.svg new file mode 100644 index 000000000..8d2d4e38f --- /dev/null +++ b/public/emoji/1f236.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f237.svg b/public/emoji/1f237.svg new file mode 100644 index 000000000..01c87d775 --- /dev/null +++ b/public/emoji/1f237.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f238.svg b/public/emoji/1f238.svg new file mode 100644 index 000000000..2bec66900 --- /dev/null +++ b/public/emoji/1f238.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f239.svg b/public/emoji/1f239.svg new file mode 100644 index 000000000..c989838cc --- /dev/null +++ b/public/emoji/1f239.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f23a.svg b/public/emoji/1f23a.svg new file mode 100644 index 000000000..2c743f7f9 --- /dev/null +++ b/public/emoji/1f23a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f250.svg b/public/emoji/1f250.svg new file mode 100644 index 000000000..0518c4af6 --- /dev/null +++ b/public/emoji/1f250.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f251.svg b/public/emoji/1f251.svg new file mode 100644 index 000000000..4da18fa19 --- /dev/null +++ b/public/emoji/1f251.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f300.svg b/public/emoji/1f300.svg new file mode 100644 index 000000000..00f603086 --- /dev/null +++ b/public/emoji/1f300.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f301.svg b/public/emoji/1f301.svg new file mode 100644 index 000000000..a94c77a88 --- /dev/null +++ b/public/emoji/1f301.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f302.svg b/public/emoji/1f302.svg new file mode 100644 index 000000000..2e02d2895 --- /dev/null +++ b/public/emoji/1f302.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f303.svg b/public/emoji/1f303.svg new file mode 100644 index 000000000..cb533e58f --- /dev/null +++ b/public/emoji/1f303.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f304.svg b/public/emoji/1f304.svg new file mode 100644 index 000000000..1d032f082 --- /dev/null +++ b/public/emoji/1f304.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f305.svg b/public/emoji/1f305.svg new file mode 100644 index 000000000..dfc849803 --- /dev/null +++ b/public/emoji/1f305.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f306.svg b/public/emoji/1f306.svg new file mode 100644 index 000000000..0bf2b32a9 --- /dev/null +++ b/public/emoji/1f306.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f307.svg b/public/emoji/1f307.svg new file mode 100644 index 000000000..d6648a490 --- /dev/null +++ b/public/emoji/1f307.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f308.svg b/public/emoji/1f308.svg new file mode 100644 index 000000000..22ae3f5f8 --- /dev/null +++ b/public/emoji/1f308.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f309.svg b/public/emoji/1f309.svg new file mode 100644 index 000000000..cdaab3191 --- /dev/null +++ b/public/emoji/1f309.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f30a.svg b/public/emoji/1f30a.svg new file mode 100644 index 000000000..efdfafca5 --- /dev/null +++ b/public/emoji/1f30a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f30b.svg b/public/emoji/1f30b.svg new file mode 100644 index 000000000..51ce7a82e --- /dev/null +++ b/public/emoji/1f30b.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f30c.svg b/public/emoji/1f30c.svg new file mode 100644 index 000000000..de7a0212d --- /dev/null +++ b/public/emoji/1f30c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f30d.svg b/public/emoji/1f30d.svg new file mode 100644 index 000000000..efe3dee5d --- /dev/null +++ b/public/emoji/1f30d.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f30e.svg b/public/emoji/1f30e.svg new file mode 100644 index 000000000..96eb2c4a4 --- /dev/null +++ b/public/emoji/1f30e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f30f.svg b/public/emoji/1f30f.svg new file mode 100644 index 000000000..3766698ba --- /dev/null +++ b/public/emoji/1f30f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f310.svg b/public/emoji/1f310.svg new file mode 100644 index 000000000..5290ca39f --- /dev/null +++ b/public/emoji/1f310.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f311.svg b/public/emoji/1f311.svg new file mode 100644 index 000000000..78fd41ea0 --- /dev/null +++ b/public/emoji/1f311.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f312.svg b/public/emoji/1f312.svg new file mode 100644 index 000000000..7bae646de --- /dev/null +++ b/public/emoji/1f312.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f313.svg b/public/emoji/1f313.svg new file mode 100644 index 000000000..2a604a0f7 --- /dev/null +++ b/public/emoji/1f313.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f314.svg b/public/emoji/1f314.svg new file mode 100644 index 000000000..8fd4cf6a7 --- /dev/null +++ b/public/emoji/1f314.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f315.svg b/public/emoji/1f315.svg new file mode 100644 index 000000000..cdcbea597 --- /dev/null +++ b/public/emoji/1f315.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f316.svg b/public/emoji/1f316.svg new file mode 100644 index 000000000..0e1aa7b98 --- /dev/null +++ b/public/emoji/1f316.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f317.svg b/public/emoji/1f317.svg new file mode 100644 index 000000000..fe9e6db9d --- /dev/null +++ b/public/emoji/1f317.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f318.svg b/public/emoji/1f318.svg new file mode 100644 index 000000000..0cc59a6d0 --- /dev/null +++ b/public/emoji/1f318.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f319.svg b/public/emoji/1f319.svg new file mode 100644 index 000000000..3fd5b28f9 --- /dev/null +++ b/public/emoji/1f319.svg @@ -0,0 +1,2 @@ + \ No newline at end of file diff --git a/public/emoji/1f31a.svg b/public/emoji/1f31a.svg new file mode 100644 index 000000000..201d831f2 --- /dev/null +++ b/public/emoji/1f31a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f31b.svg b/public/emoji/1f31b.svg new file mode 100644 index 000000000..1f67f817d --- /dev/null +++ b/public/emoji/1f31b.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f31c.svg b/public/emoji/1f31c.svg new file mode 100644 index 000000000..53b98ca50 --- /dev/null +++ b/public/emoji/1f31c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f31d.svg b/public/emoji/1f31d.svg new file mode 100644 index 000000000..90c6d5019 --- /dev/null +++ b/public/emoji/1f31d.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f31e.svg b/public/emoji/1f31e.svg new file mode 100644 index 000000000..f86c173d6 --- /dev/null +++ b/public/emoji/1f31e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f31f.svg b/public/emoji/1f31f.svg new file mode 100644 index 000000000..13565256f --- /dev/null +++ b/public/emoji/1f31f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f320.svg b/public/emoji/1f320.svg new file mode 100644 index 000000000..c79d56a39 --- /dev/null +++ b/public/emoji/1f320.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f321.svg b/public/emoji/1f321.svg new file mode 100644 index 000000000..b6419126b --- /dev/null +++ b/public/emoji/1f321.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f324.svg b/public/emoji/1f324.svg new file mode 100644 index 000000000..0bfacd23d --- /dev/null +++ b/public/emoji/1f324.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f325.svg b/public/emoji/1f325.svg new file mode 100644 index 000000000..41fc0560c --- /dev/null +++ b/public/emoji/1f325.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f326.svg b/public/emoji/1f326.svg new file mode 100644 index 000000000..8f83b295f --- /dev/null +++ b/public/emoji/1f326.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f327.svg b/public/emoji/1f327.svg new file mode 100644 index 000000000..52e6a1eff --- /dev/null +++ b/public/emoji/1f327.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f328.svg b/public/emoji/1f328.svg new file mode 100644 index 000000000..dc0e858a8 --- /dev/null +++ b/public/emoji/1f328.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f329.svg b/public/emoji/1f329.svg new file mode 100644 index 000000000..d7844b627 --- /dev/null +++ b/public/emoji/1f329.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f32a.svg b/public/emoji/1f32a.svg new file mode 100644 index 000000000..87326d990 --- /dev/null +++ b/public/emoji/1f32a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f32b.svg b/public/emoji/1f32b.svg new file mode 100644 index 000000000..a294ee341 --- /dev/null +++ b/public/emoji/1f32b.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f32c.svg b/public/emoji/1f32c.svg new file mode 100644 index 000000000..652f28b7c --- /dev/null +++ b/public/emoji/1f32c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f32d.svg b/public/emoji/1f32d.svg new file mode 100644 index 000000000..e9acb62da --- /dev/null +++ b/public/emoji/1f32d.svg @@ -0,0 +1,2 @@ + \ No newline at end of file diff --git a/public/emoji/1f32e.svg b/public/emoji/1f32e.svg new file mode 100644 index 000000000..7ce2afabe --- /dev/null +++ b/public/emoji/1f32e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f32f.svg b/public/emoji/1f32f.svg new file mode 100644 index 000000000..6ae903902 --- /dev/null +++ b/public/emoji/1f32f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f330.svg b/public/emoji/1f330.svg new file mode 100644 index 000000000..5def65604 --- /dev/null +++ b/public/emoji/1f330.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f331.svg b/public/emoji/1f331.svg new file mode 100644 index 000000000..90f17ee29 --- /dev/null +++ b/public/emoji/1f331.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f332.svg b/public/emoji/1f332.svg new file mode 100644 index 000000000..be2098863 --- /dev/null +++ b/public/emoji/1f332.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f333.svg b/public/emoji/1f333.svg new file mode 100644 index 000000000..4f29da350 --- /dev/null +++ b/public/emoji/1f333.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f334.svg b/public/emoji/1f334.svg new file mode 100644 index 000000000..b0cec6d92 --- /dev/null +++ b/public/emoji/1f334.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f335.svg b/public/emoji/1f335.svg new file mode 100644 index 000000000..b980aad28 --- /dev/null +++ b/public/emoji/1f335.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f336.svg b/public/emoji/1f336.svg new file mode 100644 index 000000000..3763d91d2 --- /dev/null +++ b/public/emoji/1f336.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f337.svg b/public/emoji/1f337.svg new file mode 100644 index 000000000..651218941 --- /dev/null +++ b/public/emoji/1f337.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f338.svg b/public/emoji/1f338.svg new file mode 100644 index 000000000..eb6d6da7b --- /dev/null +++ b/public/emoji/1f338.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f339.svg b/public/emoji/1f339.svg new file mode 100644 index 000000000..e7122eb32 --- /dev/null +++ b/public/emoji/1f339.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f33a.svg b/public/emoji/1f33a.svg new file mode 100644 index 000000000..557788787 --- /dev/null +++ b/public/emoji/1f33a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f33b.svg b/public/emoji/1f33b.svg new file mode 100644 index 000000000..3834929fe --- /dev/null +++ b/public/emoji/1f33b.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f33c.svg b/public/emoji/1f33c.svg new file mode 100644 index 000000000..15d420735 --- /dev/null +++ b/public/emoji/1f33c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f33d.svg b/public/emoji/1f33d.svg new file mode 100644 index 000000000..074139da8 --- /dev/null +++ b/public/emoji/1f33d.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f33e.svg b/public/emoji/1f33e.svg new file mode 100644 index 000000000..5b02cf7cb --- /dev/null +++ b/public/emoji/1f33e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f33f.svg b/public/emoji/1f33f.svg new file mode 100644 index 000000000..174e90223 --- /dev/null +++ b/public/emoji/1f33f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f340.svg b/public/emoji/1f340.svg new file mode 100644 index 000000000..0b06567d5 --- /dev/null +++ b/public/emoji/1f340.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f341.svg b/public/emoji/1f341.svg new file mode 100644 index 000000000..35a456362 --- /dev/null +++ b/public/emoji/1f341.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f342.svg b/public/emoji/1f342.svg new file mode 100644 index 000000000..7ca377c87 --- /dev/null +++ b/public/emoji/1f342.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f343.svg b/public/emoji/1f343.svg new file mode 100644 index 000000000..c19539d9d --- /dev/null +++ b/public/emoji/1f343.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f344.svg b/public/emoji/1f344.svg new file mode 100644 index 000000000..853a49d20 --- /dev/null +++ b/public/emoji/1f344.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f345.svg b/public/emoji/1f345.svg new file mode 100644 index 000000000..b0f3efc4e --- /dev/null +++ b/public/emoji/1f345.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f346.svg b/public/emoji/1f346.svg new file mode 100644 index 000000000..78a52f6c8 --- /dev/null +++ b/public/emoji/1f346.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f347.svg b/public/emoji/1f347.svg new file mode 100644 index 000000000..e924fc216 --- /dev/null +++ b/public/emoji/1f347.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f348.svg b/public/emoji/1f348.svg new file mode 100644 index 000000000..d715aaa25 --- /dev/null +++ b/public/emoji/1f348.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f349.svg b/public/emoji/1f349.svg new file mode 100644 index 000000000..0f7a175f7 --- /dev/null +++ b/public/emoji/1f349.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f34a.svg b/public/emoji/1f34a.svg new file mode 100644 index 000000000..a6c48c5ff --- /dev/null +++ b/public/emoji/1f34a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f34b.svg b/public/emoji/1f34b.svg new file mode 100644 index 000000000..e6dafd4c7 --- /dev/null +++ b/public/emoji/1f34b.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f34c.svg b/public/emoji/1f34c.svg new file mode 100644 index 000000000..9f7af936f --- /dev/null +++ b/public/emoji/1f34c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f34d.svg b/public/emoji/1f34d.svg new file mode 100644 index 000000000..350c11f28 --- /dev/null +++ b/public/emoji/1f34d.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f34e.svg b/public/emoji/1f34e.svg new file mode 100644 index 000000000..1353d5dd5 --- /dev/null +++ b/public/emoji/1f34e.svg @@ -0,0 +1,2 @@ + \ No newline at end of file diff --git a/public/emoji/1f34f.svg b/public/emoji/1f34f.svg new file mode 100644 index 000000000..27561bc31 --- /dev/null +++ b/public/emoji/1f34f.svg @@ -0,0 +1,2 @@ + \ No newline at end of file diff --git a/public/emoji/1f350.svg b/public/emoji/1f350.svg new file mode 100644 index 000000000..467a86e13 --- /dev/null +++ b/public/emoji/1f350.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f351.svg b/public/emoji/1f351.svg new file mode 100644 index 000000000..574969a8e --- /dev/null +++ b/public/emoji/1f351.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f352.svg b/public/emoji/1f352.svg new file mode 100644 index 000000000..d43aca6dc --- /dev/null +++ b/public/emoji/1f352.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f353.svg b/public/emoji/1f353.svg new file mode 100644 index 000000000..709e0db4b --- /dev/null +++ b/public/emoji/1f353.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f354.svg b/public/emoji/1f354.svg new file mode 100644 index 000000000..34608757f --- /dev/null +++ b/public/emoji/1f354.svg @@ -0,0 +1,2 @@ + \ No newline at end of file diff --git a/public/emoji/1f355.svg b/public/emoji/1f355.svg new file mode 100644 index 000000000..4bd17b70e --- /dev/null +++ b/public/emoji/1f355.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f356.svg b/public/emoji/1f356.svg new file mode 100644 index 000000000..d1b3e056e --- /dev/null +++ b/public/emoji/1f356.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f357.svg b/public/emoji/1f357.svg new file mode 100644 index 000000000..dca233f0b --- /dev/null +++ b/public/emoji/1f357.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f358.svg b/public/emoji/1f358.svg new file mode 100644 index 000000000..5e38bb4fb --- /dev/null +++ b/public/emoji/1f358.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f359.svg b/public/emoji/1f359.svg new file mode 100644 index 000000000..0c7cf7952 --- /dev/null +++ b/public/emoji/1f359.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f35a.svg b/public/emoji/1f35a.svg new file mode 100644 index 000000000..08398ca6c --- /dev/null +++ b/public/emoji/1f35a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f35b.svg b/public/emoji/1f35b.svg new file mode 100644 index 000000000..5880aea59 --- /dev/null +++ b/public/emoji/1f35b.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f35c.svg b/public/emoji/1f35c.svg new file mode 100644 index 000000000..93c4cdbf2 --- /dev/null +++ b/public/emoji/1f35c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f35d.svg b/public/emoji/1f35d.svg new file mode 100644 index 000000000..52f7db9ca --- /dev/null +++ b/public/emoji/1f35d.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f35e.svg b/public/emoji/1f35e.svg new file mode 100644 index 000000000..bbaae9cc6 --- /dev/null +++ b/public/emoji/1f35e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f35f.svg b/public/emoji/1f35f.svg new file mode 100644 index 000000000..fe9e1bac7 --- /dev/null +++ b/public/emoji/1f35f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f360.svg b/public/emoji/1f360.svg new file mode 100644 index 000000000..bfbbd9c50 --- /dev/null +++ b/public/emoji/1f360.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f361.svg b/public/emoji/1f361.svg new file mode 100644 index 000000000..6cc82e3d9 --- /dev/null +++ b/public/emoji/1f361.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f362.svg b/public/emoji/1f362.svg new file mode 100644 index 000000000..f00dbf6df --- /dev/null +++ b/public/emoji/1f362.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f363.svg b/public/emoji/1f363.svg new file mode 100644 index 000000000..93aed0807 --- /dev/null +++ b/public/emoji/1f363.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f364.svg b/public/emoji/1f364.svg new file mode 100644 index 000000000..c64f84077 --- /dev/null +++ b/public/emoji/1f364.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f365.svg b/public/emoji/1f365.svg new file mode 100644 index 000000000..9932d3438 --- /dev/null +++ b/public/emoji/1f365.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f366.svg b/public/emoji/1f366.svg new file mode 100644 index 000000000..aab1e61fd --- /dev/null +++ b/public/emoji/1f366.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f367.svg b/public/emoji/1f367.svg new file mode 100644 index 000000000..296c4f717 --- /dev/null +++ b/public/emoji/1f367.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f368.svg b/public/emoji/1f368.svg new file mode 100644 index 000000000..c1524bf37 --- /dev/null +++ b/public/emoji/1f368.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f369.svg b/public/emoji/1f369.svg new file mode 100644 index 000000000..6620235bc --- /dev/null +++ b/public/emoji/1f369.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f36a.svg b/public/emoji/1f36a.svg new file mode 100644 index 000000000..8daf31164 --- /dev/null +++ b/public/emoji/1f36a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f36b.svg b/public/emoji/1f36b.svg new file mode 100644 index 000000000..493e7b34a --- /dev/null +++ b/public/emoji/1f36b.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f36c.svg b/public/emoji/1f36c.svg new file mode 100644 index 000000000..2c26a67d9 --- /dev/null +++ b/public/emoji/1f36c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f36d.svg b/public/emoji/1f36d.svg new file mode 100644 index 000000000..887f57c00 --- /dev/null +++ b/public/emoji/1f36d.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f36e.svg b/public/emoji/1f36e.svg new file mode 100644 index 000000000..de1d4317e --- /dev/null +++ b/public/emoji/1f36e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f36f.svg b/public/emoji/1f36f.svg new file mode 100644 index 000000000..031903fc1 --- /dev/null +++ b/public/emoji/1f36f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f370.svg b/public/emoji/1f370.svg new file mode 100644 index 000000000..c42ca1b6f --- /dev/null +++ b/public/emoji/1f370.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f371.svg b/public/emoji/1f371.svg new file mode 100644 index 000000000..dbc80e5b3 --- /dev/null +++ b/public/emoji/1f371.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f372.svg b/public/emoji/1f372.svg new file mode 100644 index 000000000..52663af16 --- /dev/null +++ b/public/emoji/1f372.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f373.svg b/public/emoji/1f373.svg new file mode 100644 index 000000000..4f80ed53c --- /dev/null +++ b/public/emoji/1f373.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f374.svg b/public/emoji/1f374.svg new file mode 100644 index 000000000..e9d6b48ef --- /dev/null +++ b/public/emoji/1f374.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f375.svg b/public/emoji/1f375.svg new file mode 100644 index 000000000..7f210fc76 --- /dev/null +++ b/public/emoji/1f375.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f376.svg b/public/emoji/1f376.svg new file mode 100644 index 000000000..b573b4566 --- /dev/null +++ b/public/emoji/1f376.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f377.svg b/public/emoji/1f377.svg new file mode 100644 index 000000000..e2652b0a3 --- /dev/null +++ b/public/emoji/1f377.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f378.svg b/public/emoji/1f378.svg new file mode 100644 index 000000000..a8c9960d8 --- /dev/null +++ b/public/emoji/1f378.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f379.svg b/public/emoji/1f379.svg new file mode 100644 index 000000000..b96f8f05c --- /dev/null +++ b/public/emoji/1f379.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f37a.svg b/public/emoji/1f37a.svg new file mode 100644 index 000000000..85e65ba62 --- /dev/null +++ b/public/emoji/1f37a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f37b.svg b/public/emoji/1f37b.svg new file mode 100644 index 000000000..76c8bdc07 --- /dev/null +++ b/public/emoji/1f37b.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f37c.svg b/public/emoji/1f37c.svg new file mode 100644 index 000000000..1491a98b8 --- /dev/null +++ b/public/emoji/1f37c.svg @@ -0,0 +1,2 @@ + \ No newline at end of file diff --git a/public/emoji/1f37d.svg b/public/emoji/1f37d.svg new file mode 100644 index 000000000..95bd3821f --- /dev/null +++ b/public/emoji/1f37d.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f37e.svg b/public/emoji/1f37e.svg new file mode 100644 index 000000000..24714015c --- /dev/null +++ b/public/emoji/1f37e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f37f.svg b/public/emoji/1f37f.svg new file mode 100644 index 000000000..74510dcbe --- /dev/null +++ b/public/emoji/1f37f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f380.svg b/public/emoji/1f380.svg new file mode 100644 index 000000000..12c535e99 --- /dev/null +++ b/public/emoji/1f380.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f381.svg b/public/emoji/1f381.svg new file mode 100644 index 000000000..bd62608c9 --- /dev/null +++ b/public/emoji/1f381.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f382.svg b/public/emoji/1f382.svg new file mode 100644 index 000000000..0bbef8ccc --- /dev/null +++ b/public/emoji/1f382.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f383.svg b/public/emoji/1f383.svg new file mode 100644 index 000000000..21144b72e --- /dev/null +++ b/public/emoji/1f383.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f384.svg b/public/emoji/1f384.svg new file mode 100644 index 000000000..27bbe5fc5 --- /dev/null +++ b/public/emoji/1f384.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f385-1f3fb.svg b/public/emoji/1f385-1f3fb.svg new file mode 100644 index 000000000..13c2657c3 --- /dev/null +++ b/public/emoji/1f385-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f385-1f3fc.svg b/public/emoji/1f385-1f3fc.svg new file mode 100644 index 000000000..408986531 --- /dev/null +++ b/public/emoji/1f385-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f385-1f3fd.svg b/public/emoji/1f385-1f3fd.svg new file mode 100644 index 000000000..9286b2f80 --- /dev/null +++ b/public/emoji/1f385-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f385-1f3fe.svg b/public/emoji/1f385-1f3fe.svg new file mode 100644 index 000000000..3745e8eef --- /dev/null +++ b/public/emoji/1f385-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f385-1f3ff.svg b/public/emoji/1f385-1f3ff.svg new file mode 100644 index 000000000..af8c96721 --- /dev/null +++ b/public/emoji/1f385-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f385.svg b/public/emoji/1f385.svg new file mode 100644 index 000000000..9f07458ba --- /dev/null +++ b/public/emoji/1f385.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f386.svg b/public/emoji/1f386.svg new file mode 100644 index 000000000..9b8995a4e --- /dev/null +++ b/public/emoji/1f386.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f387.svg b/public/emoji/1f387.svg new file mode 100644 index 000000000..201422523 --- /dev/null +++ b/public/emoji/1f387.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f388.svg b/public/emoji/1f388.svg new file mode 100644 index 000000000..d29c08e05 --- /dev/null +++ b/public/emoji/1f388.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f389.svg b/public/emoji/1f389.svg new file mode 100644 index 000000000..b0adb4c72 --- /dev/null +++ b/public/emoji/1f389.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f38a.svg b/public/emoji/1f38a.svg new file mode 100644 index 000000000..a29c16a78 --- /dev/null +++ b/public/emoji/1f38a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f38b.svg b/public/emoji/1f38b.svg new file mode 100644 index 000000000..ad576db71 --- /dev/null +++ b/public/emoji/1f38b.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f38c.svg b/public/emoji/1f38c.svg new file mode 100644 index 000000000..959e66865 --- /dev/null +++ b/public/emoji/1f38c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f38d.svg b/public/emoji/1f38d.svg new file mode 100644 index 000000000..952e4c4c6 --- /dev/null +++ b/public/emoji/1f38d.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f38e.svg b/public/emoji/1f38e.svg new file mode 100644 index 000000000..05628ca3a --- /dev/null +++ b/public/emoji/1f38e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f38f.svg b/public/emoji/1f38f.svg new file mode 100644 index 000000000..8f1261b6c --- /dev/null +++ b/public/emoji/1f38f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f390.svg b/public/emoji/1f390.svg new file mode 100644 index 000000000..6a2c3ac90 --- /dev/null +++ b/public/emoji/1f390.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f391.svg b/public/emoji/1f391.svg new file mode 100644 index 000000000..7a1e11428 --- /dev/null +++ b/public/emoji/1f391.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f392.svg b/public/emoji/1f392.svg new file mode 100644 index 000000000..812ae0409 --- /dev/null +++ b/public/emoji/1f392.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f393.svg b/public/emoji/1f393.svg new file mode 100644 index 000000000..743f8c1d9 --- /dev/null +++ b/public/emoji/1f393.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f396.svg b/public/emoji/1f396.svg new file mode 100644 index 000000000..316e3a49e --- /dev/null +++ b/public/emoji/1f396.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f397.svg b/public/emoji/1f397.svg new file mode 100644 index 000000000..11875061e --- /dev/null +++ b/public/emoji/1f397.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f399.svg b/public/emoji/1f399.svg new file mode 100644 index 000000000..44c4b3f0a --- /dev/null +++ b/public/emoji/1f399.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f39a.svg b/public/emoji/1f39a.svg new file mode 100644 index 000000000..426ccd12f --- /dev/null +++ b/public/emoji/1f39a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f39b.svg b/public/emoji/1f39b.svg new file mode 100644 index 000000000..54dda727d --- /dev/null +++ b/public/emoji/1f39b.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f39e.svg b/public/emoji/1f39e.svg new file mode 100644 index 000000000..1a65cc86e --- /dev/null +++ b/public/emoji/1f39e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f39f.svg b/public/emoji/1f39f.svg new file mode 100644 index 000000000..6e4c9b692 --- /dev/null +++ b/public/emoji/1f39f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3a0.svg b/public/emoji/1f3a0.svg new file mode 100644 index 000000000..1c1feb090 --- /dev/null +++ b/public/emoji/1f3a0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3a1.svg b/public/emoji/1f3a1.svg new file mode 100644 index 000000000..72c71cd42 --- /dev/null +++ b/public/emoji/1f3a1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3a2.svg b/public/emoji/1f3a2.svg new file mode 100644 index 000000000..e8efa01a2 --- /dev/null +++ b/public/emoji/1f3a2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3a3.svg b/public/emoji/1f3a3.svg new file mode 100644 index 000000000..daa26dc60 --- /dev/null +++ b/public/emoji/1f3a3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3a4.svg b/public/emoji/1f3a4.svg new file mode 100644 index 000000000..810538abd --- /dev/null +++ b/public/emoji/1f3a4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3a5.svg b/public/emoji/1f3a5.svg new file mode 100644 index 000000000..da84a9fc6 --- /dev/null +++ b/public/emoji/1f3a5.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3a6.svg b/public/emoji/1f3a6.svg new file mode 100644 index 000000000..1dca8b517 --- /dev/null +++ b/public/emoji/1f3a6.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3a7.svg b/public/emoji/1f3a7.svg new file mode 100644 index 000000000..15d028902 --- /dev/null +++ b/public/emoji/1f3a7.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3a8.svg b/public/emoji/1f3a8.svg new file mode 100644 index 000000000..c70f95ee6 --- /dev/null +++ b/public/emoji/1f3a8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3a9.svg b/public/emoji/1f3a9.svg new file mode 100644 index 000000000..d61f2f3d0 --- /dev/null +++ b/public/emoji/1f3a9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3aa.svg b/public/emoji/1f3aa.svg new file mode 100644 index 000000000..6d0fdff84 --- /dev/null +++ b/public/emoji/1f3aa.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3ab.svg b/public/emoji/1f3ab.svg new file mode 100644 index 000000000..4e2c9b8eb --- /dev/null +++ b/public/emoji/1f3ab.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3ac.svg b/public/emoji/1f3ac.svg new file mode 100644 index 000000000..7e70040c5 --- /dev/null +++ b/public/emoji/1f3ac.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3ad.svg b/public/emoji/1f3ad.svg new file mode 100644 index 000000000..f94769858 --- /dev/null +++ b/public/emoji/1f3ad.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3ae.svg b/public/emoji/1f3ae.svg new file mode 100644 index 000000000..534a483de --- /dev/null +++ b/public/emoji/1f3ae.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3af.svg b/public/emoji/1f3af.svg new file mode 100644 index 000000000..fe4adfa48 --- /dev/null +++ b/public/emoji/1f3af.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3b0.svg b/public/emoji/1f3b0.svg new file mode 100644 index 000000000..bf844ef63 --- /dev/null +++ b/public/emoji/1f3b0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3b1.svg b/public/emoji/1f3b1.svg new file mode 100644 index 000000000..c4dcbfe7f --- /dev/null +++ b/public/emoji/1f3b1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3b2.svg b/public/emoji/1f3b2.svg new file mode 100644 index 000000000..56434d024 --- /dev/null +++ b/public/emoji/1f3b2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3b3.svg b/public/emoji/1f3b3.svg new file mode 100644 index 000000000..3fe632fcb --- /dev/null +++ b/public/emoji/1f3b3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3b4.svg b/public/emoji/1f3b4.svg new file mode 100644 index 000000000..9618a3cb1 --- /dev/null +++ b/public/emoji/1f3b4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3b5.svg b/public/emoji/1f3b5.svg new file mode 100644 index 000000000..7ce21dd8d --- /dev/null +++ b/public/emoji/1f3b5.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3b6.svg b/public/emoji/1f3b6.svg new file mode 100644 index 000000000..9c0b8a81e --- /dev/null +++ b/public/emoji/1f3b6.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3b7.svg b/public/emoji/1f3b7.svg new file mode 100644 index 000000000..a3bf5ca27 --- /dev/null +++ b/public/emoji/1f3b7.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3b8.svg b/public/emoji/1f3b8.svg new file mode 100644 index 000000000..e31145b88 --- /dev/null +++ b/public/emoji/1f3b8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3b9.svg b/public/emoji/1f3b9.svg new file mode 100644 index 000000000..4605d3fbd --- /dev/null +++ b/public/emoji/1f3b9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3ba.svg b/public/emoji/1f3ba.svg new file mode 100644 index 000000000..248ae7d2a --- /dev/null +++ b/public/emoji/1f3ba.svg @@ -0,0 +1,2 @@ + \ No newline at end of file diff --git a/public/emoji/1f3bb.svg b/public/emoji/1f3bb.svg new file mode 100644 index 000000000..3e9cf6e76 --- /dev/null +++ b/public/emoji/1f3bb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3bc.svg b/public/emoji/1f3bc.svg new file mode 100644 index 000000000..c07402486 --- /dev/null +++ b/public/emoji/1f3bc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3bd.svg b/public/emoji/1f3bd.svg new file mode 100644 index 000000000..b612348f3 --- /dev/null +++ b/public/emoji/1f3bd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3be.svg b/public/emoji/1f3be.svg new file mode 100644 index 000000000..25ead517e --- /dev/null +++ b/public/emoji/1f3be.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3bf.svg b/public/emoji/1f3bf.svg new file mode 100644 index 000000000..c18b6706d --- /dev/null +++ b/public/emoji/1f3bf.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3c0.svg b/public/emoji/1f3c0.svg new file mode 100644 index 000000000..4c88cd07e --- /dev/null +++ b/public/emoji/1f3c0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3c1.svg b/public/emoji/1f3c1.svg new file mode 100644 index 000000000..a57b1b001 --- /dev/null +++ b/public/emoji/1f3c1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3c2.svg b/public/emoji/1f3c2.svg new file mode 100644 index 000000000..347e2d7f7 --- /dev/null +++ b/public/emoji/1f3c2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3c3-1f3fb.svg b/public/emoji/1f3c3-1f3fb.svg new file mode 100644 index 000000000..4b9b89b06 --- /dev/null +++ b/public/emoji/1f3c3-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3c3-1f3fc.svg b/public/emoji/1f3c3-1f3fc.svg new file mode 100644 index 000000000..fd2a61abd --- /dev/null +++ b/public/emoji/1f3c3-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3c3-1f3fd.svg b/public/emoji/1f3c3-1f3fd.svg new file mode 100644 index 000000000..6e8a3ba0d --- /dev/null +++ b/public/emoji/1f3c3-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3c3-1f3fe.svg b/public/emoji/1f3c3-1f3fe.svg new file mode 100644 index 000000000..819f33c33 --- /dev/null +++ b/public/emoji/1f3c3-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3c3-1f3ff.svg b/public/emoji/1f3c3-1f3ff.svg new file mode 100644 index 000000000..622c252e4 --- /dev/null +++ b/public/emoji/1f3c3-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3c3.svg b/public/emoji/1f3c3.svg new file mode 100644 index 000000000..e292a290c --- /dev/null +++ b/public/emoji/1f3c3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3c4-1f3fb.svg b/public/emoji/1f3c4-1f3fb.svg new file mode 100644 index 000000000..b76cc56bc --- /dev/null +++ b/public/emoji/1f3c4-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3c4-1f3fc.svg b/public/emoji/1f3c4-1f3fc.svg new file mode 100644 index 000000000..f595853c7 --- /dev/null +++ b/public/emoji/1f3c4-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3c4-1f3fd.svg b/public/emoji/1f3c4-1f3fd.svg new file mode 100644 index 000000000..5ddcf250f --- /dev/null +++ b/public/emoji/1f3c4-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3c4-1f3fe.svg b/public/emoji/1f3c4-1f3fe.svg new file mode 100644 index 000000000..bf0fa36f2 --- /dev/null +++ b/public/emoji/1f3c4-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3c4-1f3ff.svg b/public/emoji/1f3c4-1f3ff.svg new file mode 100644 index 000000000..294226da2 --- /dev/null +++ b/public/emoji/1f3c4-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3c4.svg b/public/emoji/1f3c4.svg new file mode 100644 index 000000000..53b845c63 --- /dev/null +++ b/public/emoji/1f3c4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3c5.svg b/public/emoji/1f3c5.svg new file mode 100644 index 000000000..4862d3c69 --- /dev/null +++ b/public/emoji/1f3c5.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3c6.svg b/public/emoji/1f3c6.svg new file mode 100644 index 000000000..025592e6d --- /dev/null +++ b/public/emoji/1f3c6.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3c7-1f3fb.svg b/public/emoji/1f3c7-1f3fb.svg new file mode 100644 index 000000000..308dd7abe --- /dev/null +++ b/public/emoji/1f3c7-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3c7-1f3fc.svg b/public/emoji/1f3c7-1f3fc.svg new file mode 100644 index 000000000..f841b3e2d --- /dev/null +++ b/public/emoji/1f3c7-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3c7-1f3fd.svg b/public/emoji/1f3c7-1f3fd.svg new file mode 100644 index 000000000..ca972a62f --- /dev/null +++ b/public/emoji/1f3c7-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3c7-1f3fe.svg b/public/emoji/1f3c7-1f3fe.svg new file mode 100644 index 000000000..c8f385084 --- /dev/null +++ b/public/emoji/1f3c7-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3c7-1f3ff.svg b/public/emoji/1f3c7-1f3ff.svg new file mode 100644 index 000000000..1ee4554df --- /dev/null +++ b/public/emoji/1f3c7-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3c7.svg b/public/emoji/1f3c7.svg new file mode 100644 index 000000000..f790b6885 --- /dev/null +++ b/public/emoji/1f3c7.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3c8.svg b/public/emoji/1f3c8.svg new file mode 100644 index 000000000..85ecdbf9c --- /dev/null +++ b/public/emoji/1f3c8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3c9.svg b/public/emoji/1f3c9.svg new file mode 100644 index 000000000..dca5f0493 --- /dev/null +++ b/public/emoji/1f3c9.svg @@ -0,0 +1,2 @@ + \ No newline at end of file diff --git a/public/emoji/1f3ca-1f3fb.svg b/public/emoji/1f3ca-1f3fb.svg new file mode 100644 index 000000000..8484a5304 --- /dev/null +++ b/public/emoji/1f3ca-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3ca-1f3fc.svg b/public/emoji/1f3ca-1f3fc.svg new file mode 100644 index 000000000..456bee3b3 --- /dev/null +++ b/public/emoji/1f3ca-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3ca-1f3fd.svg b/public/emoji/1f3ca-1f3fd.svg new file mode 100644 index 000000000..57e064224 --- /dev/null +++ b/public/emoji/1f3ca-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3ca-1f3fe.svg b/public/emoji/1f3ca-1f3fe.svg new file mode 100644 index 000000000..12d607b4b --- /dev/null +++ b/public/emoji/1f3ca-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3ca-1f3ff.svg b/public/emoji/1f3ca-1f3ff.svg new file mode 100644 index 000000000..99fe3f240 --- /dev/null +++ b/public/emoji/1f3ca-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3ca.svg b/public/emoji/1f3ca.svg new file mode 100644 index 000000000..5b62b5cc7 --- /dev/null +++ b/public/emoji/1f3ca.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3cb-1f3fb.svg b/public/emoji/1f3cb-1f3fb.svg new file mode 100644 index 000000000..1d993f5b3 --- /dev/null +++ b/public/emoji/1f3cb-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3cb-1f3fc.svg b/public/emoji/1f3cb-1f3fc.svg new file mode 100644 index 000000000..4b386c011 --- /dev/null +++ b/public/emoji/1f3cb-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3cb-1f3fd.svg b/public/emoji/1f3cb-1f3fd.svg new file mode 100644 index 000000000..06778330e --- /dev/null +++ b/public/emoji/1f3cb-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3cb-1f3fe.svg b/public/emoji/1f3cb-1f3fe.svg new file mode 100644 index 000000000..7df96c44d --- /dev/null +++ b/public/emoji/1f3cb-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3cb-1f3ff.svg b/public/emoji/1f3cb-1f3ff.svg new file mode 100644 index 000000000..252bf0e4a --- /dev/null +++ b/public/emoji/1f3cb-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3cb.svg b/public/emoji/1f3cb.svg new file mode 100644 index 000000000..606b0076b --- /dev/null +++ b/public/emoji/1f3cb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3cc.svg b/public/emoji/1f3cc.svg new file mode 100644 index 000000000..25cce198a --- /dev/null +++ b/public/emoji/1f3cc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3cd.svg b/public/emoji/1f3cd.svg new file mode 100644 index 000000000..ea58df55b --- /dev/null +++ b/public/emoji/1f3cd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3ce.svg b/public/emoji/1f3ce.svg new file mode 100644 index 000000000..f6bb1d8f9 --- /dev/null +++ b/public/emoji/1f3ce.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3cf.svg b/public/emoji/1f3cf.svg new file mode 100644 index 000000000..1723dfe48 --- /dev/null +++ b/public/emoji/1f3cf.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3d0.svg b/public/emoji/1f3d0.svg new file mode 100644 index 000000000..bf0a61323 --- /dev/null +++ b/public/emoji/1f3d0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3d1.svg b/public/emoji/1f3d1.svg new file mode 100644 index 000000000..22278e575 --- /dev/null +++ b/public/emoji/1f3d1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3d2.svg b/public/emoji/1f3d2.svg new file mode 100644 index 000000000..84c1cd509 --- /dev/null +++ b/public/emoji/1f3d2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3d3.svg b/public/emoji/1f3d3.svg new file mode 100644 index 000000000..f7ecc8461 --- /dev/null +++ b/public/emoji/1f3d3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3d4.svg b/public/emoji/1f3d4.svg new file mode 100644 index 000000000..fad85a34e --- /dev/null +++ b/public/emoji/1f3d4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3d5.svg b/public/emoji/1f3d5.svg new file mode 100644 index 000000000..166f1a74f --- /dev/null +++ b/public/emoji/1f3d5.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3d6.svg b/public/emoji/1f3d6.svg new file mode 100644 index 000000000..7aa2ca8b9 --- /dev/null +++ b/public/emoji/1f3d6.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3d7.svg b/public/emoji/1f3d7.svg new file mode 100644 index 000000000..a29f1db27 --- /dev/null +++ b/public/emoji/1f3d7.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3d8.svg b/public/emoji/1f3d8.svg new file mode 100644 index 000000000..ba838e874 --- /dev/null +++ b/public/emoji/1f3d8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3d9.svg b/public/emoji/1f3d9.svg new file mode 100644 index 000000000..3deabda45 --- /dev/null +++ b/public/emoji/1f3d9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3da.svg b/public/emoji/1f3da.svg new file mode 100644 index 000000000..bf6c30621 --- /dev/null +++ b/public/emoji/1f3da.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3db.svg b/public/emoji/1f3db.svg new file mode 100644 index 000000000..501ea5c8b --- /dev/null +++ b/public/emoji/1f3db.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3dc.svg b/public/emoji/1f3dc.svg new file mode 100644 index 000000000..f95f15ea7 --- /dev/null +++ b/public/emoji/1f3dc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3dd.svg b/public/emoji/1f3dd.svg new file mode 100644 index 000000000..c9bf17012 --- /dev/null +++ b/public/emoji/1f3dd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3de.svg b/public/emoji/1f3de.svg new file mode 100644 index 000000000..c3c729a29 --- /dev/null +++ b/public/emoji/1f3de.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3df.svg b/public/emoji/1f3df.svg new file mode 100644 index 000000000..579a72025 --- /dev/null +++ b/public/emoji/1f3df.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3e0.svg b/public/emoji/1f3e0.svg new file mode 100644 index 000000000..5edbccef4 --- /dev/null +++ b/public/emoji/1f3e0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3e1.svg b/public/emoji/1f3e1.svg new file mode 100644 index 000000000..8c1751eef --- /dev/null +++ b/public/emoji/1f3e1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3e2.svg b/public/emoji/1f3e2.svg new file mode 100644 index 000000000..0f38711e0 --- /dev/null +++ b/public/emoji/1f3e2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3e3.svg b/public/emoji/1f3e3.svg new file mode 100644 index 000000000..db2004f55 --- /dev/null +++ b/public/emoji/1f3e3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3e4.svg b/public/emoji/1f3e4.svg new file mode 100644 index 000000000..8359ad4f1 --- /dev/null +++ b/public/emoji/1f3e4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3e5.svg b/public/emoji/1f3e5.svg new file mode 100644 index 000000000..448460d26 --- /dev/null +++ b/public/emoji/1f3e5.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3e6.svg b/public/emoji/1f3e6.svg new file mode 100644 index 000000000..dee2c6fa7 --- /dev/null +++ b/public/emoji/1f3e6.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3e7.svg b/public/emoji/1f3e7.svg new file mode 100644 index 000000000..770f01959 --- /dev/null +++ b/public/emoji/1f3e7.svg @@ -0,0 +1,3 @@ + \ No newline at end of file diff --git a/public/emoji/1f3e8.svg b/public/emoji/1f3e8.svg new file mode 100644 index 000000000..6aaa75988 --- /dev/null +++ b/public/emoji/1f3e8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3e9.svg b/public/emoji/1f3e9.svg new file mode 100644 index 000000000..5842ed57f --- /dev/null +++ b/public/emoji/1f3e9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3ea.svg b/public/emoji/1f3ea.svg new file mode 100644 index 000000000..c423a1ef7 --- /dev/null +++ b/public/emoji/1f3ea.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3eb.svg b/public/emoji/1f3eb.svg new file mode 100644 index 000000000..67a04c921 --- /dev/null +++ b/public/emoji/1f3eb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3ec.svg b/public/emoji/1f3ec.svg new file mode 100644 index 000000000..d39eedf56 --- /dev/null +++ b/public/emoji/1f3ec.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3ed.svg b/public/emoji/1f3ed.svg new file mode 100644 index 000000000..43aaa5a07 --- /dev/null +++ b/public/emoji/1f3ed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3ee.svg b/public/emoji/1f3ee.svg new file mode 100644 index 000000000..664a33340 --- /dev/null +++ b/public/emoji/1f3ee.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3ef.svg b/public/emoji/1f3ef.svg new file mode 100644 index 000000000..f4ba33581 --- /dev/null +++ b/public/emoji/1f3ef.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3f0.svg b/public/emoji/1f3f0.svg new file mode 100644 index 000000000..b0b4b12cc --- /dev/null +++ b/public/emoji/1f3f0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3f3-1f308.svg b/public/emoji/1f3f3-1f308.svg new file mode 100644 index 000000000..e082546b2 --- /dev/null +++ b/public/emoji/1f3f3-1f308.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3f3.svg b/public/emoji/1f3f3.svg new file mode 100644 index 000000000..d1421b827 --- /dev/null +++ b/public/emoji/1f3f3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3f4.svg b/public/emoji/1f3f4.svg new file mode 100644 index 000000000..0e6202dc1 --- /dev/null +++ b/public/emoji/1f3f4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3f5.svg b/public/emoji/1f3f5.svg new file mode 100644 index 000000000..b6576ae99 --- /dev/null +++ b/public/emoji/1f3f5.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3f7.svg b/public/emoji/1f3f7.svg new file mode 100644 index 000000000..372a35f5e --- /dev/null +++ b/public/emoji/1f3f7.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3f8.svg b/public/emoji/1f3f8.svg new file mode 100644 index 000000000..c9e2b401e --- /dev/null +++ b/public/emoji/1f3f8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3f9.svg b/public/emoji/1f3f9.svg new file mode 100644 index 000000000..e73e45cc3 --- /dev/null +++ b/public/emoji/1f3f9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3fa.svg b/public/emoji/1f3fa.svg new file mode 100644 index 000000000..bf02dbdda --- /dev/null +++ b/public/emoji/1f3fa.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3fb.svg b/public/emoji/1f3fb.svg new file mode 100644 index 000000000..95d9113d7 --- /dev/null +++ b/public/emoji/1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3fc.svg b/public/emoji/1f3fc.svg new file mode 100644 index 000000000..98674ab9a --- /dev/null +++ b/public/emoji/1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3fd.svg b/public/emoji/1f3fd.svg new file mode 100644 index 000000000..3216c0c48 --- /dev/null +++ b/public/emoji/1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3fe.svg b/public/emoji/1f3fe.svg new file mode 100644 index 000000000..f4e86c336 --- /dev/null +++ b/public/emoji/1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f3ff.svg b/public/emoji/1f3ff.svg new file mode 100644 index 000000000..b99182a77 --- /dev/null +++ b/public/emoji/1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f400.svg b/public/emoji/1f400.svg new file mode 100644 index 000000000..8dcadea17 --- /dev/null +++ b/public/emoji/1f400.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f401.svg b/public/emoji/1f401.svg new file mode 100644 index 000000000..944b4a2e5 --- /dev/null +++ b/public/emoji/1f401.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f402.svg b/public/emoji/1f402.svg new file mode 100644 index 000000000..491e8d181 --- /dev/null +++ b/public/emoji/1f402.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f403.svg b/public/emoji/1f403.svg new file mode 100644 index 000000000..96982688c --- /dev/null +++ b/public/emoji/1f403.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f404.svg b/public/emoji/1f404.svg new file mode 100644 index 000000000..1bf172871 --- /dev/null +++ b/public/emoji/1f404.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f405.svg b/public/emoji/1f405.svg new file mode 100644 index 000000000..27db054c5 --- /dev/null +++ b/public/emoji/1f405.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f406.svg b/public/emoji/1f406.svg new file mode 100644 index 000000000..7093fe41f --- /dev/null +++ b/public/emoji/1f406.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f407.svg b/public/emoji/1f407.svg new file mode 100644 index 000000000..f673e966d --- /dev/null +++ b/public/emoji/1f407.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f408.svg b/public/emoji/1f408.svg new file mode 100644 index 000000000..4eadb2c41 --- /dev/null +++ b/public/emoji/1f408.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f409.svg b/public/emoji/1f409.svg new file mode 100644 index 000000000..aaf9cd252 --- /dev/null +++ b/public/emoji/1f409.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f40a.svg b/public/emoji/1f40a.svg new file mode 100644 index 000000000..d5dd7c6ab --- /dev/null +++ b/public/emoji/1f40a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f40b.svg b/public/emoji/1f40b.svg new file mode 100644 index 000000000..31bb7393f --- /dev/null +++ b/public/emoji/1f40b.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f40c.svg b/public/emoji/1f40c.svg new file mode 100644 index 000000000..b4204fae0 --- /dev/null +++ b/public/emoji/1f40c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f40d.svg b/public/emoji/1f40d.svg new file mode 100644 index 000000000..6ad56b8d9 --- /dev/null +++ b/public/emoji/1f40d.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f40e.svg b/public/emoji/1f40e.svg new file mode 100644 index 000000000..b7ba4df3f --- /dev/null +++ b/public/emoji/1f40e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f40f.svg b/public/emoji/1f40f.svg new file mode 100644 index 000000000..2cf3e5715 --- /dev/null +++ b/public/emoji/1f40f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f410.svg b/public/emoji/1f410.svg new file mode 100644 index 000000000..445e63f8c --- /dev/null +++ b/public/emoji/1f410.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f411.svg b/public/emoji/1f411.svg new file mode 100644 index 000000000..19d8b9e77 --- /dev/null +++ b/public/emoji/1f411.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f412.svg b/public/emoji/1f412.svg new file mode 100644 index 000000000..713e48da8 --- /dev/null +++ b/public/emoji/1f412.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f413.svg b/public/emoji/1f413.svg new file mode 100644 index 000000000..349de8552 --- /dev/null +++ b/public/emoji/1f413.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f414.svg b/public/emoji/1f414.svg new file mode 100644 index 000000000..34dfab577 --- /dev/null +++ b/public/emoji/1f414.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f415.svg b/public/emoji/1f415.svg new file mode 100644 index 000000000..7fded5c11 --- /dev/null +++ b/public/emoji/1f415.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f416.svg b/public/emoji/1f416.svg new file mode 100644 index 000000000..a3f0422a5 --- /dev/null +++ b/public/emoji/1f416.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f417.svg b/public/emoji/1f417.svg new file mode 100644 index 000000000..d134de16a --- /dev/null +++ b/public/emoji/1f417.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f418.svg b/public/emoji/1f418.svg new file mode 100644 index 000000000..80479aa3d --- /dev/null +++ b/public/emoji/1f418.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f419.svg b/public/emoji/1f419.svg new file mode 100644 index 000000000..fa59238e2 --- /dev/null +++ b/public/emoji/1f419.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f41a.svg b/public/emoji/1f41a.svg new file mode 100644 index 000000000..fb691d49b --- /dev/null +++ b/public/emoji/1f41a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f41b.svg b/public/emoji/1f41b.svg new file mode 100644 index 000000000..64bcedb14 --- /dev/null +++ b/public/emoji/1f41b.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f41c.svg b/public/emoji/1f41c.svg new file mode 100644 index 000000000..2f90d0615 --- /dev/null +++ b/public/emoji/1f41c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f41d.svg b/public/emoji/1f41d.svg new file mode 100644 index 000000000..eb1819b07 --- /dev/null +++ b/public/emoji/1f41d.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f41e.svg b/public/emoji/1f41e.svg new file mode 100644 index 000000000..0cbee7332 --- /dev/null +++ b/public/emoji/1f41e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f41f.svg b/public/emoji/1f41f.svg new file mode 100644 index 000000000..d4ddc1a59 --- /dev/null +++ b/public/emoji/1f41f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f420.svg b/public/emoji/1f420.svg new file mode 100644 index 000000000..339bfce51 --- /dev/null +++ b/public/emoji/1f420.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f421.svg b/public/emoji/1f421.svg new file mode 100644 index 000000000..51e96024a --- /dev/null +++ b/public/emoji/1f421.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f422.svg b/public/emoji/1f422.svg new file mode 100644 index 000000000..48be9dc54 --- /dev/null +++ b/public/emoji/1f422.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f423.svg b/public/emoji/1f423.svg new file mode 100644 index 000000000..7d8abff5f --- /dev/null +++ b/public/emoji/1f423.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f424.svg b/public/emoji/1f424.svg new file mode 100644 index 000000000..f9269d148 --- /dev/null +++ b/public/emoji/1f424.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f425.svg b/public/emoji/1f425.svg new file mode 100644 index 000000000..fabfbf927 --- /dev/null +++ b/public/emoji/1f425.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f426.svg b/public/emoji/1f426.svg new file mode 100644 index 000000000..225d76777 --- /dev/null +++ b/public/emoji/1f426.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f427.svg b/public/emoji/1f427.svg new file mode 100644 index 000000000..ce85cadf2 --- /dev/null +++ b/public/emoji/1f427.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f428.svg b/public/emoji/1f428.svg new file mode 100644 index 000000000..88832b702 --- /dev/null +++ b/public/emoji/1f428.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f429.svg b/public/emoji/1f429.svg new file mode 100644 index 000000000..7b56afe0d --- /dev/null +++ b/public/emoji/1f429.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f42a.svg b/public/emoji/1f42a.svg new file mode 100644 index 000000000..63e30c13a --- /dev/null +++ b/public/emoji/1f42a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f42b.svg b/public/emoji/1f42b.svg new file mode 100644 index 000000000..fbd4b0e1b --- /dev/null +++ b/public/emoji/1f42b.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f42c.svg b/public/emoji/1f42c.svg new file mode 100644 index 000000000..abd84802e --- /dev/null +++ b/public/emoji/1f42c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f42d.svg b/public/emoji/1f42d.svg new file mode 100644 index 000000000..0b215006d --- /dev/null +++ b/public/emoji/1f42d.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f42e.svg b/public/emoji/1f42e.svg new file mode 100644 index 000000000..f6d7c9a04 --- /dev/null +++ b/public/emoji/1f42e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f42f.svg b/public/emoji/1f42f.svg new file mode 100644 index 000000000..834981944 --- /dev/null +++ b/public/emoji/1f42f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f430.svg b/public/emoji/1f430.svg new file mode 100644 index 000000000..ec8d17c08 --- /dev/null +++ b/public/emoji/1f430.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f431.svg b/public/emoji/1f431.svg new file mode 100644 index 000000000..bacd52c38 --- /dev/null +++ b/public/emoji/1f431.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f432.svg b/public/emoji/1f432.svg new file mode 100644 index 000000000..b4b366909 --- /dev/null +++ b/public/emoji/1f432.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f433.svg b/public/emoji/1f433.svg new file mode 100644 index 000000000..dc6f7f1ec --- /dev/null +++ b/public/emoji/1f433.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f434.svg b/public/emoji/1f434.svg new file mode 100644 index 000000000..593514930 --- /dev/null +++ b/public/emoji/1f434.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f435.svg b/public/emoji/1f435.svg new file mode 100644 index 000000000..5e796ada8 --- /dev/null +++ b/public/emoji/1f435.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f436.svg b/public/emoji/1f436.svg new file mode 100644 index 000000000..b6af6c613 --- /dev/null +++ b/public/emoji/1f436.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f437.svg b/public/emoji/1f437.svg new file mode 100644 index 000000000..30d534b08 --- /dev/null +++ b/public/emoji/1f437.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f438.svg b/public/emoji/1f438.svg new file mode 100644 index 000000000..a45c14aaa --- /dev/null +++ b/public/emoji/1f438.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f439.svg b/public/emoji/1f439.svg new file mode 100644 index 000000000..4027ed9b5 --- /dev/null +++ b/public/emoji/1f439.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f43a.svg b/public/emoji/1f43a.svg new file mode 100644 index 000000000..7b2fd5751 --- /dev/null +++ b/public/emoji/1f43a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f43b.svg b/public/emoji/1f43b.svg new file mode 100644 index 000000000..681e20a57 --- /dev/null +++ b/public/emoji/1f43b.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f43c.svg b/public/emoji/1f43c.svg new file mode 100644 index 000000000..247aacc06 --- /dev/null +++ b/public/emoji/1f43c.svg @@ -0,0 +1,2 @@ + \ No newline at end of file diff --git a/public/emoji/1f43d.svg b/public/emoji/1f43d.svg new file mode 100644 index 000000000..6014a8b70 --- /dev/null +++ b/public/emoji/1f43d.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f43e.svg b/public/emoji/1f43e.svg new file mode 100644 index 000000000..c6b2b83af --- /dev/null +++ b/public/emoji/1f43e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f43f.svg b/public/emoji/1f43f.svg new file mode 100644 index 000000000..243ee8944 --- /dev/null +++ b/public/emoji/1f43f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f440.svg b/public/emoji/1f440.svg new file mode 100644 index 000000000..8caf9aafe --- /dev/null +++ b/public/emoji/1f440.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f441-1f5e8.svg b/public/emoji/1f441-1f5e8.svg new file mode 100644 index 000000000..facc5a21a --- /dev/null +++ b/public/emoji/1f441-1f5e8.svg @@ -0,0 +1,2 @@ + \ No newline at end of file diff --git a/public/emoji/1f441.svg b/public/emoji/1f441.svg new file mode 100644 index 000000000..3ce3327d1 --- /dev/null +++ b/public/emoji/1f441.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f442-1f3fb.svg b/public/emoji/1f442-1f3fb.svg new file mode 100644 index 000000000..e203744ea --- /dev/null +++ b/public/emoji/1f442-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f442-1f3fc.svg b/public/emoji/1f442-1f3fc.svg new file mode 100644 index 000000000..e9b24783b --- /dev/null +++ b/public/emoji/1f442-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f442-1f3fd.svg b/public/emoji/1f442-1f3fd.svg new file mode 100644 index 000000000..717877f31 --- /dev/null +++ b/public/emoji/1f442-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f442-1f3fe.svg b/public/emoji/1f442-1f3fe.svg new file mode 100644 index 000000000..aaf77d80b --- /dev/null +++ b/public/emoji/1f442-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f442-1f3ff.svg b/public/emoji/1f442-1f3ff.svg new file mode 100644 index 000000000..c8f653bba --- /dev/null +++ b/public/emoji/1f442-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f442.svg b/public/emoji/1f442.svg new file mode 100644 index 000000000..3063df796 --- /dev/null +++ b/public/emoji/1f442.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f443-1f3fb.svg b/public/emoji/1f443-1f3fb.svg new file mode 100644 index 000000000..db943dbf4 --- /dev/null +++ b/public/emoji/1f443-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f443-1f3fc.svg b/public/emoji/1f443-1f3fc.svg new file mode 100644 index 000000000..e909c446d --- /dev/null +++ b/public/emoji/1f443-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f443-1f3fd.svg b/public/emoji/1f443-1f3fd.svg new file mode 100644 index 000000000..61fe53769 --- /dev/null +++ b/public/emoji/1f443-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f443-1f3fe.svg b/public/emoji/1f443-1f3fe.svg new file mode 100644 index 000000000..4b9d46616 --- /dev/null +++ b/public/emoji/1f443-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f443-1f3ff.svg b/public/emoji/1f443-1f3ff.svg new file mode 100644 index 000000000..a1daed04f --- /dev/null +++ b/public/emoji/1f443-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f443.svg b/public/emoji/1f443.svg new file mode 100644 index 000000000..6f1613804 --- /dev/null +++ b/public/emoji/1f443.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f444.svg b/public/emoji/1f444.svg new file mode 100644 index 000000000..1bdb5440f --- /dev/null +++ b/public/emoji/1f444.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f445.svg b/public/emoji/1f445.svg new file mode 100644 index 000000000..8a5af77fa --- /dev/null +++ b/public/emoji/1f445.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f446-1f3fb.svg b/public/emoji/1f446-1f3fb.svg new file mode 100644 index 000000000..0b774dd4d --- /dev/null +++ b/public/emoji/1f446-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f446-1f3fc.svg b/public/emoji/1f446-1f3fc.svg new file mode 100644 index 000000000..8931e2428 --- /dev/null +++ b/public/emoji/1f446-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f446-1f3fd.svg b/public/emoji/1f446-1f3fd.svg new file mode 100644 index 000000000..1bf90d520 --- /dev/null +++ b/public/emoji/1f446-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f446-1f3fe.svg b/public/emoji/1f446-1f3fe.svg new file mode 100644 index 000000000..cfeb3e0a5 --- /dev/null +++ b/public/emoji/1f446-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f446-1f3ff.svg b/public/emoji/1f446-1f3ff.svg new file mode 100644 index 000000000..845edc330 --- /dev/null +++ b/public/emoji/1f446-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f446.svg b/public/emoji/1f446.svg new file mode 100644 index 000000000..fc4d2b1fd --- /dev/null +++ b/public/emoji/1f446.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f447-1f3fb.svg b/public/emoji/1f447-1f3fb.svg new file mode 100644 index 000000000..b6d347e66 --- /dev/null +++ b/public/emoji/1f447-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f447-1f3fc.svg b/public/emoji/1f447-1f3fc.svg new file mode 100644 index 000000000..cd98682fb --- /dev/null +++ b/public/emoji/1f447-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f447-1f3fd.svg b/public/emoji/1f447-1f3fd.svg new file mode 100644 index 000000000..a63fe5741 --- /dev/null +++ b/public/emoji/1f447-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f447-1f3fe.svg b/public/emoji/1f447-1f3fe.svg new file mode 100644 index 000000000..cdb5c4a81 --- /dev/null +++ b/public/emoji/1f447-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f447-1f3ff.svg b/public/emoji/1f447-1f3ff.svg new file mode 100644 index 000000000..62fa98410 --- /dev/null +++ b/public/emoji/1f447-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f447.svg b/public/emoji/1f447.svg new file mode 100644 index 000000000..25b2490a2 --- /dev/null +++ b/public/emoji/1f447.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f448-1f3fb.svg b/public/emoji/1f448-1f3fb.svg new file mode 100644 index 000000000..16ef6409e --- /dev/null +++ b/public/emoji/1f448-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f448-1f3fc.svg b/public/emoji/1f448-1f3fc.svg new file mode 100644 index 000000000..e37282ab8 --- /dev/null +++ b/public/emoji/1f448-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f448-1f3fd.svg b/public/emoji/1f448-1f3fd.svg new file mode 100644 index 000000000..09d730d4f --- /dev/null +++ b/public/emoji/1f448-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f448-1f3fe.svg b/public/emoji/1f448-1f3fe.svg new file mode 100644 index 000000000..07f16f2e9 --- /dev/null +++ b/public/emoji/1f448-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f448-1f3ff.svg b/public/emoji/1f448-1f3ff.svg new file mode 100644 index 000000000..a382bfd7b --- /dev/null +++ b/public/emoji/1f448-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f448.svg b/public/emoji/1f448.svg new file mode 100644 index 000000000..63e25672e --- /dev/null +++ b/public/emoji/1f448.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f449-1f3fb.svg b/public/emoji/1f449-1f3fb.svg new file mode 100644 index 000000000..150e78be9 --- /dev/null +++ b/public/emoji/1f449-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f449-1f3fc.svg b/public/emoji/1f449-1f3fc.svg new file mode 100644 index 000000000..d30c03fe1 --- /dev/null +++ b/public/emoji/1f449-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f449-1f3fd.svg b/public/emoji/1f449-1f3fd.svg new file mode 100644 index 000000000..421e7e5af --- /dev/null +++ b/public/emoji/1f449-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f449-1f3fe.svg b/public/emoji/1f449-1f3fe.svg new file mode 100644 index 000000000..43db2b7b2 --- /dev/null +++ b/public/emoji/1f449-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f449-1f3ff.svg b/public/emoji/1f449-1f3ff.svg new file mode 100644 index 000000000..c3fde3f9d --- /dev/null +++ b/public/emoji/1f449-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f449.svg b/public/emoji/1f449.svg new file mode 100644 index 000000000..815e08efb --- /dev/null +++ b/public/emoji/1f449.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f44a-1f3fb.svg b/public/emoji/1f44a-1f3fb.svg new file mode 100644 index 000000000..6b68ade7e --- /dev/null +++ b/public/emoji/1f44a-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f44a-1f3fc.svg b/public/emoji/1f44a-1f3fc.svg new file mode 100644 index 000000000..7bb10f2fa --- /dev/null +++ b/public/emoji/1f44a-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f44a-1f3fd.svg b/public/emoji/1f44a-1f3fd.svg new file mode 100644 index 000000000..1543e53a8 --- /dev/null +++ b/public/emoji/1f44a-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f44a-1f3fe.svg b/public/emoji/1f44a-1f3fe.svg new file mode 100644 index 000000000..6485deb72 --- /dev/null +++ b/public/emoji/1f44a-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f44a-1f3ff.svg b/public/emoji/1f44a-1f3ff.svg new file mode 100644 index 000000000..2eded3072 --- /dev/null +++ b/public/emoji/1f44a-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f44a.svg b/public/emoji/1f44a.svg new file mode 100644 index 000000000..20b808db5 --- /dev/null +++ b/public/emoji/1f44a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f44b-1f3fb.svg b/public/emoji/1f44b-1f3fb.svg new file mode 100644 index 000000000..981d4d474 --- /dev/null +++ b/public/emoji/1f44b-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f44b-1f3fc.svg b/public/emoji/1f44b-1f3fc.svg new file mode 100644 index 000000000..0e3fb5f89 --- /dev/null +++ b/public/emoji/1f44b-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f44b-1f3fd.svg b/public/emoji/1f44b-1f3fd.svg new file mode 100644 index 000000000..801f13f4d --- /dev/null +++ b/public/emoji/1f44b-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f44b-1f3fe.svg b/public/emoji/1f44b-1f3fe.svg new file mode 100644 index 000000000..687ff445f --- /dev/null +++ b/public/emoji/1f44b-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f44b-1f3ff.svg b/public/emoji/1f44b-1f3ff.svg new file mode 100644 index 000000000..68636c28d --- /dev/null +++ b/public/emoji/1f44b-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f44b.svg b/public/emoji/1f44b.svg new file mode 100644 index 000000000..2118c9b43 --- /dev/null +++ b/public/emoji/1f44b.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f44c-1f3fb.svg b/public/emoji/1f44c-1f3fb.svg new file mode 100644 index 000000000..988b464e5 --- /dev/null +++ b/public/emoji/1f44c-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f44c-1f3fc.svg b/public/emoji/1f44c-1f3fc.svg new file mode 100644 index 000000000..c03cb353f --- /dev/null +++ b/public/emoji/1f44c-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f44c-1f3fd.svg b/public/emoji/1f44c-1f3fd.svg new file mode 100644 index 000000000..e6d0d5475 --- /dev/null +++ b/public/emoji/1f44c-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f44c-1f3fe.svg b/public/emoji/1f44c-1f3fe.svg new file mode 100644 index 000000000..c28d64a33 --- /dev/null +++ b/public/emoji/1f44c-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f44c-1f3ff.svg b/public/emoji/1f44c-1f3ff.svg new file mode 100644 index 000000000..6d2a3a437 --- /dev/null +++ b/public/emoji/1f44c-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f44c.svg b/public/emoji/1f44c.svg new file mode 100644 index 000000000..bb3a06657 --- /dev/null +++ b/public/emoji/1f44c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f44d-1f3fb.svg b/public/emoji/1f44d-1f3fb.svg new file mode 100644 index 000000000..c50c59f9f --- /dev/null +++ b/public/emoji/1f44d-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f44d-1f3fc.svg b/public/emoji/1f44d-1f3fc.svg new file mode 100644 index 000000000..54d7d6a19 --- /dev/null +++ b/public/emoji/1f44d-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f44d-1f3fd.svg b/public/emoji/1f44d-1f3fd.svg new file mode 100644 index 000000000..1fc72ebe9 --- /dev/null +++ b/public/emoji/1f44d-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f44d-1f3fe.svg b/public/emoji/1f44d-1f3fe.svg new file mode 100644 index 000000000..4db4b58ef --- /dev/null +++ b/public/emoji/1f44d-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f44d-1f3ff.svg b/public/emoji/1f44d-1f3ff.svg new file mode 100644 index 000000000..e64edfb13 --- /dev/null +++ b/public/emoji/1f44d-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f44d.svg b/public/emoji/1f44d.svg new file mode 100644 index 000000000..100df6707 --- /dev/null +++ b/public/emoji/1f44d.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f44e-1f3fb.svg b/public/emoji/1f44e-1f3fb.svg new file mode 100644 index 000000000..298cda369 --- /dev/null +++ b/public/emoji/1f44e-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f44e-1f3fc.svg b/public/emoji/1f44e-1f3fc.svg new file mode 100644 index 000000000..79398ad09 --- /dev/null +++ b/public/emoji/1f44e-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f44e-1f3fd.svg b/public/emoji/1f44e-1f3fd.svg new file mode 100644 index 000000000..e0bf3be99 --- /dev/null +++ b/public/emoji/1f44e-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f44e-1f3fe.svg b/public/emoji/1f44e-1f3fe.svg new file mode 100644 index 000000000..17fa30cea --- /dev/null +++ b/public/emoji/1f44e-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f44e-1f3ff.svg b/public/emoji/1f44e-1f3ff.svg new file mode 100644 index 000000000..c58da806f --- /dev/null +++ b/public/emoji/1f44e-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f44e.svg b/public/emoji/1f44e.svg new file mode 100644 index 000000000..cd5ce20ee --- /dev/null +++ b/public/emoji/1f44e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f44f-1f3fb.svg b/public/emoji/1f44f-1f3fb.svg new file mode 100644 index 000000000..4728186ef --- /dev/null +++ b/public/emoji/1f44f-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f44f-1f3fc.svg b/public/emoji/1f44f-1f3fc.svg new file mode 100644 index 000000000..ffb3d7e71 --- /dev/null +++ b/public/emoji/1f44f-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f44f-1f3fd.svg b/public/emoji/1f44f-1f3fd.svg new file mode 100644 index 000000000..138e7bde1 --- /dev/null +++ b/public/emoji/1f44f-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f44f-1f3fe.svg b/public/emoji/1f44f-1f3fe.svg new file mode 100644 index 000000000..56107c433 --- /dev/null +++ b/public/emoji/1f44f-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f44f-1f3ff.svg b/public/emoji/1f44f-1f3ff.svg new file mode 100644 index 000000000..d4361ab36 --- /dev/null +++ b/public/emoji/1f44f-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f44f.svg b/public/emoji/1f44f.svg new file mode 100644 index 000000000..c611e5d3b --- /dev/null +++ b/public/emoji/1f44f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f450-1f3fb.svg b/public/emoji/1f450-1f3fb.svg new file mode 100644 index 000000000..3da933cf3 --- /dev/null +++ b/public/emoji/1f450-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f450-1f3fc.svg b/public/emoji/1f450-1f3fc.svg new file mode 100644 index 000000000..4463814f0 --- /dev/null +++ b/public/emoji/1f450-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f450-1f3fd.svg b/public/emoji/1f450-1f3fd.svg new file mode 100644 index 000000000..715fb59fc --- /dev/null +++ b/public/emoji/1f450-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f450-1f3fe.svg b/public/emoji/1f450-1f3fe.svg new file mode 100644 index 000000000..d3c412ec0 --- /dev/null +++ b/public/emoji/1f450-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f450-1f3ff.svg b/public/emoji/1f450-1f3ff.svg new file mode 100644 index 000000000..d7dc9146f --- /dev/null +++ b/public/emoji/1f450-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f450.svg b/public/emoji/1f450.svg new file mode 100644 index 000000000..d91062650 --- /dev/null +++ b/public/emoji/1f450.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f451.svg b/public/emoji/1f451.svg new file mode 100644 index 000000000..ce7da0aab --- /dev/null +++ b/public/emoji/1f451.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f452.svg b/public/emoji/1f452.svg new file mode 100644 index 000000000..0ef14ae7a --- /dev/null +++ b/public/emoji/1f452.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f453.svg b/public/emoji/1f453.svg new file mode 100644 index 000000000..0356c31ef --- /dev/null +++ b/public/emoji/1f453.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f454.svg b/public/emoji/1f454.svg new file mode 100644 index 000000000..b72e4dc9e --- /dev/null +++ b/public/emoji/1f454.svg @@ -0,0 +1,2 @@ + \ No newline at end of file diff --git a/public/emoji/1f455.svg b/public/emoji/1f455.svg new file mode 100644 index 000000000..33900afbb --- /dev/null +++ b/public/emoji/1f455.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f456.svg b/public/emoji/1f456.svg new file mode 100644 index 000000000..eed2f86df --- /dev/null +++ b/public/emoji/1f456.svg @@ -0,0 +1,2 @@ + \ No newline at end of file diff --git a/public/emoji/1f457.svg b/public/emoji/1f457.svg new file mode 100644 index 000000000..2a20f802b --- /dev/null +++ b/public/emoji/1f457.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f458.svg b/public/emoji/1f458.svg new file mode 100644 index 000000000..7f7bed9af --- /dev/null +++ b/public/emoji/1f458.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f459.svg b/public/emoji/1f459.svg new file mode 100644 index 000000000..e0a1ca75d --- /dev/null +++ b/public/emoji/1f459.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f45a.svg b/public/emoji/1f45a.svg new file mode 100644 index 000000000..294d86ef6 --- /dev/null +++ b/public/emoji/1f45a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f45b.svg b/public/emoji/1f45b.svg new file mode 100644 index 000000000..2bb632f3e --- /dev/null +++ b/public/emoji/1f45b.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f45c.svg b/public/emoji/1f45c.svg new file mode 100644 index 000000000..39165931c --- /dev/null +++ b/public/emoji/1f45c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f45d.svg b/public/emoji/1f45d.svg new file mode 100644 index 000000000..b877d3ed8 --- /dev/null +++ b/public/emoji/1f45d.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f45e.svg b/public/emoji/1f45e.svg new file mode 100644 index 000000000..7dbe5d8bf --- /dev/null +++ b/public/emoji/1f45e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f45f.svg b/public/emoji/1f45f.svg new file mode 100644 index 000000000..a54733edc --- /dev/null +++ b/public/emoji/1f45f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f460.svg b/public/emoji/1f460.svg new file mode 100644 index 000000000..57b7e17fb --- /dev/null +++ b/public/emoji/1f460.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f461.svg b/public/emoji/1f461.svg new file mode 100644 index 000000000..e17e173db --- /dev/null +++ b/public/emoji/1f461.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f462.svg b/public/emoji/1f462.svg new file mode 100644 index 000000000..72c94f379 --- /dev/null +++ b/public/emoji/1f462.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f463.svg b/public/emoji/1f463.svg new file mode 100644 index 000000000..233061051 --- /dev/null +++ b/public/emoji/1f463.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f464.svg b/public/emoji/1f464.svg new file mode 100644 index 000000000..9c0e92dad --- /dev/null +++ b/public/emoji/1f464.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f465.svg b/public/emoji/1f465.svg new file mode 100644 index 000000000..4ca629e3d --- /dev/null +++ b/public/emoji/1f465.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f466-1f3fb.svg b/public/emoji/1f466-1f3fb.svg new file mode 100644 index 000000000..f0c2365dd --- /dev/null +++ b/public/emoji/1f466-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f466-1f3fc.svg b/public/emoji/1f466-1f3fc.svg new file mode 100644 index 000000000..296576e85 --- /dev/null +++ b/public/emoji/1f466-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f466-1f3fd.svg b/public/emoji/1f466-1f3fd.svg new file mode 100644 index 000000000..eafb2511d --- /dev/null +++ b/public/emoji/1f466-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f466-1f3fe.svg b/public/emoji/1f466-1f3fe.svg new file mode 100644 index 000000000..1623d305e --- /dev/null +++ b/public/emoji/1f466-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f466-1f3ff.svg b/public/emoji/1f466-1f3ff.svg new file mode 100644 index 000000000..051400b1c --- /dev/null +++ b/public/emoji/1f466-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f466.svg b/public/emoji/1f466.svg new file mode 100644 index 000000000..5e233fc8b --- /dev/null +++ b/public/emoji/1f466.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f467-1f3fb.svg b/public/emoji/1f467-1f3fb.svg new file mode 100644 index 000000000..eeb7738da --- /dev/null +++ b/public/emoji/1f467-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f467-1f3fc.svg b/public/emoji/1f467-1f3fc.svg new file mode 100644 index 000000000..4088b48a7 --- /dev/null +++ b/public/emoji/1f467-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f467-1f3fd.svg b/public/emoji/1f467-1f3fd.svg new file mode 100644 index 000000000..18a76f65d --- /dev/null +++ b/public/emoji/1f467-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f467-1f3fe.svg b/public/emoji/1f467-1f3fe.svg new file mode 100644 index 000000000..dbb0f5fc6 --- /dev/null +++ b/public/emoji/1f467-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f467-1f3ff.svg b/public/emoji/1f467-1f3ff.svg new file mode 100644 index 000000000..80e424ed2 --- /dev/null +++ b/public/emoji/1f467-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f467.svg b/public/emoji/1f467.svg new file mode 100644 index 000000000..1cb7f67a6 --- /dev/null +++ b/public/emoji/1f467.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f468-1f3fb.svg b/public/emoji/1f468-1f3fb.svg new file mode 100644 index 000000000..9ffc40139 --- /dev/null +++ b/public/emoji/1f468-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f468-1f3fc.svg b/public/emoji/1f468-1f3fc.svg new file mode 100644 index 000000000..e0e8d5fd3 --- /dev/null +++ b/public/emoji/1f468-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f468-1f3fd.svg b/public/emoji/1f468-1f3fd.svg new file mode 100644 index 000000000..4fc71c6d8 --- /dev/null +++ b/public/emoji/1f468-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f468-1f3fe.svg b/public/emoji/1f468-1f3fe.svg new file mode 100644 index 000000000..9dc4c6df7 --- /dev/null +++ b/public/emoji/1f468-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f468-1f3ff.svg b/public/emoji/1f468-1f3ff.svg new file mode 100644 index 000000000..fab2b4349 --- /dev/null +++ b/public/emoji/1f468-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f468-1f468-1f466-1f466.svg b/public/emoji/1f468-1f468-1f466-1f466.svg new file mode 100644 index 000000000..5c348147b --- /dev/null +++ b/public/emoji/1f468-1f468-1f466-1f466.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f468-1f468-1f466.svg b/public/emoji/1f468-1f468-1f466.svg new file mode 100644 index 000000000..7f5946500 --- /dev/null +++ b/public/emoji/1f468-1f468-1f466.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f468-1f468-1f467-1f466.svg b/public/emoji/1f468-1f468-1f467-1f466.svg new file mode 100644 index 000000000..555c8bd84 --- /dev/null +++ b/public/emoji/1f468-1f468-1f467-1f466.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f468-1f468-1f467-1f467.svg b/public/emoji/1f468-1f468-1f467-1f467.svg new file mode 100644 index 000000000..1e35ca4eb --- /dev/null +++ b/public/emoji/1f468-1f468-1f467-1f467.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f468-1f468-1f467.svg b/public/emoji/1f468-1f468-1f467.svg new file mode 100644 index 000000000..6dfa7e98e --- /dev/null +++ b/public/emoji/1f468-1f468-1f467.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f468-1f469-1f466-1f466.svg b/public/emoji/1f468-1f469-1f466-1f466.svg new file mode 100644 index 000000000..f877a886c --- /dev/null +++ b/public/emoji/1f468-1f469-1f466-1f466.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f468-1f469-1f467-1f466.svg b/public/emoji/1f468-1f469-1f467-1f466.svg new file mode 100644 index 000000000..0ab0a6b2b --- /dev/null +++ b/public/emoji/1f468-1f469-1f467-1f466.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f468-1f469-1f467-1f467.svg b/public/emoji/1f468-1f469-1f467-1f467.svg new file mode 100644 index 000000000..ca1285f9b --- /dev/null +++ b/public/emoji/1f468-1f469-1f467-1f467.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f468-1f469-1f467.svg b/public/emoji/1f468-1f469-1f467.svg new file mode 100644 index 000000000..0afec9c1b --- /dev/null +++ b/public/emoji/1f468-1f469-1f467.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f468-2764-1f468.svg b/public/emoji/1f468-2764-1f468.svg new file mode 100644 index 000000000..727c3fc94 --- /dev/null +++ b/public/emoji/1f468-2764-1f468.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f468-2764-1f48b-1f468.svg b/public/emoji/1f468-2764-1f48b-1f468.svg new file mode 100644 index 000000000..5e8450682 --- /dev/null +++ b/public/emoji/1f468-2764-1f48b-1f468.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f468.svg b/public/emoji/1f468.svg new file mode 100644 index 000000000..0f27a2836 --- /dev/null +++ b/public/emoji/1f468.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f469-1f3fb.svg b/public/emoji/1f469-1f3fb.svg new file mode 100644 index 000000000..62b4b6322 --- /dev/null +++ b/public/emoji/1f469-1f3fb.svg @@ -0,0 +1,2 @@ + \ No newline at end of file diff --git a/public/emoji/1f469-1f3fc.svg b/public/emoji/1f469-1f3fc.svg new file mode 100644 index 000000000..2556b3a2d --- /dev/null +++ b/public/emoji/1f469-1f3fc.svg @@ -0,0 +1,2 @@ + \ No newline at end of file diff --git a/public/emoji/1f469-1f3fd.svg b/public/emoji/1f469-1f3fd.svg new file mode 100644 index 000000000..c02698566 --- /dev/null +++ b/public/emoji/1f469-1f3fd.svg @@ -0,0 +1,2 @@ + \ No newline at end of file diff --git a/public/emoji/1f469-1f3fe.svg b/public/emoji/1f469-1f3fe.svg new file mode 100644 index 000000000..8c977082d --- /dev/null +++ b/public/emoji/1f469-1f3fe.svg @@ -0,0 +1,2 @@ + \ No newline at end of file diff --git a/public/emoji/1f469-1f3ff.svg b/public/emoji/1f469-1f3ff.svg new file mode 100644 index 000000000..3078858cd --- /dev/null +++ b/public/emoji/1f469-1f3ff.svg @@ -0,0 +1,2 @@ + \ No newline at end of file diff --git a/public/emoji/1f469-1f469-1f466-1f466.svg b/public/emoji/1f469-1f469-1f466-1f466.svg new file mode 100644 index 000000000..8bd591103 --- /dev/null +++ b/public/emoji/1f469-1f469-1f466-1f466.svg @@ -0,0 +1,2 @@ + \ No newline at end of file diff --git a/public/emoji/1f469-1f469-1f466.svg b/public/emoji/1f469-1f469-1f466.svg new file mode 100644 index 000000000..ece9c72c4 --- /dev/null +++ b/public/emoji/1f469-1f469-1f466.svg @@ -0,0 +1,2 @@ + \ No newline at end of file diff --git a/public/emoji/1f469-1f469-1f467-1f466.svg b/public/emoji/1f469-1f469-1f467-1f466.svg new file mode 100644 index 000000000..2f4951e98 --- /dev/null +++ b/public/emoji/1f469-1f469-1f467-1f466.svg @@ -0,0 +1,2 @@ + \ No newline at end of file diff --git a/public/emoji/1f469-1f469-1f467-1f467.svg b/public/emoji/1f469-1f469-1f467-1f467.svg new file mode 100644 index 000000000..73760fbb4 --- /dev/null +++ b/public/emoji/1f469-1f469-1f467-1f467.svg @@ -0,0 +1,2 @@ + \ No newline at end of file diff --git a/public/emoji/1f469-1f469-1f467.svg b/public/emoji/1f469-1f469-1f467.svg new file mode 100644 index 000000000..bbc72da22 --- /dev/null +++ b/public/emoji/1f469-1f469-1f467.svg @@ -0,0 +1,2 @@ + \ No newline at end of file diff --git a/public/emoji/1f469-2764-1f469.svg b/public/emoji/1f469-2764-1f469.svg new file mode 100644 index 000000000..5f188ca18 --- /dev/null +++ b/public/emoji/1f469-2764-1f469.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f469-2764-1f48b-1f469.svg b/public/emoji/1f469-2764-1f48b-1f469.svg new file mode 100644 index 000000000..c23690619 --- /dev/null +++ b/public/emoji/1f469-2764-1f48b-1f469.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f469.svg b/public/emoji/1f469.svg new file mode 100644 index 000000000..8a7fada15 --- /dev/null +++ b/public/emoji/1f469.svg @@ -0,0 +1,2 @@ + \ No newline at end of file diff --git a/public/emoji/1f46a.svg b/public/emoji/1f46a.svg new file mode 100644 index 000000000..e0fc9893b --- /dev/null +++ b/public/emoji/1f46a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f46b.svg b/public/emoji/1f46b.svg new file mode 100644 index 000000000..4e7dcce0f --- /dev/null +++ b/public/emoji/1f46b.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f46c.svg b/public/emoji/1f46c.svg new file mode 100644 index 000000000..376a18ddd --- /dev/null +++ b/public/emoji/1f46c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f46d.svg b/public/emoji/1f46d.svg new file mode 100644 index 000000000..ed12b05e1 --- /dev/null +++ b/public/emoji/1f46d.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f46e-1f3fb.svg b/public/emoji/1f46e-1f3fb.svg new file mode 100644 index 000000000..98a019fff --- /dev/null +++ b/public/emoji/1f46e-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f46e-1f3fc.svg b/public/emoji/1f46e-1f3fc.svg new file mode 100644 index 000000000..9e4435062 --- /dev/null +++ b/public/emoji/1f46e-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f46e-1f3fd.svg b/public/emoji/1f46e-1f3fd.svg new file mode 100644 index 000000000..fe8b6f451 --- /dev/null +++ b/public/emoji/1f46e-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f46e-1f3fe.svg b/public/emoji/1f46e-1f3fe.svg new file mode 100644 index 000000000..d880766e5 --- /dev/null +++ b/public/emoji/1f46e-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f46e-1f3ff.svg b/public/emoji/1f46e-1f3ff.svg new file mode 100644 index 000000000..9ec2135b5 --- /dev/null +++ b/public/emoji/1f46e-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f46e.svg b/public/emoji/1f46e.svg new file mode 100644 index 000000000..3631cdd54 --- /dev/null +++ b/public/emoji/1f46e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f46f.svg b/public/emoji/1f46f.svg new file mode 100644 index 000000000..32985cc36 --- /dev/null +++ b/public/emoji/1f46f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f470-1f3fb.svg b/public/emoji/1f470-1f3fb.svg new file mode 100644 index 000000000..cb221eee1 --- /dev/null +++ b/public/emoji/1f470-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f470-1f3fc.svg b/public/emoji/1f470-1f3fc.svg new file mode 100644 index 000000000..b57183971 --- /dev/null +++ b/public/emoji/1f470-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f470-1f3fd.svg b/public/emoji/1f470-1f3fd.svg new file mode 100644 index 000000000..6c9874f77 --- /dev/null +++ b/public/emoji/1f470-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f470-1f3fe.svg b/public/emoji/1f470-1f3fe.svg new file mode 100644 index 000000000..e4ff8c92d --- /dev/null +++ b/public/emoji/1f470-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f470-1f3ff.svg b/public/emoji/1f470-1f3ff.svg new file mode 100644 index 000000000..29633af92 --- /dev/null +++ b/public/emoji/1f470-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f470.svg b/public/emoji/1f470.svg new file mode 100644 index 000000000..dc9e6c730 --- /dev/null +++ b/public/emoji/1f470.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f471-1f3fb.svg b/public/emoji/1f471-1f3fb.svg new file mode 100644 index 000000000..eee7e7a2c --- /dev/null +++ b/public/emoji/1f471-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f471-1f3fc.svg b/public/emoji/1f471-1f3fc.svg new file mode 100644 index 000000000..6bdf85886 --- /dev/null +++ b/public/emoji/1f471-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f471-1f3fd.svg b/public/emoji/1f471-1f3fd.svg new file mode 100644 index 000000000..b08ba6684 --- /dev/null +++ b/public/emoji/1f471-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f471-1f3fe.svg b/public/emoji/1f471-1f3fe.svg new file mode 100644 index 000000000..72a38d218 --- /dev/null +++ b/public/emoji/1f471-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f471-1f3ff.svg b/public/emoji/1f471-1f3ff.svg new file mode 100644 index 000000000..dcfd094c8 --- /dev/null +++ b/public/emoji/1f471-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f471.svg b/public/emoji/1f471.svg new file mode 100644 index 000000000..2f56b379c --- /dev/null +++ b/public/emoji/1f471.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f472-1f3fb.svg b/public/emoji/1f472-1f3fb.svg new file mode 100644 index 000000000..f02094dcb --- /dev/null +++ b/public/emoji/1f472-1f3fb.svg @@ -0,0 +1,2 @@ + \ No newline at end of file diff --git a/public/emoji/1f472-1f3fc.svg b/public/emoji/1f472-1f3fc.svg new file mode 100644 index 000000000..9933af021 --- /dev/null +++ b/public/emoji/1f472-1f3fc.svg @@ -0,0 +1,2 @@ + \ No newline at end of file diff --git a/public/emoji/1f472-1f3fd.svg b/public/emoji/1f472-1f3fd.svg new file mode 100644 index 000000000..f2884ff0a --- /dev/null +++ b/public/emoji/1f472-1f3fd.svg @@ -0,0 +1,2 @@ + \ No newline at end of file diff --git a/public/emoji/1f472-1f3fe.svg b/public/emoji/1f472-1f3fe.svg new file mode 100644 index 000000000..6bb5fad55 --- /dev/null +++ b/public/emoji/1f472-1f3fe.svg @@ -0,0 +1,2 @@ + \ No newline at end of file diff --git a/public/emoji/1f472-1f3ff.svg b/public/emoji/1f472-1f3ff.svg new file mode 100644 index 000000000..c28a77da8 --- /dev/null +++ b/public/emoji/1f472-1f3ff.svg @@ -0,0 +1,2 @@ + \ No newline at end of file diff --git a/public/emoji/1f472.svg b/public/emoji/1f472.svg new file mode 100644 index 000000000..8274a2303 --- /dev/null +++ b/public/emoji/1f472.svg @@ -0,0 +1,2 @@ + \ No newline at end of file diff --git a/public/emoji/1f473-1f3fb.svg b/public/emoji/1f473-1f3fb.svg new file mode 100644 index 000000000..43c2e9d58 --- /dev/null +++ b/public/emoji/1f473-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f473-1f3fc.svg b/public/emoji/1f473-1f3fc.svg new file mode 100644 index 000000000..86edb085f --- /dev/null +++ b/public/emoji/1f473-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f473-1f3fd.svg b/public/emoji/1f473-1f3fd.svg new file mode 100644 index 000000000..4567f5800 --- /dev/null +++ b/public/emoji/1f473-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f473-1f3fe.svg b/public/emoji/1f473-1f3fe.svg new file mode 100644 index 000000000..ddb3d5beb --- /dev/null +++ b/public/emoji/1f473-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f473-1f3ff.svg b/public/emoji/1f473-1f3ff.svg new file mode 100644 index 000000000..19b2e728f --- /dev/null +++ b/public/emoji/1f473-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f473.svg b/public/emoji/1f473.svg new file mode 100644 index 000000000..511280812 --- /dev/null +++ b/public/emoji/1f473.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f474-1f3fb.svg b/public/emoji/1f474-1f3fb.svg new file mode 100644 index 000000000..77aacc5a9 --- /dev/null +++ b/public/emoji/1f474-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f474-1f3fc.svg b/public/emoji/1f474-1f3fc.svg new file mode 100644 index 000000000..03c13c515 --- /dev/null +++ b/public/emoji/1f474-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f474-1f3fd.svg b/public/emoji/1f474-1f3fd.svg new file mode 100644 index 000000000..2a73bef91 --- /dev/null +++ b/public/emoji/1f474-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f474-1f3fe.svg b/public/emoji/1f474-1f3fe.svg new file mode 100644 index 000000000..0c9133ece --- /dev/null +++ b/public/emoji/1f474-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f474-1f3ff.svg b/public/emoji/1f474-1f3ff.svg new file mode 100644 index 000000000..14a6554c3 --- /dev/null +++ b/public/emoji/1f474-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f474.svg b/public/emoji/1f474.svg new file mode 100644 index 000000000..79bd197e1 --- /dev/null +++ b/public/emoji/1f474.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f475-1f3fb.svg b/public/emoji/1f475-1f3fb.svg new file mode 100644 index 000000000..1e1c55669 --- /dev/null +++ b/public/emoji/1f475-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f475-1f3fc.svg b/public/emoji/1f475-1f3fc.svg new file mode 100644 index 000000000..fd7cea0fc --- /dev/null +++ b/public/emoji/1f475-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f475-1f3fd.svg b/public/emoji/1f475-1f3fd.svg new file mode 100644 index 000000000..121b50ba0 --- /dev/null +++ b/public/emoji/1f475-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f475-1f3fe.svg b/public/emoji/1f475-1f3fe.svg new file mode 100644 index 000000000..c1246e568 --- /dev/null +++ b/public/emoji/1f475-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f475-1f3ff.svg b/public/emoji/1f475-1f3ff.svg new file mode 100644 index 000000000..b1ae7cd6c --- /dev/null +++ b/public/emoji/1f475-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f475.svg b/public/emoji/1f475.svg new file mode 100644 index 000000000..a2ac6131e --- /dev/null +++ b/public/emoji/1f475.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f476-1f3fb.svg b/public/emoji/1f476-1f3fb.svg new file mode 100644 index 000000000..aa85b9bd0 --- /dev/null +++ b/public/emoji/1f476-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f476-1f3fc.svg b/public/emoji/1f476-1f3fc.svg new file mode 100644 index 000000000..50f5f8c94 --- /dev/null +++ b/public/emoji/1f476-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f476-1f3fd.svg b/public/emoji/1f476-1f3fd.svg new file mode 100644 index 000000000..9d3946dcd --- /dev/null +++ b/public/emoji/1f476-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f476-1f3fe.svg b/public/emoji/1f476-1f3fe.svg new file mode 100644 index 000000000..75c1a6747 --- /dev/null +++ b/public/emoji/1f476-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f476-1f3ff.svg b/public/emoji/1f476-1f3ff.svg new file mode 100644 index 000000000..27a4a6d7f --- /dev/null +++ b/public/emoji/1f476-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f476.svg b/public/emoji/1f476.svg new file mode 100644 index 000000000..6bbcb0c2e --- /dev/null +++ b/public/emoji/1f476.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f477-1f3fb.svg b/public/emoji/1f477-1f3fb.svg new file mode 100644 index 000000000..1c078948d --- /dev/null +++ b/public/emoji/1f477-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f477-1f3fc.svg b/public/emoji/1f477-1f3fc.svg new file mode 100644 index 000000000..2baad9283 --- /dev/null +++ b/public/emoji/1f477-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f477-1f3fd.svg b/public/emoji/1f477-1f3fd.svg new file mode 100644 index 000000000..9bd5a803f --- /dev/null +++ b/public/emoji/1f477-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f477-1f3fe.svg b/public/emoji/1f477-1f3fe.svg new file mode 100644 index 000000000..ee7b22823 --- /dev/null +++ b/public/emoji/1f477-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f477-1f3ff.svg b/public/emoji/1f477-1f3ff.svg new file mode 100644 index 000000000..2cfb7cf1b --- /dev/null +++ b/public/emoji/1f477-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f477.svg b/public/emoji/1f477.svg new file mode 100644 index 000000000..56ae64c82 --- /dev/null +++ b/public/emoji/1f477.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f478-1f3fb.svg b/public/emoji/1f478-1f3fb.svg new file mode 100644 index 000000000..ded39faa2 --- /dev/null +++ b/public/emoji/1f478-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f478-1f3fc.svg b/public/emoji/1f478-1f3fc.svg new file mode 100644 index 000000000..e815e485a --- /dev/null +++ b/public/emoji/1f478-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f478-1f3fd.svg b/public/emoji/1f478-1f3fd.svg new file mode 100644 index 000000000..7d5b77783 --- /dev/null +++ b/public/emoji/1f478-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f478-1f3fe.svg b/public/emoji/1f478-1f3fe.svg new file mode 100644 index 000000000..18edf0cbc --- /dev/null +++ b/public/emoji/1f478-1f3fe.svg @@ -0,0 +1,2 @@ + \ No newline at end of file diff --git a/public/emoji/1f478-1f3ff.svg b/public/emoji/1f478-1f3ff.svg new file mode 100644 index 000000000..6b8053df1 --- /dev/null +++ b/public/emoji/1f478-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f478.svg b/public/emoji/1f478.svg new file mode 100644 index 000000000..939f660d4 --- /dev/null +++ b/public/emoji/1f478.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f479.svg b/public/emoji/1f479.svg new file mode 100644 index 000000000..4aa1df93b --- /dev/null +++ b/public/emoji/1f479.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f47a.svg b/public/emoji/1f47a.svg new file mode 100644 index 000000000..a20c6c44e --- /dev/null +++ b/public/emoji/1f47a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f47b.svg b/public/emoji/1f47b.svg new file mode 100644 index 000000000..37f068039 --- /dev/null +++ b/public/emoji/1f47b.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f47c-1f3fb.svg b/public/emoji/1f47c-1f3fb.svg new file mode 100644 index 000000000..b33f37c47 --- /dev/null +++ b/public/emoji/1f47c-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f47c-1f3fc.svg b/public/emoji/1f47c-1f3fc.svg new file mode 100644 index 000000000..0095920c4 --- /dev/null +++ b/public/emoji/1f47c-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f47c-1f3fd.svg b/public/emoji/1f47c-1f3fd.svg new file mode 100644 index 000000000..ce453f4b7 --- /dev/null +++ b/public/emoji/1f47c-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f47c-1f3fe.svg b/public/emoji/1f47c-1f3fe.svg new file mode 100644 index 000000000..bbff87d41 --- /dev/null +++ b/public/emoji/1f47c-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f47c-1f3ff.svg b/public/emoji/1f47c-1f3ff.svg new file mode 100644 index 000000000..5e7bb9f04 --- /dev/null +++ b/public/emoji/1f47c-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f47c.svg b/public/emoji/1f47c.svg new file mode 100644 index 000000000..fd6002a20 --- /dev/null +++ b/public/emoji/1f47c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f47d.svg b/public/emoji/1f47d.svg new file mode 100644 index 000000000..fff8d2f2b --- /dev/null +++ b/public/emoji/1f47d.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f47e.svg b/public/emoji/1f47e.svg new file mode 100644 index 000000000..0d4c47cfe --- /dev/null +++ b/public/emoji/1f47e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f47f.svg b/public/emoji/1f47f.svg new file mode 100644 index 000000000..a2bf45a63 --- /dev/null +++ b/public/emoji/1f47f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f480.svg b/public/emoji/1f480.svg new file mode 100644 index 000000000..300fed888 --- /dev/null +++ b/public/emoji/1f480.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f481-1f3fb.svg b/public/emoji/1f481-1f3fb.svg new file mode 100644 index 000000000..94f0d9fa8 --- /dev/null +++ b/public/emoji/1f481-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f481-1f3fc.svg b/public/emoji/1f481-1f3fc.svg new file mode 100644 index 000000000..4094b088f --- /dev/null +++ b/public/emoji/1f481-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f481-1f3fd.svg b/public/emoji/1f481-1f3fd.svg new file mode 100644 index 000000000..502cf7baa --- /dev/null +++ b/public/emoji/1f481-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f481-1f3fe.svg b/public/emoji/1f481-1f3fe.svg new file mode 100644 index 000000000..d23383208 --- /dev/null +++ b/public/emoji/1f481-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f481-1f3ff.svg b/public/emoji/1f481-1f3ff.svg new file mode 100644 index 000000000..64f4c4969 --- /dev/null +++ b/public/emoji/1f481-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f481.svg b/public/emoji/1f481.svg new file mode 100644 index 000000000..324606f26 --- /dev/null +++ b/public/emoji/1f481.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f482-1f3fb.svg b/public/emoji/1f482-1f3fb.svg new file mode 100644 index 000000000..12ecea3c4 --- /dev/null +++ b/public/emoji/1f482-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f482-1f3fc.svg b/public/emoji/1f482-1f3fc.svg new file mode 100644 index 000000000..0a822b81e --- /dev/null +++ b/public/emoji/1f482-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f482-1f3fd.svg b/public/emoji/1f482-1f3fd.svg new file mode 100644 index 000000000..3048f05b8 --- /dev/null +++ b/public/emoji/1f482-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f482-1f3fe.svg b/public/emoji/1f482-1f3fe.svg new file mode 100644 index 000000000..ece9fd37d --- /dev/null +++ b/public/emoji/1f482-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f482-1f3ff.svg b/public/emoji/1f482-1f3ff.svg new file mode 100644 index 000000000..c59625be5 --- /dev/null +++ b/public/emoji/1f482-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f482.svg b/public/emoji/1f482.svg new file mode 100644 index 000000000..a2828629e --- /dev/null +++ b/public/emoji/1f482.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f483-1f3fb.svg b/public/emoji/1f483-1f3fb.svg new file mode 100644 index 000000000..23026b5a5 --- /dev/null +++ b/public/emoji/1f483-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f483-1f3fc.svg b/public/emoji/1f483-1f3fc.svg new file mode 100644 index 000000000..df65e02a3 --- /dev/null +++ b/public/emoji/1f483-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f483-1f3fd.svg b/public/emoji/1f483-1f3fd.svg new file mode 100644 index 000000000..e4c1d7b9d --- /dev/null +++ b/public/emoji/1f483-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f483-1f3fe.svg b/public/emoji/1f483-1f3fe.svg new file mode 100644 index 000000000..e163cfbc5 --- /dev/null +++ b/public/emoji/1f483-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f483-1f3ff.svg b/public/emoji/1f483-1f3ff.svg new file mode 100644 index 000000000..bb4dcfe49 --- /dev/null +++ b/public/emoji/1f483-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f483.svg b/public/emoji/1f483.svg new file mode 100644 index 000000000..25ff89a2c --- /dev/null +++ b/public/emoji/1f483.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f484.svg b/public/emoji/1f484.svg new file mode 100644 index 000000000..99bc7908b --- /dev/null +++ b/public/emoji/1f484.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f485-1f3fb.svg b/public/emoji/1f485-1f3fb.svg new file mode 100644 index 000000000..f31a7a298 --- /dev/null +++ b/public/emoji/1f485-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f485-1f3fc.svg b/public/emoji/1f485-1f3fc.svg new file mode 100644 index 000000000..442102a4b --- /dev/null +++ b/public/emoji/1f485-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f485-1f3fd.svg b/public/emoji/1f485-1f3fd.svg new file mode 100644 index 000000000..daa1db199 --- /dev/null +++ b/public/emoji/1f485-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f485-1f3fe.svg b/public/emoji/1f485-1f3fe.svg new file mode 100644 index 000000000..759366904 --- /dev/null +++ b/public/emoji/1f485-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f485-1f3ff.svg b/public/emoji/1f485-1f3ff.svg new file mode 100644 index 000000000..36a0f8403 --- /dev/null +++ b/public/emoji/1f485-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f485.svg b/public/emoji/1f485.svg new file mode 100644 index 000000000..91fd2c51f --- /dev/null +++ b/public/emoji/1f485.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f486-1f3fb.svg b/public/emoji/1f486-1f3fb.svg new file mode 100644 index 000000000..dc1aef549 --- /dev/null +++ b/public/emoji/1f486-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f486-1f3fc.svg b/public/emoji/1f486-1f3fc.svg new file mode 100644 index 000000000..ccea5085e --- /dev/null +++ b/public/emoji/1f486-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f486-1f3fd.svg b/public/emoji/1f486-1f3fd.svg new file mode 100644 index 000000000..245ca4b6d --- /dev/null +++ b/public/emoji/1f486-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f486-1f3fe.svg b/public/emoji/1f486-1f3fe.svg new file mode 100644 index 000000000..a56ff48dd --- /dev/null +++ b/public/emoji/1f486-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f486-1f3ff.svg b/public/emoji/1f486-1f3ff.svg new file mode 100644 index 000000000..bf24cb068 --- /dev/null +++ b/public/emoji/1f486-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f486.svg b/public/emoji/1f486.svg new file mode 100644 index 000000000..04a272713 --- /dev/null +++ b/public/emoji/1f486.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f487-1f3fb.svg b/public/emoji/1f487-1f3fb.svg new file mode 100644 index 000000000..793781e7e --- /dev/null +++ b/public/emoji/1f487-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f487-1f3fc.svg b/public/emoji/1f487-1f3fc.svg new file mode 100644 index 000000000..ac7e41cfc --- /dev/null +++ b/public/emoji/1f487-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f487-1f3fd.svg b/public/emoji/1f487-1f3fd.svg new file mode 100644 index 000000000..b581fe54a --- /dev/null +++ b/public/emoji/1f487-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f487-1f3fe.svg b/public/emoji/1f487-1f3fe.svg new file mode 100644 index 000000000..2c2be850c --- /dev/null +++ b/public/emoji/1f487-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f487-1f3ff.svg b/public/emoji/1f487-1f3ff.svg new file mode 100644 index 000000000..0d4ee4cb5 --- /dev/null +++ b/public/emoji/1f487-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f487.svg b/public/emoji/1f487.svg new file mode 100644 index 000000000..0d345e70b --- /dev/null +++ b/public/emoji/1f487.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f488.svg b/public/emoji/1f488.svg new file mode 100644 index 000000000..8db2bdc7d --- /dev/null +++ b/public/emoji/1f488.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f489.svg b/public/emoji/1f489.svg new file mode 100644 index 000000000..0a2fe9667 --- /dev/null +++ b/public/emoji/1f489.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f48a.svg b/public/emoji/1f48a.svg new file mode 100644 index 000000000..ea0a9a8cc --- /dev/null +++ b/public/emoji/1f48a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f48b.svg b/public/emoji/1f48b.svg new file mode 100644 index 000000000..a2d76f20d --- /dev/null +++ b/public/emoji/1f48b.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f48c.svg b/public/emoji/1f48c.svg new file mode 100644 index 000000000..ae73beac1 --- /dev/null +++ b/public/emoji/1f48c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f48d.svg b/public/emoji/1f48d.svg new file mode 100644 index 000000000..51da1763c --- /dev/null +++ b/public/emoji/1f48d.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f48e.svg b/public/emoji/1f48e.svg new file mode 100644 index 000000000..c7a3719a2 --- /dev/null +++ b/public/emoji/1f48e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f48f.svg b/public/emoji/1f48f.svg new file mode 100644 index 000000000..cd4f66f04 --- /dev/null +++ b/public/emoji/1f48f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f490.svg b/public/emoji/1f490.svg new file mode 100644 index 000000000..8f15a9652 --- /dev/null +++ b/public/emoji/1f490.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f491.svg b/public/emoji/1f491.svg new file mode 100644 index 000000000..38085503c --- /dev/null +++ b/public/emoji/1f491.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f492.svg b/public/emoji/1f492.svg new file mode 100644 index 000000000..e7008d423 --- /dev/null +++ b/public/emoji/1f492.svg @@ -0,0 +1,2 @@ + \ No newline at end of file diff --git a/public/emoji/1f493.svg b/public/emoji/1f493.svg new file mode 100644 index 000000000..41388626b --- /dev/null +++ b/public/emoji/1f493.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f494.svg b/public/emoji/1f494.svg new file mode 100644 index 000000000..a8b9e1b05 --- /dev/null +++ b/public/emoji/1f494.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f495.svg b/public/emoji/1f495.svg new file mode 100644 index 000000000..6f51fbd1f --- /dev/null +++ b/public/emoji/1f495.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f496.svg b/public/emoji/1f496.svg new file mode 100644 index 000000000..27457d5b7 --- /dev/null +++ b/public/emoji/1f496.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f497.svg b/public/emoji/1f497.svg new file mode 100644 index 000000000..a3da17e1f --- /dev/null +++ b/public/emoji/1f497.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f498.svg b/public/emoji/1f498.svg new file mode 100644 index 000000000..66b99f330 --- /dev/null +++ b/public/emoji/1f498.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f499.svg b/public/emoji/1f499.svg new file mode 100644 index 000000000..6db134a92 --- /dev/null +++ b/public/emoji/1f499.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f49a.svg b/public/emoji/1f49a.svg new file mode 100644 index 000000000..2d718b516 --- /dev/null +++ b/public/emoji/1f49a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f49b.svg b/public/emoji/1f49b.svg new file mode 100644 index 000000000..c64250205 --- /dev/null +++ b/public/emoji/1f49b.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f49c.svg b/public/emoji/1f49c.svg new file mode 100644 index 000000000..7adf07939 --- /dev/null +++ b/public/emoji/1f49c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f49d.svg b/public/emoji/1f49d.svg new file mode 100644 index 000000000..2e8a49688 --- /dev/null +++ b/public/emoji/1f49d.svg @@ -0,0 +1,2 @@ + \ No newline at end of file diff --git a/public/emoji/1f49e.svg b/public/emoji/1f49e.svg new file mode 100644 index 000000000..f90aae90f --- /dev/null +++ b/public/emoji/1f49e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f49f.svg b/public/emoji/1f49f.svg new file mode 100644 index 000000000..2c1c7d270 --- /dev/null +++ b/public/emoji/1f49f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f4a0.svg b/public/emoji/1f4a0.svg new file mode 100644 index 000000000..77363d199 --- /dev/null +++ b/public/emoji/1f4a0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f4a1.svg b/public/emoji/1f4a1.svg new file mode 100644 index 000000000..7e44d418a --- /dev/null +++ b/public/emoji/1f4a1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f4a2.svg b/public/emoji/1f4a2.svg new file mode 100644 index 000000000..d816b4934 --- /dev/null +++ b/public/emoji/1f4a2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f4a3.svg b/public/emoji/1f4a3.svg new file mode 100644 index 000000000..b9a7e0f74 --- /dev/null +++ b/public/emoji/1f4a3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f4a4.svg b/public/emoji/1f4a4.svg new file mode 100644 index 000000000..625c72482 --- /dev/null +++ b/public/emoji/1f4a4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f4a5.svg b/public/emoji/1f4a5.svg new file mode 100644 index 000000000..5ae4d00db --- /dev/null +++ b/public/emoji/1f4a5.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f4a6.svg b/public/emoji/1f4a6.svg new file mode 100644 index 000000000..d33061edc --- /dev/null +++ b/public/emoji/1f4a6.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f4a7.svg b/public/emoji/1f4a7.svg new file mode 100644 index 000000000..e56136fe5 --- /dev/null +++ b/public/emoji/1f4a7.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f4a8.svg b/public/emoji/1f4a8.svg new file mode 100644 index 000000000..5807909d1 --- /dev/null +++ b/public/emoji/1f4a8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f4a9.svg b/public/emoji/1f4a9.svg new file mode 100644 index 000000000..342ac404b --- /dev/null +++ b/public/emoji/1f4a9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f4aa-1f3fb.svg b/public/emoji/1f4aa-1f3fb.svg new file mode 100644 index 000000000..174dc99d2 --- /dev/null +++ b/public/emoji/1f4aa-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f4aa-1f3fc.svg b/public/emoji/1f4aa-1f3fc.svg new file mode 100644 index 000000000..be0b9c70b --- /dev/null +++ b/public/emoji/1f4aa-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f4aa-1f3fd.svg b/public/emoji/1f4aa-1f3fd.svg new file mode 100644 index 000000000..fa50395b9 --- /dev/null +++ b/public/emoji/1f4aa-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f4aa-1f3fe.svg b/public/emoji/1f4aa-1f3fe.svg new file mode 100644 index 000000000..820211811 --- /dev/null +++ b/public/emoji/1f4aa-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f4aa-1f3ff.svg b/public/emoji/1f4aa-1f3ff.svg new file mode 100644 index 000000000..109ded67d --- /dev/null +++ b/public/emoji/1f4aa-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f4aa.svg b/public/emoji/1f4aa.svg new file mode 100644 index 000000000..772927cc4 --- /dev/null +++ b/public/emoji/1f4aa.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f4ab.svg b/public/emoji/1f4ab.svg new file mode 100644 index 000000000..6f4ba8a7b --- /dev/null +++ b/public/emoji/1f4ab.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f4ac.svg b/public/emoji/1f4ac.svg new file mode 100644 index 000000000..663533c82 --- /dev/null +++ b/public/emoji/1f4ac.svg @@ -0,0 +1,2 @@ + \ No newline at end of file diff --git a/public/emoji/1f4ad.svg b/public/emoji/1f4ad.svg new file mode 100644 index 000000000..b9883d63a --- /dev/null +++ b/public/emoji/1f4ad.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f4ae.svg b/public/emoji/1f4ae.svg new file mode 100644 index 000000000..3703f53e2 --- /dev/null +++ b/public/emoji/1f4ae.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f4af.svg b/public/emoji/1f4af.svg new file mode 100644 index 000000000..8bb5a8027 --- /dev/null +++ b/public/emoji/1f4af.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f4b0.svg b/public/emoji/1f4b0.svg new file mode 100644 index 000000000..5dcbf7d1c --- /dev/null +++ b/public/emoji/1f4b0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f4b1.svg b/public/emoji/1f4b1.svg new file mode 100644 index 000000000..350402b9d --- /dev/null +++ b/public/emoji/1f4b1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f4b2.svg b/public/emoji/1f4b2.svg new file mode 100644 index 000000000..12419774c --- /dev/null +++ b/public/emoji/1f4b2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f4b3.svg b/public/emoji/1f4b3.svg new file mode 100644 index 000000000..289be20ad --- /dev/null +++ b/public/emoji/1f4b3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f4b4.svg b/public/emoji/1f4b4.svg new file mode 100644 index 000000000..73ada09a2 --- /dev/null +++ b/public/emoji/1f4b4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f4b5.svg b/public/emoji/1f4b5.svg new file mode 100644 index 000000000..a6723a2be --- /dev/null +++ b/public/emoji/1f4b5.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f4b6.svg b/public/emoji/1f4b6.svg new file mode 100644 index 000000000..4ab37625b --- /dev/null +++ b/public/emoji/1f4b6.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f4b7.svg b/public/emoji/1f4b7.svg new file mode 100644 index 000000000..59a5f522a --- /dev/null +++ b/public/emoji/1f4b7.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f4b8.svg b/public/emoji/1f4b8.svg new file mode 100644 index 000000000..8e90f8e50 --- /dev/null +++ b/public/emoji/1f4b8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f4b9.svg b/public/emoji/1f4b9.svg new file mode 100644 index 000000000..b794bad1c --- /dev/null +++ b/public/emoji/1f4b9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f4ba.svg b/public/emoji/1f4ba.svg new file mode 100644 index 000000000..a961080f2 --- /dev/null +++ b/public/emoji/1f4ba.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f4bb.svg b/public/emoji/1f4bb.svg new file mode 100644 index 000000000..de2b1388a --- /dev/null +++ b/public/emoji/1f4bb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f4bc.svg b/public/emoji/1f4bc.svg new file mode 100644 index 000000000..16fd4d572 --- /dev/null +++ b/public/emoji/1f4bc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f4bd.svg b/public/emoji/1f4bd.svg new file mode 100644 index 000000000..f37c1636c --- /dev/null +++ b/public/emoji/1f4bd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f4be.svg b/public/emoji/1f4be.svg new file mode 100644 index 000000000..9eba4f910 --- /dev/null +++ b/public/emoji/1f4be.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f4bf.svg b/public/emoji/1f4bf.svg new file mode 100644 index 000000000..eac0a2aab --- /dev/null +++ b/public/emoji/1f4bf.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f4c0.svg b/public/emoji/1f4c0.svg new file mode 100644 index 000000000..2547f71c1 --- /dev/null +++ b/public/emoji/1f4c0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f4c1.svg b/public/emoji/1f4c1.svg new file mode 100644 index 000000000..8eaf3c99c --- /dev/null +++ b/public/emoji/1f4c1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f4c2.svg b/public/emoji/1f4c2.svg new file mode 100644 index 000000000..85fc74148 --- /dev/null +++ b/public/emoji/1f4c2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f4c3.svg b/public/emoji/1f4c3.svg new file mode 100644 index 000000000..46b14fcc8 --- /dev/null +++ b/public/emoji/1f4c3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f4c4.svg b/public/emoji/1f4c4.svg new file mode 100644 index 000000000..b782c6146 --- /dev/null +++ b/public/emoji/1f4c4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f4c5.svg b/public/emoji/1f4c5.svg new file mode 100644 index 000000000..5b18759b0 --- /dev/null +++ b/public/emoji/1f4c5.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f4c6.svg b/public/emoji/1f4c6.svg new file mode 100644 index 000000000..a82a59085 --- /dev/null +++ b/public/emoji/1f4c6.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f4c7.svg b/public/emoji/1f4c7.svg new file mode 100644 index 000000000..21c4b7730 --- /dev/null +++ b/public/emoji/1f4c7.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f4c8.svg b/public/emoji/1f4c8.svg new file mode 100644 index 000000000..69c80f6b8 --- /dev/null +++ b/public/emoji/1f4c8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f4c9.svg b/public/emoji/1f4c9.svg new file mode 100644 index 000000000..621097002 --- /dev/null +++ b/public/emoji/1f4c9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f4ca.svg b/public/emoji/1f4ca.svg new file mode 100644 index 000000000..619ce84e4 --- /dev/null +++ b/public/emoji/1f4ca.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f4cb.svg b/public/emoji/1f4cb.svg new file mode 100644 index 000000000..29f1ef7fb --- /dev/null +++ b/public/emoji/1f4cb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f4cc.svg b/public/emoji/1f4cc.svg new file mode 100644 index 000000000..540377228 --- /dev/null +++ b/public/emoji/1f4cc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f4cd.svg b/public/emoji/1f4cd.svg new file mode 100644 index 000000000..fa9f105cf --- /dev/null +++ b/public/emoji/1f4cd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f4ce.svg b/public/emoji/1f4ce.svg new file mode 100644 index 000000000..47c8d2c6a --- /dev/null +++ b/public/emoji/1f4ce.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f4cf.svg b/public/emoji/1f4cf.svg new file mode 100644 index 000000000..3d66c0674 --- /dev/null +++ b/public/emoji/1f4cf.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f4d0.svg b/public/emoji/1f4d0.svg new file mode 100644 index 000000000..5d4c52db9 --- /dev/null +++ b/public/emoji/1f4d0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f4d1.svg b/public/emoji/1f4d1.svg new file mode 100644 index 000000000..b0ff58643 --- /dev/null +++ b/public/emoji/1f4d1.svg @@ -0,0 +1,2 @@ + \ No newline at end of file diff --git a/public/emoji/1f4d2.svg b/public/emoji/1f4d2.svg new file mode 100644 index 000000000..93fecc88c --- /dev/null +++ b/public/emoji/1f4d2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f4d3.svg b/public/emoji/1f4d3.svg new file mode 100644 index 000000000..604ba14e9 --- /dev/null +++ b/public/emoji/1f4d3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f4d4.svg b/public/emoji/1f4d4.svg new file mode 100644 index 000000000..211f080c9 --- /dev/null +++ b/public/emoji/1f4d4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f4d5.svg b/public/emoji/1f4d5.svg new file mode 100644 index 000000000..be6b7fa3c --- /dev/null +++ b/public/emoji/1f4d5.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f4d6.svg b/public/emoji/1f4d6.svg new file mode 100644 index 000000000..40a387e31 --- /dev/null +++ b/public/emoji/1f4d6.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f4d7.svg b/public/emoji/1f4d7.svg new file mode 100644 index 000000000..5ef4524b9 --- /dev/null +++ b/public/emoji/1f4d7.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f4d8.svg b/public/emoji/1f4d8.svg new file mode 100644 index 000000000..3e1ba1c8f --- /dev/null +++ b/public/emoji/1f4d8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f4d9.svg b/public/emoji/1f4d9.svg new file mode 100644 index 000000000..0758e63e0 --- /dev/null +++ b/public/emoji/1f4d9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f4da.svg b/public/emoji/1f4da.svg new file mode 100644 index 000000000..8469d334e --- /dev/null +++ b/public/emoji/1f4da.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f4db.svg b/public/emoji/1f4db.svg new file mode 100644 index 000000000..616945d2d --- /dev/null +++ b/public/emoji/1f4db.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f4dc.svg b/public/emoji/1f4dc.svg new file mode 100644 index 000000000..6b1d35971 --- /dev/null +++ b/public/emoji/1f4dc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f4dd.svg b/public/emoji/1f4dd.svg new file mode 100644 index 000000000..5e6f46c8b --- /dev/null +++ b/public/emoji/1f4dd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f4de.svg b/public/emoji/1f4de.svg new file mode 100644 index 000000000..a4039435d --- /dev/null +++ b/public/emoji/1f4de.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f4df.svg b/public/emoji/1f4df.svg new file mode 100644 index 000000000..a46aa37d0 --- /dev/null +++ b/public/emoji/1f4df.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f4e0.svg b/public/emoji/1f4e0.svg new file mode 100644 index 000000000..7e52dbfd0 --- /dev/null +++ b/public/emoji/1f4e0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f4e1.svg b/public/emoji/1f4e1.svg new file mode 100644 index 000000000..f15cb8a0e --- /dev/null +++ b/public/emoji/1f4e1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f4e2.svg b/public/emoji/1f4e2.svg new file mode 100644 index 000000000..44179fefc --- /dev/null +++ b/public/emoji/1f4e2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f4e3.svg b/public/emoji/1f4e3.svg new file mode 100644 index 000000000..0967abab9 --- /dev/null +++ b/public/emoji/1f4e3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f4e4.svg b/public/emoji/1f4e4.svg new file mode 100644 index 000000000..b7b006630 --- /dev/null +++ b/public/emoji/1f4e4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f4e5.svg b/public/emoji/1f4e5.svg new file mode 100644 index 000000000..75df61a63 --- /dev/null +++ b/public/emoji/1f4e5.svg @@ -0,0 +1,2 @@ + \ No newline at end of file diff --git a/public/emoji/1f4e6.svg b/public/emoji/1f4e6.svg new file mode 100644 index 000000000..95182fd1b --- /dev/null +++ b/public/emoji/1f4e6.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f4e7.svg b/public/emoji/1f4e7.svg new file mode 100644 index 000000000..c296f5070 --- /dev/null +++ b/public/emoji/1f4e7.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f4e8.svg b/public/emoji/1f4e8.svg new file mode 100644 index 000000000..694c04ee9 --- /dev/null +++ b/public/emoji/1f4e8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f4e9.svg b/public/emoji/1f4e9.svg new file mode 100644 index 000000000..2e5dd66c4 --- /dev/null +++ b/public/emoji/1f4e9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f4ea.svg b/public/emoji/1f4ea.svg new file mode 100644 index 000000000..b825c02f2 --- /dev/null +++ b/public/emoji/1f4ea.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f4eb.svg b/public/emoji/1f4eb.svg new file mode 100644 index 000000000..fcd20da49 --- /dev/null +++ b/public/emoji/1f4eb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f4ec.svg b/public/emoji/1f4ec.svg new file mode 100644 index 000000000..2393774c7 --- /dev/null +++ b/public/emoji/1f4ec.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f4ed.svg b/public/emoji/1f4ed.svg new file mode 100644 index 000000000..c4fddbace --- /dev/null +++ b/public/emoji/1f4ed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f4ee.svg b/public/emoji/1f4ee.svg new file mode 100644 index 000000000..2c53c56e2 --- /dev/null +++ b/public/emoji/1f4ee.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f4ef.svg b/public/emoji/1f4ef.svg new file mode 100644 index 000000000..6ead0b07b --- /dev/null +++ b/public/emoji/1f4ef.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f4f0.svg b/public/emoji/1f4f0.svg new file mode 100644 index 000000000..51f9f85a0 --- /dev/null +++ b/public/emoji/1f4f0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f4f1.svg b/public/emoji/1f4f1.svg new file mode 100644 index 000000000..bbb0684ac --- /dev/null +++ b/public/emoji/1f4f1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f4f2.svg b/public/emoji/1f4f2.svg new file mode 100644 index 000000000..9f323e496 --- /dev/null +++ b/public/emoji/1f4f2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f4f3.svg b/public/emoji/1f4f3.svg new file mode 100644 index 000000000..7f2e947b1 --- /dev/null +++ b/public/emoji/1f4f3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f4f4.svg b/public/emoji/1f4f4.svg new file mode 100644 index 000000000..3f7fd7f15 --- /dev/null +++ b/public/emoji/1f4f4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f4f5.svg b/public/emoji/1f4f5.svg new file mode 100644 index 000000000..dfeb0985c --- /dev/null +++ b/public/emoji/1f4f5.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f4f6.svg b/public/emoji/1f4f6.svg new file mode 100644 index 000000000..f6033621b --- /dev/null +++ b/public/emoji/1f4f6.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f4f7.svg b/public/emoji/1f4f7.svg new file mode 100644 index 000000000..ed7884b41 --- /dev/null +++ b/public/emoji/1f4f7.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f4f8.svg b/public/emoji/1f4f8.svg new file mode 100644 index 000000000..7814bdd92 --- /dev/null +++ b/public/emoji/1f4f8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f4f9.svg b/public/emoji/1f4f9.svg new file mode 100644 index 000000000..8c71d01a1 --- /dev/null +++ b/public/emoji/1f4f9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f4fa.svg b/public/emoji/1f4fa.svg new file mode 100644 index 000000000..3d446fd6e --- /dev/null +++ b/public/emoji/1f4fa.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f4fb.svg b/public/emoji/1f4fb.svg new file mode 100644 index 000000000..4a7bff172 --- /dev/null +++ b/public/emoji/1f4fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f4fc.svg b/public/emoji/1f4fc.svg new file mode 100644 index 000000000..6b1e3d0c2 --- /dev/null +++ b/public/emoji/1f4fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f4fd.svg b/public/emoji/1f4fd.svg new file mode 100644 index 000000000..a440cbfe4 --- /dev/null +++ b/public/emoji/1f4fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f4ff.svg b/public/emoji/1f4ff.svg new file mode 100644 index 000000000..1fa2a4abf --- /dev/null +++ b/public/emoji/1f4ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f500.svg b/public/emoji/1f500.svg new file mode 100644 index 000000000..81a5389c7 --- /dev/null +++ b/public/emoji/1f500.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f501.svg b/public/emoji/1f501.svg new file mode 100644 index 000000000..fccd8243c --- /dev/null +++ b/public/emoji/1f501.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f502.svg b/public/emoji/1f502.svg new file mode 100644 index 000000000..3372590bd --- /dev/null +++ b/public/emoji/1f502.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f503.svg b/public/emoji/1f503.svg new file mode 100644 index 000000000..3aa0d63ba --- /dev/null +++ b/public/emoji/1f503.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f504.svg b/public/emoji/1f504.svg new file mode 100644 index 000000000..2eefda0d3 --- /dev/null +++ b/public/emoji/1f504.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f505.svg b/public/emoji/1f505.svg new file mode 100644 index 000000000..206610ecf --- /dev/null +++ b/public/emoji/1f505.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f506.svg b/public/emoji/1f506.svg new file mode 100644 index 000000000..dc65b9a6d --- /dev/null +++ b/public/emoji/1f506.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f507.svg b/public/emoji/1f507.svg new file mode 100644 index 000000000..4d10ceb24 --- /dev/null +++ b/public/emoji/1f507.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f508.svg b/public/emoji/1f508.svg new file mode 100644 index 000000000..9eac4a0d0 --- /dev/null +++ b/public/emoji/1f508.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f509.svg b/public/emoji/1f509.svg new file mode 100644 index 000000000..5460d8e98 --- /dev/null +++ b/public/emoji/1f509.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f50a.svg b/public/emoji/1f50a.svg new file mode 100644 index 000000000..eb2e94c83 --- /dev/null +++ b/public/emoji/1f50a.svg @@ -0,0 +1,2 @@ + \ No newline at end of file diff --git a/public/emoji/1f50b.svg b/public/emoji/1f50b.svg new file mode 100644 index 000000000..370d5cfe0 --- /dev/null +++ b/public/emoji/1f50b.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f50c.svg b/public/emoji/1f50c.svg new file mode 100644 index 000000000..bbbcf0a5a --- /dev/null +++ b/public/emoji/1f50c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f50d.svg b/public/emoji/1f50d.svg new file mode 100644 index 000000000..7f1758d67 --- /dev/null +++ b/public/emoji/1f50d.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f50e.svg b/public/emoji/1f50e.svg new file mode 100644 index 000000000..a60c2aa11 --- /dev/null +++ b/public/emoji/1f50e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f50f.svg b/public/emoji/1f50f.svg new file mode 100644 index 000000000..eb3c3fb47 --- /dev/null +++ b/public/emoji/1f50f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f510.svg b/public/emoji/1f510.svg new file mode 100644 index 000000000..2d9a97df6 --- /dev/null +++ b/public/emoji/1f510.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f511.svg b/public/emoji/1f511.svg new file mode 100644 index 000000000..74b38d18c --- /dev/null +++ b/public/emoji/1f511.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f512.svg b/public/emoji/1f512.svg new file mode 100644 index 000000000..fac55a2f0 --- /dev/null +++ b/public/emoji/1f512.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f513.svg b/public/emoji/1f513.svg new file mode 100644 index 000000000..4d650b67e --- /dev/null +++ b/public/emoji/1f513.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f514.svg b/public/emoji/1f514.svg new file mode 100644 index 000000000..e64706564 --- /dev/null +++ b/public/emoji/1f514.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f515.svg b/public/emoji/1f515.svg new file mode 100644 index 000000000..a37acaff3 --- /dev/null +++ b/public/emoji/1f515.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f516.svg b/public/emoji/1f516.svg new file mode 100644 index 000000000..555079664 --- /dev/null +++ b/public/emoji/1f516.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f517.svg b/public/emoji/1f517.svg new file mode 100644 index 000000000..777545a17 --- /dev/null +++ b/public/emoji/1f517.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f518.svg b/public/emoji/1f518.svg new file mode 100644 index 000000000..a894198e8 --- /dev/null +++ b/public/emoji/1f518.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f519.svg b/public/emoji/1f519.svg new file mode 100644 index 000000000..b8fe574e2 --- /dev/null +++ b/public/emoji/1f519.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f51a.svg b/public/emoji/1f51a.svg new file mode 100644 index 000000000..1925646d1 --- /dev/null +++ b/public/emoji/1f51a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f51b.svg b/public/emoji/1f51b.svg new file mode 100644 index 000000000..f9bb3d833 --- /dev/null +++ b/public/emoji/1f51b.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f51c.svg b/public/emoji/1f51c.svg new file mode 100644 index 000000000..62c2ffb2f --- /dev/null +++ b/public/emoji/1f51c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f51d.svg b/public/emoji/1f51d.svg new file mode 100644 index 000000000..cc4db6763 --- /dev/null +++ b/public/emoji/1f51d.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f51e.svg b/public/emoji/1f51e.svg new file mode 100644 index 000000000..19ac9d2bd --- /dev/null +++ b/public/emoji/1f51e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f51f.svg b/public/emoji/1f51f.svg new file mode 100644 index 000000000..f717fa7f0 --- /dev/null +++ b/public/emoji/1f51f.svg @@ -0,0 +1,2 @@ + \ No newline at end of file diff --git a/public/emoji/1f520.svg b/public/emoji/1f520.svg new file mode 100644 index 000000000..04d626dcd --- /dev/null +++ b/public/emoji/1f520.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f521.svg b/public/emoji/1f521.svg new file mode 100644 index 000000000..a127d1934 --- /dev/null +++ b/public/emoji/1f521.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f522.svg b/public/emoji/1f522.svg new file mode 100644 index 000000000..5710ed971 --- /dev/null +++ b/public/emoji/1f522.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f523.svg b/public/emoji/1f523.svg new file mode 100644 index 000000000..7de6af1d7 --- /dev/null +++ b/public/emoji/1f523.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f524.svg b/public/emoji/1f524.svg new file mode 100644 index 000000000..236a41ce9 --- /dev/null +++ b/public/emoji/1f524.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f525.svg b/public/emoji/1f525.svg new file mode 100644 index 000000000..23dd30a75 --- /dev/null +++ b/public/emoji/1f525.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f526.svg b/public/emoji/1f526.svg new file mode 100644 index 000000000..1d9dcdfdf --- /dev/null +++ b/public/emoji/1f526.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f527.svg b/public/emoji/1f527.svg new file mode 100644 index 000000000..5ca5cf38e --- /dev/null +++ b/public/emoji/1f527.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f528.svg b/public/emoji/1f528.svg new file mode 100644 index 000000000..0285e2d1a --- /dev/null +++ b/public/emoji/1f528.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f529.svg b/public/emoji/1f529.svg new file mode 100644 index 000000000..b43444715 --- /dev/null +++ b/public/emoji/1f529.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f52a.svg b/public/emoji/1f52a.svg new file mode 100644 index 000000000..cbf231949 --- /dev/null +++ b/public/emoji/1f52a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f52b.svg b/public/emoji/1f52b.svg new file mode 100644 index 000000000..7ce6a43f1 --- /dev/null +++ b/public/emoji/1f52b.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f52c.svg b/public/emoji/1f52c.svg new file mode 100644 index 000000000..149eb3797 --- /dev/null +++ b/public/emoji/1f52c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f52d.svg b/public/emoji/1f52d.svg new file mode 100644 index 000000000..e4dc0106e --- /dev/null +++ b/public/emoji/1f52d.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f52e.svg b/public/emoji/1f52e.svg new file mode 100644 index 000000000..72eff081e --- /dev/null +++ b/public/emoji/1f52e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f52f.svg b/public/emoji/1f52f.svg new file mode 100644 index 000000000..5783decc3 --- /dev/null +++ b/public/emoji/1f52f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f530.svg b/public/emoji/1f530.svg new file mode 100644 index 000000000..b0677aae7 --- /dev/null +++ b/public/emoji/1f530.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f531.svg b/public/emoji/1f531.svg new file mode 100644 index 000000000..09cb93cd8 --- /dev/null +++ b/public/emoji/1f531.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f532.svg b/public/emoji/1f532.svg new file mode 100644 index 000000000..4234050ba --- /dev/null +++ b/public/emoji/1f532.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f533.svg b/public/emoji/1f533.svg new file mode 100644 index 000000000..478b8cde7 --- /dev/null +++ b/public/emoji/1f533.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f534.svg b/public/emoji/1f534.svg new file mode 100644 index 000000000..a8ac9f77d --- /dev/null +++ b/public/emoji/1f534.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f535.svg b/public/emoji/1f535.svg new file mode 100644 index 000000000..3df8731d3 --- /dev/null +++ b/public/emoji/1f535.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f536.svg b/public/emoji/1f536.svg new file mode 100644 index 000000000..351f0db4e --- /dev/null +++ b/public/emoji/1f536.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f537.svg b/public/emoji/1f537.svg new file mode 100644 index 000000000..2d3514448 --- /dev/null +++ b/public/emoji/1f537.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f538.svg b/public/emoji/1f538.svg new file mode 100644 index 000000000..10ba0449a --- /dev/null +++ b/public/emoji/1f538.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f539.svg b/public/emoji/1f539.svg new file mode 100644 index 000000000..344ca5956 --- /dev/null +++ b/public/emoji/1f539.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f53a.svg b/public/emoji/1f53a.svg new file mode 100644 index 000000000..321041237 --- /dev/null +++ b/public/emoji/1f53a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f53b.svg b/public/emoji/1f53b.svg new file mode 100644 index 000000000..57d6ad467 --- /dev/null +++ b/public/emoji/1f53b.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f53c.svg b/public/emoji/1f53c.svg new file mode 100644 index 000000000..6836e6e04 --- /dev/null +++ b/public/emoji/1f53c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f53d.svg b/public/emoji/1f53d.svg new file mode 100644 index 000000000..a624cea78 --- /dev/null +++ b/public/emoji/1f53d.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f549.svg b/public/emoji/1f549.svg new file mode 100644 index 000000000..f068cd739 --- /dev/null +++ b/public/emoji/1f549.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f54a.svg b/public/emoji/1f54a.svg new file mode 100644 index 000000000..37fa3aaf1 --- /dev/null +++ b/public/emoji/1f54a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f54b.svg b/public/emoji/1f54b.svg new file mode 100644 index 000000000..687e4d776 --- /dev/null +++ b/public/emoji/1f54b.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f54c.svg b/public/emoji/1f54c.svg new file mode 100644 index 000000000..071b498d3 --- /dev/null +++ b/public/emoji/1f54c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f54d.svg b/public/emoji/1f54d.svg new file mode 100644 index 000000000..e33485507 --- /dev/null +++ b/public/emoji/1f54d.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f54e.svg b/public/emoji/1f54e.svg new file mode 100644 index 000000000..82e1ca338 --- /dev/null +++ b/public/emoji/1f54e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f550.svg b/public/emoji/1f550.svg new file mode 100644 index 000000000..bd5bb075b --- /dev/null +++ b/public/emoji/1f550.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f551.svg b/public/emoji/1f551.svg new file mode 100644 index 000000000..2e5517712 --- /dev/null +++ b/public/emoji/1f551.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f552.svg b/public/emoji/1f552.svg new file mode 100644 index 000000000..834d2ddc5 --- /dev/null +++ b/public/emoji/1f552.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f553.svg b/public/emoji/1f553.svg new file mode 100644 index 000000000..9f67b6958 --- /dev/null +++ b/public/emoji/1f553.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f554.svg b/public/emoji/1f554.svg new file mode 100644 index 000000000..073f85721 --- /dev/null +++ b/public/emoji/1f554.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f555.svg b/public/emoji/1f555.svg new file mode 100644 index 000000000..0fc34642b --- /dev/null +++ b/public/emoji/1f555.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f556.svg b/public/emoji/1f556.svg new file mode 100644 index 000000000..528919067 --- /dev/null +++ b/public/emoji/1f556.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f557.svg b/public/emoji/1f557.svg new file mode 100644 index 000000000..f5bc3aff5 --- /dev/null +++ b/public/emoji/1f557.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f558.svg b/public/emoji/1f558.svg new file mode 100644 index 000000000..7e4eda386 --- /dev/null +++ b/public/emoji/1f558.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f559.svg b/public/emoji/1f559.svg new file mode 100644 index 000000000..21e380e62 --- /dev/null +++ b/public/emoji/1f559.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f55a.svg b/public/emoji/1f55a.svg new file mode 100644 index 000000000..6d7a3531c --- /dev/null +++ b/public/emoji/1f55a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f55b.svg b/public/emoji/1f55b.svg new file mode 100644 index 000000000..1381b3bc6 --- /dev/null +++ b/public/emoji/1f55b.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f55c.svg b/public/emoji/1f55c.svg new file mode 100644 index 000000000..9972f542d --- /dev/null +++ b/public/emoji/1f55c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f55d.svg b/public/emoji/1f55d.svg new file mode 100644 index 000000000..86f24116e --- /dev/null +++ b/public/emoji/1f55d.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f55e.svg b/public/emoji/1f55e.svg new file mode 100644 index 000000000..da9779968 --- /dev/null +++ b/public/emoji/1f55e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f55f.svg b/public/emoji/1f55f.svg new file mode 100644 index 000000000..8185d206b --- /dev/null +++ b/public/emoji/1f55f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f560.svg b/public/emoji/1f560.svg new file mode 100644 index 000000000..54ef72628 --- /dev/null +++ b/public/emoji/1f560.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f561.svg b/public/emoji/1f561.svg new file mode 100644 index 000000000..fea0cde95 --- /dev/null +++ b/public/emoji/1f561.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f562.svg b/public/emoji/1f562.svg new file mode 100644 index 000000000..5cf968fb8 --- /dev/null +++ b/public/emoji/1f562.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f563.svg b/public/emoji/1f563.svg new file mode 100644 index 000000000..ce973153f --- /dev/null +++ b/public/emoji/1f563.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f564.svg b/public/emoji/1f564.svg new file mode 100644 index 000000000..d7d214fa1 --- /dev/null +++ b/public/emoji/1f564.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f565.svg b/public/emoji/1f565.svg new file mode 100644 index 000000000..d7d8b48d1 --- /dev/null +++ b/public/emoji/1f565.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f566.svg b/public/emoji/1f566.svg new file mode 100644 index 000000000..77030c048 --- /dev/null +++ b/public/emoji/1f566.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f567.svg b/public/emoji/1f567.svg new file mode 100644 index 000000000..02e81326a --- /dev/null +++ b/public/emoji/1f567.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f56f.svg b/public/emoji/1f56f.svg new file mode 100644 index 000000000..af4c60634 --- /dev/null +++ b/public/emoji/1f56f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f570.svg b/public/emoji/1f570.svg new file mode 100644 index 000000000..c2808cbac --- /dev/null +++ b/public/emoji/1f570.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f573.svg b/public/emoji/1f573.svg new file mode 100644 index 000000000..4ccc4369f --- /dev/null +++ b/public/emoji/1f573.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f574.svg b/public/emoji/1f574.svg new file mode 100644 index 000000000..cfaf2a789 --- /dev/null +++ b/public/emoji/1f574.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f575-1f3fb.svg b/public/emoji/1f575-1f3fb.svg new file mode 100644 index 000000000..9e0d53872 --- /dev/null +++ b/public/emoji/1f575-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f575-1f3fc.svg b/public/emoji/1f575-1f3fc.svg new file mode 100644 index 000000000..1eb13a65e --- /dev/null +++ b/public/emoji/1f575-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f575-1f3fd.svg b/public/emoji/1f575-1f3fd.svg new file mode 100644 index 000000000..6eaa233c3 --- /dev/null +++ b/public/emoji/1f575-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f575-1f3fe.svg b/public/emoji/1f575-1f3fe.svg new file mode 100644 index 000000000..f3f11e430 --- /dev/null +++ b/public/emoji/1f575-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f575-1f3ff.svg b/public/emoji/1f575-1f3ff.svg new file mode 100644 index 000000000..5fc557546 --- /dev/null +++ b/public/emoji/1f575-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f575.svg b/public/emoji/1f575.svg new file mode 100644 index 000000000..9612edafb --- /dev/null +++ b/public/emoji/1f575.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f576.svg b/public/emoji/1f576.svg new file mode 100644 index 000000000..3f1075ec4 --- /dev/null +++ b/public/emoji/1f576.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f577.svg b/public/emoji/1f577.svg new file mode 100644 index 000000000..21bb08901 --- /dev/null +++ b/public/emoji/1f577.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f578.svg b/public/emoji/1f578.svg new file mode 100644 index 000000000..8a5a41959 --- /dev/null +++ b/public/emoji/1f578.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f579.svg b/public/emoji/1f579.svg new file mode 100644 index 000000000..b2e644013 --- /dev/null +++ b/public/emoji/1f579.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f57a-1f3fb.svg b/public/emoji/1f57a-1f3fb.svg new file mode 100644 index 000000000..fc47b48f6 --- /dev/null +++ b/public/emoji/1f57a-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f57a-1f3fc.svg b/public/emoji/1f57a-1f3fc.svg new file mode 100644 index 000000000..289dcb68a --- /dev/null +++ b/public/emoji/1f57a-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f57a-1f3fd.svg b/public/emoji/1f57a-1f3fd.svg new file mode 100644 index 000000000..0356c2ac9 --- /dev/null +++ b/public/emoji/1f57a-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f57a-1f3fe.svg b/public/emoji/1f57a-1f3fe.svg new file mode 100644 index 000000000..70bb51fb9 --- /dev/null +++ b/public/emoji/1f57a-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f57a-1f3ff.svg b/public/emoji/1f57a-1f3ff.svg new file mode 100644 index 000000000..61633d21d --- /dev/null +++ b/public/emoji/1f57a-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f57a.svg b/public/emoji/1f57a.svg new file mode 100644 index 000000000..11d2247c7 --- /dev/null +++ b/public/emoji/1f57a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f587.svg b/public/emoji/1f587.svg new file mode 100644 index 000000000..b2dafc18b --- /dev/null +++ b/public/emoji/1f587.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f58a.svg b/public/emoji/1f58a.svg new file mode 100644 index 000000000..1b61284ce --- /dev/null +++ b/public/emoji/1f58a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f58b.svg b/public/emoji/1f58b.svg new file mode 100644 index 000000000..a15d1aa50 --- /dev/null +++ b/public/emoji/1f58b.svg @@ -0,0 +1,2 @@ + \ No newline at end of file diff --git a/public/emoji/1f58c.svg b/public/emoji/1f58c.svg new file mode 100644 index 000000000..25a691660 --- /dev/null +++ b/public/emoji/1f58c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f58d.svg b/public/emoji/1f58d.svg new file mode 100644 index 000000000..5a76528b5 --- /dev/null +++ b/public/emoji/1f58d.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f590-1f3fb.svg b/public/emoji/1f590-1f3fb.svg new file mode 100644 index 000000000..5154c0bb0 --- /dev/null +++ b/public/emoji/1f590-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f590-1f3fc.svg b/public/emoji/1f590-1f3fc.svg new file mode 100644 index 000000000..00e624a29 --- /dev/null +++ b/public/emoji/1f590-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f590-1f3fd.svg b/public/emoji/1f590-1f3fd.svg new file mode 100644 index 000000000..79c964408 --- /dev/null +++ b/public/emoji/1f590-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f590-1f3fe.svg b/public/emoji/1f590-1f3fe.svg new file mode 100644 index 000000000..1e01c773b --- /dev/null +++ b/public/emoji/1f590-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f590-1f3ff.svg b/public/emoji/1f590-1f3ff.svg new file mode 100644 index 000000000..feae91977 --- /dev/null +++ b/public/emoji/1f590-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f590.svg b/public/emoji/1f590.svg new file mode 100644 index 000000000..daefb13e6 --- /dev/null +++ b/public/emoji/1f590.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f595-1f3fb.svg b/public/emoji/1f595-1f3fb.svg new file mode 100644 index 000000000..74a6b8c40 --- /dev/null +++ b/public/emoji/1f595-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f595-1f3fc.svg b/public/emoji/1f595-1f3fc.svg new file mode 100644 index 000000000..57bccaa78 --- /dev/null +++ b/public/emoji/1f595-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f595-1f3fd.svg b/public/emoji/1f595-1f3fd.svg new file mode 100644 index 000000000..8ae95508b --- /dev/null +++ b/public/emoji/1f595-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f595-1f3fe.svg b/public/emoji/1f595-1f3fe.svg new file mode 100644 index 000000000..b571c1553 --- /dev/null +++ b/public/emoji/1f595-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f595-1f3ff.svg b/public/emoji/1f595-1f3ff.svg new file mode 100644 index 000000000..63062da9a --- /dev/null +++ b/public/emoji/1f595-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f595.svg b/public/emoji/1f595.svg new file mode 100644 index 000000000..a4247910c --- /dev/null +++ b/public/emoji/1f595.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f596-1f3fb.svg b/public/emoji/1f596-1f3fb.svg new file mode 100644 index 000000000..73de3c32d --- /dev/null +++ b/public/emoji/1f596-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f596-1f3fc.svg b/public/emoji/1f596-1f3fc.svg new file mode 100644 index 000000000..acd4f53b6 --- /dev/null +++ b/public/emoji/1f596-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f596-1f3fd.svg b/public/emoji/1f596-1f3fd.svg new file mode 100644 index 000000000..ab308598e --- /dev/null +++ b/public/emoji/1f596-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f596-1f3fe.svg b/public/emoji/1f596-1f3fe.svg new file mode 100644 index 000000000..6104d999d --- /dev/null +++ b/public/emoji/1f596-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f596-1f3ff.svg b/public/emoji/1f596-1f3ff.svg new file mode 100644 index 000000000..e936d88aa --- /dev/null +++ b/public/emoji/1f596-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f596.svg b/public/emoji/1f596.svg new file mode 100644 index 000000000..b2fb218f7 --- /dev/null +++ b/public/emoji/1f596.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f5a4.svg b/public/emoji/1f5a4.svg new file mode 100644 index 000000000..5cedc5fb2 --- /dev/null +++ b/public/emoji/1f5a4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f5a5.svg b/public/emoji/1f5a5.svg new file mode 100644 index 000000000..852287cf9 --- /dev/null +++ b/public/emoji/1f5a5.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f5a8.svg b/public/emoji/1f5a8.svg new file mode 100644 index 000000000..4eb491f2e --- /dev/null +++ b/public/emoji/1f5a8.svg @@ -0,0 +1,3 @@ + \ No newline at end of file diff --git a/public/emoji/1f5b1.svg b/public/emoji/1f5b1.svg new file mode 100644 index 000000000..ed83ffe0f --- /dev/null +++ b/public/emoji/1f5b1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f5b2.svg b/public/emoji/1f5b2.svg new file mode 100644 index 000000000..35468b2c8 --- /dev/null +++ b/public/emoji/1f5b2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f5bc.svg b/public/emoji/1f5bc.svg new file mode 100644 index 000000000..a0f89d0d6 --- /dev/null +++ b/public/emoji/1f5bc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f5c2.svg b/public/emoji/1f5c2.svg new file mode 100644 index 000000000..d2046e806 --- /dev/null +++ b/public/emoji/1f5c2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f5c3.svg b/public/emoji/1f5c3.svg new file mode 100644 index 000000000..4ab8e1b1c --- /dev/null +++ b/public/emoji/1f5c3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f5c4.svg b/public/emoji/1f5c4.svg new file mode 100644 index 000000000..e27bdf1b3 --- /dev/null +++ b/public/emoji/1f5c4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f5d1.svg b/public/emoji/1f5d1.svg new file mode 100644 index 000000000..a83f728e2 --- /dev/null +++ b/public/emoji/1f5d1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f5d2.svg b/public/emoji/1f5d2.svg new file mode 100644 index 000000000..edfd8d0e6 --- /dev/null +++ b/public/emoji/1f5d2.svg @@ -0,0 +1,2 @@ + \ No newline at end of file diff --git a/public/emoji/1f5d3.svg b/public/emoji/1f5d3.svg new file mode 100644 index 000000000..abe8a9410 --- /dev/null +++ b/public/emoji/1f5d3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f5dc.svg b/public/emoji/1f5dc.svg new file mode 100644 index 000000000..7d7fcab04 --- /dev/null +++ b/public/emoji/1f5dc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f5dd.svg b/public/emoji/1f5dd.svg new file mode 100644 index 000000000..9bbf4f2ac --- /dev/null +++ b/public/emoji/1f5dd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f5de.svg b/public/emoji/1f5de.svg new file mode 100644 index 000000000..fc3788633 --- /dev/null +++ b/public/emoji/1f5de.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f5e1.svg b/public/emoji/1f5e1.svg new file mode 100644 index 000000000..8802fe08c --- /dev/null +++ b/public/emoji/1f5e1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f5e3.svg b/public/emoji/1f5e3.svg new file mode 100644 index 000000000..9ba8a6ca6 --- /dev/null +++ b/public/emoji/1f5e3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f5e8.svg b/public/emoji/1f5e8.svg new file mode 100644 index 000000000..b8c77e411 --- /dev/null +++ b/public/emoji/1f5e8.svg @@ -0,0 +1,2 @@ + \ No newline at end of file diff --git a/public/emoji/1f5ef.svg b/public/emoji/1f5ef.svg new file mode 100644 index 000000000..ed8290098 --- /dev/null +++ b/public/emoji/1f5ef.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f5f3.svg b/public/emoji/1f5f3.svg new file mode 100644 index 000000000..c0cfc8307 --- /dev/null +++ b/public/emoji/1f5f3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f5fa.svg b/public/emoji/1f5fa.svg new file mode 100644 index 000000000..182a68f7f --- /dev/null +++ b/public/emoji/1f5fa.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f5fb.svg b/public/emoji/1f5fb.svg new file mode 100644 index 000000000..17545f8cc --- /dev/null +++ b/public/emoji/1f5fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f5fc.svg b/public/emoji/1f5fc.svg new file mode 100644 index 000000000..cb64daa5f --- /dev/null +++ b/public/emoji/1f5fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f5fd.svg b/public/emoji/1f5fd.svg new file mode 100644 index 000000000..fc4d83459 --- /dev/null +++ b/public/emoji/1f5fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f5fe.svg b/public/emoji/1f5fe.svg new file mode 100644 index 000000000..2b86ffcad --- /dev/null +++ b/public/emoji/1f5fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f5ff.svg b/public/emoji/1f5ff.svg new file mode 100644 index 000000000..3b6c02afd --- /dev/null +++ b/public/emoji/1f5ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f600.svg b/public/emoji/1f600.svg new file mode 100644 index 000000000..33a476929 --- /dev/null +++ b/public/emoji/1f600.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f601.svg b/public/emoji/1f601.svg new file mode 100644 index 000000000..e3939db53 --- /dev/null +++ b/public/emoji/1f601.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f602.svg b/public/emoji/1f602.svg new file mode 100644 index 000000000..ad3522a9d --- /dev/null +++ b/public/emoji/1f602.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f603.svg b/public/emoji/1f603.svg new file mode 100644 index 000000000..a526b1541 --- /dev/null +++ b/public/emoji/1f603.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f604.svg b/public/emoji/1f604.svg new file mode 100644 index 000000000..9d3a8409e --- /dev/null +++ b/public/emoji/1f604.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f605.svg b/public/emoji/1f605.svg new file mode 100644 index 000000000..da2087545 --- /dev/null +++ b/public/emoji/1f605.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f606.svg b/public/emoji/1f606.svg new file mode 100644 index 000000000..a16e007eb --- /dev/null +++ b/public/emoji/1f606.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f607.svg b/public/emoji/1f607.svg new file mode 100644 index 000000000..7109c8371 --- /dev/null +++ b/public/emoji/1f607.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f608.svg b/public/emoji/1f608.svg new file mode 100644 index 000000000..bdf423616 --- /dev/null +++ b/public/emoji/1f608.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f609.svg b/public/emoji/1f609.svg new file mode 100644 index 000000000..2e4509e57 --- /dev/null +++ b/public/emoji/1f609.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f60a.svg b/public/emoji/1f60a.svg new file mode 100644 index 000000000..797c06386 --- /dev/null +++ b/public/emoji/1f60a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f60b.svg b/public/emoji/1f60b.svg new file mode 100644 index 000000000..932ca7d7c --- /dev/null +++ b/public/emoji/1f60b.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f60c.svg b/public/emoji/1f60c.svg new file mode 100644 index 000000000..4af17f144 --- /dev/null +++ b/public/emoji/1f60c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f60d.svg b/public/emoji/1f60d.svg new file mode 100644 index 000000000..4237d7e3f --- /dev/null +++ b/public/emoji/1f60d.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f60e.svg b/public/emoji/1f60e.svg new file mode 100644 index 000000000..945ae68db --- /dev/null +++ b/public/emoji/1f60e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f60f.svg b/public/emoji/1f60f.svg new file mode 100644 index 000000000..68a3db63b --- /dev/null +++ b/public/emoji/1f60f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f610.svg b/public/emoji/1f610.svg new file mode 100644 index 000000000..23a11f7c5 --- /dev/null +++ b/public/emoji/1f610.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f611.svg b/public/emoji/1f611.svg new file mode 100644 index 000000000..7938d2c1d --- /dev/null +++ b/public/emoji/1f611.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f612.svg b/public/emoji/1f612.svg new file mode 100644 index 000000000..e55762748 --- /dev/null +++ b/public/emoji/1f612.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f613.svg b/public/emoji/1f613.svg new file mode 100644 index 000000000..607726762 --- /dev/null +++ b/public/emoji/1f613.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f614.svg b/public/emoji/1f614.svg new file mode 100644 index 000000000..28de02f24 --- /dev/null +++ b/public/emoji/1f614.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f615.svg b/public/emoji/1f615.svg new file mode 100644 index 000000000..534330c3b --- /dev/null +++ b/public/emoji/1f615.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f616.svg b/public/emoji/1f616.svg new file mode 100644 index 000000000..5f038264f --- /dev/null +++ b/public/emoji/1f616.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f617.svg b/public/emoji/1f617.svg new file mode 100644 index 000000000..be878012b --- /dev/null +++ b/public/emoji/1f617.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f618.svg b/public/emoji/1f618.svg new file mode 100644 index 000000000..983b37b47 --- /dev/null +++ b/public/emoji/1f618.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f619.svg b/public/emoji/1f619.svg new file mode 100644 index 000000000..1ac00e32f --- /dev/null +++ b/public/emoji/1f619.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f61a.svg b/public/emoji/1f61a.svg new file mode 100644 index 000000000..7a3cf7604 --- /dev/null +++ b/public/emoji/1f61a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f61b.svg b/public/emoji/1f61b.svg new file mode 100644 index 000000000..ccef634ec --- /dev/null +++ b/public/emoji/1f61b.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f61c.svg b/public/emoji/1f61c.svg new file mode 100644 index 000000000..413c3d2a8 --- /dev/null +++ b/public/emoji/1f61c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f61d.svg b/public/emoji/1f61d.svg new file mode 100644 index 000000000..5157da937 --- /dev/null +++ b/public/emoji/1f61d.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f61e.svg b/public/emoji/1f61e.svg new file mode 100644 index 000000000..143c2f431 --- /dev/null +++ b/public/emoji/1f61e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f61f.svg b/public/emoji/1f61f.svg new file mode 100644 index 000000000..a1eec054e --- /dev/null +++ b/public/emoji/1f61f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f620.svg b/public/emoji/1f620.svg new file mode 100644 index 000000000..a32acbcdd --- /dev/null +++ b/public/emoji/1f620.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f621.svg b/public/emoji/1f621.svg new file mode 100644 index 000000000..f7c72270f --- /dev/null +++ b/public/emoji/1f621.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f622.svg b/public/emoji/1f622.svg new file mode 100644 index 000000000..e39209c80 --- /dev/null +++ b/public/emoji/1f622.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f623.svg b/public/emoji/1f623.svg new file mode 100644 index 000000000..94826839a --- /dev/null +++ b/public/emoji/1f623.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f624.svg b/public/emoji/1f624.svg new file mode 100644 index 000000000..fe5de95fc --- /dev/null +++ b/public/emoji/1f624.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f625.svg b/public/emoji/1f625.svg new file mode 100644 index 000000000..c52759e69 --- /dev/null +++ b/public/emoji/1f625.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f626.svg b/public/emoji/1f626.svg new file mode 100644 index 000000000..c037c085a --- /dev/null +++ b/public/emoji/1f626.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f627.svg b/public/emoji/1f627.svg new file mode 100644 index 000000000..b97c18b3a --- /dev/null +++ b/public/emoji/1f627.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f628.svg b/public/emoji/1f628.svg new file mode 100644 index 000000000..38cfe0bb2 --- /dev/null +++ b/public/emoji/1f628.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f629.svg b/public/emoji/1f629.svg new file mode 100644 index 000000000..248da5b2e --- /dev/null +++ b/public/emoji/1f629.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f62a.svg b/public/emoji/1f62a.svg new file mode 100644 index 000000000..d2dd9f7b4 --- /dev/null +++ b/public/emoji/1f62a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f62b.svg b/public/emoji/1f62b.svg new file mode 100644 index 000000000..3ba1a6c02 --- /dev/null +++ b/public/emoji/1f62b.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f62c.svg b/public/emoji/1f62c.svg new file mode 100644 index 000000000..75c5b7dcb --- /dev/null +++ b/public/emoji/1f62c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f62d.svg b/public/emoji/1f62d.svg new file mode 100644 index 000000000..0fb4ba9bd --- /dev/null +++ b/public/emoji/1f62d.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f62e.svg b/public/emoji/1f62e.svg new file mode 100644 index 000000000..855b53c66 --- /dev/null +++ b/public/emoji/1f62e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f62f.svg b/public/emoji/1f62f.svg new file mode 100644 index 000000000..d9b0801f7 --- /dev/null +++ b/public/emoji/1f62f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f630.svg b/public/emoji/1f630.svg new file mode 100644 index 000000000..9ae7444e7 --- /dev/null +++ b/public/emoji/1f630.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f631.svg b/public/emoji/1f631.svg new file mode 100644 index 000000000..686c98355 --- /dev/null +++ b/public/emoji/1f631.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f632.svg b/public/emoji/1f632.svg new file mode 100644 index 000000000..703ddf123 --- /dev/null +++ b/public/emoji/1f632.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f633.svg b/public/emoji/1f633.svg new file mode 100644 index 000000000..8be56d39a --- /dev/null +++ b/public/emoji/1f633.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f634.svg b/public/emoji/1f634.svg new file mode 100644 index 000000000..41beef906 --- /dev/null +++ b/public/emoji/1f634.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f635.svg b/public/emoji/1f635.svg new file mode 100644 index 000000000..655645247 --- /dev/null +++ b/public/emoji/1f635.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f636.svg b/public/emoji/1f636.svg new file mode 100644 index 000000000..9ad70bc51 --- /dev/null +++ b/public/emoji/1f636.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f637.svg b/public/emoji/1f637.svg new file mode 100644 index 000000000..2fcc6b50f --- /dev/null +++ b/public/emoji/1f637.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f638.svg b/public/emoji/1f638.svg new file mode 100644 index 000000000..6e8aa8435 --- /dev/null +++ b/public/emoji/1f638.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f639.svg b/public/emoji/1f639.svg new file mode 100644 index 000000000..1eb62f35c --- /dev/null +++ b/public/emoji/1f639.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f63a.svg b/public/emoji/1f63a.svg new file mode 100644 index 000000000..c708d746e --- /dev/null +++ b/public/emoji/1f63a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f63b.svg b/public/emoji/1f63b.svg new file mode 100644 index 000000000..b7388254b --- /dev/null +++ b/public/emoji/1f63b.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f63c.svg b/public/emoji/1f63c.svg new file mode 100644 index 000000000..7cebf3d67 --- /dev/null +++ b/public/emoji/1f63c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f63d.svg b/public/emoji/1f63d.svg new file mode 100644 index 000000000..8d029f960 --- /dev/null +++ b/public/emoji/1f63d.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f63e.svg b/public/emoji/1f63e.svg new file mode 100644 index 000000000..aa7be0f64 --- /dev/null +++ b/public/emoji/1f63e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f63f.svg b/public/emoji/1f63f.svg new file mode 100644 index 000000000..5b17e9523 --- /dev/null +++ b/public/emoji/1f63f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f640.svg b/public/emoji/1f640.svg new file mode 100644 index 000000000..5c1c25786 --- /dev/null +++ b/public/emoji/1f640.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f641.svg b/public/emoji/1f641.svg new file mode 100644 index 000000000..aeb3b4f24 --- /dev/null +++ b/public/emoji/1f641.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f642.svg b/public/emoji/1f642.svg new file mode 100644 index 000000000..753ef7c23 --- /dev/null +++ b/public/emoji/1f642.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f643.svg b/public/emoji/1f643.svg new file mode 100644 index 000000000..bdb24a7e5 --- /dev/null +++ b/public/emoji/1f643.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f644.svg b/public/emoji/1f644.svg new file mode 100644 index 000000000..dcb222cef --- /dev/null +++ b/public/emoji/1f644.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f645-1f3fb.svg b/public/emoji/1f645-1f3fb.svg new file mode 100644 index 000000000..ac2255ef7 --- /dev/null +++ b/public/emoji/1f645-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f645-1f3fc.svg b/public/emoji/1f645-1f3fc.svg new file mode 100644 index 000000000..621160c36 --- /dev/null +++ b/public/emoji/1f645-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f645-1f3fd.svg b/public/emoji/1f645-1f3fd.svg new file mode 100644 index 000000000..446067544 --- /dev/null +++ b/public/emoji/1f645-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f645-1f3fe.svg b/public/emoji/1f645-1f3fe.svg new file mode 100644 index 000000000..2a99eabc2 --- /dev/null +++ b/public/emoji/1f645-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f645-1f3ff.svg b/public/emoji/1f645-1f3ff.svg new file mode 100644 index 000000000..b32480b4a --- /dev/null +++ b/public/emoji/1f645-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f645.svg b/public/emoji/1f645.svg new file mode 100644 index 000000000..d735d25d7 --- /dev/null +++ b/public/emoji/1f645.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f646-1f3fb.svg b/public/emoji/1f646-1f3fb.svg new file mode 100644 index 000000000..b8d8dfddb --- /dev/null +++ b/public/emoji/1f646-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f646-1f3fc.svg b/public/emoji/1f646-1f3fc.svg new file mode 100644 index 000000000..f16fa5a95 --- /dev/null +++ b/public/emoji/1f646-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f646-1f3fd.svg b/public/emoji/1f646-1f3fd.svg new file mode 100644 index 000000000..9bc563c6b --- /dev/null +++ b/public/emoji/1f646-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f646-1f3fe.svg b/public/emoji/1f646-1f3fe.svg new file mode 100644 index 000000000..5392c7375 --- /dev/null +++ b/public/emoji/1f646-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f646-1f3ff.svg b/public/emoji/1f646-1f3ff.svg new file mode 100644 index 000000000..6a43d0b1a --- /dev/null +++ b/public/emoji/1f646-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f646.svg b/public/emoji/1f646.svg new file mode 100644 index 000000000..8a9a9648e --- /dev/null +++ b/public/emoji/1f646.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f647-1f3fb.svg b/public/emoji/1f647-1f3fb.svg new file mode 100644 index 000000000..bce8d4bab --- /dev/null +++ b/public/emoji/1f647-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f647-1f3fc.svg b/public/emoji/1f647-1f3fc.svg new file mode 100644 index 000000000..c492d0978 --- /dev/null +++ b/public/emoji/1f647-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f647-1f3fd.svg b/public/emoji/1f647-1f3fd.svg new file mode 100644 index 000000000..e61503403 --- /dev/null +++ b/public/emoji/1f647-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f647-1f3fe.svg b/public/emoji/1f647-1f3fe.svg new file mode 100644 index 000000000..090651faa --- /dev/null +++ b/public/emoji/1f647-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f647-1f3ff.svg b/public/emoji/1f647-1f3ff.svg new file mode 100644 index 000000000..f726d47a8 --- /dev/null +++ b/public/emoji/1f647-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f647.svg b/public/emoji/1f647.svg new file mode 100644 index 000000000..e5dedddd3 --- /dev/null +++ b/public/emoji/1f647.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f648.svg b/public/emoji/1f648.svg new file mode 100644 index 000000000..b8b51161e --- /dev/null +++ b/public/emoji/1f648.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f649.svg b/public/emoji/1f649.svg new file mode 100644 index 000000000..ab6b6844c --- /dev/null +++ b/public/emoji/1f649.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f64a.svg b/public/emoji/1f64a.svg new file mode 100644 index 000000000..47df40a8c --- /dev/null +++ b/public/emoji/1f64a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f64b-1f3fb.svg b/public/emoji/1f64b-1f3fb.svg new file mode 100644 index 000000000..e9e7e3b3a --- /dev/null +++ b/public/emoji/1f64b-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f64b-1f3fc.svg b/public/emoji/1f64b-1f3fc.svg new file mode 100644 index 000000000..9e6ac9c2c --- /dev/null +++ b/public/emoji/1f64b-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f64b-1f3fd.svg b/public/emoji/1f64b-1f3fd.svg new file mode 100644 index 000000000..d4e4a75f8 --- /dev/null +++ b/public/emoji/1f64b-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f64b-1f3fe.svg b/public/emoji/1f64b-1f3fe.svg new file mode 100644 index 000000000..39a115000 --- /dev/null +++ b/public/emoji/1f64b-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f64b-1f3ff.svg b/public/emoji/1f64b-1f3ff.svg new file mode 100644 index 000000000..f8cb017ef --- /dev/null +++ b/public/emoji/1f64b-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f64b.svg b/public/emoji/1f64b.svg new file mode 100644 index 000000000..d221b1846 --- /dev/null +++ b/public/emoji/1f64b.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f64c-1f3fb.svg b/public/emoji/1f64c-1f3fb.svg new file mode 100644 index 000000000..2bec077d9 --- /dev/null +++ b/public/emoji/1f64c-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f64c-1f3fc.svg b/public/emoji/1f64c-1f3fc.svg new file mode 100644 index 000000000..f90b8825c --- /dev/null +++ b/public/emoji/1f64c-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f64c-1f3fd.svg b/public/emoji/1f64c-1f3fd.svg new file mode 100644 index 000000000..0b0ed18ce --- /dev/null +++ b/public/emoji/1f64c-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f64c-1f3fe.svg b/public/emoji/1f64c-1f3fe.svg new file mode 100644 index 000000000..413708003 --- /dev/null +++ b/public/emoji/1f64c-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f64c-1f3ff.svg b/public/emoji/1f64c-1f3ff.svg new file mode 100644 index 000000000..e13a1d7b3 --- /dev/null +++ b/public/emoji/1f64c-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f64c.svg b/public/emoji/1f64c.svg new file mode 100644 index 000000000..0f7f86cfd --- /dev/null +++ b/public/emoji/1f64c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f64d-1f3fb.svg b/public/emoji/1f64d-1f3fb.svg new file mode 100644 index 000000000..7a858ef2c --- /dev/null +++ b/public/emoji/1f64d-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f64d-1f3fc.svg b/public/emoji/1f64d-1f3fc.svg new file mode 100644 index 000000000..10458b13f --- /dev/null +++ b/public/emoji/1f64d-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f64d-1f3fd.svg b/public/emoji/1f64d-1f3fd.svg new file mode 100644 index 000000000..f9842d0e4 --- /dev/null +++ b/public/emoji/1f64d-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f64d-1f3fe.svg b/public/emoji/1f64d-1f3fe.svg new file mode 100644 index 000000000..57de38b91 --- /dev/null +++ b/public/emoji/1f64d-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f64d-1f3ff.svg b/public/emoji/1f64d-1f3ff.svg new file mode 100644 index 000000000..64af62a9b --- /dev/null +++ b/public/emoji/1f64d-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f64d.svg b/public/emoji/1f64d.svg new file mode 100644 index 000000000..6309a6321 --- /dev/null +++ b/public/emoji/1f64d.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f64e-1f3fb.svg b/public/emoji/1f64e-1f3fb.svg new file mode 100644 index 000000000..8d869fd6e --- /dev/null +++ b/public/emoji/1f64e-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f64e-1f3fc.svg b/public/emoji/1f64e-1f3fc.svg new file mode 100644 index 000000000..2dfd81c70 --- /dev/null +++ b/public/emoji/1f64e-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f64e-1f3fd.svg b/public/emoji/1f64e-1f3fd.svg new file mode 100644 index 000000000..7cf16e681 --- /dev/null +++ b/public/emoji/1f64e-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f64e-1f3fe.svg b/public/emoji/1f64e-1f3fe.svg new file mode 100644 index 000000000..84d91ba6a --- /dev/null +++ b/public/emoji/1f64e-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f64e-1f3ff.svg b/public/emoji/1f64e-1f3ff.svg new file mode 100644 index 000000000..00882dd2f --- /dev/null +++ b/public/emoji/1f64e-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f64e.svg b/public/emoji/1f64e.svg new file mode 100644 index 000000000..b23b54491 --- /dev/null +++ b/public/emoji/1f64e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f64f-1f3fb.svg b/public/emoji/1f64f-1f3fb.svg new file mode 100644 index 000000000..eddfe82f0 --- /dev/null +++ b/public/emoji/1f64f-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f64f-1f3fc.svg b/public/emoji/1f64f-1f3fc.svg new file mode 100644 index 000000000..05011796d --- /dev/null +++ b/public/emoji/1f64f-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f64f-1f3fd.svg b/public/emoji/1f64f-1f3fd.svg new file mode 100644 index 000000000..40c74cf90 --- /dev/null +++ b/public/emoji/1f64f-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f64f-1f3fe.svg b/public/emoji/1f64f-1f3fe.svg new file mode 100644 index 000000000..1e8149f52 --- /dev/null +++ b/public/emoji/1f64f-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f64f-1f3ff.svg b/public/emoji/1f64f-1f3ff.svg new file mode 100644 index 000000000..3c7a1b6cb --- /dev/null +++ b/public/emoji/1f64f-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f64f.svg b/public/emoji/1f64f.svg new file mode 100644 index 000000000..a6b0bca04 --- /dev/null +++ b/public/emoji/1f64f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f680.svg b/public/emoji/1f680.svg new file mode 100644 index 000000000..4ba418a05 --- /dev/null +++ b/public/emoji/1f680.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f681.svg b/public/emoji/1f681.svg new file mode 100644 index 000000000..fa2ce38e4 --- /dev/null +++ b/public/emoji/1f681.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f682.svg b/public/emoji/1f682.svg new file mode 100644 index 000000000..829f6e2aa --- /dev/null +++ b/public/emoji/1f682.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f683.svg b/public/emoji/1f683.svg new file mode 100644 index 000000000..804288265 --- /dev/null +++ b/public/emoji/1f683.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f684.svg b/public/emoji/1f684.svg new file mode 100644 index 000000000..291c00a18 --- /dev/null +++ b/public/emoji/1f684.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f685.svg b/public/emoji/1f685.svg new file mode 100644 index 000000000..e6e4a7a6a --- /dev/null +++ b/public/emoji/1f685.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f686.svg b/public/emoji/1f686.svg new file mode 100644 index 000000000..15d5e1ebb --- /dev/null +++ b/public/emoji/1f686.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f687.svg b/public/emoji/1f687.svg new file mode 100644 index 000000000..5f075abda --- /dev/null +++ b/public/emoji/1f687.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f688.svg b/public/emoji/1f688.svg new file mode 100644 index 000000000..f5fc3b02b --- /dev/null +++ b/public/emoji/1f688.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f689.svg b/public/emoji/1f689.svg new file mode 100644 index 000000000..6c3953aa3 --- /dev/null +++ b/public/emoji/1f689.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f68a.svg b/public/emoji/1f68a.svg new file mode 100644 index 000000000..e98a079b0 --- /dev/null +++ b/public/emoji/1f68a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f68b.svg b/public/emoji/1f68b.svg new file mode 100644 index 000000000..8c64b5111 --- /dev/null +++ b/public/emoji/1f68b.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f68c.svg b/public/emoji/1f68c.svg new file mode 100644 index 000000000..99862d511 --- /dev/null +++ b/public/emoji/1f68c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f68d.svg b/public/emoji/1f68d.svg new file mode 100644 index 000000000..d2d2f59c7 --- /dev/null +++ b/public/emoji/1f68d.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f68e.svg b/public/emoji/1f68e.svg new file mode 100644 index 000000000..ec3e927f8 --- /dev/null +++ b/public/emoji/1f68e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f68f.svg b/public/emoji/1f68f.svg new file mode 100644 index 000000000..3e9cb1d11 --- /dev/null +++ b/public/emoji/1f68f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f690.svg b/public/emoji/1f690.svg new file mode 100644 index 000000000..5357258cc --- /dev/null +++ b/public/emoji/1f690.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f691.svg b/public/emoji/1f691.svg new file mode 100644 index 000000000..2bcbcffa6 --- /dev/null +++ b/public/emoji/1f691.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f692.svg b/public/emoji/1f692.svg new file mode 100644 index 000000000..d82b25483 --- /dev/null +++ b/public/emoji/1f692.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f693.svg b/public/emoji/1f693.svg new file mode 100644 index 000000000..7964668df --- /dev/null +++ b/public/emoji/1f693.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f694.svg b/public/emoji/1f694.svg new file mode 100644 index 000000000..680a09759 --- /dev/null +++ b/public/emoji/1f694.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f695.svg b/public/emoji/1f695.svg new file mode 100644 index 000000000..c6bdad8ba --- /dev/null +++ b/public/emoji/1f695.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f696.svg b/public/emoji/1f696.svg new file mode 100644 index 000000000..6a02e812f --- /dev/null +++ b/public/emoji/1f696.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f697.svg b/public/emoji/1f697.svg new file mode 100644 index 000000000..da85c344d --- /dev/null +++ b/public/emoji/1f697.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f698.svg b/public/emoji/1f698.svg new file mode 100644 index 000000000..cd0a8881a --- /dev/null +++ b/public/emoji/1f698.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f699.svg b/public/emoji/1f699.svg new file mode 100644 index 000000000..12d1b6d10 --- /dev/null +++ b/public/emoji/1f699.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f69a.svg b/public/emoji/1f69a.svg new file mode 100644 index 000000000..c543e9862 --- /dev/null +++ b/public/emoji/1f69a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f69b.svg b/public/emoji/1f69b.svg new file mode 100644 index 000000000..5f0fbc1ca --- /dev/null +++ b/public/emoji/1f69b.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f69c.svg b/public/emoji/1f69c.svg new file mode 100644 index 000000000..794c2d369 --- /dev/null +++ b/public/emoji/1f69c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f69d.svg b/public/emoji/1f69d.svg new file mode 100644 index 000000000..4244515a2 --- /dev/null +++ b/public/emoji/1f69d.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f69e.svg b/public/emoji/1f69e.svg new file mode 100644 index 000000000..2bbbd3a02 --- /dev/null +++ b/public/emoji/1f69e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f69f.svg b/public/emoji/1f69f.svg new file mode 100644 index 000000000..9f1974860 --- /dev/null +++ b/public/emoji/1f69f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f6a0.svg b/public/emoji/1f6a0.svg new file mode 100644 index 000000000..e8eb10897 --- /dev/null +++ b/public/emoji/1f6a0.svg @@ -0,0 +1,2 @@ + \ No newline at end of file diff --git a/public/emoji/1f6a1.svg b/public/emoji/1f6a1.svg new file mode 100644 index 000000000..84de8fddf --- /dev/null +++ b/public/emoji/1f6a1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f6a2.svg b/public/emoji/1f6a2.svg new file mode 100644 index 000000000..032a22c98 --- /dev/null +++ b/public/emoji/1f6a2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f6a3-1f3fb.svg b/public/emoji/1f6a3-1f3fb.svg new file mode 100644 index 000000000..a97ed61b2 --- /dev/null +++ b/public/emoji/1f6a3-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f6a3-1f3fc.svg b/public/emoji/1f6a3-1f3fc.svg new file mode 100644 index 000000000..4579d7f99 --- /dev/null +++ b/public/emoji/1f6a3-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f6a3-1f3fd.svg b/public/emoji/1f6a3-1f3fd.svg new file mode 100644 index 000000000..30f40ace8 --- /dev/null +++ b/public/emoji/1f6a3-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f6a3-1f3fe.svg b/public/emoji/1f6a3-1f3fe.svg new file mode 100644 index 000000000..3b6499280 --- /dev/null +++ b/public/emoji/1f6a3-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f6a3-1f3ff.svg b/public/emoji/1f6a3-1f3ff.svg new file mode 100644 index 000000000..57bd8c0fe --- /dev/null +++ b/public/emoji/1f6a3-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f6a3.svg b/public/emoji/1f6a3.svg new file mode 100644 index 000000000..89eb387dc --- /dev/null +++ b/public/emoji/1f6a3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f6a4.svg b/public/emoji/1f6a4.svg new file mode 100644 index 000000000..70aa1adc2 --- /dev/null +++ b/public/emoji/1f6a4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f6a5.svg b/public/emoji/1f6a5.svg new file mode 100644 index 000000000..30aa0d092 --- /dev/null +++ b/public/emoji/1f6a5.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f6a6.svg b/public/emoji/1f6a6.svg new file mode 100644 index 000000000..7f6e697b4 --- /dev/null +++ b/public/emoji/1f6a6.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f6a7.svg b/public/emoji/1f6a7.svg new file mode 100644 index 000000000..c48a759c1 --- /dev/null +++ b/public/emoji/1f6a7.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f6a8.svg b/public/emoji/1f6a8.svg new file mode 100644 index 000000000..2a0051911 --- /dev/null +++ b/public/emoji/1f6a8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f6a9.svg b/public/emoji/1f6a9.svg new file mode 100644 index 000000000..d07347b59 --- /dev/null +++ b/public/emoji/1f6a9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f6aa.svg b/public/emoji/1f6aa.svg new file mode 100644 index 000000000..ac7fa2f07 --- /dev/null +++ b/public/emoji/1f6aa.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f6ab.svg b/public/emoji/1f6ab.svg new file mode 100644 index 000000000..1877e1d63 --- /dev/null +++ b/public/emoji/1f6ab.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f6ac.svg b/public/emoji/1f6ac.svg new file mode 100644 index 000000000..2f44e929d --- /dev/null +++ b/public/emoji/1f6ac.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f6ad.svg b/public/emoji/1f6ad.svg new file mode 100644 index 000000000..f02dd41b3 --- /dev/null +++ b/public/emoji/1f6ad.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f6ae.svg b/public/emoji/1f6ae.svg new file mode 100644 index 000000000..54cbd381e --- /dev/null +++ b/public/emoji/1f6ae.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f6af.svg b/public/emoji/1f6af.svg new file mode 100644 index 000000000..bfc991b07 --- /dev/null +++ b/public/emoji/1f6af.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f6b0.svg b/public/emoji/1f6b0.svg new file mode 100644 index 000000000..504d3cec0 --- /dev/null +++ b/public/emoji/1f6b0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f6b1.svg b/public/emoji/1f6b1.svg new file mode 100644 index 000000000..0eec893e1 --- /dev/null +++ b/public/emoji/1f6b1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f6b2.svg b/public/emoji/1f6b2.svg new file mode 100644 index 000000000..0a4447d6c --- /dev/null +++ b/public/emoji/1f6b2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f6b3.svg b/public/emoji/1f6b3.svg new file mode 100644 index 000000000..320cc2371 --- /dev/null +++ b/public/emoji/1f6b3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f6b4-1f3fb.svg b/public/emoji/1f6b4-1f3fb.svg new file mode 100644 index 000000000..23c64dcb0 --- /dev/null +++ b/public/emoji/1f6b4-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f6b4-1f3fc.svg b/public/emoji/1f6b4-1f3fc.svg new file mode 100644 index 000000000..3451fe9ba --- /dev/null +++ b/public/emoji/1f6b4-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f6b4-1f3fd.svg b/public/emoji/1f6b4-1f3fd.svg new file mode 100644 index 000000000..a5b959866 --- /dev/null +++ b/public/emoji/1f6b4-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f6b4-1f3fe.svg b/public/emoji/1f6b4-1f3fe.svg new file mode 100644 index 000000000..1dcaae862 --- /dev/null +++ b/public/emoji/1f6b4-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f6b4-1f3ff.svg b/public/emoji/1f6b4-1f3ff.svg new file mode 100644 index 000000000..44fc622fe --- /dev/null +++ b/public/emoji/1f6b4-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f6b4.svg b/public/emoji/1f6b4.svg new file mode 100644 index 000000000..d66ad5c6c --- /dev/null +++ b/public/emoji/1f6b4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f6b5-1f3fb.svg b/public/emoji/1f6b5-1f3fb.svg new file mode 100644 index 000000000..5ce96f5b2 --- /dev/null +++ b/public/emoji/1f6b5-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f6b5-1f3fc.svg b/public/emoji/1f6b5-1f3fc.svg new file mode 100644 index 000000000..9b088b9f7 --- /dev/null +++ b/public/emoji/1f6b5-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f6b5-1f3fd.svg b/public/emoji/1f6b5-1f3fd.svg new file mode 100644 index 000000000..561ba2d1c --- /dev/null +++ b/public/emoji/1f6b5-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f6b5-1f3fe.svg b/public/emoji/1f6b5-1f3fe.svg new file mode 100644 index 000000000..a1153c343 --- /dev/null +++ b/public/emoji/1f6b5-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f6b5-1f3ff.svg b/public/emoji/1f6b5-1f3ff.svg new file mode 100644 index 000000000..ca9993afc --- /dev/null +++ b/public/emoji/1f6b5-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f6b5.svg b/public/emoji/1f6b5.svg new file mode 100644 index 000000000..0d5eb712d --- /dev/null +++ b/public/emoji/1f6b5.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f6b6-1f3fb.svg b/public/emoji/1f6b6-1f3fb.svg new file mode 100644 index 000000000..b4d3ddee2 --- /dev/null +++ b/public/emoji/1f6b6-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f6b6-1f3fc.svg b/public/emoji/1f6b6-1f3fc.svg new file mode 100644 index 000000000..8c15b9be7 --- /dev/null +++ b/public/emoji/1f6b6-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f6b6-1f3fd.svg b/public/emoji/1f6b6-1f3fd.svg new file mode 100644 index 000000000..69ef31ca4 --- /dev/null +++ b/public/emoji/1f6b6-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f6b6-1f3fe.svg b/public/emoji/1f6b6-1f3fe.svg new file mode 100644 index 000000000..82b4e8334 --- /dev/null +++ b/public/emoji/1f6b6-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f6b6-1f3ff.svg b/public/emoji/1f6b6-1f3ff.svg new file mode 100644 index 000000000..454b2a99d --- /dev/null +++ b/public/emoji/1f6b6-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f6b6.svg b/public/emoji/1f6b6.svg new file mode 100644 index 000000000..8ba1d2855 --- /dev/null +++ b/public/emoji/1f6b6.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f6b7.svg b/public/emoji/1f6b7.svg new file mode 100644 index 000000000..ff92a91ca --- /dev/null +++ b/public/emoji/1f6b7.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f6b8.svg b/public/emoji/1f6b8.svg new file mode 100644 index 000000000..8b9b11839 --- /dev/null +++ b/public/emoji/1f6b8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f6b9.svg b/public/emoji/1f6b9.svg new file mode 100644 index 000000000..962b09400 --- /dev/null +++ b/public/emoji/1f6b9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f6ba.svg b/public/emoji/1f6ba.svg new file mode 100644 index 000000000..b98439e38 --- /dev/null +++ b/public/emoji/1f6ba.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f6bb.svg b/public/emoji/1f6bb.svg new file mode 100644 index 000000000..8ece75fe5 --- /dev/null +++ b/public/emoji/1f6bb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f6bc.svg b/public/emoji/1f6bc.svg new file mode 100644 index 000000000..474111741 --- /dev/null +++ b/public/emoji/1f6bc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f6bd.svg b/public/emoji/1f6bd.svg new file mode 100644 index 000000000..5a108e201 --- /dev/null +++ b/public/emoji/1f6bd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f6be.svg b/public/emoji/1f6be.svg new file mode 100644 index 000000000..71390fb19 --- /dev/null +++ b/public/emoji/1f6be.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f6bf.svg b/public/emoji/1f6bf.svg new file mode 100644 index 000000000..dd21474eb --- /dev/null +++ b/public/emoji/1f6bf.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f6c0-1f3fb.svg b/public/emoji/1f6c0-1f3fb.svg new file mode 100644 index 000000000..fa9921fc4 --- /dev/null +++ b/public/emoji/1f6c0-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f6c0-1f3fc.svg b/public/emoji/1f6c0-1f3fc.svg new file mode 100644 index 000000000..62648e559 --- /dev/null +++ b/public/emoji/1f6c0-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f6c0-1f3fd.svg b/public/emoji/1f6c0-1f3fd.svg new file mode 100644 index 000000000..4c4957f24 --- /dev/null +++ b/public/emoji/1f6c0-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f6c0-1f3fe.svg b/public/emoji/1f6c0-1f3fe.svg new file mode 100644 index 000000000..43c665f09 --- /dev/null +++ b/public/emoji/1f6c0-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f6c0-1f3ff.svg b/public/emoji/1f6c0-1f3ff.svg new file mode 100644 index 000000000..c03631844 --- /dev/null +++ b/public/emoji/1f6c0-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f6c0.svg b/public/emoji/1f6c0.svg new file mode 100644 index 000000000..6985f1fee --- /dev/null +++ b/public/emoji/1f6c0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f6c1.svg b/public/emoji/1f6c1.svg new file mode 100644 index 000000000..cef7b67c3 --- /dev/null +++ b/public/emoji/1f6c1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f6c2.svg b/public/emoji/1f6c2.svg new file mode 100644 index 000000000..f29b9c724 --- /dev/null +++ b/public/emoji/1f6c2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f6c3.svg b/public/emoji/1f6c3.svg new file mode 100644 index 000000000..618ee799a --- /dev/null +++ b/public/emoji/1f6c3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f6c4.svg b/public/emoji/1f6c4.svg new file mode 100644 index 000000000..b7c8c1cb5 --- /dev/null +++ b/public/emoji/1f6c4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f6c5.svg b/public/emoji/1f6c5.svg new file mode 100644 index 000000000..dea741655 --- /dev/null +++ b/public/emoji/1f6c5.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f6cb.svg b/public/emoji/1f6cb.svg new file mode 100644 index 000000000..a33ada16b --- /dev/null +++ b/public/emoji/1f6cb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f6cc.svg b/public/emoji/1f6cc.svg new file mode 100644 index 000000000..8446d6d7c --- /dev/null +++ b/public/emoji/1f6cc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f6cd.svg b/public/emoji/1f6cd.svg new file mode 100644 index 000000000..1daf857d8 --- /dev/null +++ b/public/emoji/1f6cd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f6ce.svg b/public/emoji/1f6ce.svg new file mode 100644 index 000000000..96f9fef0b --- /dev/null +++ b/public/emoji/1f6ce.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f6cf.svg b/public/emoji/1f6cf.svg new file mode 100644 index 000000000..f2fb4aad6 --- /dev/null +++ b/public/emoji/1f6cf.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f6d0.svg b/public/emoji/1f6d0.svg new file mode 100644 index 000000000..65314e5f6 --- /dev/null +++ b/public/emoji/1f6d0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f6d1.svg b/public/emoji/1f6d1.svg new file mode 100644 index 000000000..4107a857f --- /dev/null +++ b/public/emoji/1f6d1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f6d2.svg b/public/emoji/1f6d2.svg new file mode 100644 index 000000000..b820572d7 --- /dev/null +++ b/public/emoji/1f6d2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f6e0.svg b/public/emoji/1f6e0.svg new file mode 100644 index 000000000..af26bdb17 --- /dev/null +++ b/public/emoji/1f6e0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f6e1.svg b/public/emoji/1f6e1.svg new file mode 100644 index 000000000..e9a41aa3a --- /dev/null +++ b/public/emoji/1f6e1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f6e2.svg b/public/emoji/1f6e2.svg new file mode 100644 index 000000000..c5a60a82c --- /dev/null +++ b/public/emoji/1f6e2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f6e3.svg b/public/emoji/1f6e3.svg new file mode 100644 index 000000000..2ccec72c4 --- /dev/null +++ b/public/emoji/1f6e3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f6e4.svg b/public/emoji/1f6e4.svg new file mode 100644 index 000000000..4828d4248 --- /dev/null +++ b/public/emoji/1f6e4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f6e5.svg b/public/emoji/1f6e5.svg new file mode 100644 index 000000000..db896dbc9 --- /dev/null +++ b/public/emoji/1f6e5.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f6e9.svg b/public/emoji/1f6e9.svg new file mode 100644 index 000000000..191a11409 --- /dev/null +++ b/public/emoji/1f6e9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f6eb.svg b/public/emoji/1f6eb.svg new file mode 100644 index 000000000..5220fb3a7 --- /dev/null +++ b/public/emoji/1f6eb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f6ec.svg b/public/emoji/1f6ec.svg new file mode 100644 index 000000000..c170f90af --- /dev/null +++ b/public/emoji/1f6ec.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f6f0.svg b/public/emoji/1f6f0.svg new file mode 100644 index 000000000..1d11f7aa7 --- /dev/null +++ b/public/emoji/1f6f0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f6f3.svg b/public/emoji/1f6f3.svg new file mode 100644 index 000000000..81b10ac49 --- /dev/null +++ b/public/emoji/1f6f3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f6f4.svg b/public/emoji/1f6f4.svg new file mode 100644 index 000000000..a0f4a49ab --- /dev/null +++ b/public/emoji/1f6f4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f6f5.svg b/public/emoji/1f6f5.svg new file mode 100644 index 000000000..7d7f7383b --- /dev/null +++ b/public/emoji/1f6f5.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f6f6.svg b/public/emoji/1f6f6.svg new file mode 100644 index 000000000..3d8616453 --- /dev/null +++ b/public/emoji/1f6f6.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f910.svg b/public/emoji/1f910.svg new file mode 100644 index 000000000..51851ff01 --- /dev/null +++ b/public/emoji/1f910.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f911.svg b/public/emoji/1f911.svg new file mode 100644 index 000000000..19404ab8e --- /dev/null +++ b/public/emoji/1f911.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f912.svg b/public/emoji/1f912.svg new file mode 100644 index 000000000..2b9d9b0be --- /dev/null +++ b/public/emoji/1f912.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f913.svg b/public/emoji/1f913.svg new file mode 100644 index 000000000..1dc83d764 --- /dev/null +++ b/public/emoji/1f913.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f914.svg b/public/emoji/1f914.svg new file mode 100644 index 000000000..3b5fe136f --- /dev/null +++ b/public/emoji/1f914.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f915.svg b/public/emoji/1f915.svg new file mode 100644 index 000000000..26dfd8cf4 --- /dev/null +++ b/public/emoji/1f915.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f916.svg b/public/emoji/1f916.svg new file mode 100644 index 000000000..047eae18f --- /dev/null +++ b/public/emoji/1f916.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f917.svg b/public/emoji/1f917.svg new file mode 100644 index 000000000..238b5a782 --- /dev/null +++ b/public/emoji/1f917.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f918-1f3fb.svg b/public/emoji/1f918-1f3fb.svg new file mode 100644 index 000000000..2ac3beae0 --- /dev/null +++ b/public/emoji/1f918-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f918-1f3fc.svg b/public/emoji/1f918-1f3fc.svg new file mode 100644 index 000000000..edbd0b208 --- /dev/null +++ b/public/emoji/1f918-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f918-1f3fd.svg b/public/emoji/1f918-1f3fd.svg new file mode 100644 index 000000000..39f8819a5 --- /dev/null +++ b/public/emoji/1f918-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f918-1f3fe.svg b/public/emoji/1f918-1f3fe.svg new file mode 100644 index 000000000..b8b1f4500 --- /dev/null +++ b/public/emoji/1f918-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f918-1f3ff.svg b/public/emoji/1f918-1f3ff.svg new file mode 100644 index 000000000..1dfaceff8 --- /dev/null +++ b/public/emoji/1f918-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f918.svg b/public/emoji/1f918.svg new file mode 100644 index 000000000..125c33854 --- /dev/null +++ b/public/emoji/1f918.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f919-1f3fb.svg b/public/emoji/1f919-1f3fb.svg new file mode 100644 index 000000000..6798a545f --- /dev/null +++ b/public/emoji/1f919-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f919-1f3fc.svg b/public/emoji/1f919-1f3fc.svg new file mode 100644 index 000000000..1c604faa3 --- /dev/null +++ b/public/emoji/1f919-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f919-1f3fd.svg b/public/emoji/1f919-1f3fd.svg new file mode 100644 index 000000000..727063804 --- /dev/null +++ b/public/emoji/1f919-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f919-1f3fe.svg b/public/emoji/1f919-1f3fe.svg new file mode 100644 index 000000000..c7d9afa18 --- /dev/null +++ b/public/emoji/1f919-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f919-1f3ff.svg b/public/emoji/1f919-1f3ff.svg new file mode 100644 index 000000000..7f9581986 --- /dev/null +++ b/public/emoji/1f919-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f919.svg b/public/emoji/1f919.svg new file mode 100644 index 000000000..84df19cce --- /dev/null +++ b/public/emoji/1f919.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f91a-1f3fb.svg b/public/emoji/1f91a-1f3fb.svg new file mode 100644 index 000000000..7a7baa854 --- /dev/null +++ b/public/emoji/1f91a-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f91a-1f3fc.svg b/public/emoji/1f91a-1f3fc.svg new file mode 100644 index 000000000..7343906b1 --- /dev/null +++ b/public/emoji/1f91a-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f91a-1f3fd.svg b/public/emoji/1f91a-1f3fd.svg new file mode 100644 index 000000000..55f936d15 --- /dev/null +++ b/public/emoji/1f91a-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f91a-1f3fe.svg b/public/emoji/1f91a-1f3fe.svg new file mode 100644 index 000000000..6dc3b2210 --- /dev/null +++ b/public/emoji/1f91a-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f91a-1f3ff.svg b/public/emoji/1f91a-1f3ff.svg new file mode 100644 index 000000000..d27a387c6 --- /dev/null +++ b/public/emoji/1f91a-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f91a.svg b/public/emoji/1f91a.svg new file mode 100644 index 000000000..74d0015f6 --- /dev/null +++ b/public/emoji/1f91a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f91b-1f3fb.svg b/public/emoji/1f91b-1f3fb.svg new file mode 100644 index 000000000..00f854072 --- /dev/null +++ b/public/emoji/1f91b-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f91b-1f3fc.svg b/public/emoji/1f91b-1f3fc.svg new file mode 100644 index 000000000..92dd89993 --- /dev/null +++ b/public/emoji/1f91b-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f91b-1f3fd.svg b/public/emoji/1f91b-1f3fd.svg new file mode 100644 index 000000000..6254ca9ae --- /dev/null +++ b/public/emoji/1f91b-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f91b-1f3fe.svg b/public/emoji/1f91b-1f3fe.svg new file mode 100644 index 000000000..074eca348 --- /dev/null +++ b/public/emoji/1f91b-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f91b-1f3ff.svg b/public/emoji/1f91b-1f3ff.svg new file mode 100644 index 000000000..163866bba --- /dev/null +++ b/public/emoji/1f91b-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f91b.svg b/public/emoji/1f91b.svg new file mode 100644 index 000000000..ea97a80a0 --- /dev/null +++ b/public/emoji/1f91b.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f91c-1f3fb.svg b/public/emoji/1f91c-1f3fb.svg new file mode 100644 index 000000000..d3c0de370 --- /dev/null +++ b/public/emoji/1f91c-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f91c-1f3fc.svg b/public/emoji/1f91c-1f3fc.svg new file mode 100644 index 000000000..945997400 --- /dev/null +++ b/public/emoji/1f91c-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f91c-1f3fd.svg b/public/emoji/1f91c-1f3fd.svg new file mode 100644 index 000000000..c540bb048 --- /dev/null +++ b/public/emoji/1f91c-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f91c-1f3fe.svg b/public/emoji/1f91c-1f3fe.svg new file mode 100644 index 000000000..c3a410c28 --- /dev/null +++ b/public/emoji/1f91c-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f91c-1f3ff.svg b/public/emoji/1f91c-1f3ff.svg new file mode 100644 index 000000000..1ff1b64f3 --- /dev/null +++ b/public/emoji/1f91c-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f91c.svg b/public/emoji/1f91c.svg new file mode 100644 index 000000000..80a75c9cd --- /dev/null +++ b/public/emoji/1f91c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f91d-1f3fb.svg b/public/emoji/1f91d-1f3fb.svg new file mode 100644 index 000000000..bc7cf60e8 --- /dev/null +++ b/public/emoji/1f91d-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f91d-1f3fc.svg b/public/emoji/1f91d-1f3fc.svg new file mode 100644 index 000000000..c13f18ba6 --- /dev/null +++ b/public/emoji/1f91d-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f91d-1f3fd.svg b/public/emoji/1f91d-1f3fd.svg new file mode 100644 index 000000000..76871fcba --- /dev/null +++ b/public/emoji/1f91d-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f91d-1f3fe.svg b/public/emoji/1f91d-1f3fe.svg new file mode 100644 index 000000000..45a6c8204 --- /dev/null +++ b/public/emoji/1f91d-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f91d-1f3ff.svg b/public/emoji/1f91d-1f3ff.svg new file mode 100644 index 000000000..444442670 --- /dev/null +++ b/public/emoji/1f91d-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f91d.svg b/public/emoji/1f91d.svg new file mode 100644 index 000000000..185bf3bc7 --- /dev/null +++ b/public/emoji/1f91d.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f91e-1f3fb.svg b/public/emoji/1f91e-1f3fb.svg new file mode 100644 index 000000000..aa4cd73ac --- /dev/null +++ b/public/emoji/1f91e-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f91e-1f3fc.svg b/public/emoji/1f91e-1f3fc.svg new file mode 100644 index 000000000..bf4eff677 --- /dev/null +++ b/public/emoji/1f91e-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f91e-1f3fd.svg b/public/emoji/1f91e-1f3fd.svg new file mode 100644 index 000000000..5562818e4 --- /dev/null +++ b/public/emoji/1f91e-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f91e-1f3fe.svg b/public/emoji/1f91e-1f3fe.svg new file mode 100644 index 000000000..5067aaeba --- /dev/null +++ b/public/emoji/1f91e-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f91e-1f3ff.svg b/public/emoji/1f91e-1f3ff.svg new file mode 100644 index 000000000..741dc6640 --- /dev/null +++ b/public/emoji/1f91e-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f91e.svg b/public/emoji/1f91e.svg new file mode 100644 index 000000000..574dcc17f --- /dev/null +++ b/public/emoji/1f91e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f920.svg b/public/emoji/1f920.svg new file mode 100644 index 000000000..11437ce6d --- /dev/null +++ b/public/emoji/1f920.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f921.svg b/public/emoji/1f921.svg new file mode 100644 index 000000000..63812e731 --- /dev/null +++ b/public/emoji/1f921.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f922.svg b/public/emoji/1f922.svg new file mode 100644 index 000000000..893e564de --- /dev/null +++ b/public/emoji/1f922.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f923.svg b/public/emoji/1f923.svg new file mode 100644 index 000000000..e02925701 --- /dev/null +++ b/public/emoji/1f923.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f924.svg b/public/emoji/1f924.svg new file mode 100644 index 000000000..4e30304df --- /dev/null +++ b/public/emoji/1f924.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f925.svg b/public/emoji/1f925.svg new file mode 100644 index 000000000..7446d3f45 --- /dev/null +++ b/public/emoji/1f925.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f926-1f3fb.svg b/public/emoji/1f926-1f3fb.svg new file mode 100644 index 000000000..60e2089a4 --- /dev/null +++ b/public/emoji/1f926-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f926-1f3fc.svg b/public/emoji/1f926-1f3fc.svg new file mode 100644 index 000000000..a5fc0ae04 --- /dev/null +++ b/public/emoji/1f926-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f926-1f3fd.svg b/public/emoji/1f926-1f3fd.svg new file mode 100644 index 000000000..ea86bb8cb --- /dev/null +++ b/public/emoji/1f926-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f926-1f3fe.svg b/public/emoji/1f926-1f3fe.svg new file mode 100644 index 000000000..27bb43a42 --- /dev/null +++ b/public/emoji/1f926-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f926-1f3ff.svg b/public/emoji/1f926-1f3ff.svg new file mode 100644 index 000000000..2f7044375 --- /dev/null +++ b/public/emoji/1f926-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f926.svg b/public/emoji/1f926.svg new file mode 100644 index 000000000..bff8effe6 --- /dev/null +++ b/public/emoji/1f926.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f927.svg b/public/emoji/1f927.svg new file mode 100644 index 000000000..1c513dd28 --- /dev/null +++ b/public/emoji/1f927.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f930-1f3fb.svg b/public/emoji/1f930-1f3fb.svg new file mode 100644 index 000000000..4b1d23ff2 --- /dev/null +++ b/public/emoji/1f930-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f930-1f3fc.svg b/public/emoji/1f930-1f3fc.svg new file mode 100644 index 000000000..b16835892 --- /dev/null +++ b/public/emoji/1f930-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f930-1f3fd.svg b/public/emoji/1f930-1f3fd.svg new file mode 100644 index 000000000..dbb32eac3 --- /dev/null +++ b/public/emoji/1f930-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f930-1f3fe.svg b/public/emoji/1f930-1f3fe.svg new file mode 100644 index 000000000..a3bab2cba --- /dev/null +++ b/public/emoji/1f930-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f930-1f3ff.svg b/public/emoji/1f930-1f3ff.svg new file mode 100644 index 000000000..ad37b4b16 --- /dev/null +++ b/public/emoji/1f930-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f930.svg b/public/emoji/1f930.svg new file mode 100644 index 000000000..768b902b8 --- /dev/null +++ b/public/emoji/1f930.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f933-1f3fb.svg b/public/emoji/1f933-1f3fb.svg new file mode 100644 index 000000000..891ddd132 --- /dev/null +++ b/public/emoji/1f933-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f933-1f3fc.svg b/public/emoji/1f933-1f3fc.svg new file mode 100644 index 000000000..8e9e65444 --- /dev/null +++ b/public/emoji/1f933-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f933-1f3fd.svg b/public/emoji/1f933-1f3fd.svg new file mode 100644 index 000000000..d40f5f75d --- /dev/null +++ b/public/emoji/1f933-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f933-1f3fe.svg b/public/emoji/1f933-1f3fe.svg new file mode 100644 index 000000000..d19b5ea81 --- /dev/null +++ b/public/emoji/1f933-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f933-1f3ff.svg b/public/emoji/1f933-1f3ff.svg new file mode 100644 index 000000000..3be274394 --- /dev/null +++ b/public/emoji/1f933-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f933.svg b/public/emoji/1f933.svg new file mode 100644 index 000000000..009221c6a --- /dev/null +++ b/public/emoji/1f933.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f934-1f3fb.svg b/public/emoji/1f934-1f3fb.svg new file mode 100644 index 000000000..9688cead9 --- /dev/null +++ b/public/emoji/1f934-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f934-1f3fc.svg b/public/emoji/1f934-1f3fc.svg new file mode 100644 index 000000000..cc27b532d --- /dev/null +++ b/public/emoji/1f934-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f934-1f3fd.svg b/public/emoji/1f934-1f3fd.svg new file mode 100644 index 000000000..44a0524d4 --- /dev/null +++ b/public/emoji/1f934-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f934-1f3fe.svg b/public/emoji/1f934-1f3fe.svg new file mode 100644 index 000000000..71c66cb95 --- /dev/null +++ b/public/emoji/1f934-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f934-1f3ff.svg b/public/emoji/1f934-1f3ff.svg new file mode 100644 index 000000000..d45a0f05a --- /dev/null +++ b/public/emoji/1f934-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f934.svg b/public/emoji/1f934.svg new file mode 100644 index 000000000..a075a6b44 --- /dev/null +++ b/public/emoji/1f934.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f935-1f3fb.svg b/public/emoji/1f935-1f3fb.svg new file mode 100644 index 000000000..b5259d659 --- /dev/null +++ b/public/emoji/1f935-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f935-1f3fc.svg b/public/emoji/1f935-1f3fc.svg new file mode 100644 index 000000000..d57750ac5 --- /dev/null +++ b/public/emoji/1f935-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f935-1f3fd.svg b/public/emoji/1f935-1f3fd.svg new file mode 100644 index 000000000..9c816e303 --- /dev/null +++ b/public/emoji/1f935-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f935-1f3fe.svg b/public/emoji/1f935-1f3fe.svg new file mode 100644 index 000000000..e15d17657 --- /dev/null +++ b/public/emoji/1f935-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f935-1f3ff.svg b/public/emoji/1f935-1f3ff.svg new file mode 100644 index 000000000..f8655dbe7 --- /dev/null +++ b/public/emoji/1f935-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f935.svg b/public/emoji/1f935.svg new file mode 100644 index 000000000..228b84a0a --- /dev/null +++ b/public/emoji/1f935.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f936-1f3fb.svg b/public/emoji/1f936-1f3fb.svg new file mode 100644 index 000000000..42ba4e633 --- /dev/null +++ b/public/emoji/1f936-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f936-1f3fc.svg b/public/emoji/1f936-1f3fc.svg new file mode 100644 index 000000000..039a57661 --- /dev/null +++ b/public/emoji/1f936-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f936-1f3fd.svg b/public/emoji/1f936-1f3fd.svg new file mode 100644 index 000000000..a28a074bb --- /dev/null +++ b/public/emoji/1f936-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f936-1f3fe.svg b/public/emoji/1f936-1f3fe.svg new file mode 100644 index 000000000..bac1e4678 --- /dev/null +++ b/public/emoji/1f936-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f936-1f3ff.svg b/public/emoji/1f936-1f3ff.svg new file mode 100644 index 000000000..bd8eb1bab --- /dev/null +++ b/public/emoji/1f936-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f936.svg b/public/emoji/1f936.svg new file mode 100644 index 000000000..c2c0e9862 --- /dev/null +++ b/public/emoji/1f936.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f937-1f3fb.svg b/public/emoji/1f937-1f3fb.svg new file mode 100644 index 000000000..e654bcd6a --- /dev/null +++ b/public/emoji/1f937-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f937-1f3fc.svg b/public/emoji/1f937-1f3fc.svg new file mode 100644 index 000000000..8686bdf2b --- /dev/null +++ b/public/emoji/1f937-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f937-1f3fd.svg b/public/emoji/1f937-1f3fd.svg new file mode 100644 index 000000000..ee50fbbd7 --- /dev/null +++ b/public/emoji/1f937-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f937-1f3fe.svg b/public/emoji/1f937-1f3fe.svg new file mode 100644 index 000000000..4a7bc965e --- /dev/null +++ b/public/emoji/1f937-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f937-1f3ff.svg b/public/emoji/1f937-1f3ff.svg new file mode 100644 index 000000000..25bfd9ef7 --- /dev/null +++ b/public/emoji/1f937-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f937.svg b/public/emoji/1f937.svg new file mode 100644 index 000000000..c2ab59fe0 --- /dev/null +++ b/public/emoji/1f937.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f938-1f3fb.svg b/public/emoji/1f938-1f3fb.svg new file mode 100644 index 000000000..41bb16886 --- /dev/null +++ b/public/emoji/1f938-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f938-1f3fc.svg b/public/emoji/1f938-1f3fc.svg new file mode 100644 index 000000000..17ccde4bb --- /dev/null +++ b/public/emoji/1f938-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f938-1f3fd.svg b/public/emoji/1f938-1f3fd.svg new file mode 100644 index 000000000..e76db7a6e --- /dev/null +++ b/public/emoji/1f938-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f938-1f3fe.svg b/public/emoji/1f938-1f3fe.svg new file mode 100644 index 000000000..83a3dd3bd --- /dev/null +++ b/public/emoji/1f938-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f938-1f3ff.svg b/public/emoji/1f938-1f3ff.svg new file mode 100644 index 000000000..347df3bc0 --- /dev/null +++ b/public/emoji/1f938-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f938.svg b/public/emoji/1f938.svg new file mode 100644 index 000000000..d3c2a1ad8 --- /dev/null +++ b/public/emoji/1f938.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f939-1f3fb.svg b/public/emoji/1f939-1f3fb.svg new file mode 100644 index 000000000..db37b39a0 --- /dev/null +++ b/public/emoji/1f939-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f939-1f3fc.svg b/public/emoji/1f939-1f3fc.svg new file mode 100644 index 000000000..bb834f73f --- /dev/null +++ b/public/emoji/1f939-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f939-1f3fd.svg b/public/emoji/1f939-1f3fd.svg new file mode 100644 index 000000000..8c2b703d8 --- /dev/null +++ b/public/emoji/1f939-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f939-1f3fe.svg b/public/emoji/1f939-1f3fe.svg new file mode 100644 index 000000000..fcf099208 --- /dev/null +++ b/public/emoji/1f939-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f939-1f3ff.svg b/public/emoji/1f939-1f3ff.svg new file mode 100644 index 000000000..b1d6168a0 --- /dev/null +++ b/public/emoji/1f939-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f939.svg b/public/emoji/1f939.svg new file mode 100644 index 000000000..3859ff275 --- /dev/null +++ b/public/emoji/1f939.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f93a.svg b/public/emoji/1f93a.svg new file mode 100644 index 000000000..f566e0605 --- /dev/null +++ b/public/emoji/1f93a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f93c-1f3fb.svg b/public/emoji/1f93c-1f3fb.svg new file mode 100644 index 000000000..107ff2667 --- /dev/null +++ b/public/emoji/1f93c-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f93c-1f3fc.svg b/public/emoji/1f93c-1f3fc.svg new file mode 100644 index 000000000..e417df2d8 --- /dev/null +++ b/public/emoji/1f93c-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f93c-1f3fd.svg b/public/emoji/1f93c-1f3fd.svg new file mode 100644 index 000000000..5b897f9db --- /dev/null +++ b/public/emoji/1f93c-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f93c-1f3fe.svg b/public/emoji/1f93c-1f3fe.svg new file mode 100644 index 000000000..7f3425021 --- /dev/null +++ b/public/emoji/1f93c-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f93c-1f3ff.svg b/public/emoji/1f93c-1f3ff.svg new file mode 100644 index 000000000..a4e5ecc50 --- /dev/null +++ b/public/emoji/1f93c-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f93c.svg b/public/emoji/1f93c.svg new file mode 100644 index 000000000..694ce7662 --- /dev/null +++ b/public/emoji/1f93c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f93d-1f3fb.svg b/public/emoji/1f93d-1f3fb.svg new file mode 100644 index 000000000..ab8d140df --- /dev/null +++ b/public/emoji/1f93d-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f93d-1f3fc.svg b/public/emoji/1f93d-1f3fc.svg new file mode 100644 index 000000000..85395e007 --- /dev/null +++ b/public/emoji/1f93d-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f93d-1f3fd.svg b/public/emoji/1f93d-1f3fd.svg new file mode 100644 index 000000000..3977b7377 --- /dev/null +++ b/public/emoji/1f93d-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f93d-1f3fe.svg b/public/emoji/1f93d-1f3fe.svg new file mode 100644 index 000000000..d25f2bfb0 --- /dev/null +++ b/public/emoji/1f93d-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f93d-1f3ff.svg b/public/emoji/1f93d-1f3ff.svg new file mode 100644 index 000000000..16cd1bbe4 --- /dev/null +++ b/public/emoji/1f93d-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f93d.svg b/public/emoji/1f93d.svg new file mode 100644 index 000000000..1ba0ab89e --- /dev/null +++ b/public/emoji/1f93d.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f93e-1f3fb.svg b/public/emoji/1f93e-1f3fb.svg new file mode 100644 index 000000000..58ad79fad --- /dev/null +++ b/public/emoji/1f93e-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f93e-1f3fc.svg b/public/emoji/1f93e-1f3fc.svg new file mode 100644 index 000000000..fb609bac7 --- /dev/null +++ b/public/emoji/1f93e-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f93e-1f3fd.svg b/public/emoji/1f93e-1f3fd.svg new file mode 100644 index 000000000..facf15d77 --- /dev/null +++ b/public/emoji/1f93e-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f93e-1f3fe.svg b/public/emoji/1f93e-1f3fe.svg new file mode 100644 index 000000000..2b3023fce --- /dev/null +++ b/public/emoji/1f93e-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f93e-1f3ff.svg b/public/emoji/1f93e-1f3ff.svg new file mode 100644 index 000000000..65220a539 --- /dev/null +++ b/public/emoji/1f93e-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f93e.svg b/public/emoji/1f93e.svg new file mode 100644 index 000000000..d3a20ac8a --- /dev/null +++ b/public/emoji/1f93e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f940.svg b/public/emoji/1f940.svg new file mode 100644 index 000000000..dda76b81b --- /dev/null +++ b/public/emoji/1f940.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f941.svg b/public/emoji/1f941.svg new file mode 100644 index 000000000..3a07224db --- /dev/null +++ b/public/emoji/1f941.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f942.svg b/public/emoji/1f942.svg new file mode 100644 index 000000000..41384a1ac --- /dev/null +++ b/public/emoji/1f942.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f943.svg b/public/emoji/1f943.svg new file mode 100644 index 000000000..025cd0b8a --- /dev/null +++ b/public/emoji/1f943.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f944.svg b/public/emoji/1f944.svg new file mode 100644 index 000000000..f69528ca7 --- /dev/null +++ b/public/emoji/1f944.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f945.svg b/public/emoji/1f945.svg new file mode 100644 index 000000000..181c85224 --- /dev/null +++ b/public/emoji/1f945.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f947.svg b/public/emoji/1f947.svg new file mode 100644 index 000000000..abb7620a0 --- /dev/null +++ b/public/emoji/1f947.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f948.svg b/public/emoji/1f948.svg new file mode 100644 index 000000000..2da21e138 --- /dev/null +++ b/public/emoji/1f948.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f949.svg b/public/emoji/1f949.svg new file mode 100644 index 000000000..1322b555f --- /dev/null +++ b/public/emoji/1f949.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f94a.svg b/public/emoji/1f94a.svg new file mode 100644 index 000000000..752af12e3 --- /dev/null +++ b/public/emoji/1f94a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f94b.svg b/public/emoji/1f94b.svg new file mode 100644 index 000000000..44fc92b84 --- /dev/null +++ b/public/emoji/1f94b.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f950.svg b/public/emoji/1f950.svg new file mode 100644 index 000000000..184e56c46 --- /dev/null +++ b/public/emoji/1f950.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f951.svg b/public/emoji/1f951.svg new file mode 100644 index 000000000..b8c26d2a4 --- /dev/null +++ b/public/emoji/1f951.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f952.svg b/public/emoji/1f952.svg new file mode 100644 index 000000000..d72b1ceba --- /dev/null +++ b/public/emoji/1f952.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f953.svg b/public/emoji/1f953.svg new file mode 100644 index 000000000..d702dc50c --- /dev/null +++ b/public/emoji/1f953.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f954.svg b/public/emoji/1f954.svg new file mode 100644 index 000000000..15d99ff47 --- /dev/null +++ b/public/emoji/1f954.svg @@ -0,0 +1,2 @@ + \ No newline at end of file diff --git a/public/emoji/1f955.svg b/public/emoji/1f955.svg new file mode 100644 index 000000000..468c7a216 --- /dev/null +++ b/public/emoji/1f955.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f956.svg b/public/emoji/1f956.svg new file mode 100644 index 000000000..dc1e86fc3 --- /dev/null +++ b/public/emoji/1f956.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f957.svg b/public/emoji/1f957.svg new file mode 100644 index 000000000..e0a2a01ed --- /dev/null +++ b/public/emoji/1f957.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f958.svg b/public/emoji/1f958.svg new file mode 100644 index 000000000..2062eae7f --- /dev/null +++ b/public/emoji/1f958.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f959.svg b/public/emoji/1f959.svg new file mode 100644 index 000000000..8be63ab15 --- /dev/null +++ b/public/emoji/1f959.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f95a.svg b/public/emoji/1f95a.svg new file mode 100644 index 000000000..005e3e6af --- /dev/null +++ b/public/emoji/1f95a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f95b.svg b/public/emoji/1f95b.svg new file mode 100644 index 000000000..877c0521c --- /dev/null +++ b/public/emoji/1f95b.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f95c.svg b/public/emoji/1f95c.svg new file mode 100644 index 000000000..3866204ec --- /dev/null +++ b/public/emoji/1f95c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f95d.svg b/public/emoji/1f95d.svg new file mode 100644 index 000000000..d60d50f87 --- /dev/null +++ b/public/emoji/1f95d.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f95e.svg b/public/emoji/1f95e.svg new file mode 100644 index 000000000..603a3470d --- /dev/null +++ b/public/emoji/1f95e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f980.svg b/public/emoji/1f980.svg new file mode 100644 index 000000000..1f7936f4a --- /dev/null +++ b/public/emoji/1f980.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f981.svg b/public/emoji/1f981.svg new file mode 100644 index 000000000..965e4ef21 --- /dev/null +++ b/public/emoji/1f981.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f982.svg b/public/emoji/1f982.svg new file mode 100644 index 000000000..a1afc315c --- /dev/null +++ b/public/emoji/1f982.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f983.svg b/public/emoji/1f983.svg new file mode 100644 index 000000000..59cc30fe3 --- /dev/null +++ b/public/emoji/1f983.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f984.svg b/public/emoji/1f984.svg new file mode 100644 index 000000000..507937d7a --- /dev/null +++ b/public/emoji/1f984.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f985.svg b/public/emoji/1f985.svg new file mode 100644 index 000000000..afba6f983 --- /dev/null +++ b/public/emoji/1f985.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f986.svg b/public/emoji/1f986.svg new file mode 100644 index 000000000..ee80f71d8 --- /dev/null +++ b/public/emoji/1f986.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f987.svg b/public/emoji/1f987.svg new file mode 100644 index 000000000..77c26c984 --- /dev/null +++ b/public/emoji/1f987.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f988.svg b/public/emoji/1f988.svg new file mode 100644 index 000000000..c1fffcd29 --- /dev/null +++ b/public/emoji/1f988.svg @@ -0,0 +1,2 @@ + \ No newline at end of file diff --git a/public/emoji/1f989.svg b/public/emoji/1f989.svg new file mode 100644 index 000000000..bde42fe1c --- /dev/null +++ b/public/emoji/1f989.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f98a.svg b/public/emoji/1f98a.svg new file mode 100644 index 000000000..28f9072f5 --- /dev/null +++ b/public/emoji/1f98a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f98b.svg b/public/emoji/1f98b.svg new file mode 100644 index 000000000..794e94d39 --- /dev/null +++ b/public/emoji/1f98b.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f98c.svg b/public/emoji/1f98c.svg new file mode 100644 index 000000000..a70a64169 --- /dev/null +++ b/public/emoji/1f98c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f98d.svg b/public/emoji/1f98d.svg new file mode 100644 index 000000000..2c27214fd --- /dev/null +++ b/public/emoji/1f98d.svg @@ -0,0 +1,2 @@ + \ No newline at end of file diff --git a/public/emoji/1f98e.svg b/public/emoji/1f98e.svg new file mode 100644 index 000000000..4f15955db --- /dev/null +++ b/public/emoji/1f98e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f98f.svg b/public/emoji/1f98f.svg new file mode 100644 index 000000000..7329b384e --- /dev/null +++ b/public/emoji/1f98f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f990.svg b/public/emoji/1f990.svg new file mode 100644 index 000000000..7cf07ad10 --- /dev/null +++ b/public/emoji/1f990.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f991.svg b/public/emoji/1f991.svg new file mode 100644 index 000000000..c7e876402 --- /dev/null +++ b/public/emoji/1f991.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/1f9c0.svg b/public/emoji/1f9c0.svg new file mode 100644 index 000000000..3cbd80968 --- /dev/null +++ b/public/emoji/1f9c0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/203c.svg b/public/emoji/203c.svg new file mode 100644 index 000000000..7d2d0dfd1 --- /dev/null +++ b/public/emoji/203c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/2049.svg b/public/emoji/2049.svg new file mode 100644 index 000000000..b39038bb0 --- /dev/null +++ b/public/emoji/2049.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/2122.svg b/public/emoji/2122.svg new file mode 100644 index 000000000..321c2026e --- /dev/null +++ b/public/emoji/2122.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/2139.svg b/public/emoji/2139.svg new file mode 100644 index 000000000..93e13a8aa --- /dev/null +++ b/public/emoji/2139.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/2194.svg b/public/emoji/2194.svg new file mode 100644 index 000000000..8ffc7d1db --- /dev/null +++ b/public/emoji/2194.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/2195.svg b/public/emoji/2195.svg new file mode 100644 index 000000000..803b79d38 --- /dev/null +++ b/public/emoji/2195.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/2196.svg b/public/emoji/2196.svg new file mode 100644 index 000000000..7049c485f --- /dev/null +++ b/public/emoji/2196.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/2197.svg b/public/emoji/2197.svg new file mode 100644 index 000000000..73cc6a7e5 --- /dev/null +++ b/public/emoji/2197.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/2198.svg b/public/emoji/2198.svg new file mode 100644 index 000000000..7a5e9677f --- /dev/null +++ b/public/emoji/2198.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/2199.svg b/public/emoji/2199.svg new file mode 100644 index 000000000..29c946425 --- /dev/null +++ b/public/emoji/2199.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/21a9.svg b/public/emoji/21a9.svg new file mode 100644 index 000000000..03a61def7 --- /dev/null +++ b/public/emoji/21a9.svg @@ -0,0 +1,2 @@ + \ No newline at end of file diff --git a/public/emoji/21aa.svg b/public/emoji/21aa.svg new file mode 100644 index 000000000..fd4773fd2 --- /dev/null +++ b/public/emoji/21aa.svg @@ -0,0 +1,2 @@ + \ No newline at end of file diff --git a/public/emoji/231a.svg b/public/emoji/231a.svg new file mode 100644 index 000000000..31cbd09c9 --- /dev/null +++ b/public/emoji/231a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/231b.svg b/public/emoji/231b.svg new file mode 100644 index 000000000..18acf0a3e --- /dev/null +++ b/public/emoji/231b.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/2328.svg b/public/emoji/2328.svg new file mode 100644 index 000000000..c282cf73f --- /dev/null +++ b/public/emoji/2328.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/23cf.svg b/public/emoji/23cf.svg new file mode 100644 index 000000000..2229e4437 --- /dev/null +++ b/public/emoji/23cf.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/23e9.svg b/public/emoji/23e9.svg new file mode 100644 index 000000000..60d4f822a --- /dev/null +++ b/public/emoji/23e9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/23ea.svg b/public/emoji/23ea.svg new file mode 100644 index 000000000..2530af199 --- /dev/null +++ b/public/emoji/23ea.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/23eb.svg b/public/emoji/23eb.svg new file mode 100644 index 000000000..fcc82a94e --- /dev/null +++ b/public/emoji/23eb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/23ec.svg b/public/emoji/23ec.svg new file mode 100644 index 000000000..17d697dfe --- /dev/null +++ b/public/emoji/23ec.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/23ed.svg b/public/emoji/23ed.svg new file mode 100644 index 000000000..4202a012d --- /dev/null +++ b/public/emoji/23ed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/23ee.svg b/public/emoji/23ee.svg new file mode 100644 index 000000000..e8d3c4ffe --- /dev/null +++ b/public/emoji/23ee.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/23ef.svg b/public/emoji/23ef.svg new file mode 100644 index 000000000..2fc2c46d0 --- /dev/null +++ b/public/emoji/23ef.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/23f0.svg b/public/emoji/23f0.svg new file mode 100644 index 000000000..fe9861220 --- /dev/null +++ b/public/emoji/23f0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/23f1.svg b/public/emoji/23f1.svg new file mode 100644 index 000000000..051d3d549 --- /dev/null +++ b/public/emoji/23f1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/23f2.svg b/public/emoji/23f2.svg new file mode 100644 index 000000000..c8f4446e0 --- /dev/null +++ b/public/emoji/23f2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/23f3.svg b/public/emoji/23f3.svg new file mode 100644 index 000000000..803f93230 --- /dev/null +++ b/public/emoji/23f3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/23f8.svg b/public/emoji/23f8.svg new file mode 100644 index 000000000..3247d55a8 --- /dev/null +++ b/public/emoji/23f8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/23f9.svg b/public/emoji/23f9.svg new file mode 100644 index 000000000..874ad6dbc --- /dev/null +++ b/public/emoji/23f9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/23fa.svg b/public/emoji/23fa.svg new file mode 100644 index 000000000..668d68289 --- /dev/null +++ b/public/emoji/23fa.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/24c2.svg b/public/emoji/24c2.svg new file mode 100644 index 000000000..fbbf6f8ee --- /dev/null +++ b/public/emoji/24c2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/25aa.svg b/public/emoji/25aa.svg new file mode 100644 index 000000000..2d0fa0a39 --- /dev/null +++ b/public/emoji/25aa.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/25ab.svg b/public/emoji/25ab.svg new file mode 100644 index 000000000..ab1ec4d2e --- /dev/null +++ b/public/emoji/25ab.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/25b6.svg b/public/emoji/25b6.svg new file mode 100644 index 000000000..f7ac18377 --- /dev/null +++ b/public/emoji/25b6.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/25c0.svg b/public/emoji/25c0.svg new file mode 100644 index 000000000..d67bffccf --- /dev/null +++ b/public/emoji/25c0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/25fb.svg b/public/emoji/25fb.svg new file mode 100644 index 000000000..c3dd9d3f2 --- /dev/null +++ b/public/emoji/25fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/25fc.svg b/public/emoji/25fc.svg new file mode 100644 index 000000000..bf2f03016 --- /dev/null +++ b/public/emoji/25fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/25fd.svg b/public/emoji/25fd.svg new file mode 100644 index 000000000..5f5ab3f58 --- /dev/null +++ b/public/emoji/25fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/25fe.svg b/public/emoji/25fe.svg new file mode 100644 index 000000000..b2a4c8150 --- /dev/null +++ b/public/emoji/25fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/2600.svg b/public/emoji/2600.svg new file mode 100644 index 000000000..aec6212d7 --- /dev/null +++ b/public/emoji/2600.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/2601.svg b/public/emoji/2601.svg new file mode 100644 index 000000000..3df7fa6e3 --- /dev/null +++ b/public/emoji/2601.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/2602.svg b/public/emoji/2602.svg new file mode 100644 index 000000000..2105cf10a --- /dev/null +++ b/public/emoji/2602.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/2603.svg b/public/emoji/2603.svg new file mode 100644 index 000000000..8bfcae8fe --- /dev/null +++ b/public/emoji/2603.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/2604.svg b/public/emoji/2604.svg new file mode 100644 index 000000000..7ad1c661d --- /dev/null +++ b/public/emoji/2604.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/260e.svg b/public/emoji/260e.svg new file mode 100644 index 000000000..2be32eb0a --- /dev/null +++ b/public/emoji/260e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/2611.svg b/public/emoji/2611.svg new file mode 100644 index 000000000..42ff8d455 --- /dev/null +++ b/public/emoji/2611.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/2614.svg b/public/emoji/2614.svg new file mode 100644 index 000000000..01ad0ed43 --- /dev/null +++ b/public/emoji/2614.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/2615.svg b/public/emoji/2615.svg new file mode 100644 index 000000000..cd98ff4a2 --- /dev/null +++ b/public/emoji/2615.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/2618.svg b/public/emoji/2618.svg new file mode 100644 index 000000000..d9a9acd47 --- /dev/null +++ b/public/emoji/2618.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/261d-1f3fb.svg b/public/emoji/261d-1f3fb.svg new file mode 100644 index 000000000..6a8b95a10 --- /dev/null +++ b/public/emoji/261d-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/261d-1f3fc.svg b/public/emoji/261d-1f3fc.svg new file mode 100644 index 000000000..d43f1a7b3 --- /dev/null +++ b/public/emoji/261d-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/261d-1f3fd.svg b/public/emoji/261d-1f3fd.svg new file mode 100644 index 000000000..c548d5dbb --- /dev/null +++ b/public/emoji/261d-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/261d-1f3fe.svg b/public/emoji/261d-1f3fe.svg new file mode 100644 index 000000000..4b63a6b24 --- /dev/null +++ b/public/emoji/261d-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/261d-1f3ff.svg b/public/emoji/261d-1f3ff.svg new file mode 100644 index 000000000..e422854ac --- /dev/null +++ b/public/emoji/261d-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/261d.svg b/public/emoji/261d.svg new file mode 100644 index 000000000..2d47296e5 --- /dev/null +++ b/public/emoji/261d.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/2620.svg b/public/emoji/2620.svg new file mode 100644 index 000000000..c8858de6e --- /dev/null +++ b/public/emoji/2620.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/2622.svg b/public/emoji/2622.svg new file mode 100644 index 000000000..b2068336e --- /dev/null +++ b/public/emoji/2622.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/2623.svg b/public/emoji/2623.svg new file mode 100644 index 000000000..60a22e51b --- /dev/null +++ b/public/emoji/2623.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/2626.svg b/public/emoji/2626.svg new file mode 100644 index 000000000..cc62ecdb0 --- /dev/null +++ b/public/emoji/2626.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/262a.svg b/public/emoji/262a.svg new file mode 100644 index 000000000..87fd9c704 --- /dev/null +++ b/public/emoji/262a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/262e.svg b/public/emoji/262e.svg new file mode 100644 index 000000000..01a035a55 --- /dev/null +++ b/public/emoji/262e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/262f.svg b/public/emoji/262f.svg new file mode 100644 index 000000000..e232b6692 --- /dev/null +++ b/public/emoji/262f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/2638.svg b/public/emoji/2638.svg new file mode 100644 index 000000000..8c09aa21a --- /dev/null +++ b/public/emoji/2638.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/2639.svg b/public/emoji/2639.svg new file mode 100644 index 000000000..ead0eb5b3 --- /dev/null +++ b/public/emoji/2639.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/263a.svg b/public/emoji/263a.svg new file mode 100644 index 000000000..f8a5cb762 --- /dev/null +++ b/public/emoji/263a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/2648.svg b/public/emoji/2648.svg new file mode 100644 index 000000000..f85279e57 --- /dev/null +++ b/public/emoji/2648.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/2649.svg b/public/emoji/2649.svg new file mode 100644 index 000000000..a569cb32b --- /dev/null +++ b/public/emoji/2649.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/264a.svg b/public/emoji/264a.svg new file mode 100644 index 000000000..f87603f68 --- /dev/null +++ b/public/emoji/264a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/264b.svg b/public/emoji/264b.svg new file mode 100644 index 000000000..703fda7ff --- /dev/null +++ b/public/emoji/264b.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/264c.svg b/public/emoji/264c.svg new file mode 100644 index 000000000..e5a2ad1c4 --- /dev/null +++ b/public/emoji/264c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/264d.svg b/public/emoji/264d.svg new file mode 100644 index 000000000..24f569cc7 --- /dev/null +++ b/public/emoji/264d.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/264e.svg b/public/emoji/264e.svg new file mode 100644 index 000000000..a7c8e0a71 --- /dev/null +++ b/public/emoji/264e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/264f.svg b/public/emoji/264f.svg new file mode 100644 index 000000000..78de283a6 --- /dev/null +++ b/public/emoji/264f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/2650.svg b/public/emoji/2650.svg new file mode 100644 index 000000000..0e7fcde6e --- /dev/null +++ b/public/emoji/2650.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/2651.svg b/public/emoji/2651.svg new file mode 100644 index 000000000..d63209655 --- /dev/null +++ b/public/emoji/2651.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/2652.svg b/public/emoji/2652.svg new file mode 100644 index 000000000..7b262f869 --- /dev/null +++ b/public/emoji/2652.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/2653.svg b/public/emoji/2653.svg new file mode 100644 index 000000000..d50acfc89 --- /dev/null +++ b/public/emoji/2653.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/2660.svg b/public/emoji/2660.svg new file mode 100644 index 000000000..0d9699bd5 --- /dev/null +++ b/public/emoji/2660.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/2663.svg b/public/emoji/2663.svg new file mode 100644 index 000000000..2ee52dd62 --- /dev/null +++ b/public/emoji/2663.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/2665.svg b/public/emoji/2665.svg new file mode 100644 index 000000000..6659eb13c --- /dev/null +++ b/public/emoji/2665.svg @@ -0,0 +1,2 @@ + \ No newline at end of file diff --git a/public/emoji/2666.svg b/public/emoji/2666.svg new file mode 100644 index 000000000..654b2f4b6 --- /dev/null +++ b/public/emoji/2666.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/2668.svg b/public/emoji/2668.svg new file mode 100644 index 000000000..e65cbcb1a --- /dev/null +++ b/public/emoji/2668.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/267b.svg b/public/emoji/267b.svg new file mode 100644 index 000000000..7d80b6fe7 --- /dev/null +++ b/public/emoji/267b.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/267f.svg b/public/emoji/267f.svg new file mode 100644 index 000000000..3ee86eb6c --- /dev/null +++ b/public/emoji/267f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/2692.svg b/public/emoji/2692.svg new file mode 100644 index 000000000..10516b7bf --- /dev/null +++ b/public/emoji/2692.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/2693.svg b/public/emoji/2693.svg new file mode 100644 index 000000000..b5f5418d1 --- /dev/null +++ b/public/emoji/2693.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/2694.svg b/public/emoji/2694.svg new file mode 100644 index 000000000..368fdc054 --- /dev/null +++ b/public/emoji/2694.svg @@ -0,0 +1,3 @@ + \ No newline at end of file diff --git a/public/emoji/2696.svg b/public/emoji/2696.svg new file mode 100644 index 000000000..c8042bbcb --- /dev/null +++ b/public/emoji/2696.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/2697.svg b/public/emoji/2697.svg new file mode 100644 index 000000000..6e63dacb8 --- /dev/null +++ b/public/emoji/2697.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/2699.svg b/public/emoji/2699.svg new file mode 100644 index 000000000..9230ed01a --- /dev/null +++ b/public/emoji/2699.svg @@ -0,0 +1,2 @@ + \ No newline at end of file diff --git a/public/emoji/269b.svg b/public/emoji/269b.svg new file mode 100644 index 000000000..0b02d3cd4 --- /dev/null +++ b/public/emoji/269b.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/269c.svg b/public/emoji/269c.svg new file mode 100644 index 000000000..ce5bad951 --- /dev/null +++ b/public/emoji/269c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/26a0.svg b/public/emoji/26a0.svg new file mode 100644 index 000000000..e6b14203c --- /dev/null +++ b/public/emoji/26a0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/26a1.svg b/public/emoji/26a1.svg new file mode 100644 index 000000000..ac811c568 --- /dev/null +++ b/public/emoji/26a1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/26aa.svg b/public/emoji/26aa.svg new file mode 100644 index 000000000..fb39d3ebb --- /dev/null +++ b/public/emoji/26aa.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/26ab.svg b/public/emoji/26ab.svg new file mode 100644 index 000000000..137a56b1f --- /dev/null +++ b/public/emoji/26ab.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/26b0.svg b/public/emoji/26b0.svg new file mode 100644 index 000000000..8fb8eb117 --- /dev/null +++ b/public/emoji/26b0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/26b1.svg b/public/emoji/26b1.svg new file mode 100644 index 000000000..a752a3183 --- /dev/null +++ b/public/emoji/26b1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/26bd.svg b/public/emoji/26bd.svg new file mode 100644 index 000000000..dc2380edd --- /dev/null +++ b/public/emoji/26bd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/26be.svg b/public/emoji/26be.svg new file mode 100644 index 000000000..efe314bc6 --- /dev/null +++ b/public/emoji/26be.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/26c4.svg b/public/emoji/26c4.svg new file mode 100644 index 000000000..3d083f6ce --- /dev/null +++ b/public/emoji/26c4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/26c5.svg b/public/emoji/26c5.svg new file mode 100644 index 000000000..ea9730cc1 --- /dev/null +++ b/public/emoji/26c5.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/26c8.svg b/public/emoji/26c8.svg new file mode 100644 index 000000000..03409bb69 --- /dev/null +++ b/public/emoji/26c8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/26ce.svg b/public/emoji/26ce.svg new file mode 100644 index 000000000..bacb7e3e8 --- /dev/null +++ b/public/emoji/26ce.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/26cf.svg b/public/emoji/26cf.svg new file mode 100644 index 000000000..3c30f7f3c --- /dev/null +++ b/public/emoji/26cf.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/26d1.svg b/public/emoji/26d1.svg new file mode 100644 index 000000000..bcdd92d68 --- /dev/null +++ b/public/emoji/26d1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/26d3.svg b/public/emoji/26d3.svg new file mode 100644 index 000000000..a34973b8c --- /dev/null +++ b/public/emoji/26d3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/26d4.svg b/public/emoji/26d4.svg new file mode 100644 index 000000000..61545291b --- /dev/null +++ b/public/emoji/26d4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/26e9.svg b/public/emoji/26e9.svg new file mode 100644 index 000000000..570b46d89 --- /dev/null +++ b/public/emoji/26e9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/26ea.svg b/public/emoji/26ea.svg new file mode 100644 index 000000000..6d8236c25 --- /dev/null +++ b/public/emoji/26ea.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/26f0.svg b/public/emoji/26f0.svg new file mode 100644 index 000000000..ae954cfb0 --- /dev/null +++ b/public/emoji/26f0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/26f1.svg b/public/emoji/26f1.svg new file mode 100644 index 000000000..641b4551d --- /dev/null +++ b/public/emoji/26f1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/26f2.svg b/public/emoji/26f2.svg new file mode 100644 index 000000000..377ecf842 --- /dev/null +++ b/public/emoji/26f2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/26f3.svg b/public/emoji/26f3.svg new file mode 100644 index 000000000..cd35a12de --- /dev/null +++ b/public/emoji/26f3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/26f4.svg b/public/emoji/26f4.svg new file mode 100644 index 000000000..306970ebc --- /dev/null +++ b/public/emoji/26f4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/26f5.svg b/public/emoji/26f5.svg new file mode 100644 index 000000000..e69f924b9 --- /dev/null +++ b/public/emoji/26f5.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/26f7.svg b/public/emoji/26f7.svg new file mode 100644 index 000000000..a9fb9b84d --- /dev/null +++ b/public/emoji/26f7.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/26f8.svg b/public/emoji/26f8.svg new file mode 100644 index 000000000..60adcaf3c --- /dev/null +++ b/public/emoji/26f8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/26f9-1f3fb.svg b/public/emoji/26f9-1f3fb.svg new file mode 100644 index 000000000..480994ca9 --- /dev/null +++ b/public/emoji/26f9-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/26f9-1f3fc.svg b/public/emoji/26f9-1f3fc.svg new file mode 100644 index 000000000..dd18a65d3 --- /dev/null +++ b/public/emoji/26f9-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/26f9-1f3fd.svg b/public/emoji/26f9-1f3fd.svg new file mode 100644 index 000000000..0af260864 --- /dev/null +++ b/public/emoji/26f9-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/26f9-1f3fe.svg b/public/emoji/26f9-1f3fe.svg new file mode 100644 index 000000000..b0b9d3642 --- /dev/null +++ b/public/emoji/26f9-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/26f9-1f3ff.svg b/public/emoji/26f9-1f3ff.svg new file mode 100644 index 000000000..f7ee9300d --- /dev/null +++ b/public/emoji/26f9-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/26f9.svg b/public/emoji/26f9.svg new file mode 100644 index 000000000..ad4502b14 --- /dev/null +++ b/public/emoji/26f9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/26fa.svg b/public/emoji/26fa.svg new file mode 100644 index 000000000..73bb5136f --- /dev/null +++ b/public/emoji/26fa.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/26fd.svg b/public/emoji/26fd.svg new file mode 100644 index 000000000..cfc136ba8 --- /dev/null +++ b/public/emoji/26fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/2702.svg b/public/emoji/2702.svg new file mode 100644 index 000000000..a5e934da6 --- /dev/null +++ b/public/emoji/2702.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/2705.svg b/public/emoji/2705.svg new file mode 100644 index 000000000..4f0474ade --- /dev/null +++ b/public/emoji/2705.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/2708.svg b/public/emoji/2708.svg new file mode 100644 index 000000000..92d5f7319 --- /dev/null +++ b/public/emoji/2708.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/2709.svg b/public/emoji/2709.svg new file mode 100644 index 000000000..4337c482e --- /dev/null +++ b/public/emoji/2709.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/270a-1f3fb.svg b/public/emoji/270a-1f3fb.svg new file mode 100644 index 000000000..425a77095 --- /dev/null +++ b/public/emoji/270a-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/270a-1f3fc.svg b/public/emoji/270a-1f3fc.svg new file mode 100644 index 000000000..64c091bda --- /dev/null +++ b/public/emoji/270a-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/270a-1f3fd.svg b/public/emoji/270a-1f3fd.svg new file mode 100644 index 000000000..ac29bb90c --- /dev/null +++ b/public/emoji/270a-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/270a-1f3fe.svg b/public/emoji/270a-1f3fe.svg new file mode 100644 index 000000000..6b2ae91c6 --- /dev/null +++ b/public/emoji/270a-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/270a-1f3ff.svg b/public/emoji/270a-1f3ff.svg new file mode 100644 index 000000000..ab9f9952e --- /dev/null +++ b/public/emoji/270a-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/270a.svg b/public/emoji/270a.svg new file mode 100644 index 000000000..7f6e6cee7 --- /dev/null +++ b/public/emoji/270a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/270b-1f3fb.svg b/public/emoji/270b-1f3fb.svg new file mode 100644 index 000000000..5345aea13 --- /dev/null +++ b/public/emoji/270b-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/270b-1f3fc.svg b/public/emoji/270b-1f3fc.svg new file mode 100644 index 000000000..99d1359be --- /dev/null +++ b/public/emoji/270b-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/270b-1f3fd.svg b/public/emoji/270b-1f3fd.svg new file mode 100644 index 000000000..258c678f9 --- /dev/null +++ b/public/emoji/270b-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/270b-1f3fe.svg b/public/emoji/270b-1f3fe.svg new file mode 100644 index 000000000..3b7b55ff5 --- /dev/null +++ b/public/emoji/270b-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/270b-1f3ff.svg b/public/emoji/270b-1f3ff.svg new file mode 100644 index 000000000..b1e851268 --- /dev/null +++ b/public/emoji/270b-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/270b.svg b/public/emoji/270b.svg new file mode 100644 index 000000000..8aca81b82 --- /dev/null +++ b/public/emoji/270b.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/270c-1f3fb.svg b/public/emoji/270c-1f3fb.svg new file mode 100644 index 000000000..2053e46dc --- /dev/null +++ b/public/emoji/270c-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/270c-1f3fc.svg b/public/emoji/270c-1f3fc.svg new file mode 100644 index 000000000..7be61714c --- /dev/null +++ b/public/emoji/270c-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/270c-1f3fd.svg b/public/emoji/270c-1f3fd.svg new file mode 100644 index 000000000..fb5387e10 --- /dev/null +++ b/public/emoji/270c-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/270c-1f3fe.svg b/public/emoji/270c-1f3fe.svg new file mode 100644 index 000000000..2b8a95d8e --- /dev/null +++ b/public/emoji/270c-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/270c-1f3ff.svg b/public/emoji/270c-1f3ff.svg new file mode 100644 index 000000000..8d41bbcdc --- /dev/null +++ b/public/emoji/270c-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/270c.svg b/public/emoji/270c.svg new file mode 100644 index 000000000..78682b572 --- /dev/null +++ b/public/emoji/270c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/270d-1f3fb.svg b/public/emoji/270d-1f3fb.svg new file mode 100644 index 000000000..438ab1a8a --- /dev/null +++ b/public/emoji/270d-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/270d-1f3fc.svg b/public/emoji/270d-1f3fc.svg new file mode 100644 index 000000000..3ff16a807 --- /dev/null +++ b/public/emoji/270d-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/270d-1f3fd.svg b/public/emoji/270d-1f3fd.svg new file mode 100644 index 000000000..57884c07e --- /dev/null +++ b/public/emoji/270d-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/270d-1f3fe.svg b/public/emoji/270d-1f3fe.svg new file mode 100644 index 000000000..089e890d5 --- /dev/null +++ b/public/emoji/270d-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/270d-1f3ff.svg b/public/emoji/270d-1f3ff.svg new file mode 100644 index 000000000..863dbaae5 --- /dev/null +++ b/public/emoji/270d-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/270d.svg b/public/emoji/270d.svg new file mode 100644 index 000000000..9370c8c39 --- /dev/null +++ b/public/emoji/270d.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/270f.svg b/public/emoji/270f.svg new file mode 100644 index 000000000..55eec7728 --- /dev/null +++ b/public/emoji/270f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/2712.svg b/public/emoji/2712.svg new file mode 100644 index 000000000..28a3968a7 --- /dev/null +++ b/public/emoji/2712.svg @@ -0,0 +1,2 @@ + \ No newline at end of file diff --git a/public/emoji/2714.svg b/public/emoji/2714.svg new file mode 100644 index 000000000..20a082618 --- /dev/null +++ b/public/emoji/2714.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/2716.svg b/public/emoji/2716.svg new file mode 100644 index 000000000..1117a7595 --- /dev/null +++ b/public/emoji/2716.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/271d.svg b/public/emoji/271d.svg new file mode 100644 index 000000000..850e14440 --- /dev/null +++ b/public/emoji/271d.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/2721.svg b/public/emoji/2721.svg new file mode 100644 index 000000000..073f60429 --- /dev/null +++ b/public/emoji/2721.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/2728.svg b/public/emoji/2728.svg new file mode 100644 index 000000000..37c088090 --- /dev/null +++ b/public/emoji/2728.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/2733.svg b/public/emoji/2733.svg new file mode 100644 index 000000000..fc0a0d5cc --- /dev/null +++ b/public/emoji/2733.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/2734.svg b/public/emoji/2734.svg new file mode 100644 index 000000000..c8f50edc7 --- /dev/null +++ b/public/emoji/2734.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/2744.svg b/public/emoji/2744.svg new file mode 100644 index 000000000..145818394 --- /dev/null +++ b/public/emoji/2744.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/2747.svg b/public/emoji/2747.svg new file mode 100644 index 000000000..9c179d6ea --- /dev/null +++ b/public/emoji/2747.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/274c.svg b/public/emoji/274c.svg new file mode 100644 index 000000000..5f60701d2 --- /dev/null +++ b/public/emoji/274c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/274e.svg b/public/emoji/274e.svg new file mode 100644 index 000000000..b65d3ec9e --- /dev/null +++ b/public/emoji/274e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/2753.svg b/public/emoji/2753.svg new file mode 100644 index 000000000..d4b28c81c --- /dev/null +++ b/public/emoji/2753.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/2754.svg b/public/emoji/2754.svg new file mode 100644 index 000000000..d04a83c31 --- /dev/null +++ b/public/emoji/2754.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/2755.svg b/public/emoji/2755.svg new file mode 100644 index 000000000..714e2103f --- /dev/null +++ b/public/emoji/2755.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/2757.svg b/public/emoji/2757.svg new file mode 100644 index 000000000..d064e7e12 --- /dev/null +++ b/public/emoji/2757.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/2763.svg b/public/emoji/2763.svg new file mode 100644 index 000000000..df6ebedfb --- /dev/null +++ b/public/emoji/2763.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/2764.svg b/public/emoji/2764.svg new file mode 100644 index 000000000..12c6742e2 --- /dev/null +++ b/public/emoji/2764.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/2795.svg b/public/emoji/2795.svg new file mode 100644 index 000000000..c572fec5c --- /dev/null +++ b/public/emoji/2795.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/2796.svg b/public/emoji/2796.svg new file mode 100644 index 000000000..844614dd6 --- /dev/null +++ b/public/emoji/2796.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/2797.svg b/public/emoji/2797.svg new file mode 100644 index 000000000..8b3945c9c --- /dev/null +++ b/public/emoji/2797.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/27a1.svg b/public/emoji/27a1.svg new file mode 100644 index 000000000..125d7d47f --- /dev/null +++ b/public/emoji/27a1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/27b0.svg b/public/emoji/27b0.svg new file mode 100644 index 000000000..5bf1eac01 --- /dev/null +++ b/public/emoji/27b0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/27bf.svg b/public/emoji/27bf.svg new file mode 100644 index 000000000..83d211d28 --- /dev/null +++ b/public/emoji/27bf.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/2934.svg b/public/emoji/2934.svg new file mode 100644 index 000000000..2d7a211d1 --- /dev/null +++ b/public/emoji/2934.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/2935.svg b/public/emoji/2935.svg new file mode 100644 index 000000000..00a8a92ab --- /dev/null +++ b/public/emoji/2935.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/2b05.svg b/public/emoji/2b05.svg new file mode 100644 index 000000000..9583aec7f --- /dev/null +++ b/public/emoji/2b05.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/2b06.svg b/public/emoji/2b06.svg new file mode 100644 index 000000000..efa332284 --- /dev/null +++ b/public/emoji/2b06.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/2b07.svg b/public/emoji/2b07.svg new file mode 100644 index 000000000..bbd2213f8 --- /dev/null +++ b/public/emoji/2b07.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/2b1b.svg b/public/emoji/2b1b.svg new file mode 100644 index 000000000..b908105f3 --- /dev/null +++ b/public/emoji/2b1b.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/2b1c.svg b/public/emoji/2b1c.svg new file mode 100644 index 000000000..a58c77bd0 --- /dev/null +++ b/public/emoji/2b1c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/2b50.svg b/public/emoji/2b50.svg new file mode 100644 index 000000000..487bf321c --- /dev/null +++ b/public/emoji/2b50.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/2b55.svg b/public/emoji/2b55.svg new file mode 100644 index 000000000..46265062f --- /dev/null +++ b/public/emoji/2b55.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/3030.svg b/public/emoji/3030.svg new file mode 100644 index 000000000..ce6c00599 --- /dev/null +++ b/public/emoji/3030.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/303d.svg b/public/emoji/303d.svg new file mode 100644 index 000000000..3b7e1508a --- /dev/null +++ b/public/emoji/303d.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/3297.svg b/public/emoji/3297.svg new file mode 100644 index 000000000..c57b1ab8a --- /dev/null +++ b/public/emoji/3297.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/emoji/3299.svg b/public/emoji/3299.svg new file mode 100644 index 000000000..3e750322e --- /dev/null +++ b/public/emoji/3299.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/yarn.lock b/yarn.lock index 0904354e9..6a3a36270 100644 --- a/yarn.lock +++ b/yarn.lock @@ -2297,7 +2297,7 @@ emojione-picker@^2.0.1: react-virtualized "^8.11.4" store "^1.3.20" -emojione@^2.2.6, emojione@latest: +emojione@^2.2.6, emojione@^2.2.7: version "2.2.7" resolved "https://registry.yarnpkg.com/emojione/-/emojione-2.2.7.tgz#46457cf6b9b2f8da13ae8a2e4e547de06ee15e96"