diff --git a/.github/workflows/typos.toml b/.github/workflows/typos.toml index b817f08f44533..90b0ea1cc9348 100644 --- a/.github/workflows/typos.toml +++ b/.github/workflows/typos.toml @@ -9,6 +9,7 @@ MacOS = "macOS" [files] extend-exclude = [ "**.svg", + "**.png", "**.lock", "go.sum", "go.mod", diff --git a/site/can-ndjson-stream.d.ts b/site/can-ndjson-stream.d.ts deleted file mode 100644 index d4fde38eee9ac..0000000000000 --- a/site/can-ndjson-stream.d.ts +++ /dev/null @@ -1,6 +0,0 @@ -declare module "can-ndjson-stream" { - function ndjsonStream( - body: ReadableStream | null, - ): Promise> - export default ndjsonStream -} diff --git a/site/emoji-mart.d.ts b/site/emoji-mart.d.ts new file mode 100644 index 0000000000000..b1f3fab41bd09 --- /dev/null +++ b/site/emoji-mart.d.ts @@ -0,0 +1,9 @@ +declare module "@emoji-mart/react" { + const Picker: React.FC<{ + theme: "dark" | "light" + data: Record + onEmojiSelect: (emojiData: { unified: string }) => void + }> + + export default Picker +} diff --git a/site/package.json b/site/package.json index 99d65967c9ab6..238a873a33b27 100644 --- a/site/package.json +++ b/site/package.json @@ -57,7 +57,10 @@ "xterm-addon-web-links": "0.6.0", "xterm-addon-webgl": "0.11.4", "xterm-for-react": "1.0.4", - "yup": "0.32.11" + "yup": "0.32.11", + "@emoji-mart/data": "^1.0.5", + "@emoji-mart/react": "^1.0.1", + "emoji-mart": "^5.2.1" }, "devDependencies": { "@playwright/test": "1.24.1", diff --git a/site/src/components/ErrorSummary/ErrorSummary.tsx b/site/src/components/ErrorSummary/ErrorSummary.tsx index f61fb9931cd3d..25b13eb9730ba 100644 --- a/site/src/components/ErrorSummary/ErrorSummary.tsx +++ b/site/src/components/ErrorSummary/ErrorSummary.tsx @@ -75,7 +75,13 @@ export const ErrorSummary: FC = ({ {retry && (
-
@@ -122,4 +128,12 @@ const useStyles = makeStyles((theme) => ({ retry: { marginTop: `${theme.spacing(2)}px`, }, + retryButton: { + color: theme.palette.error.contrastText, + borderColor: theme.palette.error.contrastText, + + "&:hover": { + backgroundColor: theme.palette.error.dark, + }, + }, })) diff --git a/site/src/pages/TemplateSettingsPage/TemplateSettingsForm.tsx b/site/src/pages/TemplateSettingsPage/TemplateSettingsForm.tsx index 8693709d7a4ee..a1f569f91a51e 100644 --- a/site/src/pages/TemplateSettingsPage/TemplateSettingsForm.tsx +++ b/site/src/pages/TemplateSettingsPage/TemplateSettingsForm.tsx @@ -1,11 +1,17 @@ +import data from "@emoji-mart/data/sets/14/twitter.json" +import Picker from "@emoji-mart/react" +import Button from "@material-ui/core/Button" import InputAdornment from "@material-ui/core/InputAdornment" +import Popover from "@material-ui/core/Popover" import { makeStyles } from "@material-ui/core/styles" import TextField from "@material-ui/core/TextField" import { Template, UpdateTemplateMeta } from "api/typesGenerated" +import { OpenDropdown } from "components/DropdownArrows/DropdownArrows" import { FormFooter } from "components/FormFooter/FormFooter" import { Stack } from "components/Stack/Stack" import { FormikContextType, FormikTouched, useFormik } from "formik" -import { FC } from "react" +import { FC, useRef, useState } from "react" +import { colors } from "theme/colors" import { getFormHelpersWithError, nameValidator, onChangeTrimmed } from "util/formUtils" import * as Yup from "yup" @@ -17,6 +23,7 @@ export const Language = { // This is the same from the CLI on https://github.com/coder/coder/blob/546157b63ef9204658acf58cb653aa9936b70c49/cli/templateedit.go#L59 maxTtlHelperText: "Edit the template maximum time before shutdown in milliseconds", formAriaLabel: "Template settings form", + selectEmoji: "Select emoji", } export const validationSchema = Yup.object({ @@ -43,6 +50,7 @@ export const TemplateSettingsForm: FC = ({ isSubmitting, initialTouched, }) => { + const [isEmojiPickerOpen, setIsEmojiPickerOpen] = useState(false) const form: FormikContextType = useFormik({ initialValues: { name: template.name, @@ -59,6 +67,7 @@ export const TemplateSettingsForm: FC = ({ const getFieldHelpers = getFormHelpersWithError(form, error) const styles = useStyles() const hasIcon = form.values.icon && form.values.icon !== "" + const emojiButtonRef = useRef(null) return (
@@ -83,28 +92,61 @@ export const TemplateSettingsForm: FC = ({ rows={2} /> - - (e.currentTarget.style.display = "none")} - onLoad={(e) => (e.currentTarget.style.display = "inline")} - /> - - ) : undefined, - }} - /> +
+ + (e.currentTarget.style.display = "none")} + onLoad={(e) => (e.currentTarget.style.display = "inline")} + /> + + ) : undefined, + }} + /> + + + + { + setIsEmojiPickerOpen(false) + }} + > + { + form.setFieldValue("icon", `/emojis/${emojiData.unified}.png`) + setIsEmojiPickerOpen(false) + }} + /> + +
= ({ } const useStyles = makeStyles((theme) => ({ + "@global": { + "em-emoji-picker": { + "--rgb-background": theme.palette.background.paper, + "--rgb-input": colors.gray[17], + "--rgb-color": colors.gray[4], + }, + }, adornment: { width: theme.spacing(3), height: theme.spacing(3), }, + iconField: { + paddingBottom: theme.spacing(0.5), + }, })) diff --git a/site/src/pages/TemplatesPage/TemplatesPageView.tsx b/site/src/pages/TemplatesPage/TemplatesPageView.tsx index 4127c72fe9bde..d6ac2801e9da1 100644 --- a/site/src/pages/TemplatesPage/TemplatesPageView.tsx +++ b/site/src/pages/TemplatesPage/TemplatesPageView.tsx @@ -225,5 +225,9 @@ const useStyles = makeStyles((theme) => ({ width: 36, height: 36, padding: 2, + + "& img": { + width: "100%", + }, }, })) diff --git a/site/src/theme/overrides.ts b/site/src/theme/overrides.ts index 22adb90204dc7..8541cc687558d 100644 --- a/site/src/theme/overrides.ts +++ b/site/src/theme/overrides.ts @@ -9,7 +9,7 @@ export const getOverrides = ({ palette, breakpoints }: Theme): Overrides => { MuiCssBaseline: { "@global": { body: { - backgroundImage: `linear-gradient(to right bottom, ${colors.gray[15]}, ${colors.gray[17]})`, + backgroundImage: `linear-gradient(to right bottom, ${palette.background.default}, ${colors.gray[17]})`, backgroundRepeat: "no-repeat", backgroundAttachment: "fixed", letterSpacing: "-0.015em", @@ -57,6 +57,12 @@ export const getOverrides = ({ palette, breakpoints }: Theme): Overrides => { marginLeft: "0 !important", marginRight: 12, }, + outlined: { + border: `1px solid ${palette.divider}`, + "&:hover": { + backgroundColor: palette.background.default, + }, + }, }, MuiIconButton: { sizeSmall: { @@ -82,8 +88,8 @@ export const getOverrides = ({ palette, breakpoints }: Theme): Overrides => { root: { borderCollapse: "collapse", border: "none", - background: colors.gray[15], - boxShadow: `0 0 0 1px ${colors.gray[15]} inset`, + background: palette.background.default, + boxShadow: `0 0 0 1px ${palette.background.default} inset`, overflow: "hidden", "& td": { diff --git a/site/static/emojis/1f004.png b/site/static/emojis/1f004.png new file mode 100644 index 0000000000000..93c0fa92caa68 Binary files /dev/null and b/site/static/emojis/1f004.png differ diff --git a/site/static/emojis/1f0cf.png b/site/static/emojis/1f0cf.png new file mode 100644 index 0000000000000..5530110afe159 Binary files /dev/null and b/site/static/emojis/1f0cf.png differ diff --git a/site/static/emojis/1f170.png b/site/static/emojis/1f170.png new file mode 100644 index 0000000000000..8944eac4ffc57 Binary files /dev/null and b/site/static/emojis/1f170.png differ diff --git a/site/static/emojis/1f171.png b/site/static/emojis/1f171.png new file mode 100644 index 0000000000000..6662ffefc4df7 Binary files /dev/null and b/site/static/emojis/1f171.png differ diff --git a/site/static/emojis/1f17e.png b/site/static/emojis/1f17e.png new file mode 100644 index 0000000000000..7d38be20cc7a6 Binary files /dev/null and b/site/static/emojis/1f17e.png differ diff --git a/site/static/emojis/1f17f.png b/site/static/emojis/1f17f.png new file mode 100644 index 0000000000000..afa850c900ea9 Binary files /dev/null and b/site/static/emojis/1f17f.png differ diff --git a/site/static/emojis/1f18e.png b/site/static/emojis/1f18e.png new file mode 100644 index 0000000000000..0c6879c6997f2 Binary files /dev/null and b/site/static/emojis/1f18e.png differ diff --git a/site/static/emojis/1f191.png b/site/static/emojis/1f191.png new file mode 100644 index 0000000000000..d4cb3afc63c82 Binary files /dev/null and b/site/static/emojis/1f191.png differ diff --git a/site/static/emojis/1f192.png b/site/static/emojis/1f192.png new file mode 100644 index 0000000000000..d1920bcc461f0 Binary files /dev/null and b/site/static/emojis/1f192.png differ diff --git a/site/static/emojis/1f193.png b/site/static/emojis/1f193.png new file mode 100644 index 0000000000000..20c351632c6ae Binary files /dev/null and b/site/static/emojis/1f193.png differ diff --git a/site/static/emojis/1f194.png b/site/static/emojis/1f194.png new file mode 100644 index 0000000000000..d2a9c0ac69a48 Binary files /dev/null and b/site/static/emojis/1f194.png differ diff --git a/site/static/emojis/1f195.png b/site/static/emojis/1f195.png new file mode 100644 index 0000000000000..9c0693701c2fa Binary files /dev/null and b/site/static/emojis/1f195.png differ diff --git a/site/static/emojis/1f196.png b/site/static/emojis/1f196.png new file mode 100644 index 0000000000000..1676a2b190619 Binary files /dev/null and b/site/static/emojis/1f196.png differ diff --git a/site/static/emojis/1f197.png b/site/static/emojis/1f197.png new file mode 100644 index 0000000000000..90763be7040ab Binary files /dev/null and b/site/static/emojis/1f197.png differ diff --git a/site/static/emojis/1f198.png b/site/static/emojis/1f198.png new file mode 100644 index 0000000000000..2dd0eb0440c00 Binary files /dev/null and b/site/static/emojis/1f198.png differ diff --git a/site/static/emojis/1f199.png b/site/static/emojis/1f199.png new file mode 100644 index 0000000000000..177ee60634160 Binary files /dev/null and b/site/static/emojis/1f199.png differ diff --git a/site/static/emojis/1f19a.png b/site/static/emojis/1f19a.png new file mode 100644 index 0000000000000..9f26ffe7f790d Binary files /dev/null and b/site/static/emojis/1f19a.png differ diff --git a/site/static/emojis/1f1e6-1f1e8.png b/site/static/emojis/1f1e6-1f1e8.png new file mode 100644 index 0000000000000..8e7a630b924a5 Binary files /dev/null and b/site/static/emojis/1f1e6-1f1e8.png differ diff --git a/site/static/emojis/1f1e6-1f1e9.png b/site/static/emojis/1f1e6-1f1e9.png new file mode 100644 index 0000000000000..69972dfe8cbfe Binary files /dev/null and b/site/static/emojis/1f1e6-1f1e9.png differ diff --git a/site/static/emojis/1f1e6-1f1ea.png b/site/static/emojis/1f1e6-1f1ea.png new file mode 100644 index 0000000000000..11d2bb6e9fa19 Binary files /dev/null and b/site/static/emojis/1f1e6-1f1ea.png differ diff --git a/site/static/emojis/1f1e6-1f1eb.png b/site/static/emojis/1f1e6-1f1eb.png new file mode 100644 index 0000000000000..7a37ec27e78a3 Binary files /dev/null and b/site/static/emojis/1f1e6-1f1eb.png differ diff --git a/site/static/emojis/1f1e6-1f1ec.png b/site/static/emojis/1f1e6-1f1ec.png new file mode 100644 index 0000000000000..8602fff488c18 Binary files /dev/null and b/site/static/emojis/1f1e6-1f1ec.png differ diff --git a/site/static/emojis/1f1e6-1f1ee.png b/site/static/emojis/1f1e6-1f1ee.png new file mode 100644 index 0000000000000..73f0c20398691 Binary files /dev/null and b/site/static/emojis/1f1e6-1f1ee.png differ diff --git a/site/static/emojis/1f1e6-1f1f1.png b/site/static/emojis/1f1e6-1f1f1.png new file mode 100644 index 0000000000000..a6d45735f3ffe Binary files /dev/null and b/site/static/emojis/1f1e6-1f1f1.png differ diff --git a/site/static/emojis/1f1e6-1f1f2.png b/site/static/emojis/1f1e6-1f1f2.png new file mode 100644 index 0000000000000..16ef38ae5f683 Binary files /dev/null and b/site/static/emojis/1f1e6-1f1f2.png differ diff --git a/site/static/emojis/1f1e6-1f1f4.png b/site/static/emojis/1f1e6-1f1f4.png new file mode 100644 index 0000000000000..934952555e5ad Binary files /dev/null and b/site/static/emojis/1f1e6-1f1f4.png differ diff --git a/site/static/emojis/1f1e6-1f1f6.png b/site/static/emojis/1f1e6-1f1f6.png new file mode 100644 index 0000000000000..d21e4bafd2bd7 Binary files /dev/null and b/site/static/emojis/1f1e6-1f1f6.png differ diff --git a/site/static/emojis/1f1e6-1f1f7.png b/site/static/emojis/1f1e6-1f1f7.png new file mode 100644 index 0000000000000..a7d8a31dd1e1a Binary files /dev/null and b/site/static/emojis/1f1e6-1f1f7.png differ diff --git a/site/static/emojis/1f1e6-1f1f8.png b/site/static/emojis/1f1e6-1f1f8.png new file mode 100644 index 0000000000000..a5cdfccbcdaf0 Binary files /dev/null and b/site/static/emojis/1f1e6-1f1f8.png differ diff --git a/site/static/emojis/1f1e6-1f1f9.png b/site/static/emojis/1f1e6-1f1f9.png new file mode 100644 index 0000000000000..3937efe8408da Binary files /dev/null and b/site/static/emojis/1f1e6-1f1f9.png differ diff --git a/site/static/emojis/1f1e6-1f1fa.png b/site/static/emojis/1f1e6-1f1fa.png new file mode 100644 index 0000000000000..84a51806bfe0d Binary files /dev/null and b/site/static/emojis/1f1e6-1f1fa.png differ diff --git a/site/static/emojis/1f1e6-1f1fc.png b/site/static/emojis/1f1e6-1f1fc.png new file mode 100644 index 0000000000000..e250be924b167 Binary files /dev/null and b/site/static/emojis/1f1e6-1f1fc.png differ diff --git a/site/static/emojis/1f1e6-1f1fd.png b/site/static/emojis/1f1e6-1f1fd.png new file mode 100644 index 0000000000000..a5444fc65eb6a Binary files /dev/null and b/site/static/emojis/1f1e6-1f1fd.png differ diff --git a/site/static/emojis/1f1e6-1f1ff.png b/site/static/emojis/1f1e6-1f1ff.png new file mode 100644 index 0000000000000..4f0c1c86789dd Binary files /dev/null and b/site/static/emojis/1f1e6-1f1ff.png differ diff --git a/site/static/emojis/1f1e6.png b/site/static/emojis/1f1e6.png new file mode 100644 index 0000000000000..a030394274da6 Binary files /dev/null and b/site/static/emojis/1f1e6.png differ diff --git a/site/static/emojis/1f1e7-1f1e6.png b/site/static/emojis/1f1e7-1f1e6.png new file mode 100644 index 0000000000000..3ffe114d94804 Binary files /dev/null and b/site/static/emojis/1f1e7-1f1e6.png differ diff --git a/site/static/emojis/1f1e7-1f1e7.png b/site/static/emojis/1f1e7-1f1e7.png new file mode 100644 index 0000000000000..e6fb3edddbc84 Binary files /dev/null and b/site/static/emojis/1f1e7-1f1e7.png differ diff --git a/site/static/emojis/1f1e7-1f1e9.png b/site/static/emojis/1f1e7-1f1e9.png new file mode 100644 index 0000000000000..c1c933e0920d9 Binary files /dev/null and b/site/static/emojis/1f1e7-1f1e9.png differ diff --git a/site/static/emojis/1f1e7-1f1ea.png b/site/static/emojis/1f1e7-1f1ea.png new file mode 100644 index 0000000000000..93eaaff6925f0 Binary files /dev/null and b/site/static/emojis/1f1e7-1f1ea.png differ diff --git a/site/static/emojis/1f1e7-1f1eb.png b/site/static/emojis/1f1e7-1f1eb.png new file mode 100644 index 0000000000000..29064ff3762ef Binary files /dev/null and b/site/static/emojis/1f1e7-1f1eb.png differ diff --git a/site/static/emojis/1f1e7-1f1ec.png b/site/static/emojis/1f1e7-1f1ec.png new file mode 100644 index 0000000000000..0519f963c5584 Binary files /dev/null and b/site/static/emojis/1f1e7-1f1ec.png differ diff --git a/site/static/emojis/1f1e7-1f1ed.png b/site/static/emojis/1f1e7-1f1ed.png new file mode 100644 index 0000000000000..28c3ec6f69308 Binary files /dev/null and b/site/static/emojis/1f1e7-1f1ed.png differ diff --git a/site/static/emojis/1f1e7-1f1ee.png b/site/static/emojis/1f1e7-1f1ee.png new file mode 100644 index 0000000000000..7133116525ca7 Binary files /dev/null and b/site/static/emojis/1f1e7-1f1ee.png differ diff --git a/site/static/emojis/1f1e7-1f1ef.png b/site/static/emojis/1f1e7-1f1ef.png new file mode 100644 index 0000000000000..3ac1d995d17ac Binary files /dev/null and b/site/static/emojis/1f1e7-1f1ef.png differ diff --git a/site/static/emojis/1f1e7-1f1f1.png b/site/static/emojis/1f1e7-1f1f1.png new file mode 100644 index 0000000000000..aa9bb0689f016 Binary files /dev/null and b/site/static/emojis/1f1e7-1f1f1.png differ diff --git a/site/static/emojis/1f1e7-1f1f2.png b/site/static/emojis/1f1e7-1f1f2.png new file mode 100644 index 0000000000000..13531297f2ee8 Binary files /dev/null and b/site/static/emojis/1f1e7-1f1f2.png differ diff --git a/site/static/emojis/1f1e7-1f1f3.png b/site/static/emojis/1f1e7-1f1f3.png new file mode 100644 index 0000000000000..f8612210646d7 Binary files /dev/null and b/site/static/emojis/1f1e7-1f1f3.png differ diff --git a/site/static/emojis/1f1e7-1f1f4.png b/site/static/emojis/1f1e7-1f1f4.png new file mode 100644 index 0000000000000..21c555bdd6645 Binary files /dev/null and b/site/static/emojis/1f1e7-1f1f4.png differ diff --git a/site/static/emojis/1f1e7-1f1f6.png b/site/static/emojis/1f1e7-1f1f6.png new file mode 100644 index 0000000000000..be922b0c123bd Binary files /dev/null and b/site/static/emojis/1f1e7-1f1f6.png differ diff --git a/site/static/emojis/1f1e7-1f1f7.png b/site/static/emojis/1f1e7-1f1f7.png new file mode 100644 index 0000000000000..642f3a520d289 Binary files /dev/null and b/site/static/emojis/1f1e7-1f1f7.png differ diff --git a/site/static/emojis/1f1e7-1f1f8.png b/site/static/emojis/1f1e7-1f1f8.png new file mode 100644 index 0000000000000..f959101b26d33 Binary files /dev/null and b/site/static/emojis/1f1e7-1f1f8.png differ diff --git a/site/static/emojis/1f1e7-1f1f9.png b/site/static/emojis/1f1e7-1f1f9.png new file mode 100644 index 0000000000000..ee668fb7daa7e Binary files /dev/null and b/site/static/emojis/1f1e7-1f1f9.png differ diff --git a/site/static/emojis/1f1e7-1f1fb.png b/site/static/emojis/1f1e7-1f1fb.png new file mode 100644 index 0000000000000..d3a19fdf81afa Binary files /dev/null and b/site/static/emojis/1f1e7-1f1fb.png differ diff --git a/site/static/emojis/1f1e7-1f1fc.png b/site/static/emojis/1f1e7-1f1fc.png new file mode 100644 index 0000000000000..4aeeb130f259c Binary files /dev/null and b/site/static/emojis/1f1e7-1f1fc.png differ diff --git a/site/static/emojis/1f1e7-1f1fe.png b/site/static/emojis/1f1e7-1f1fe.png new file mode 100644 index 0000000000000..fc2051bf7ece9 Binary files /dev/null and b/site/static/emojis/1f1e7-1f1fe.png differ diff --git a/site/static/emojis/1f1e7-1f1ff.png b/site/static/emojis/1f1e7-1f1ff.png new file mode 100644 index 0000000000000..0c23f8075a838 Binary files /dev/null and b/site/static/emojis/1f1e7-1f1ff.png differ diff --git a/site/static/emojis/1f1e7.png b/site/static/emojis/1f1e7.png new file mode 100644 index 0000000000000..2322e67044f53 Binary files /dev/null and b/site/static/emojis/1f1e7.png differ diff --git a/site/static/emojis/1f1e8-1f1e6.png b/site/static/emojis/1f1e8-1f1e6.png new file mode 100644 index 0000000000000..fe777da3f59a0 Binary files /dev/null and b/site/static/emojis/1f1e8-1f1e6.png differ diff --git a/site/static/emojis/1f1e8-1f1e8.png b/site/static/emojis/1f1e8-1f1e8.png new file mode 100644 index 0000000000000..f232d7157854b Binary files /dev/null and b/site/static/emojis/1f1e8-1f1e8.png differ diff --git a/site/static/emojis/1f1e8-1f1e9.png b/site/static/emojis/1f1e8-1f1e9.png new file mode 100644 index 0000000000000..f0855b273882a Binary files /dev/null and b/site/static/emojis/1f1e8-1f1e9.png differ diff --git a/site/static/emojis/1f1e8-1f1eb.png b/site/static/emojis/1f1e8-1f1eb.png new file mode 100644 index 0000000000000..18a6891661d84 Binary files /dev/null and b/site/static/emojis/1f1e8-1f1eb.png differ diff --git a/site/static/emojis/1f1e8-1f1ec.png b/site/static/emojis/1f1e8-1f1ec.png new file mode 100644 index 0000000000000..113face1559c7 Binary files /dev/null and b/site/static/emojis/1f1e8-1f1ec.png differ diff --git a/site/static/emojis/1f1e8-1f1ed.png b/site/static/emojis/1f1e8-1f1ed.png new file mode 100644 index 0000000000000..bc50b99e54d05 Binary files /dev/null and b/site/static/emojis/1f1e8-1f1ed.png differ diff --git a/site/static/emojis/1f1e8-1f1ee.png b/site/static/emojis/1f1e8-1f1ee.png new file mode 100644 index 0000000000000..e19e84b00d126 Binary files /dev/null and b/site/static/emojis/1f1e8-1f1ee.png differ diff --git a/site/static/emojis/1f1e8-1f1f0.png b/site/static/emojis/1f1e8-1f1f0.png new file mode 100644 index 0000000000000..e5ca391482d35 Binary files /dev/null and b/site/static/emojis/1f1e8-1f1f0.png differ diff --git a/site/static/emojis/1f1e8-1f1f1.png b/site/static/emojis/1f1e8-1f1f1.png new file mode 100644 index 0000000000000..d4d91d0655819 Binary files /dev/null and b/site/static/emojis/1f1e8-1f1f1.png differ diff --git a/site/static/emojis/1f1e8-1f1f2.png b/site/static/emojis/1f1e8-1f1f2.png new file mode 100644 index 0000000000000..457a061631ea2 Binary files /dev/null and b/site/static/emojis/1f1e8-1f1f2.png differ diff --git a/site/static/emojis/1f1e8-1f1f3.png b/site/static/emojis/1f1e8-1f1f3.png new file mode 100644 index 0000000000000..dcc0fb1aea5a0 Binary files /dev/null and b/site/static/emojis/1f1e8-1f1f3.png differ diff --git a/site/static/emojis/1f1e8-1f1f4.png b/site/static/emojis/1f1e8-1f1f4.png new file mode 100644 index 0000000000000..0d2cf35564409 Binary files /dev/null and b/site/static/emojis/1f1e8-1f1f4.png differ diff --git a/site/static/emojis/1f1e8-1f1f5.png b/site/static/emojis/1f1e8-1f1f5.png new file mode 100644 index 0000000000000..662adc7b32505 Binary files /dev/null and b/site/static/emojis/1f1e8-1f1f5.png differ diff --git a/site/static/emojis/1f1e8-1f1f7.png b/site/static/emojis/1f1e8-1f1f7.png new file mode 100644 index 0000000000000..69b41acd29f9c Binary files /dev/null and b/site/static/emojis/1f1e8-1f1f7.png differ diff --git a/site/static/emojis/1f1e8-1f1fa.png b/site/static/emojis/1f1e8-1f1fa.png new file mode 100644 index 0000000000000..00e3299d6d191 Binary files /dev/null and b/site/static/emojis/1f1e8-1f1fa.png differ diff --git a/site/static/emojis/1f1e8-1f1fb.png b/site/static/emojis/1f1e8-1f1fb.png new file mode 100644 index 0000000000000..88ac363003b0f Binary files /dev/null and b/site/static/emojis/1f1e8-1f1fb.png differ diff --git a/site/static/emojis/1f1e8-1f1fc.png b/site/static/emojis/1f1e8-1f1fc.png new file mode 100644 index 0000000000000..83a5a7d22646b Binary files /dev/null and b/site/static/emojis/1f1e8-1f1fc.png differ diff --git a/site/static/emojis/1f1e8-1f1fd.png b/site/static/emojis/1f1e8-1f1fd.png new file mode 100644 index 0000000000000..b6f3608554877 Binary files /dev/null and b/site/static/emojis/1f1e8-1f1fd.png differ diff --git a/site/static/emojis/1f1e8-1f1fe.png b/site/static/emojis/1f1e8-1f1fe.png new file mode 100644 index 0000000000000..5c333b07810f4 Binary files /dev/null and b/site/static/emojis/1f1e8-1f1fe.png differ diff --git a/site/static/emojis/1f1e8-1f1ff.png b/site/static/emojis/1f1e8-1f1ff.png new file mode 100644 index 0000000000000..ecad9fdbb5588 Binary files /dev/null and b/site/static/emojis/1f1e8-1f1ff.png differ diff --git a/site/static/emojis/1f1e8.png b/site/static/emojis/1f1e8.png new file mode 100644 index 0000000000000..1683e3206ee54 Binary files /dev/null and b/site/static/emojis/1f1e8.png differ diff --git a/site/static/emojis/1f1e9-1f1ea.png b/site/static/emojis/1f1e9-1f1ea.png new file mode 100644 index 0000000000000..2933ab89e324d Binary files /dev/null and b/site/static/emojis/1f1e9-1f1ea.png differ diff --git a/site/static/emojis/1f1e9-1f1ec.png b/site/static/emojis/1f1e9-1f1ec.png new file mode 100644 index 0000000000000..aee82bade8b7e Binary files /dev/null and b/site/static/emojis/1f1e9-1f1ec.png differ diff --git a/site/static/emojis/1f1e9-1f1ef.png b/site/static/emojis/1f1e9-1f1ef.png new file mode 100644 index 0000000000000..24602c11d19ca Binary files /dev/null and b/site/static/emojis/1f1e9-1f1ef.png differ diff --git a/site/static/emojis/1f1e9-1f1f0.png b/site/static/emojis/1f1e9-1f1f0.png new file mode 100644 index 0000000000000..095ff86cae709 Binary files /dev/null and b/site/static/emojis/1f1e9-1f1f0.png differ diff --git a/site/static/emojis/1f1e9-1f1f2.png b/site/static/emojis/1f1e9-1f1f2.png new file mode 100644 index 0000000000000..05f78c96474e5 Binary files /dev/null and b/site/static/emojis/1f1e9-1f1f2.png differ diff --git a/site/static/emojis/1f1e9-1f1f4.png b/site/static/emojis/1f1e9-1f1f4.png new file mode 100644 index 0000000000000..4cb2f4ad23177 Binary files /dev/null and b/site/static/emojis/1f1e9-1f1f4.png differ diff --git a/site/static/emojis/1f1e9-1f1ff.png b/site/static/emojis/1f1e9-1f1ff.png new file mode 100644 index 0000000000000..8bdb882bd9601 Binary files /dev/null and b/site/static/emojis/1f1e9-1f1ff.png differ diff --git a/site/static/emojis/1f1e9.png b/site/static/emojis/1f1e9.png new file mode 100644 index 0000000000000..641d1641eeb8b Binary files /dev/null and b/site/static/emojis/1f1e9.png differ diff --git a/site/static/emojis/1f1ea-1f1e6.png b/site/static/emojis/1f1ea-1f1e6.png new file mode 100644 index 0000000000000..fddf21a1a31de Binary files /dev/null and b/site/static/emojis/1f1ea-1f1e6.png differ diff --git a/site/static/emojis/1f1ea-1f1e8.png b/site/static/emojis/1f1ea-1f1e8.png new file mode 100644 index 0000000000000..05b0a2ace0135 Binary files /dev/null and b/site/static/emojis/1f1ea-1f1e8.png differ diff --git a/site/static/emojis/1f1ea-1f1ea.png b/site/static/emojis/1f1ea-1f1ea.png new file mode 100644 index 0000000000000..94d8d464431d4 Binary files /dev/null and b/site/static/emojis/1f1ea-1f1ea.png differ diff --git a/site/static/emojis/1f1ea-1f1ec.png b/site/static/emojis/1f1ea-1f1ec.png new file mode 100644 index 0000000000000..29dfd5bad8ba8 Binary files /dev/null and b/site/static/emojis/1f1ea-1f1ec.png differ diff --git a/site/static/emojis/1f1ea-1f1ed.png b/site/static/emojis/1f1ea-1f1ed.png new file mode 100644 index 0000000000000..29d07917d0dfb Binary files /dev/null and b/site/static/emojis/1f1ea-1f1ed.png differ diff --git a/site/static/emojis/1f1ea-1f1f7.png b/site/static/emojis/1f1ea-1f1f7.png new file mode 100644 index 0000000000000..fd25d0e349174 Binary files /dev/null and b/site/static/emojis/1f1ea-1f1f7.png differ diff --git a/site/static/emojis/1f1ea-1f1f8.png b/site/static/emojis/1f1ea-1f1f8.png new file mode 100644 index 0000000000000..5c449da194a22 Binary files /dev/null and b/site/static/emojis/1f1ea-1f1f8.png differ diff --git a/site/static/emojis/1f1ea-1f1f9.png b/site/static/emojis/1f1ea-1f1f9.png new file mode 100644 index 0000000000000..4f4e7fc249f74 Binary files /dev/null and b/site/static/emojis/1f1ea-1f1f9.png differ diff --git a/site/static/emojis/1f1ea-1f1fa.png b/site/static/emojis/1f1ea-1f1fa.png new file mode 100644 index 0000000000000..4f0b5d7f4f9a5 Binary files /dev/null and b/site/static/emojis/1f1ea-1f1fa.png differ diff --git a/site/static/emojis/1f1ea.png b/site/static/emojis/1f1ea.png new file mode 100644 index 0000000000000..cb6286fcc49d2 Binary files /dev/null and b/site/static/emojis/1f1ea.png differ diff --git a/site/static/emojis/1f1eb-1f1ee.png b/site/static/emojis/1f1eb-1f1ee.png new file mode 100644 index 0000000000000..34096f2ca1547 Binary files /dev/null and b/site/static/emojis/1f1eb-1f1ee.png differ diff --git a/site/static/emojis/1f1eb-1f1ef.png b/site/static/emojis/1f1eb-1f1ef.png new file mode 100644 index 0000000000000..3f4c0e0624434 Binary files /dev/null and b/site/static/emojis/1f1eb-1f1ef.png differ diff --git a/site/static/emojis/1f1eb-1f1f0.png b/site/static/emojis/1f1eb-1f1f0.png new file mode 100644 index 0000000000000..5b2ecff4e4e25 Binary files /dev/null and b/site/static/emojis/1f1eb-1f1f0.png differ diff --git a/site/static/emojis/1f1eb-1f1f2.png b/site/static/emojis/1f1eb-1f1f2.png new file mode 100644 index 0000000000000..0fc25e88f95ed Binary files /dev/null and b/site/static/emojis/1f1eb-1f1f2.png differ diff --git a/site/static/emojis/1f1eb-1f1f4.png b/site/static/emojis/1f1eb-1f1f4.png new file mode 100644 index 0000000000000..7f8e443512c75 Binary files /dev/null and b/site/static/emojis/1f1eb-1f1f4.png differ diff --git a/site/static/emojis/1f1eb-1f1f7.png b/site/static/emojis/1f1eb-1f1f7.png new file mode 100644 index 0000000000000..662adc7b32505 Binary files /dev/null and b/site/static/emojis/1f1eb-1f1f7.png differ diff --git a/site/static/emojis/1f1eb.png b/site/static/emojis/1f1eb.png new file mode 100644 index 0000000000000..6d033081a5e34 Binary files /dev/null and b/site/static/emojis/1f1eb.png differ diff --git a/site/static/emojis/1f1ec-1f1e6.png b/site/static/emojis/1f1ec-1f1e6.png new file mode 100644 index 0000000000000..6f73a3793b117 Binary files /dev/null and b/site/static/emojis/1f1ec-1f1e6.png differ diff --git a/site/static/emojis/1f1ec-1f1e7.png b/site/static/emojis/1f1ec-1f1e7.png new file mode 100644 index 0000000000000..af56765726593 Binary files /dev/null and b/site/static/emojis/1f1ec-1f1e7.png differ diff --git a/site/static/emojis/1f1ec-1f1e9.png b/site/static/emojis/1f1ec-1f1e9.png new file mode 100644 index 0000000000000..66f160e0e7880 Binary files /dev/null and b/site/static/emojis/1f1ec-1f1e9.png differ diff --git a/site/static/emojis/1f1ec-1f1ea.png b/site/static/emojis/1f1ec-1f1ea.png new file mode 100644 index 0000000000000..31af12832bada Binary files /dev/null and b/site/static/emojis/1f1ec-1f1ea.png differ diff --git a/site/static/emojis/1f1ec-1f1eb.png b/site/static/emojis/1f1ec-1f1eb.png new file mode 100644 index 0000000000000..99ff31b2f403d Binary files /dev/null and b/site/static/emojis/1f1ec-1f1eb.png differ diff --git a/site/static/emojis/1f1ec-1f1ec.png b/site/static/emojis/1f1ec-1f1ec.png new file mode 100644 index 0000000000000..72ac329c844be Binary files /dev/null and b/site/static/emojis/1f1ec-1f1ec.png differ diff --git a/site/static/emojis/1f1ec-1f1ed.png b/site/static/emojis/1f1ec-1f1ed.png new file mode 100644 index 0000000000000..2b19dbdad46f9 Binary files /dev/null and b/site/static/emojis/1f1ec-1f1ed.png differ diff --git a/site/static/emojis/1f1ec-1f1ee.png b/site/static/emojis/1f1ec-1f1ee.png new file mode 100644 index 0000000000000..26d4ef755e97f Binary files /dev/null and b/site/static/emojis/1f1ec-1f1ee.png differ diff --git a/site/static/emojis/1f1ec-1f1f1.png b/site/static/emojis/1f1ec-1f1f1.png new file mode 100644 index 0000000000000..5df66b33ec981 Binary files /dev/null and b/site/static/emojis/1f1ec-1f1f1.png differ diff --git a/site/static/emojis/1f1ec-1f1f2.png b/site/static/emojis/1f1ec-1f1f2.png new file mode 100644 index 0000000000000..4d1a3b4c12e27 Binary files /dev/null and b/site/static/emojis/1f1ec-1f1f2.png differ diff --git a/site/static/emojis/1f1ec-1f1f3.png b/site/static/emojis/1f1ec-1f1f3.png new file mode 100644 index 0000000000000..813c3caa1f086 Binary files /dev/null and b/site/static/emojis/1f1ec-1f1f3.png differ diff --git a/site/static/emojis/1f1ec-1f1f5.png b/site/static/emojis/1f1ec-1f1f5.png new file mode 100644 index 0000000000000..97a3dd9be7295 Binary files /dev/null and b/site/static/emojis/1f1ec-1f1f5.png differ diff --git a/site/static/emojis/1f1ec-1f1f6.png b/site/static/emojis/1f1ec-1f1f6.png new file mode 100644 index 0000000000000..02b7aec5fd4cc Binary files /dev/null and b/site/static/emojis/1f1ec-1f1f6.png differ diff --git a/site/static/emojis/1f1ec-1f1f7.png b/site/static/emojis/1f1ec-1f1f7.png new file mode 100644 index 0000000000000..0478442a41a84 Binary files /dev/null and b/site/static/emojis/1f1ec-1f1f7.png differ diff --git a/site/static/emojis/1f1ec-1f1f8.png b/site/static/emojis/1f1ec-1f1f8.png new file mode 100644 index 0000000000000..da4bbff9c6803 Binary files /dev/null and b/site/static/emojis/1f1ec-1f1f8.png differ diff --git a/site/static/emojis/1f1ec-1f1f9.png b/site/static/emojis/1f1ec-1f1f9.png new file mode 100644 index 0000000000000..23cec33928b02 Binary files /dev/null and b/site/static/emojis/1f1ec-1f1f9.png differ diff --git a/site/static/emojis/1f1ec-1f1fa.png b/site/static/emojis/1f1ec-1f1fa.png new file mode 100644 index 0000000000000..75c0945cfe157 Binary files /dev/null and b/site/static/emojis/1f1ec-1f1fa.png differ diff --git a/site/static/emojis/1f1ec-1f1fc.png b/site/static/emojis/1f1ec-1f1fc.png new file mode 100644 index 0000000000000..cf8c9416c1c53 Binary files /dev/null and b/site/static/emojis/1f1ec-1f1fc.png differ diff --git a/site/static/emojis/1f1ec-1f1fe.png b/site/static/emojis/1f1ec-1f1fe.png new file mode 100644 index 0000000000000..2e102fdc8e318 Binary files /dev/null and b/site/static/emojis/1f1ec-1f1fe.png differ diff --git a/site/static/emojis/1f1ec.png b/site/static/emojis/1f1ec.png new file mode 100644 index 0000000000000..f9f35b9928f1c Binary files /dev/null and b/site/static/emojis/1f1ec.png differ diff --git a/site/static/emojis/1f1ed-1f1f0.png b/site/static/emojis/1f1ed-1f1f0.png new file mode 100644 index 0000000000000..412b6841f8ff5 Binary files /dev/null and b/site/static/emojis/1f1ed-1f1f0.png differ diff --git a/site/static/emojis/1f1ed-1f1f2.png b/site/static/emojis/1f1ed-1f1f2.png new file mode 100644 index 0000000000000..9972434a17385 Binary files /dev/null and b/site/static/emojis/1f1ed-1f1f2.png differ diff --git a/site/static/emojis/1f1ed-1f1f3.png b/site/static/emojis/1f1ed-1f1f3.png new file mode 100644 index 0000000000000..e1617778cb572 Binary files /dev/null and b/site/static/emojis/1f1ed-1f1f3.png differ diff --git a/site/static/emojis/1f1ed-1f1f7.png b/site/static/emojis/1f1ed-1f1f7.png new file mode 100644 index 0000000000000..2dafc9a0925fd Binary files /dev/null and b/site/static/emojis/1f1ed-1f1f7.png differ diff --git a/site/static/emojis/1f1ed-1f1f9.png b/site/static/emojis/1f1ed-1f1f9.png new file mode 100644 index 0000000000000..afbf0287b65d2 Binary files /dev/null and b/site/static/emojis/1f1ed-1f1f9.png differ diff --git a/site/static/emojis/1f1ed-1f1fa.png b/site/static/emojis/1f1ed-1f1fa.png new file mode 100644 index 0000000000000..b2f43f77d885f Binary files /dev/null and b/site/static/emojis/1f1ed-1f1fa.png differ diff --git a/site/static/emojis/1f1ed.png b/site/static/emojis/1f1ed.png new file mode 100644 index 0000000000000..519a4136d38eb Binary files /dev/null and b/site/static/emojis/1f1ed.png differ diff --git a/site/static/emojis/1f1ee-1f1e8.png b/site/static/emojis/1f1ee-1f1e8.png new file mode 100644 index 0000000000000..44cb511f1b129 Binary files /dev/null and b/site/static/emojis/1f1ee-1f1e8.png differ diff --git a/site/static/emojis/1f1ee-1f1e9.png b/site/static/emojis/1f1ee-1f1e9.png new file mode 100644 index 0000000000000..4e8df6473797f Binary files /dev/null and b/site/static/emojis/1f1ee-1f1e9.png differ diff --git a/site/static/emojis/1f1ee-1f1ea.png b/site/static/emojis/1f1ee-1f1ea.png new file mode 100644 index 0000000000000..bbbeada96f24f Binary files /dev/null and b/site/static/emojis/1f1ee-1f1ea.png differ diff --git a/site/static/emojis/1f1ee-1f1f1.png b/site/static/emojis/1f1ee-1f1f1.png new file mode 100644 index 0000000000000..6c390c3fe6fed Binary files /dev/null and b/site/static/emojis/1f1ee-1f1f1.png differ diff --git a/site/static/emojis/1f1ee-1f1f2.png b/site/static/emojis/1f1ee-1f1f2.png new file mode 100644 index 0000000000000..99304fca91cce Binary files /dev/null and b/site/static/emojis/1f1ee-1f1f2.png differ diff --git a/site/static/emojis/1f1ee-1f1f3.png b/site/static/emojis/1f1ee-1f1f3.png new file mode 100644 index 0000000000000..22d2bdfdeda06 Binary files /dev/null and b/site/static/emojis/1f1ee-1f1f3.png differ diff --git a/site/static/emojis/1f1ee-1f1f4.png b/site/static/emojis/1f1ee-1f1f4.png new file mode 100644 index 0000000000000..7ef54ae2ad3c5 Binary files /dev/null and b/site/static/emojis/1f1ee-1f1f4.png differ diff --git a/site/static/emojis/1f1ee-1f1f6.png b/site/static/emojis/1f1ee-1f1f6.png new file mode 100644 index 0000000000000..81de697331eaf Binary files /dev/null and b/site/static/emojis/1f1ee-1f1f6.png differ diff --git a/site/static/emojis/1f1ee-1f1f7.png b/site/static/emojis/1f1ee-1f1f7.png new file mode 100644 index 0000000000000..5147905ec90b5 Binary files /dev/null and b/site/static/emojis/1f1ee-1f1f7.png differ diff --git a/site/static/emojis/1f1ee-1f1f8.png b/site/static/emojis/1f1ee-1f1f8.png new file mode 100644 index 0000000000000..349e9efab5046 Binary files /dev/null and b/site/static/emojis/1f1ee-1f1f8.png differ diff --git a/site/static/emojis/1f1ee-1f1f9.png b/site/static/emojis/1f1ee-1f1f9.png new file mode 100644 index 0000000000000..2cd1da785e92b Binary files /dev/null and b/site/static/emojis/1f1ee-1f1f9.png differ diff --git a/site/static/emojis/1f1ee.png b/site/static/emojis/1f1ee.png new file mode 100644 index 0000000000000..4a50ebe907ee6 Binary files /dev/null and b/site/static/emojis/1f1ee.png differ diff --git a/site/static/emojis/1f1ef-1f1ea.png b/site/static/emojis/1f1ef-1f1ea.png new file mode 100644 index 0000000000000..bc974c12725bc Binary files /dev/null and b/site/static/emojis/1f1ef-1f1ea.png differ diff --git a/site/static/emojis/1f1ef-1f1f2.png b/site/static/emojis/1f1ef-1f1f2.png new file mode 100644 index 0000000000000..2a48a73a5e043 Binary files /dev/null and b/site/static/emojis/1f1ef-1f1f2.png differ diff --git a/site/static/emojis/1f1ef-1f1f4.png b/site/static/emojis/1f1ef-1f1f4.png new file mode 100644 index 0000000000000..5161701b249ac Binary files /dev/null and b/site/static/emojis/1f1ef-1f1f4.png differ diff --git a/site/static/emojis/1f1ef-1f1f5.png b/site/static/emojis/1f1ef-1f1f5.png new file mode 100644 index 0000000000000..dd515aa06347c Binary files /dev/null and b/site/static/emojis/1f1ef-1f1f5.png differ diff --git a/site/static/emojis/1f1ef.png b/site/static/emojis/1f1ef.png new file mode 100644 index 0000000000000..f52052fadb9ec Binary files /dev/null and b/site/static/emojis/1f1ef.png differ diff --git a/site/static/emojis/1f1f0-1f1ea.png b/site/static/emojis/1f1f0-1f1ea.png new file mode 100644 index 0000000000000..468ab957ac2c5 Binary files /dev/null and b/site/static/emojis/1f1f0-1f1ea.png differ diff --git a/site/static/emojis/1f1f0-1f1ec.png b/site/static/emojis/1f1f0-1f1ec.png new file mode 100644 index 0000000000000..58f07a7ba6a5e Binary files /dev/null and b/site/static/emojis/1f1f0-1f1ec.png differ diff --git a/site/static/emojis/1f1f0-1f1ed.png b/site/static/emojis/1f1f0-1f1ed.png new file mode 100644 index 0000000000000..cf9c1a6649533 Binary files /dev/null and b/site/static/emojis/1f1f0-1f1ed.png differ diff --git a/site/static/emojis/1f1f0-1f1ee.png b/site/static/emojis/1f1f0-1f1ee.png new file mode 100644 index 0000000000000..ee10d01349a58 Binary files /dev/null and b/site/static/emojis/1f1f0-1f1ee.png differ diff --git a/site/static/emojis/1f1f0-1f1f2.png b/site/static/emojis/1f1f0-1f1f2.png new file mode 100644 index 0000000000000..1035f149a64ed Binary files /dev/null and b/site/static/emojis/1f1f0-1f1f2.png differ diff --git a/site/static/emojis/1f1f0-1f1f3.png b/site/static/emojis/1f1f0-1f1f3.png new file mode 100644 index 0000000000000..e021417b87fe3 Binary files /dev/null and b/site/static/emojis/1f1f0-1f1f3.png differ diff --git a/site/static/emojis/1f1f0-1f1f5.png b/site/static/emojis/1f1f0-1f1f5.png new file mode 100644 index 0000000000000..7e05f75fc60b4 Binary files /dev/null and b/site/static/emojis/1f1f0-1f1f5.png differ diff --git a/site/static/emojis/1f1f0-1f1f7.png b/site/static/emojis/1f1f0-1f1f7.png new file mode 100644 index 0000000000000..8ff7ccd3ffc07 Binary files /dev/null and b/site/static/emojis/1f1f0-1f1f7.png differ diff --git a/site/static/emojis/1f1f0-1f1fc.png b/site/static/emojis/1f1f0-1f1fc.png new file mode 100644 index 0000000000000..76f53c2f7fcae Binary files /dev/null and b/site/static/emojis/1f1f0-1f1fc.png differ diff --git a/site/static/emojis/1f1f0-1f1fe.png b/site/static/emojis/1f1f0-1f1fe.png new file mode 100644 index 0000000000000..158d5899b0c25 Binary files /dev/null and b/site/static/emojis/1f1f0-1f1fe.png differ diff --git a/site/static/emojis/1f1f0-1f1ff.png b/site/static/emojis/1f1f0-1f1ff.png new file mode 100644 index 0000000000000..d7e3401deff25 Binary files /dev/null and b/site/static/emojis/1f1f0-1f1ff.png differ diff --git a/site/static/emojis/1f1f0.png b/site/static/emojis/1f1f0.png new file mode 100644 index 0000000000000..00a31cbaeda4d Binary files /dev/null and b/site/static/emojis/1f1f0.png differ diff --git a/site/static/emojis/1f1f1-1f1e6.png b/site/static/emojis/1f1f1-1f1e6.png new file mode 100644 index 0000000000000..44f5e8da70f37 Binary files /dev/null and b/site/static/emojis/1f1f1-1f1e6.png differ diff --git a/site/static/emojis/1f1f1-1f1e7.png b/site/static/emojis/1f1f1-1f1e7.png new file mode 100644 index 0000000000000..f506228dd623b Binary files /dev/null and b/site/static/emojis/1f1f1-1f1e7.png differ diff --git a/site/static/emojis/1f1f1-1f1e8.png b/site/static/emojis/1f1f1-1f1e8.png new file mode 100644 index 0000000000000..1b7e53a8594e3 Binary files /dev/null and b/site/static/emojis/1f1f1-1f1e8.png differ diff --git a/site/static/emojis/1f1f1-1f1ee.png b/site/static/emojis/1f1f1-1f1ee.png new file mode 100644 index 0000000000000..9a69e9a0481ad Binary files /dev/null and b/site/static/emojis/1f1f1-1f1ee.png differ diff --git a/site/static/emojis/1f1f1-1f1f0.png b/site/static/emojis/1f1f1-1f1f0.png new file mode 100644 index 0000000000000..8f8d0b3aea806 Binary files /dev/null and b/site/static/emojis/1f1f1-1f1f0.png differ diff --git a/site/static/emojis/1f1f1-1f1f7.png b/site/static/emojis/1f1f1-1f1f7.png new file mode 100644 index 0000000000000..8ed6a5a87778e Binary files /dev/null and b/site/static/emojis/1f1f1-1f1f7.png differ diff --git a/site/static/emojis/1f1f1-1f1f8.png b/site/static/emojis/1f1f1-1f1f8.png new file mode 100644 index 0000000000000..051b53ab12ae2 Binary files /dev/null and b/site/static/emojis/1f1f1-1f1f8.png differ diff --git a/site/static/emojis/1f1f1-1f1f9.png b/site/static/emojis/1f1f1-1f1f9.png new file mode 100644 index 0000000000000..69de64e8b1d24 Binary files /dev/null and b/site/static/emojis/1f1f1-1f1f9.png differ diff --git a/site/static/emojis/1f1f1-1f1fa.png b/site/static/emojis/1f1f1-1f1fa.png new file mode 100644 index 0000000000000..d7a507d075dca Binary files /dev/null and b/site/static/emojis/1f1f1-1f1fa.png differ diff --git a/site/static/emojis/1f1f1-1f1fb.png b/site/static/emojis/1f1f1-1f1fb.png new file mode 100644 index 0000000000000..5505550928d02 Binary files /dev/null and b/site/static/emojis/1f1f1-1f1fb.png differ diff --git a/site/static/emojis/1f1f1-1f1fe.png b/site/static/emojis/1f1f1-1f1fe.png new file mode 100644 index 0000000000000..426e9319db6fa Binary files /dev/null and b/site/static/emojis/1f1f1-1f1fe.png differ diff --git a/site/static/emojis/1f1f1.png b/site/static/emojis/1f1f1.png new file mode 100644 index 0000000000000..50ba60466f73b Binary files /dev/null and b/site/static/emojis/1f1f1.png differ diff --git a/site/static/emojis/1f1f2-1f1e6.png b/site/static/emojis/1f1f2-1f1e6.png new file mode 100644 index 0000000000000..49d5f2f712618 Binary files /dev/null and b/site/static/emojis/1f1f2-1f1e6.png differ diff --git a/site/static/emojis/1f1f2-1f1e8.png b/site/static/emojis/1f1f2-1f1e8.png new file mode 100644 index 0000000000000..cc71565d444ea Binary files /dev/null and b/site/static/emojis/1f1f2-1f1e8.png differ diff --git a/site/static/emojis/1f1f2-1f1e9.png b/site/static/emojis/1f1f2-1f1e9.png new file mode 100644 index 0000000000000..72ab452b4cd68 Binary files /dev/null and b/site/static/emojis/1f1f2-1f1e9.png differ diff --git a/site/static/emojis/1f1f2-1f1ea.png b/site/static/emojis/1f1f2-1f1ea.png new file mode 100644 index 0000000000000..ed5d0c4198232 Binary files /dev/null and b/site/static/emojis/1f1f2-1f1ea.png differ diff --git a/site/static/emojis/1f1f2-1f1eb.png b/site/static/emojis/1f1f2-1f1eb.png new file mode 100644 index 0000000000000..662adc7b32505 Binary files /dev/null and b/site/static/emojis/1f1f2-1f1eb.png differ diff --git a/site/static/emojis/1f1f2-1f1ec.png b/site/static/emojis/1f1f2-1f1ec.png new file mode 100644 index 0000000000000..460babaa5d178 Binary files /dev/null and b/site/static/emojis/1f1f2-1f1ec.png differ diff --git a/site/static/emojis/1f1f2-1f1ed.png b/site/static/emojis/1f1f2-1f1ed.png new file mode 100644 index 0000000000000..6b69a8d551a4b Binary files /dev/null and b/site/static/emojis/1f1f2-1f1ed.png differ diff --git a/site/static/emojis/1f1f2-1f1f0.png b/site/static/emojis/1f1f2-1f1f0.png new file mode 100644 index 0000000000000..9db397c936869 Binary files /dev/null and b/site/static/emojis/1f1f2-1f1f0.png differ diff --git a/site/static/emojis/1f1f2-1f1f1.png b/site/static/emojis/1f1f2-1f1f1.png new file mode 100644 index 0000000000000..d7db7397c124d Binary files /dev/null and b/site/static/emojis/1f1f2-1f1f1.png differ diff --git a/site/static/emojis/1f1f2-1f1f2.png b/site/static/emojis/1f1f2-1f1f2.png new file mode 100644 index 0000000000000..d4b642c32775e Binary files /dev/null and b/site/static/emojis/1f1f2-1f1f2.png differ diff --git a/site/static/emojis/1f1f2-1f1f3.png b/site/static/emojis/1f1f2-1f1f3.png new file mode 100644 index 0000000000000..7f2225c80b3d1 Binary files /dev/null and b/site/static/emojis/1f1f2-1f1f3.png differ diff --git a/site/static/emojis/1f1f2-1f1f4.png b/site/static/emojis/1f1f2-1f1f4.png new file mode 100644 index 0000000000000..2fe5c8cb83979 Binary files /dev/null and b/site/static/emojis/1f1f2-1f1f4.png differ diff --git a/site/static/emojis/1f1f2-1f1f5.png b/site/static/emojis/1f1f2-1f1f5.png new file mode 100644 index 0000000000000..c9d6d57f641f5 Binary files /dev/null and b/site/static/emojis/1f1f2-1f1f5.png differ diff --git a/site/static/emojis/1f1f2-1f1f6.png b/site/static/emojis/1f1f2-1f1f6.png new file mode 100644 index 0000000000000..aa46f114c2876 Binary files /dev/null and b/site/static/emojis/1f1f2-1f1f6.png differ diff --git a/site/static/emojis/1f1f2-1f1f7.png b/site/static/emojis/1f1f2-1f1f7.png new file mode 100644 index 0000000000000..e9767976cf747 Binary files /dev/null and b/site/static/emojis/1f1f2-1f1f7.png differ diff --git a/site/static/emojis/1f1f2-1f1f8.png b/site/static/emojis/1f1f2-1f1f8.png new file mode 100644 index 0000000000000..fd6b759a34e18 Binary files /dev/null and b/site/static/emojis/1f1f2-1f1f8.png differ diff --git a/site/static/emojis/1f1f2-1f1f9.png b/site/static/emojis/1f1f2-1f1f9.png new file mode 100644 index 0000000000000..9265b06e1a9ff Binary files /dev/null and b/site/static/emojis/1f1f2-1f1f9.png differ diff --git a/site/static/emojis/1f1f2-1f1fa.png b/site/static/emojis/1f1f2-1f1fa.png new file mode 100644 index 0000000000000..b48e01b4bbe09 Binary files /dev/null and b/site/static/emojis/1f1f2-1f1fa.png differ diff --git a/site/static/emojis/1f1f2-1f1fb.png b/site/static/emojis/1f1f2-1f1fb.png new file mode 100644 index 0000000000000..c666d7ae6dbe4 Binary files /dev/null and b/site/static/emojis/1f1f2-1f1fb.png differ diff --git a/site/static/emojis/1f1f2-1f1fc.png b/site/static/emojis/1f1f2-1f1fc.png new file mode 100644 index 0000000000000..e58fe389c8d5f Binary files /dev/null and b/site/static/emojis/1f1f2-1f1fc.png differ diff --git a/site/static/emojis/1f1f2-1f1fd.png b/site/static/emojis/1f1f2-1f1fd.png new file mode 100644 index 0000000000000..61775bf729950 Binary files /dev/null and b/site/static/emojis/1f1f2-1f1fd.png differ diff --git a/site/static/emojis/1f1f2-1f1fe.png b/site/static/emojis/1f1f2-1f1fe.png new file mode 100644 index 0000000000000..108dd99dac544 Binary files /dev/null and b/site/static/emojis/1f1f2-1f1fe.png differ diff --git a/site/static/emojis/1f1f2-1f1ff.png b/site/static/emojis/1f1f2-1f1ff.png new file mode 100644 index 0000000000000..1a33e0c69efc8 Binary files /dev/null and b/site/static/emojis/1f1f2-1f1ff.png differ diff --git a/site/static/emojis/1f1f2.png b/site/static/emojis/1f1f2.png new file mode 100644 index 0000000000000..2539dab47554b Binary files /dev/null and b/site/static/emojis/1f1f2.png differ diff --git a/site/static/emojis/1f1f3-1f1e6.png b/site/static/emojis/1f1f3-1f1e6.png new file mode 100644 index 0000000000000..860139dede408 Binary files /dev/null and b/site/static/emojis/1f1f3-1f1e6.png differ diff --git a/site/static/emojis/1f1f3-1f1e8.png b/site/static/emojis/1f1f3-1f1e8.png new file mode 100644 index 0000000000000..81fa763884616 Binary files /dev/null and b/site/static/emojis/1f1f3-1f1e8.png differ diff --git a/site/static/emojis/1f1f3-1f1ea.png b/site/static/emojis/1f1f3-1f1ea.png new file mode 100644 index 0000000000000..1f1dc36221626 Binary files /dev/null and b/site/static/emojis/1f1f3-1f1ea.png differ diff --git a/site/static/emojis/1f1f3-1f1eb.png b/site/static/emojis/1f1f3-1f1eb.png new file mode 100644 index 0000000000000..599da68e6be7d Binary files /dev/null and b/site/static/emojis/1f1f3-1f1eb.png differ diff --git a/site/static/emojis/1f1f3-1f1ec.png b/site/static/emojis/1f1f3-1f1ec.png new file mode 100644 index 0000000000000..6cbb424d3d1ac Binary files /dev/null and b/site/static/emojis/1f1f3-1f1ec.png differ diff --git a/site/static/emojis/1f1f3-1f1ee.png b/site/static/emojis/1f1f3-1f1ee.png new file mode 100644 index 0000000000000..3f14038212ea4 Binary files /dev/null and b/site/static/emojis/1f1f3-1f1ee.png differ diff --git a/site/static/emojis/1f1f3-1f1f1.png b/site/static/emojis/1f1f3-1f1f1.png new file mode 100644 index 0000000000000..619bf8ce11254 Binary files /dev/null and b/site/static/emojis/1f1f3-1f1f1.png differ diff --git a/site/static/emojis/1f1f3-1f1f4.png b/site/static/emojis/1f1f3-1f1f4.png new file mode 100644 index 0000000000000..d75873518c27f Binary files /dev/null and b/site/static/emojis/1f1f3-1f1f4.png differ diff --git a/site/static/emojis/1f1f3-1f1f5.png b/site/static/emojis/1f1f3-1f1f5.png new file mode 100644 index 0000000000000..48acf5f2b79b0 Binary files /dev/null and b/site/static/emojis/1f1f3-1f1f5.png differ diff --git a/site/static/emojis/1f1f3-1f1f7.png b/site/static/emojis/1f1f3-1f1f7.png new file mode 100644 index 0000000000000..1748da9caba2f Binary files /dev/null and b/site/static/emojis/1f1f3-1f1f7.png differ diff --git a/site/static/emojis/1f1f3-1f1fa.png b/site/static/emojis/1f1f3-1f1fa.png new file mode 100644 index 0000000000000..9bd5ec1adafd9 Binary files /dev/null and b/site/static/emojis/1f1f3-1f1fa.png differ diff --git a/site/static/emojis/1f1f3-1f1ff.png b/site/static/emojis/1f1f3-1f1ff.png new file mode 100644 index 0000000000000..0d193b32693b4 Binary files /dev/null and b/site/static/emojis/1f1f3-1f1ff.png differ diff --git a/site/static/emojis/1f1f3.png b/site/static/emojis/1f1f3.png new file mode 100644 index 0000000000000..11a883c397cb1 Binary files /dev/null and b/site/static/emojis/1f1f3.png differ diff --git a/site/static/emojis/1f1f4-1f1f2.png b/site/static/emojis/1f1f4-1f1f2.png new file mode 100644 index 0000000000000..41176aa0de965 Binary files /dev/null and b/site/static/emojis/1f1f4-1f1f2.png differ diff --git a/site/static/emojis/1f1f4.png b/site/static/emojis/1f1f4.png new file mode 100644 index 0000000000000..71ff5a54b282b Binary files /dev/null and b/site/static/emojis/1f1f4.png differ diff --git a/site/static/emojis/1f1f5-1f1e6.png b/site/static/emojis/1f1f5-1f1e6.png new file mode 100644 index 0000000000000..617422984c9b5 Binary files /dev/null and b/site/static/emojis/1f1f5-1f1e6.png differ diff --git a/site/static/emojis/1f1f5-1f1ea.png b/site/static/emojis/1f1f5-1f1ea.png new file mode 100644 index 0000000000000..f7e54091a983c Binary files /dev/null and b/site/static/emojis/1f1f5-1f1ea.png differ diff --git a/site/static/emojis/1f1f5-1f1eb.png b/site/static/emojis/1f1f5-1f1eb.png new file mode 100644 index 0000000000000..f89b75574438b Binary files /dev/null and b/site/static/emojis/1f1f5-1f1eb.png differ diff --git a/site/static/emojis/1f1f5-1f1ec.png b/site/static/emojis/1f1f5-1f1ec.png new file mode 100644 index 0000000000000..d75762c30a971 Binary files /dev/null and b/site/static/emojis/1f1f5-1f1ec.png differ diff --git a/site/static/emojis/1f1f5-1f1ed.png b/site/static/emojis/1f1f5-1f1ed.png new file mode 100644 index 0000000000000..a0adbef2cffe9 Binary files /dev/null and b/site/static/emojis/1f1f5-1f1ed.png differ diff --git a/site/static/emojis/1f1f5-1f1f0.png b/site/static/emojis/1f1f5-1f1f0.png new file mode 100644 index 0000000000000..311ca9a14a7b9 Binary files /dev/null and b/site/static/emojis/1f1f5-1f1f0.png differ diff --git a/site/static/emojis/1f1f5-1f1f1.png b/site/static/emojis/1f1f5-1f1f1.png new file mode 100644 index 0000000000000..8d6921db8d190 Binary files /dev/null and b/site/static/emojis/1f1f5-1f1f1.png differ diff --git a/site/static/emojis/1f1f5-1f1f2.png b/site/static/emojis/1f1f5-1f1f2.png new file mode 100644 index 0000000000000..357a8631468cc Binary files /dev/null and b/site/static/emojis/1f1f5-1f1f2.png differ diff --git a/site/static/emojis/1f1f5-1f1f3.png b/site/static/emojis/1f1f5-1f1f3.png new file mode 100644 index 0000000000000..a7ced0f12c2c7 Binary files /dev/null and b/site/static/emojis/1f1f5-1f1f3.png differ diff --git a/site/static/emojis/1f1f5-1f1f7.png b/site/static/emojis/1f1f5-1f1f7.png new file mode 100644 index 0000000000000..867df29d2089c Binary files /dev/null and b/site/static/emojis/1f1f5-1f1f7.png differ diff --git a/site/static/emojis/1f1f5-1f1f8.png b/site/static/emojis/1f1f5-1f1f8.png new file mode 100644 index 0000000000000..9756c0427d398 Binary files /dev/null and b/site/static/emojis/1f1f5-1f1f8.png differ diff --git a/site/static/emojis/1f1f5-1f1f9.png b/site/static/emojis/1f1f5-1f1f9.png new file mode 100644 index 0000000000000..c359291bd22f8 Binary files /dev/null and b/site/static/emojis/1f1f5-1f1f9.png differ diff --git a/site/static/emojis/1f1f5-1f1fc.png b/site/static/emojis/1f1f5-1f1fc.png new file mode 100644 index 0000000000000..8a7aea6a9df2e Binary files /dev/null and b/site/static/emojis/1f1f5-1f1fc.png differ diff --git a/site/static/emojis/1f1f5-1f1fe.png b/site/static/emojis/1f1f5-1f1fe.png new file mode 100644 index 0000000000000..8bc9da32bd50c Binary files /dev/null and b/site/static/emojis/1f1f5-1f1fe.png differ diff --git a/site/static/emojis/1f1f5.png b/site/static/emojis/1f1f5.png new file mode 100644 index 0000000000000..70f7afe0a66e9 Binary files /dev/null and b/site/static/emojis/1f1f5.png differ diff --git a/site/static/emojis/1f1f6-1f1e6.png b/site/static/emojis/1f1f6-1f1e6.png new file mode 100644 index 0000000000000..363099051c317 Binary files /dev/null and b/site/static/emojis/1f1f6-1f1e6.png differ diff --git a/site/static/emojis/1f1f6.png b/site/static/emojis/1f1f6.png new file mode 100644 index 0000000000000..2628efd2255f1 Binary files /dev/null and b/site/static/emojis/1f1f6.png differ diff --git a/site/static/emojis/1f1f7-1f1ea.png b/site/static/emojis/1f1f7-1f1ea.png new file mode 100644 index 0000000000000..8010d88dd741b Binary files /dev/null and b/site/static/emojis/1f1f7-1f1ea.png differ diff --git a/site/static/emojis/1f1f7-1f1f4.png b/site/static/emojis/1f1f7-1f1f4.png new file mode 100644 index 0000000000000..ce8f8e86bc3cd Binary files /dev/null and b/site/static/emojis/1f1f7-1f1f4.png differ diff --git a/site/static/emojis/1f1f7-1f1f8.png b/site/static/emojis/1f1f7-1f1f8.png new file mode 100644 index 0000000000000..0485b8639a0e3 Binary files /dev/null and b/site/static/emojis/1f1f7-1f1f8.png differ diff --git a/site/static/emojis/1f1f7-1f1fa.png b/site/static/emojis/1f1f7-1f1fa.png new file mode 100644 index 0000000000000..9af1cb845ec3c Binary files /dev/null and b/site/static/emojis/1f1f7-1f1fa.png differ diff --git a/site/static/emojis/1f1f7-1f1fc.png b/site/static/emojis/1f1f7-1f1fc.png new file mode 100644 index 0000000000000..2802d1a2d7366 Binary files /dev/null and b/site/static/emojis/1f1f7-1f1fc.png differ diff --git a/site/static/emojis/1f1f7.png b/site/static/emojis/1f1f7.png new file mode 100644 index 0000000000000..ecb868c0a1b83 Binary files /dev/null and b/site/static/emojis/1f1f7.png differ diff --git a/site/static/emojis/1f1f8-1f1e6.png b/site/static/emojis/1f1f8-1f1e6.png new file mode 100644 index 0000000000000..5f90f43d4ba65 Binary files /dev/null and b/site/static/emojis/1f1f8-1f1e6.png differ diff --git a/site/static/emojis/1f1f8-1f1e7.png b/site/static/emojis/1f1f8-1f1e7.png new file mode 100644 index 0000000000000..385dbaae36d17 Binary files /dev/null and b/site/static/emojis/1f1f8-1f1e7.png differ diff --git a/site/static/emojis/1f1f8-1f1e8.png b/site/static/emojis/1f1f8-1f1e8.png new file mode 100644 index 0000000000000..908f6b88e62f8 Binary files /dev/null and b/site/static/emojis/1f1f8-1f1e8.png differ diff --git a/site/static/emojis/1f1f8-1f1e9.png b/site/static/emojis/1f1f8-1f1e9.png new file mode 100644 index 0000000000000..5ef2fd9a6ea04 Binary files /dev/null and b/site/static/emojis/1f1f8-1f1e9.png differ diff --git a/site/static/emojis/1f1f8-1f1ea.png b/site/static/emojis/1f1f8-1f1ea.png new file mode 100644 index 0000000000000..2cf2258713574 Binary files /dev/null and b/site/static/emojis/1f1f8-1f1ea.png differ diff --git a/site/static/emojis/1f1f8-1f1ec.png b/site/static/emojis/1f1f8-1f1ec.png new file mode 100644 index 0000000000000..454b82a0791c9 Binary files /dev/null and b/site/static/emojis/1f1f8-1f1ec.png differ diff --git a/site/static/emojis/1f1f8-1f1ed.png b/site/static/emojis/1f1f8-1f1ed.png new file mode 100644 index 0000000000000..2d0df5102e761 Binary files /dev/null and b/site/static/emojis/1f1f8-1f1ed.png differ diff --git a/site/static/emojis/1f1f8-1f1ee.png b/site/static/emojis/1f1f8-1f1ee.png new file mode 100644 index 0000000000000..86bffaf3135d3 Binary files /dev/null and b/site/static/emojis/1f1f8-1f1ee.png differ diff --git a/site/static/emojis/1f1f8-1f1ef.png b/site/static/emojis/1f1f8-1f1ef.png new file mode 100644 index 0000000000000..d75873518c27f Binary files /dev/null and b/site/static/emojis/1f1f8-1f1ef.png differ diff --git a/site/static/emojis/1f1f8-1f1f0.png b/site/static/emojis/1f1f8-1f1f0.png new file mode 100644 index 0000000000000..276c387e03fe4 Binary files /dev/null and b/site/static/emojis/1f1f8-1f1f0.png differ diff --git a/site/static/emojis/1f1f8-1f1f1.png b/site/static/emojis/1f1f8-1f1f1.png new file mode 100644 index 0000000000000..de88763d0d2a3 Binary files /dev/null and b/site/static/emojis/1f1f8-1f1f1.png differ diff --git a/site/static/emojis/1f1f8-1f1f2.png b/site/static/emojis/1f1f8-1f1f2.png new file mode 100644 index 0000000000000..ddecba8b9ee0a Binary files /dev/null and b/site/static/emojis/1f1f8-1f1f2.png differ diff --git a/site/static/emojis/1f1f8-1f1f3.png b/site/static/emojis/1f1f8-1f1f3.png new file mode 100644 index 0000000000000..843bda4187ddd Binary files /dev/null and b/site/static/emojis/1f1f8-1f1f3.png differ diff --git a/site/static/emojis/1f1f8-1f1f4.png b/site/static/emojis/1f1f8-1f1f4.png new file mode 100644 index 0000000000000..a4c573da18dde Binary files /dev/null and b/site/static/emojis/1f1f8-1f1f4.png differ diff --git a/site/static/emojis/1f1f8-1f1f7.png b/site/static/emojis/1f1f8-1f1f7.png new file mode 100644 index 0000000000000..77cd1d3bec6c7 Binary files /dev/null and b/site/static/emojis/1f1f8-1f1f7.png differ diff --git a/site/static/emojis/1f1f8-1f1f8.png b/site/static/emojis/1f1f8-1f1f8.png new file mode 100644 index 0000000000000..9cbf721edb790 Binary files /dev/null and b/site/static/emojis/1f1f8-1f1f8.png differ diff --git a/site/static/emojis/1f1f8-1f1f9.png b/site/static/emojis/1f1f8-1f1f9.png new file mode 100644 index 0000000000000..f209bcde4d5a8 Binary files /dev/null and b/site/static/emojis/1f1f8-1f1f9.png differ diff --git a/site/static/emojis/1f1f8-1f1fb.png b/site/static/emojis/1f1f8-1f1fb.png new file mode 100644 index 0000000000000..333063f39e938 Binary files /dev/null and b/site/static/emojis/1f1f8-1f1fb.png differ diff --git a/site/static/emojis/1f1f8-1f1fd.png b/site/static/emojis/1f1f8-1f1fd.png new file mode 100644 index 0000000000000..72401f5fcd821 Binary files /dev/null and b/site/static/emojis/1f1f8-1f1fd.png differ diff --git a/site/static/emojis/1f1f8-1f1fe.png b/site/static/emojis/1f1f8-1f1fe.png new file mode 100644 index 0000000000000..3dae2a2fcc464 Binary files /dev/null and b/site/static/emojis/1f1f8-1f1fe.png differ diff --git a/site/static/emojis/1f1f8-1f1ff.png b/site/static/emojis/1f1f8-1f1ff.png new file mode 100644 index 0000000000000..0cf3fb1d7379e Binary files /dev/null and b/site/static/emojis/1f1f8-1f1ff.png differ diff --git a/site/static/emojis/1f1f8.png b/site/static/emojis/1f1f8.png new file mode 100644 index 0000000000000..7a38fb9fc0b14 Binary files /dev/null and b/site/static/emojis/1f1f8.png differ diff --git a/site/static/emojis/1f1f9-1f1e6.png b/site/static/emojis/1f1f9-1f1e6.png new file mode 100644 index 0000000000000..15e4c3e159df9 Binary files /dev/null and b/site/static/emojis/1f1f9-1f1e6.png differ diff --git a/site/static/emojis/1f1f9-1f1e8.png b/site/static/emojis/1f1f9-1f1e8.png new file mode 100644 index 0000000000000..d3da08b9c7fb0 Binary files /dev/null and b/site/static/emojis/1f1f9-1f1e8.png differ diff --git a/site/static/emojis/1f1f9-1f1e9.png b/site/static/emojis/1f1f9-1f1e9.png new file mode 100644 index 0000000000000..77184f4d0600a Binary files /dev/null and b/site/static/emojis/1f1f9-1f1e9.png differ diff --git a/site/static/emojis/1f1f9-1f1eb.png b/site/static/emojis/1f1f9-1f1eb.png new file mode 100644 index 0000000000000..2c17f5e70ac71 Binary files /dev/null and b/site/static/emojis/1f1f9-1f1eb.png differ diff --git a/site/static/emojis/1f1f9-1f1ec.png b/site/static/emojis/1f1f9-1f1ec.png new file mode 100644 index 0000000000000..d9b238aa189bd Binary files /dev/null and b/site/static/emojis/1f1f9-1f1ec.png differ diff --git a/site/static/emojis/1f1f9-1f1ed.png b/site/static/emojis/1f1f9-1f1ed.png new file mode 100644 index 0000000000000..902f55cabace9 Binary files /dev/null and b/site/static/emojis/1f1f9-1f1ed.png differ diff --git a/site/static/emojis/1f1f9-1f1ef.png b/site/static/emojis/1f1f9-1f1ef.png new file mode 100644 index 0000000000000..2fc5e4e9b543c Binary files /dev/null and b/site/static/emojis/1f1f9-1f1ef.png differ diff --git a/site/static/emojis/1f1f9-1f1f0.png b/site/static/emojis/1f1f9-1f1f0.png new file mode 100644 index 0000000000000..122903dfe2717 Binary files /dev/null and b/site/static/emojis/1f1f9-1f1f0.png differ diff --git a/site/static/emojis/1f1f9-1f1f1.png b/site/static/emojis/1f1f9-1f1f1.png new file mode 100644 index 0000000000000..2f69d8d3f781b Binary files /dev/null and b/site/static/emojis/1f1f9-1f1f1.png differ diff --git a/site/static/emojis/1f1f9-1f1f2.png b/site/static/emojis/1f1f9-1f1f2.png new file mode 100644 index 0000000000000..8e6fbb11c5467 Binary files /dev/null and b/site/static/emojis/1f1f9-1f1f2.png differ diff --git a/site/static/emojis/1f1f9-1f1f3.png b/site/static/emojis/1f1f9-1f1f3.png new file mode 100644 index 0000000000000..0838b9330d6f5 Binary files /dev/null and b/site/static/emojis/1f1f9-1f1f3.png differ diff --git a/site/static/emojis/1f1f9-1f1f4.png b/site/static/emojis/1f1f9-1f1f4.png new file mode 100644 index 0000000000000..6a680b1171e72 Binary files /dev/null and b/site/static/emojis/1f1f9-1f1f4.png differ diff --git a/site/static/emojis/1f1f9-1f1f7.png b/site/static/emojis/1f1f9-1f1f7.png new file mode 100644 index 0000000000000..a80ec23d64af0 Binary files /dev/null and b/site/static/emojis/1f1f9-1f1f7.png differ diff --git a/site/static/emojis/1f1f9-1f1f9.png b/site/static/emojis/1f1f9-1f1f9.png new file mode 100644 index 0000000000000..7052a392b70e5 Binary files /dev/null and b/site/static/emojis/1f1f9-1f1f9.png differ diff --git a/site/static/emojis/1f1f9-1f1fb.png b/site/static/emojis/1f1f9-1f1fb.png new file mode 100644 index 0000000000000..44880afa7b570 Binary files /dev/null and b/site/static/emojis/1f1f9-1f1fb.png differ diff --git a/site/static/emojis/1f1f9-1f1fc.png b/site/static/emojis/1f1f9-1f1fc.png new file mode 100644 index 0000000000000..d5d14aed27627 Binary files /dev/null and b/site/static/emojis/1f1f9-1f1fc.png differ diff --git a/site/static/emojis/1f1f9-1f1ff.png b/site/static/emojis/1f1f9-1f1ff.png new file mode 100644 index 0000000000000..87c990d625167 Binary files /dev/null and b/site/static/emojis/1f1f9-1f1ff.png differ diff --git a/site/static/emojis/1f1f9.png b/site/static/emojis/1f1f9.png new file mode 100644 index 0000000000000..a3faa0db6da35 Binary files /dev/null and b/site/static/emojis/1f1f9.png differ diff --git a/site/static/emojis/1f1fa-1f1e6.png b/site/static/emojis/1f1fa-1f1e6.png new file mode 100644 index 0000000000000..81db6c222ef5d Binary files /dev/null and b/site/static/emojis/1f1fa-1f1e6.png differ diff --git a/site/static/emojis/1f1fa-1f1ec.png b/site/static/emojis/1f1fa-1f1ec.png new file mode 100644 index 0000000000000..f560449896302 Binary files /dev/null and b/site/static/emojis/1f1fa-1f1ec.png differ diff --git a/site/static/emojis/1f1fa-1f1f2.png b/site/static/emojis/1f1fa-1f1f2.png new file mode 100644 index 0000000000000..6d18cb7088ce6 Binary files /dev/null and b/site/static/emojis/1f1fa-1f1f2.png differ diff --git a/site/static/emojis/1f1fa-1f1f3.png b/site/static/emojis/1f1fa-1f1f3.png new file mode 100644 index 0000000000000..ea7fc4c7d7aff Binary files /dev/null and b/site/static/emojis/1f1fa-1f1f3.png differ diff --git a/site/static/emojis/1f1fa-1f1f8.png b/site/static/emojis/1f1fa-1f1f8.png new file mode 100644 index 0000000000000..0ba064250ea04 Binary files /dev/null and b/site/static/emojis/1f1fa-1f1f8.png differ diff --git a/site/static/emojis/1f1fa-1f1fe.png b/site/static/emojis/1f1fa-1f1fe.png new file mode 100644 index 0000000000000..aa981ca3815f5 Binary files /dev/null and b/site/static/emojis/1f1fa-1f1fe.png differ diff --git a/site/static/emojis/1f1fa-1f1ff.png b/site/static/emojis/1f1fa-1f1ff.png new file mode 100644 index 0000000000000..ae196dd4594b0 Binary files /dev/null and b/site/static/emojis/1f1fa-1f1ff.png differ diff --git a/site/static/emojis/1f1fa.png b/site/static/emojis/1f1fa.png new file mode 100644 index 0000000000000..95651c65e4b20 Binary files /dev/null and b/site/static/emojis/1f1fa.png differ diff --git a/site/static/emojis/1f1fb-1f1e6.png b/site/static/emojis/1f1fb-1f1e6.png new file mode 100644 index 0000000000000..f0fe36f9ad91e Binary files /dev/null and b/site/static/emojis/1f1fb-1f1e6.png differ diff --git a/site/static/emojis/1f1fb-1f1e8.png b/site/static/emojis/1f1fb-1f1e8.png new file mode 100644 index 0000000000000..234bf65ada557 Binary files /dev/null and b/site/static/emojis/1f1fb-1f1e8.png differ diff --git a/site/static/emojis/1f1fb-1f1ea.png b/site/static/emojis/1f1fb-1f1ea.png new file mode 100644 index 0000000000000..70a249fec65e5 Binary files /dev/null and b/site/static/emojis/1f1fb-1f1ea.png differ diff --git a/site/static/emojis/1f1fb-1f1ec.png b/site/static/emojis/1f1fb-1f1ec.png new file mode 100644 index 0000000000000..72017181c943b Binary files /dev/null and b/site/static/emojis/1f1fb-1f1ec.png differ diff --git a/site/static/emojis/1f1fb-1f1ee.png b/site/static/emojis/1f1fb-1f1ee.png new file mode 100644 index 0000000000000..0feb6aebed1c7 Binary files /dev/null and b/site/static/emojis/1f1fb-1f1ee.png differ diff --git a/site/static/emojis/1f1fb-1f1f3.png b/site/static/emojis/1f1fb-1f1f3.png new file mode 100644 index 0000000000000..5282bd4343c50 Binary files /dev/null and b/site/static/emojis/1f1fb-1f1f3.png differ diff --git a/site/static/emojis/1f1fb-1f1fa.png b/site/static/emojis/1f1fb-1f1fa.png new file mode 100644 index 0000000000000..6047a7bf46615 Binary files /dev/null and b/site/static/emojis/1f1fb-1f1fa.png differ diff --git a/site/static/emojis/1f1fb.png b/site/static/emojis/1f1fb.png new file mode 100644 index 0000000000000..f431931f67851 Binary files /dev/null and b/site/static/emojis/1f1fb.png differ diff --git a/site/static/emojis/1f1fc-1f1eb.png b/site/static/emojis/1f1fc-1f1eb.png new file mode 100644 index 0000000000000..15746dad014e0 Binary files /dev/null and b/site/static/emojis/1f1fc-1f1eb.png differ diff --git a/site/static/emojis/1f1fc-1f1f8.png b/site/static/emojis/1f1fc-1f1f8.png new file mode 100644 index 0000000000000..5356f6d468b0b Binary files /dev/null and b/site/static/emojis/1f1fc-1f1f8.png differ diff --git a/site/static/emojis/1f1fc.png b/site/static/emojis/1f1fc.png new file mode 100644 index 0000000000000..b9c56ae2ef82c Binary files /dev/null and b/site/static/emojis/1f1fc.png differ diff --git a/site/static/emojis/1f1fd-1f1f0.png b/site/static/emojis/1f1fd-1f1f0.png new file mode 100644 index 0000000000000..043e9b514db92 Binary files /dev/null and b/site/static/emojis/1f1fd-1f1f0.png differ diff --git a/site/static/emojis/1f1fd.png b/site/static/emojis/1f1fd.png new file mode 100644 index 0000000000000..328a53365fb82 Binary files /dev/null and b/site/static/emojis/1f1fd.png differ diff --git a/site/static/emojis/1f1fe-1f1ea.png b/site/static/emojis/1f1fe-1f1ea.png new file mode 100644 index 0000000000000..e858bb2c19363 Binary files /dev/null and b/site/static/emojis/1f1fe-1f1ea.png differ diff --git a/site/static/emojis/1f1fe-1f1f9.png b/site/static/emojis/1f1fe-1f1f9.png new file mode 100644 index 0000000000000..642b133c08900 Binary files /dev/null and b/site/static/emojis/1f1fe-1f1f9.png differ diff --git a/site/static/emojis/1f1fe.png b/site/static/emojis/1f1fe.png new file mode 100644 index 0000000000000..a1518ab3fa44c Binary files /dev/null and b/site/static/emojis/1f1fe.png differ diff --git a/site/static/emojis/1f1ff-1f1e6.png b/site/static/emojis/1f1ff-1f1e6.png new file mode 100644 index 0000000000000..4535007787dda Binary files /dev/null and b/site/static/emojis/1f1ff-1f1e6.png differ diff --git a/site/static/emojis/1f1ff-1f1f2.png b/site/static/emojis/1f1ff-1f1f2.png new file mode 100644 index 0000000000000..6283325081029 Binary files /dev/null and b/site/static/emojis/1f1ff-1f1f2.png differ diff --git a/site/static/emojis/1f1ff-1f1fc.png b/site/static/emojis/1f1ff-1f1fc.png new file mode 100644 index 0000000000000..d87fd6ac15e53 Binary files /dev/null and b/site/static/emojis/1f1ff-1f1fc.png differ diff --git a/site/static/emojis/1f1ff.png b/site/static/emojis/1f1ff.png new file mode 100644 index 0000000000000..090d1bc408100 Binary files /dev/null and b/site/static/emojis/1f1ff.png differ diff --git a/site/static/emojis/1f201.png b/site/static/emojis/1f201.png new file mode 100644 index 0000000000000..31952eaf9e81e Binary files /dev/null and b/site/static/emojis/1f201.png differ diff --git a/site/static/emojis/1f202.png b/site/static/emojis/1f202.png new file mode 100644 index 0000000000000..d12881eda2af7 Binary files /dev/null and b/site/static/emojis/1f202.png differ diff --git a/site/static/emojis/1f21a.png b/site/static/emojis/1f21a.png new file mode 100644 index 0000000000000..671699d6fefa1 Binary files /dev/null and b/site/static/emojis/1f21a.png differ diff --git a/site/static/emojis/1f22f.png b/site/static/emojis/1f22f.png new file mode 100644 index 0000000000000..b07ad0826a0b9 Binary files /dev/null and b/site/static/emojis/1f22f.png differ diff --git a/site/static/emojis/1f232.png b/site/static/emojis/1f232.png new file mode 100644 index 0000000000000..37ad941cf460c Binary files /dev/null and b/site/static/emojis/1f232.png differ diff --git a/site/static/emojis/1f233.png b/site/static/emojis/1f233.png new file mode 100644 index 0000000000000..9dc7c35f14d85 Binary files /dev/null and b/site/static/emojis/1f233.png differ diff --git a/site/static/emojis/1f234.png b/site/static/emojis/1f234.png new file mode 100644 index 0000000000000..5217963f44e6c Binary files /dev/null and b/site/static/emojis/1f234.png differ diff --git a/site/static/emojis/1f235.png b/site/static/emojis/1f235.png new file mode 100644 index 0000000000000..2ef4e02c813cc Binary files /dev/null and b/site/static/emojis/1f235.png differ diff --git a/site/static/emojis/1f236.png b/site/static/emojis/1f236.png new file mode 100644 index 0000000000000..503ca0f3114a4 Binary files /dev/null and b/site/static/emojis/1f236.png differ diff --git a/site/static/emojis/1f237.png b/site/static/emojis/1f237.png new file mode 100644 index 0000000000000..a8a13729c4377 Binary files /dev/null and b/site/static/emojis/1f237.png differ diff --git a/site/static/emojis/1f238.png b/site/static/emojis/1f238.png new file mode 100644 index 0000000000000..c85c702091aab Binary files /dev/null and b/site/static/emojis/1f238.png differ diff --git a/site/static/emojis/1f239.png b/site/static/emojis/1f239.png new file mode 100644 index 0000000000000..338aded4e92ac Binary files /dev/null and b/site/static/emojis/1f239.png differ diff --git a/site/static/emojis/1f23a.png b/site/static/emojis/1f23a.png new file mode 100644 index 0000000000000..de3f1aa9083aa Binary files /dev/null and b/site/static/emojis/1f23a.png differ diff --git a/site/static/emojis/1f250.png b/site/static/emojis/1f250.png new file mode 100644 index 0000000000000..be414e9e1cbcc Binary files /dev/null and b/site/static/emojis/1f250.png differ diff --git a/site/static/emojis/1f251.png b/site/static/emojis/1f251.png new file mode 100644 index 0000000000000..bc0802fcc43ff Binary files /dev/null and b/site/static/emojis/1f251.png differ diff --git a/site/static/emojis/1f300.png b/site/static/emojis/1f300.png new file mode 100644 index 0000000000000..12726261ee738 Binary files /dev/null and b/site/static/emojis/1f300.png differ diff --git a/site/static/emojis/1f301.png b/site/static/emojis/1f301.png new file mode 100644 index 0000000000000..ff0622f54093e Binary files /dev/null and b/site/static/emojis/1f301.png differ diff --git a/site/static/emojis/1f302.png b/site/static/emojis/1f302.png new file mode 100644 index 0000000000000..803de0a38c0a7 Binary files /dev/null and b/site/static/emojis/1f302.png differ diff --git a/site/static/emojis/1f303.png b/site/static/emojis/1f303.png new file mode 100644 index 0000000000000..8eb0c12b662af Binary files /dev/null and b/site/static/emojis/1f303.png differ diff --git a/site/static/emojis/1f304.png b/site/static/emojis/1f304.png new file mode 100644 index 0000000000000..ab061858b849e Binary files /dev/null and b/site/static/emojis/1f304.png differ diff --git a/site/static/emojis/1f305.png b/site/static/emojis/1f305.png new file mode 100644 index 0000000000000..eda7cbee49826 Binary files /dev/null and b/site/static/emojis/1f305.png differ diff --git a/site/static/emojis/1f306.png b/site/static/emojis/1f306.png new file mode 100644 index 0000000000000..768e2d22d9501 Binary files /dev/null and b/site/static/emojis/1f306.png differ diff --git a/site/static/emojis/1f307.png b/site/static/emojis/1f307.png new file mode 100644 index 0000000000000..f0cc2745d8e91 Binary files /dev/null and b/site/static/emojis/1f307.png differ diff --git a/site/static/emojis/1f308.png b/site/static/emojis/1f308.png new file mode 100644 index 0000000000000..9952a393eb2ad Binary files /dev/null and b/site/static/emojis/1f308.png differ diff --git a/site/static/emojis/1f309.png b/site/static/emojis/1f309.png new file mode 100644 index 0000000000000..8e1d3a50c43d9 Binary files /dev/null and b/site/static/emojis/1f309.png differ diff --git a/site/static/emojis/1f30a.png b/site/static/emojis/1f30a.png new file mode 100644 index 0000000000000..f29f044ed55da Binary files /dev/null and b/site/static/emojis/1f30a.png differ diff --git a/site/static/emojis/1f30b.png b/site/static/emojis/1f30b.png new file mode 100644 index 0000000000000..4c220af1d8514 Binary files /dev/null and b/site/static/emojis/1f30b.png differ diff --git a/site/static/emojis/1f30c.png b/site/static/emojis/1f30c.png new file mode 100644 index 0000000000000..9c3f134ad6807 Binary files /dev/null and b/site/static/emojis/1f30c.png differ diff --git a/site/static/emojis/1f30d.png b/site/static/emojis/1f30d.png new file mode 100644 index 0000000000000..b5f62c3310f7a Binary files /dev/null and b/site/static/emojis/1f30d.png differ diff --git a/site/static/emojis/1f30e.png b/site/static/emojis/1f30e.png new file mode 100644 index 0000000000000..d74ff449d5930 Binary files /dev/null and b/site/static/emojis/1f30e.png differ diff --git a/site/static/emojis/1f30f.png b/site/static/emojis/1f30f.png new file mode 100644 index 0000000000000..66c4bed3c37c5 Binary files /dev/null and b/site/static/emojis/1f30f.png differ diff --git a/site/static/emojis/1f310.png b/site/static/emojis/1f310.png new file mode 100644 index 0000000000000..faf027d8d1b0a Binary files /dev/null and b/site/static/emojis/1f310.png differ diff --git a/site/static/emojis/1f311.png b/site/static/emojis/1f311.png new file mode 100644 index 0000000000000..b4be1870e096e Binary files /dev/null and b/site/static/emojis/1f311.png differ diff --git a/site/static/emojis/1f312.png b/site/static/emojis/1f312.png new file mode 100644 index 0000000000000..1f2d7a1df12ad Binary files /dev/null and b/site/static/emojis/1f312.png differ diff --git a/site/static/emojis/1f313.png b/site/static/emojis/1f313.png new file mode 100644 index 0000000000000..2e4ee20bb381a Binary files /dev/null and b/site/static/emojis/1f313.png differ diff --git a/site/static/emojis/1f314.png b/site/static/emojis/1f314.png new file mode 100644 index 0000000000000..63dda718aeef3 Binary files /dev/null and b/site/static/emojis/1f314.png differ diff --git a/site/static/emojis/1f315.png b/site/static/emojis/1f315.png new file mode 100644 index 0000000000000..b7aea1a0307ea Binary files /dev/null and b/site/static/emojis/1f315.png differ diff --git a/site/static/emojis/1f316.png b/site/static/emojis/1f316.png new file mode 100644 index 0000000000000..3d08d8dba7d4e Binary files /dev/null and b/site/static/emojis/1f316.png differ diff --git a/site/static/emojis/1f317.png b/site/static/emojis/1f317.png new file mode 100644 index 0000000000000..fb799d0353853 Binary files /dev/null and b/site/static/emojis/1f317.png differ diff --git a/site/static/emojis/1f318.png b/site/static/emojis/1f318.png new file mode 100644 index 0000000000000..d16ee12ac2b21 Binary files /dev/null and b/site/static/emojis/1f318.png differ diff --git a/site/static/emojis/1f319.png b/site/static/emojis/1f319.png new file mode 100644 index 0000000000000..51c101ff962c3 Binary files /dev/null and b/site/static/emojis/1f319.png differ diff --git a/site/static/emojis/1f31a.png b/site/static/emojis/1f31a.png new file mode 100644 index 0000000000000..e5857351e5047 Binary files /dev/null and b/site/static/emojis/1f31a.png differ diff --git a/site/static/emojis/1f31b.png b/site/static/emojis/1f31b.png new file mode 100644 index 0000000000000..2d974fda649c8 Binary files /dev/null and b/site/static/emojis/1f31b.png differ diff --git a/site/static/emojis/1f31c.png b/site/static/emojis/1f31c.png new file mode 100644 index 0000000000000..9538a024c2f3f Binary files /dev/null and b/site/static/emojis/1f31c.png differ diff --git a/site/static/emojis/1f31d.png b/site/static/emojis/1f31d.png new file mode 100644 index 0000000000000..02ceca4380465 Binary files /dev/null and b/site/static/emojis/1f31d.png differ diff --git a/site/static/emojis/1f31e.png b/site/static/emojis/1f31e.png new file mode 100644 index 0000000000000..4a928c085ea9a Binary files /dev/null and b/site/static/emojis/1f31e.png differ diff --git a/site/static/emojis/1f31f.png b/site/static/emojis/1f31f.png new file mode 100644 index 0000000000000..3d5fce4a43149 Binary files /dev/null and b/site/static/emojis/1f31f.png differ diff --git a/site/static/emojis/1f320.png b/site/static/emojis/1f320.png new file mode 100644 index 0000000000000..7a97429ff7316 Binary files /dev/null and b/site/static/emojis/1f320.png differ diff --git a/site/static/emojis/1f321.png b/site/static/emojis/1f321.png new file mode 100644 index 0000000000000..ea557a7fd0a55 Binary files /dev/null and b/site/static/emojis/1f321.png differ diff --git a/site/static/emojis/1f324.png b/site/static/emojis/1f324.png new file mode 100644 index 0000000000000..61c53ff910853 Binary files /dev/null and b/site/static/emojis/1f324.png differ diff --git a/site/static/emojis/1f325.png b/site/static/emojis/1f325.png new file mode 100644 index 0000000000000..93a39d508369c Binary files /dev/null and b/site/static/emojis/1f325.png differ diff --git a/site/static/emojis/1f326.png b/site/static/emojis/1f326.png new file mode 100644 index 0000000000000..e0ebf7437d788 Binary files /dev/null and b/site/static/emojis/1f326.png differ diff --git a/site/static/emojis/1f327.png b/site/static/emojis/1f327.png new file mode 100644 index 0000000000000..950061b3597c1 Binary files /dev/null and b/site/static/emojis/1f327.png differ diff --git a/site/static/emojis/1f328.png b/site/static/emojis/1f328.png new file mode 100644 index 0000000000000..51f7b80cc7108 Binary files /dev/null and b/site/static/emojis/1f328.png differ diff --git a/site/static/emojis/1f329.png b/site/static/emojis/1f329.png new file mode 100644 index 0000000000000..0d6a16b34491f Binary files /dev/null and b/site/static/emojis/1f329.png differ diff --git a/site/static/emojis/1f32a.png b/site/static/emojis/1f32a.png new file mode 100644 index 0000000000000..1f304d4d111c3 Binary files /dev/null and b/site/static/emojis/1f32a.png differ diff --git a/site/static/emojis/1f32b.png b/site/static/emojis/1f32b.png new file mode 100644 index 0000000000000..a51e486b3390d Binary files /dev/null and b/site/static/emojis/1f32b.png differ diff --git a/site/static/emojis/1f32c.png b/site/static/emojis/1f32c.png new file mode 100644 index 0000000000000..89a0f5c8754e2 Binary files /dev/null and b/site/static/emojis/1f32c.png differ diff --git a/site/static/emojis/1f32d.png b/site/static/emojis/1f32d.png new file mode 100644 index 0000000000000..ef0758877e3d6 Binary files /dev/null and b/site/static/emojis/1f32d.png differ diff --git a/site/static/emojis/1f32e.png b/site/static/emojis/1f32e.png new file mode 100644 index 0000000000000..4080bd101418a Binary files /dev/null and b/site/static/emojis/1f32e.png differ diff --git a/site/static/emojis/1f32f.png b/site/static/emojis/1f32f.png new file mode 100644 index 0000000000000..6e2327063ab4b Binary files /dev/null and b/site/static/emojis/1f32f.png differ diff --git a/site/static/emojis/1f330.png b/site/static/emojis/1f330.png new file mode 100644 index 0000000000000..06ce776154e31 Binary files /dev/null and b/site/static/emojis/1f330.png differ diff --git a/site/static/emojis/1f331.png b/site/static/emojis/1f331.png new file mode 100644 index 0000000000000..57aaddb55cb56 Binary files /dev/null and b/site/static/emojis/1f331.png differ diff --git a/site/static/emojis/1f332.png b/site/static/emojis/1f332.png new file mode 100644 index 0000000000000..f9ca66ff0a59d Binary files /dev/null and b/site/static/emojis/1f332.png differ diff --git a/site/static/emojis/1f333.png b/site/static/emojis/1f333.png new file mode 100644 index 0000000000000..0d51f232e34f6 Binary files /dev/null and b/site/static/emojis/1f333.png differ diff --git a/site/static/emojis/1f334.png b/site/static/emojis/1f334.png new file mode 100644 index 0000000000000..325ed94d16d3d Binary files /dev/null and b/site/static/emojis/1f334.png differ diff --git a/site/static/emojis/1f335.png b/site/static/emojis/1f335.png new file mode 100644 index 0000000000000..76c5096d17bf2 Binary files /dev/null and b/site/static/emojis/1f335.png differ diff --git a/site/static/emojis/1f336.png b/site/static/emojis/1f336.png new file mode 100644 index 0000000000000..b0e51a9d28fcf Binary files /dev/null and b/site/static/emojis/1f336.png differ diff --git a/site/static/emojis/1f337.png b/site/static/emojis/1f337.png new file mode 100644 index 0000000000000..a0b89f798638c Binary files /dev/null and b/site/static/emojis/1f337.png differ diff --git a/site/static/emojis/1f338.png b/site/static/emojis/1f338.png new file mode 100644 index 0000000000000..3983b94fb242a Binary files /dev/null and b/site/static/emojis/1f338.png differ diff --git a/site/static/emojis/1f339.png b/site/static/emojis/1f339.png new file mode 100644 index 0000000000000..27608f3e61d5f Binary files /dev/null and b/site/static/emojis/1f339.png differ diff --git a/site/static/emojis/1f33a.png b/site/static/emojis/1f33a.png new file mode 100644 index 0000000000000..955d1f1c685e0 Binary files /dev/null and b/site/static/emojis/1f33a.png differ diff --git a/site/static/emojis/1f33b.png b/site/static/emojis/1f33b.png new file mode 100644 index 0000000000000..7770c79ae2e24 Binary files /dev/null and b/site/static/emojis/1f33b.png differ diff --git a/site/static/emojis/1f33c.png b/site/static/emojis/1f33c.png new file mode 100644 index 0000000000000..12f5ce461f3f3 Binary files /dev/null and b/site/static/emojis/1f33c.png differ diff --git a/site/static/emojis/1f33d.png b/site/static/emojis/1f33d.png new file mode 100644 index 0000000000000..5f1d62b10a8b2 Binary files /dev/null and b/site/static/emojis/1f33d.png differ diff --git a/site/static/emojis/1f33e.png b/site/static/emojis/1f33e.png new file mode 100644 index 0000000000000..5899de351b741 Binary files /dev/null and b/site/static/emojis/1f33e.png differ diff --git a/site/static/emojis/1f33f.png b/site/static/emojis/1f33f.png new file mode 100644 index 0000000000000..72a53fe94df84 Binary files /dev/null and b/site/static/emojis/1f33f.png differ diff --git a/site/static/emojis/1f340.png b/site/static/emojis/1f340.png new file mode 100644 index 0000000000000..265e245a963d0 Binary files /dev/null and b/site/static/emojis/1f340.png differ diff --git a/site/static/emojis/1f341.png b/site/static/emojis/1f341.png new file mode 100644 index 0000000000000..3eadf4bcfa0b9 Binary files /dev/null and b/site/static/emojis/1f341.png differ diff --git a/site/static/emojis/1f342.png b/site/static/emojis/1f342.png new file mode 100644 index 0000000000000..dcdc17b80d6de Binary files /dev/null and b/site/static/emojis/1f342.png differ diff --git a/site/static/emojis/1f343.png b/site/static/emojis/1f343.png new file mode 100644 index 0000000000000..51abe6c6abdcb Binary files /dev/null and b/site/static/emojis/1f343.png differ diff --git a/site/static/emojis/1f344.png b/site/static/emojis/1f344.png new file mode 100644 index 0000000000000..80402a0cc1101 Binary files /dev/null and b/site/static/emojis/1f344.png differ diff --git a/site/static/emojis/1f345.png b/site/static/emojis/1f345.png new file mode 100644 index 0000000000000..93eaaae6ef4e5 Binary files /dev/null and b/site/static/emojis/1f345.png differ diff --git a/site/static/emojis/1f346.png b/site/static/emojis/1f346.png new file mode 100644 index 0000000000000..83f1ffabd32b7 Binary files /dev/null and b/site/static/emojis/1f346.png differ diff --git a/site/static/emojis/1f347.png b/site/static/emojis/1f347.png new file mode 100644 index 0000000000000..c5f99b4d8f9ec Binary files /dev/null and b/site/static/emojis/1f347.png differ diff --git a/site/static/emojis/1f348.png b/site/static/emojis/1f348.png new file mode 100644 index 0000000000000..8072ee1eb7326 Binary files /dev/null and b/site/static/emojis/1f348.png differ diff --git a/site/static/emojis/1f349.png b/site/static/emojis/1f349.png new file mode 100644 index 0000000000000..c8023540646df Binary files /dev/null and b/site/static/emojis/1f349.png differ diff --git a/site/static/emojis/1f34a.png b/site/static/emojis/1f34a.png new file mode 100644 index 0000000000000..bb250acc926ff Binary files /dev/null and b/site/static/emojis/1f34a.png differ diff --git a/site/static/emojis/1f34b.png b/site/static/emojis/1f34b.png new file mode 100644 index 0000000000000..78b6f953d0e8b Binary files /dev/null and b/site/static/emojis/1f34b.png differ diff --git a/site/static/emojis/1f34c.png b/site/static/emojis/1f34c.png new file mode 100644 index 0000000000000..9a0f2c5731ecd Binary files /dev/null and b/site/static/emojis/1f34c.png differ diff --git a/site/static/emojis/1f34d.png b/site/static/emojis/1f34d.png new file mode 100644 index 0000000000000..949edeab1f2d6 Binary files /dev/null and b/site/static/emojis/1f34d.png differ diff --git a/site/static/emojis/1f34e.png b/site/static/emojis/1f34e.png new file mode 100644 index 0000000000000..a5c4892329caf Binary files /dev/null and b/site/static/emojis/1f34e.png differ diff --git a/site/static/emojis/1f34f.png b/site/static/emojis/1f34f.png new file mode 100644 index 0000000000000..ac7be3e39f65d Binary files /dev/null and b/site/static/emojis/1f34f.png differ diff --git a/site/static/emojis/1f350.png b/site/static/emojis/1f350.png new file mode 100644 index 0000000000000..0f578599be414 Binary files /dev/null and b/site/static/emojis/1f350.png differ diff --git a/site/static/emojis/1f351.png b/site/static/emojis/1f351.png new file mode 100644 index 0000000000000..32e026cb1afa5 Binary files /dev/null and b/site/static/emojis/1f351.png differ diff --git a/site/static/emojis/1f352.png b/site/static/emojis/1f352.png new file mode 100644 index 0000000000000..ecd2e564aff9e Binary files /dev/null and b/site/static/emojis/1f352.png differ diff --git a/site/static/emojis/1f353.png b/site/static/emojis/1f353.png new file mode 100644 index 0000000000000..ac2454a4c610f Binary files /dev/null and b/site/static/emojis/1f353.png differ diff --git a/site/static/emojis/1f354.png b/site/static/emojis/1f354.png new file mode 100644 index 0000000000000..c6e7e93b5655b Binary files /dev/null and b/site/static/emojis/1f354.png differ diff --git a/site/static/emojis/1f355.png b/site/static/emojis/1f355.png new file mode 100644 index 0000000000000..eaefc58a9faeb Binary files /dev/null and b/site/static/emojis/1f355.png differ diff --git a/site/static/emojis/1f356.png b/site/static/emojis/1f356.png new file mode 100644 index 0000000000000..7fd839b48a882 Binary files /dev/null and b/site/static/emojis/1f356.png differ diff --git a/site/static/emojis/1f357.png b/site/static/emojis/1f357.png new file mode 100644 index 0000000000000..a32c8a6af483a Binary files /dev/null and b/site/static/emojis/1f357.png differ diff --git a/site/static/emojis/1f358.png b/site/static/emojis/1f358.png new file mode 100644 index 0000000000000..e4cd7588a2e13 Binary files /dev/null and b/site/static/emojis/1f358.png differ diff --git a/site/static/emojis/1f359.png b/site/static/emojis/1f359.png new file mode 100644 index 0000000000000..d294d1175590c Binary files /dev/null and b/site/static/emojis/1f359.png differ diff --git a/site/static/emojis/1f35a.png b/site/static/emojis/1f35a.png new file mode 100644 index 0000000000000..a0ff523cec934 Binary files /dev/null and b/site/static/emojis/1f35a.png differ diff --git a/site/static/emojis/1f35b.png b/site/static/emojis/1f35b.png new file mode 100644 index 0000000000000..0826dca835aca Binary files /dev/null and b/site/static/emojis/1f35b.png differ diff --git a/site/static/emojis/1f35c.png b/site/static/emojis/1f35c.png new file mode 100644 index 0000000000000..cc6233e3360b7 Binary files /dev/null and b/site/static/emojis/1f35c.png differ diff --git a/site/static/emojis/1f35d.png b/site/static/emojis/1f35d.png new file mode 100644 index 0000000000000..d03a14d2a4127 Binary files /dev/null and b/site/static/emojis/1f35d.png differ diff --git a/site/static/emojis/1f35e.png b/site/static/emojis/1f35e.png new file mode 100644 index 0000000000000..04dd14e8ad94d Binary files /dev/null and b/site/static/emojis/1f35e.png differ diff --git a/site/static/emojis/1f35f.png b/site/static/emojis/1f35f.png new file mode 100644 index 0000000000000..b61e6bc73aecb Binary files /dev/null and b/site/static/emojis/1f35f.png differ diff --git a/site/static/emojis/1f360.png b/site/static/emojis/1f360.png new file mode 100644 index 0000000000000..9efde9879b814 Binary files /dev/null and b/site/static/emojis/1f360.png differ diff --git a/site/static/emojis/1f361.png b/site/static/emojis/1f361.png new file mode 100644 index 0000000000000..90c6fa1d0e074 Binary files /dev/null and b/site/static/emojis/1f361.png differ diff --git a/site/static/emojis/1f362.png b/site/static/emojis/1f362.png new file mode 100644 index 0000000000000..db1343958b9ba Binary files /dev/null and b/site/static/emojis/1f362.png differ diff --git a/site/static/emojis/1f363.png b/site/static/emojis/1f363.png new file mode 100644 index 0000000000000..5c703ff7c76af Binary files /dev/null and b/site/static/emojis/1f363.png differ diff --git a/site/static/emojis/1f364.png b/site/static/emojis/1f364.png new file mode 100644 index 0000000000000..b1797f11f5945 Binary files /dev/null and b/site/static/emojis/1f364.png differ diff --git a/site/static/emojis/1f365.png b/site/static/emojis/1f365.png new file mode 100644 index 0000000000000..b98a7419caeb9 Binary files /dev/null and b/site/static/emojis/1f365.png differ diff --git a/site/static/emojis/1f366.png b/site/static/emojis/1f366.png new file mode 100644 index 0000000000000..b1ac28633337d Binary files /dev/null and b/site/static/emojis/1f366.png differ diff --git a/site/static/emojis/1f367.png b/site/static/emojis/1f367.png new file mode 100644 index 0000000000000..70860c53a8915 Binary files /dev/null and b/site/static/emojis/1f367.png differ diff --git a/site/static/emojis/1f368.png b/site/static/emojis/1f368.png new file mode 100644 index 0000000000000..f142b35f99990 Binary files /dev/null and b/site/static/emojis/1f368.png differ diff --git a/site/static/emojis/1f369.png b/site/static/emojis/1f369.png new file mode 100644 index 0000000000000..647f504a6932a Binary files /dev/null and b/site/static/emojis/1f369.png differ diff --git a/site/static/emojis/1f36a.png b/site/static/emojis/1f36a.png new file mode 100644 index 0000000000000..074da613082b3 Binary files /dev/null and b/site/static/emojis/1f36a.png differ diff --git a/site/static/emojis/1f36b.png b/site/static/emojis/1f36b.png new file mode 100644 index 0000000000000..2f7e59bbbd5e6 Binary files /dev/null and b/site/static/emojis/1f36b.png differ diff --git a/site/static/emojis/1f36c.png b/site/static/emojis/1f36c.png new file mode 100644 index 0000000000000..de50bdd580677 Binary files /dev/null and b/site/static/emojis/1f36c.png differ diff --git a/site/static/emojis/1f36d.png b/site/static/emojis/1f36d.png new file mode 100644 index 0000000000000..d87f8e1f4f6d2 Binary files /dev/null and b/site/static/emojis/1f36d.png differ diff --git a/site/static/emojis/1f36e.png b/site/static/emojis/1f36e.png new file mode 100644 index 0000000000000..50a3ef8bfcd5b Binary files /dev/null and b/site/static/emojis/1f36e.png differ diff --git a/site/static/emojis/1f36f.png b/site/static/emojis/1f36f.png new file mode 100644 index 0000000000000..8b283f880b30b Binary files /dev/null and b/site/static/emojis/1f36f.png differ diff --git a/site/static/emojis/1f370.png b/site/static/emojis/1f370.png new file mode 100644 index 0000000000000..f9b848bec093b Binary files /dev/null and b/site/static/emojis/1f370.png differ diff --git a/site/static/emojis/1f371.png b/site/static/emojis/1f371.png new file mode 100644 index 0000000000000..fde795df59e0c Binary files /dev/null and b/site/static/emojis/1f371.png differ diff --git a/site/static/emojis/1f372.png b/site/static/emojis/1f372.png new file mode 100644 index 0000000000000..22775a2c2f4fc Binary files /dev/null and b/site/static/emojis/1f372.png differ diff --git a/site/static/emojis/1f373.png b/site/static/emojis/1f373.png new file mode 100644 index 0000000000000..6fba00ca3e982 Binary files /dev/null and b/site/static/emojis/1f373.png differ diff --git a/site/static/emojis/1f374.png b/site/static/emojis/1f374.png new file mode 100644 index 0000000000000..1e8b70d3046dd Binary files /dev/null and b/site/static/emojis/1f374.png differ diff --git a/site/static/emojis/1f375.png b/site/static/emojis/1f375.png new file mode 100644 index 0000000000000..3cd74cd95d0f0 Binary files /dev/null and b/site/static/emojis/1f375.png differ diff --git a/site/static/emojis/1f376.png b/site/static/emojis/1f376.png new file mode 100644 index 0000000000000..db30dd22017c6 Binary files /dev/null and b/site/static/emojis/1f376.png differ diff --git a/site/static/emojis/1f377.png b/site/static/emojis/1f377.png new file mode 100644 index 0000000000000..94d9830518d73 Binary files /dev/null and b/site/static/emojis/1f377.png differ diff --git a/site/static/emojis/1f378.png b/site/static/emojis/1f378.png new file mode 100644 index 0000000000000..d6e4c8da5ff8b Binary files /dev/null and b/site/static/emojis/1f378.png differ diff --git a/site/static/emojis/1f379.png b/site/static/emojis/1f379.png new file mode 100644 index 0000000000000..40f93365e274e Binary files /dev/null and b/site/static/emojis/1f379.png differ diff --git a/site/static/emojis/1f37a.png b/site/static/emojis/1f37a.png new file mode 100644 index 0000000000000..80de88052b8cb Binary files /dev/null and b/site/static/emojis/1f37a.png differ diff --git a/site/static/emojis/1f37b.png b/site/static/emojis/1f37b.png new file mode 100644 index 0000000000000..ad7800d64b419 Binary files /dev/null and b/site/static/emojis/1f37b.png differ diff --git a/site/static/emojis/1f37c.png b/site/static/emojis/1f37c.png new file mode 100644 index 0000000000000..4493e2b56b5ef Binary files /dev/null and b/site/static/emojis/1f37c.png differ diff --git a/site/static/emojis/1f37d.png b/site/static/emojis/1f37d.png new file mode 100644 index 0000000000000..191c4e41a55fb Binary files /dev/null and b/site/static/emojis/1f37d.png differ diff --git a/site/static/emojis/1f37e.png b/site/static/emojis/1f37e.png new file mode 100644 index 0000000000000..2342f1bdec175 Binary files /dev/null and b/site/static/emojis/1f37e.png differ diff --git a/site/static/emojis/1f37f.png b/site/static/emojis/1f37f.png new file mode 100644 index 0000000000000..7708b1f109db8 Binary files /dev/null and b/site/static/emojis/1f37f.png differ diff --git a/site/static/emojis/1f380.png b/site/static/emojis/1f380.png new file mode 100644 index 0000000000000..3b6663d918dd5 Binary files /dev/null and b/site/static/emojis/1f380.png differ diff --git a/site/static/emojis/1f381.png b/site/static/emojis/1f381.png new file mode 100644 index 0000000000000..af0b07e48b048 Binary files /dev/null and b/site/static/emojis/1f381.png differ diff --git a/site/static/emojis/1f382.png b/site/static/emojis/1f382.png new file mode 100644 index 0000000000000..54a6232020414 Binary files /dev/null and b/site/static/emojis/1f382.png differ diff --git a/site/static/emojis/1f383.png b/site/static/emojis/1f383.png new file mode 100644 index 0000000000000..3e68cb5290750 Binary files /dev/null and b/site/static/emojis/1f383.png differ diff --git a/site/static/emojis/1f384.png b/site/static/emojis/1f384.png new file mode 100644 index 0000000000000..9e3e83a853f09 Binary files /dev/null and b/site/static/emojis/1f384.png differ diff --git a/site/static/emojis/1f385-1f3fb.png b/site/static/emojis/1f385-1f3fb.png new file mode 100644 index 0000000000000..ae26f1ffc0ad5 Binary files /dev/null and b/site/static/emojis/1f385-1f3fb.png differ diff --git a/site/static/emojis/1f385-1f3fc.png b/site/static/emojis/1f385-1f3fc.png new file mode 100644 index 0000000000000..ae1e9a8eeff50 Binary files /dev/null and b/site/static/emojis/1f385-1f3fc.png differ diff --git a/site/static/emojis/1f385-1f3fd.png b/site/static/emojis/1f385-1f3fd.png new file mode 100644 index 0000000000000..3cd9a5135178d Binary files /dev/null and b/site/static/emojis/1f385-1f3fd.png differ diff --git a/site/static/emojis/1f385-1f3fe.png b/site/static/emojis/1f385-1f3fe.png new file mode 100644 index 0000000000000..bbb8796fdbd58 Binary files /dev/null and b/site/static/emojis/1f385-1f3fe.png differ diff --git a/site/static/emojis/1f385-1f3ff.png b/site/static/emojis/1f385-1f3ff.png new file mode 100644 index 0000000000000..1432544fc2c5f Binary files /dev/null and b/site/static/emojis/1f385-1f3ff.png differ diff --git a/site/static/emojis/1f385.png b/site/static/emojis/1f385.png new file mode 100644 index 0000000000000..44e75755f2198 Binary files /dev/null and b/site/static/emojis/1f385.png differ diff --git a/site/static/emojis/1f386.png b/site/static/emojis/1f386.png new file mode 100644 index 0000000000000..68d7bf45cb4f3 Binary files /dev/null and b/site/static/emojis/1f386.png differ diff --git a/site/static/emojis/1f387.png b/site/static/emojis/1f387.png new file mode 100644 index 0000000000000..bfc84671ca49d Binary files /dev/null and b/site/static/emojis/1f387.png differ diff --git a/site/static/emojis/1f388.png b/site/static/emojis/1f388.png new file mode 100644 index 0000000000000..f003fbea2ec8b Binary files /dev/null and b/site/static/emojis/1f388.png differ diff --git a/site/static/emojis/1f389.png b/site/static/emojis/1f389.png new file mode 100644 index 0000000000000..863661cd75397 Binary files /dev/null and b/site/static/emojis/1f389.png differ diff --git a/site/static/emojis/1f38a.png b/site/static/emojis/1f38a.png new file mode 100644 index 0000000000000..234935a7ada76 Binary files /dev/null and b/site/static/emojis/1f38a.png differ diff --git a/site/static/emojis/1f38b.png b/site/static/emojis/1f38b.png new file mode 100644 index 0000000000000..8fe41cf130956 Binary files /dev/null and b/site/static/emojis/1f38b.png differ diff --git a/site/static/emojis/1f38c.png b/site/static/emojis/1f38c.png new file mode 100644 index 0000000000000..e65ed9a0f6361 Binary files /dev/null and b/site/static/emojis/1f38c.png differ diff --git a/site/static/emojis/1f38d.png b/site/static/emojis/1f38d.png new file mode 100644 index 0000000000000..df1fec8f64205 Binary files /dev/null and b/site/static/emojis/1f38d.png differ diff --git a/site/static/emojis/1f38e.png b/site/static/emojis/1f38e.png new file mode 100644 index 0000000000000..d026c999891c5 Binary files /dev/null and b/site/static/emojis/1f38e.png differ diff --git a/site/static/emojis/1f38f.png b/site/static/emojis/1f38f.png new file mode 100644 index 0000000000000..4371ba79e9713 Binary files /dev/null and b/site/static/emojis/1f38f.png differ diff --git a/site/static/emojis/1f390.png b/site/static/emojis/1f390.png new file mode 100644 index 0000000000000..78b2db1878e40 Binary files /dev/null and b/site/static/emojis/1f390.png differ diff --git a/site/static/emojis/1f391.png b/site/static/emojis/1f391.png new file mode 100644 index 0000000000000..a2dfd88db1c89 Binary files /dev/null and b/site/static/emojis/1f391.png differ diff --git a/site/static/emojis/1f392.png b/site/static/emojis/1f392.png new file mode 100644 index 0000000000000..c064023730657 Binary files /dev/null and b/site/static/emojis/1f392.png differ diff --git a/site/static/emojis/1f393.png b/site/static/emojis/1f393.png new file mode 100644 index 0000000000000..09d4757afc88a Binary files /dev/null and b/site/static/emojis/1f393.png differ diff --git a/site/static/emojis/1f396.png b/site/static/emojis/1f396.png new file mode 100644 index 0000000000000..42a8e1f92f822 Binary files /dev/null and b/site/static/emojis/1f396.png differ diff --git a/site/static/emojis/1f397.png b/site/static/emojis/1f397.png new file mode 100644 index 0000000000000..b40fb3fd3b165 Binary files /dev/null and b/site/static/emojis/1f397.png differ diff --git a/site/static/emojis/1f399.png b/site/static/emojis/1f399.png new file mode 100644 index 0000000000000..1af0e3a7a5ef4 Binary files /dev/null and b/site/static/emojis/1f399.png differ diff --git a/site/static/emojis/1f39a.png b/site/static/emojis/1f39a.png new file mode 100644 index 0000000000000..9b013eed6a05d Binary files /dev/null and b/site/static/emojis/1f39a.png differ diff --git a/site/static/emojis/1f39b.png b/site/static/emojis/1f39b.png new file mode 100644 index 0000000000000..deeeec9307b66 Binary files /dev/null and b/site/static/emojis/1f39b.png differ diff --git a/site/static/emojis/1f39e.png b/site/static/emojis/1f39e.png new file mode 100644 index 0000000000000..431b759e643fa Binary files /dev/null and b/site/static/emojis/1f39e.png differ diff --git a/site/static/emojis/1f39f.png b/site/static/emojis/1f39f.png new file mode 100644 index 0000000000000..d79c8e5d475dd Binary files /dev/null and b/site/static/emojis/1f39f.png differ diff --git a/site/static/emojis/1f3a0.png b/site/static/emojis/1f3a0.png new file mode 100644 index 0000000000000..41fb66baaa99c Binary files /dev/null and b/site/static/emojis/1f3a0.png differ diff --git a/site/static/emojis/1f3a1.png b/site/static/emojis/1f3a1.png new file mode 100644 index 0000000000000..ea4a06a5800ba Binary files /dev/null and b/site/static/emojis/1f3a1.png differ diff --git a/site/static/emojis/1f3a2.png b/site/static/emojis/1f3a2.png new file mode 100644 index 0000000000000..a881d3ee24cb9 Binary files /dev/null and b/site/static/emojis/1f3a2.png differ diff --git a/site/static/emojis/1f3a3.png b/site/static/emojis/1f3a3.png new file mode 100644 index 0000000000000..aa7b3e9b74dbf Binary files /dev/null and b/site/static/emojis/1f3a3.png differ diff --git a/site/static/emojis/1f3a4.png b/site/static/emojis/1f3a4.png new file mode 100644 index 0000000000000..51e8d9063e631 Binary files /dev/null and b/site/static/emojis/1f3a4.png differ diff --git a/site/static/emojis/1f3a5.png b/site/static/emojis/1f3a5.png new file mode 100644 index 0000000000000..5c990159ff06f Binary files /dev/null and b/site/static/emojis/1f3a5.png differ diff --git a/site/static/emojis/1f3a6.png b/site/static/emojis/1f3a6.png new file mode 100644 index 0000000000000..7d22c83f7b69b Binary files /dev/null and b/site/static/emojis/1f3a6.png differ diff --git a/site/static/emojis/1f3a7.png b/site/static/emojis/1f3a7.png new file mode 100644 index 0000000000000..847afe56c82fa Binary files /dev/null and b/site/static/emojis/1f3a7.png differ diff --git a/site/static/emojis/1f3a8.png b/site/static/emojis/1f3a8.png new file mode 100644 index 0000000000000..1dda3e0c6ef66 Binary files /dev/null and b/site/static/emojis/1f3a8.png differ diff --git a/site/static/emojis/1f3a9.png b/site/static/emojis/1f3a9.png new file mode 100644 index 0000000000000..6698169056144 Binary files /dev/null and b/site/static/emojis/1f3a9.png differ diff --git a/site/static/emojis/1f3aa.png b/site/static/emojis/1f3aa.png new file mode 100644 index 0000000000000..685c18bfb0fb4 Binary files /dev/null and b/site/static/emojis/1f3aa.png differ diff --git a/site/static/emojis/1f3ab.png b/site/static/emojis/1f3ab.png new file mode 100644 index 0000000000000..072235f16e60c Binary files /dev/null and b/site/static/emojis/1f3ab.png differ diff --git a/site/static/emojis/1f3ac.png b/site/static/emojis/1f3ac.png new file mode 100644 index 0000000000000..3a45826402247 Binary files /dev/null and b/site/static/emojis/1f3ac.png differ diff --git a/site/static/emojis/1f3ad.png b/site/static/emojis/1f3ad.png new file mode 100644 index 0000000000000..a84cd97a9c410 Binary files /dev/null and b/site/static/emojis/1f3ad.png differ diff --git a/site/static/emojis/1f3ae.png b/site/static/emojis/1f3ae.png new file mode 100644 index 0000000000000..10b366c9fe05c Binary files /dev/null and b/site/static/emojis/1f3ae.png differ diff --git a/site/static/emojis/1f3af.png b/site/static/emojis/1f3af.png new file mode 100644 index 0000000000000..d96b850d3a1a3 Binary files /dev/null and b/site/static/emojis/1f3af.png differ diff --git a/site/static/emojis/1f3b0.png b/site/static/emojis/1f3b0.png new file mode 100644 index 0000000000000..0e7ef1bea1550 Binary files /dev/null and b/site/static/emojis/1f3b0.png differ diff --git a/site/static/emojis/1f3b1.png b/site/static/emojis/1f3b1.png new file mode 100644 index 0000000000000..4905297389c51 Binary files /dev/null and b/site/static/emojis/1f3b1.png differ diff --git a/site/static/emojis/1f3b2.png b/site/static/emojis/1f3b2.png new file mode 100644 index 0000000000000..c70ee4822c0f6 Binary files /dev/null and b/site/static/emojis/1f3b2.png differ diff --git a/site/static/emojis/1f3b3.png b/site/static/emojis/1f3b3.png new file mode 100644 index 0000000000000..d8705bf55c080 Binary files /dev/null and b/site/static/emojis/1f3b3.png differ diff --git a/site/static/emojis/1f3b4.png b/site/static/emojis/1f3b4.png new file mode 100644 index 0000000000000..d6935e19be8b4 Binary files /dev/null and b/site/static/emojis/1f3b4.png differ diff --git a/site/static/emojis/1f3b5.png b/site/static/emojis/1f3b5.png new file mode 100644 index 0000000000000..dde36d4f98582 Binary files /dev/null and b/site/static/emojis/1f3b5.png differ diff --git a/site/static/emojis/1f3b6.png b/site/static/emojis/1f3b6.png new file mode 100644 index 0000000000000..75b6f53721fa7 Binary files /dev/null and b/site/static/emojis/1f3b6.png differ diff --git a/site/static/emojis/1f3b7.png b/site/static/emojis/1f3b7.png new file mode 100644 index 0000000000000..a87468ef84035 Binary files /dev/null and b/site/static/emojis/1f3b7.png differ diff --git a/site/static/emojis/1f3b8.png b/site/static/emojis/1f3b8.png new file mode 100644 index 0000000000000..9e8daae5de33d Binary files /dev/null and b/site/static/emojis/1f3b8.png differ diff --git a/site/static/emojis/1f3b9.png b/site/static/emojis/1f3b9.png new file mode 100644 index 0000000000000..39d91fa106005 Binary files /dev/null and b/site/static/emojis/1f3b9.png differ diff --git a/site/static/emojis/1f3ba.png b/site/static/emojis/1f3ba.png new file mode 100644 index 0000000000000..493a9aa33be55 Binary files /dev/null and b/site/static/emojis/1f3ba.png differ diff --git a/site/static/emojis/1f3bb.png b/site/static/emojis/1f3bb.png new file mode 100644 index 0000000000000..d14c4272acf13 Binary files /dev/null and b/site/static/emojis/1f3bb.png differ diff --git a/site/static/emojis/1f3bc.png b/site/static/emojis/1f3bc.png new file mode 100644 index 0000000000000..9362582b993e7 Binary files /dev/null and b/site/static/emojis/1f3bc.png differ diff --git a/site/static/emojis/1f3bd.png b/site/static/emojis/1f3bd.png new file mode 100644 index 0000000000000..970d4167f4d12 Binary files /dev/null and b/site/static/emojis/1f3bd.png differ diff --git a/site/static/emojis/1f3be.png b/site/static/emojis/1f3be.png new file mode 100644 index 0000000000000..6eb3a19dc991f Binary files /dev/null and b/site/static/emojis/1f3be.png differ diff --git a/site/static/emojis/1f3bf.png b/site/static/emojis/1f3bf.png new file mode 100644 index 0000000000000..c5f5037702720 Binary files /dev/null and b/site/static/emojis/1f3bf.png differ diff --git a/site/static/emojis/1f3c0.png b/site/static/emojis/1f3c0.png new file mode 100644 index 0000000000000..144a5d6acc980 Binary files /dev/null and b/site/static/emojis/1f3c0.png differ diff --git a/site/static/emojis/1f3c1.png b/site/static/emojis/1f3c1.png new file mode 100644 index 0000000000000..31d2215af1325 Binary files /dev/null and b/site/static/emojis/1f3c1.png differ diff --git a/site/static/emojis/1f3c2-1f3fb.png b/site/static/emojis/1f3c2-1f3fb.png new file mode 100644 index 0000000000000..c5f299d31317b Binary files /dev/null and b/site/static/emojis/1f3c2-1f3fb.png differ diff --git a/site/static/emojis/1f3c2-1f3fc.png b/site/static/emojis/1f3c2-1f3fc.png new file mode 100644 index 0000000000000..33a3c3177033d Binary files /dev/null and b/site/static/emojis/1f3c2-1f3fc.png differ diff --git a/site/static/emojis/1f3c2-1f3fd.png b/site/static/emojis/1f3c2-1f3fd.png new file mode 100644 index 0000000000000..bc172a919f500 Binary files /dev/null and b/site/static/emojis/1f3c2-1f3fd.png differ diff --git a/site/static/emojis/1f3c2-1f3fe.png b/site/static/emojis/1f3c2-1f3fe.png new file mode 100644 index 0000000000000..c8800a85d8428 Binary files /dev/null and b/site/static/emojis/1f3c2-1f3fe.png differ diff --git a/site/static/emojis/1f3c2-1f3ff.png b/site/static/emojis/1f3c2-1f3ff.png new file mode 100644 index 0000000000000..f7c766fc07b60 Binary files /dev/null and b/site/static/emojis/1f3c2-1f3ff.png differ diff --git a/site/static/emojis/1f3c2.png b/site/static/emojis/1f3c2.png new file mode 100644 index 0000000000000..4b1baa0376764 Binary files /dev/null and b/site/static/emojis/1f3c2.png differ diff --git a/site/static/emojis/1f3c3-1f3fb-200d-2640-fe0f.png b/site/static/emojis/1f3c3-1f3fb-200d-2640-fe0f.png new file mode 100644 index 0000000000000..1f2be9ceaa683 Binary files /dev/null and b/site/static/emojis/1f3c3-1f3fb-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f3c3-1f3fb-200d-2642-fe0f.png b/site/static/emojis/1f3c3-1f3fb-200d-2642-fe0f.png new file mode 100644 index 0000000000000..5490f5eb8ba1a Binary files /dev/null and b/site/static/emojis/1f3c3-1f3fb-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f3c3-1f3fb.png b/site/static/emojis/1f3c3-1f3fb.png new file mode 100644 index 0000000000000..d412329c358b3 Binary files /dev/null and b/site/static/emojis/1f3c3-1f3fb.png differ diff --git a/site/static/emojis/1f3c3-1f3fc-200d-2640-fe0f.png b/site/static/emojis/1f3c3-1f3fc-200d-2640-fe0f.png new file mode 100644 index 0000000000000..88151f6e4a2fd Binary files /dev/null and b/site/static/emojis/1f3c3-1f3fc-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f3c3-1f3fc-200d-2642-fe0f.png b/site/static/emojis/1f3c3-1f3fc-200d-2642-fe0f.png new file mode 100644 index 0000000000000..21b944bcd4deb Binary files /dev/null and b/site/static/emojis/1f3c3-1f3fc-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f3c3-1f3fc.png b/site/static/emojis/1f3c3-1f3fc.png new file mode 100644 index 0000000000000..1e4be4df88f12 Binary files /dev/null and b/site/static/emojis/1f3c3-1f3fc.png differ diff --git a/site/static/emojis/1f3c3-1f3fd-200d-2640-fe0f.png b/site/static/emojis/1f3c3-1f3fd-200d-2640-fe0f.png new file mode 100644 index 0000000000000..df2f77de89eb9 Binary files /dev/null and b/site/static/emojis/1f3c3-1f3fd-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f3c3-1f3fd-200d-2642-fe0f.png b/site/static/emojis/1f3c3-1f3fd-200d-2642-fe0f.png new file mode 100644 index 0000000000000..200677994c96d Binary files /dev/null and b/site/static/emojis/1f3c3-1f3fd-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f3c3-1f3fd.png b/site/static/emojis/1f3c3-1f3fd.png new file mode 100644 index 0000000000000..949de3d358a61 Binary files /dev/null and b/site/static/emojis/1f3c3-1f3fd.png differ diff --git a/site/static/emojis/1f3c3-1f3fe-200d-2640-fe0f.png b/site/static/emojis/1f3c3-1f3fe-200d-2640-fe0f.png new file mode 100644 index 0000000000000..565f91af86af4 Binary files /dev/null and b/site/static/emojis/1f3c3-1f3fe-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f3c3-1f3fe-200d-2642-fe0f.png b/site/static/emojis/1f3c3-1f3fe-200d-2642-fe0f.png new file mode 100644 index 0000000000000..4965c7bfd078b Binary files /dev/null and b/site/static/emojis/1f3c3-1f3fe-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f3c3-1f3fe.png b/site/static/emojis/1f3c3-1f3fe.png new file mode 100644 index 0000000000000..c4eedcb9e190b Binary files /dev/null and b/site/static/emojis/1f3c3-1f3fe.png differ diff --git a/site/static/emojis/1f3c3-1f3ff-200d-2640-fe0f.png b/site/static/emojis/1f3c3-1f3ff-200d-2640-fe0f.png new file mode 100644 index 0000000000000..1fe6d0da10500 Binary files /dev/null and b/site/static/emojis/1f3c3-1f3ff-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f3c3-1f3ff-200d-2642-fe0f.png b/site/static/emojis/1f3c3-1f3ff-200d-2642-fe0f.png new file mode 100644 index 0000000000000..eead2a81060d2 Binary files /dev/null and b/site/static/emojis/1f3c3-1f3ff-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f3c3-1f3ff.png b/site/static/emojis/1f3c3-1f3ff.png new file mode 100644 index 0000000000000..9cfc207a2aac9 Binary files /dev/null and b/site/static/emojis/1f3c3-1f3ff.png differ diff --git a/site/static/emojis/1f3c3-200d-2640-fe0f.png b/site/static/emojis/1f3c3-200d-2640-fe0f.png new file mode 100644 index 0000000000000..03bfd1f6f7695 Binary files /dev/null and b/site/static/emojis/1f3c3-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f3c3-200d-2642-fe0f.png b/site/static/emojis/1f3c3-200d-2642-fe0f.png new file mode 100644 index 0000000000000..9f4092dc07a88 Binary files /dev/null and b/site/static/emojis/1f3c3-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f3c3.png b/site/static/emojis/1f3c3.png new file mode 100644 index 0000000000000..065711254121b Binary files /dev/null and b/site/static/emojis/1f3c3.png differ diff --git a/site/static/emojis/1f3c4-1f3fb-200d-2640-fe0f.png b/site/static/emojis/1f3c4-1f3fb-200d-2640-fe0f.png new file mode 100644 index 0000000000000..c9877834d2d60 Binary files /dev/null and b/site/static/emojis/1f3c4-1f3fb-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f3c4-1f3fb-200d-2642-fe0f.png b/site/static/emojis/1f3c4-1f3fb-200d-2642-fe0f.png new file mode 100644 index 0000000000000..818f97682d91f Binary files /dev/null and b/site/static/emojis/1f3c4-1f3fb-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f3c4-1f3fb.png b/site/static/emojis/1f3c4-1f3fb.png new file mode 100644 index 0000000000000..483a0737f4e07 Binary files /dev/null and b/site/static/emojis/1f3c4-1f3fb.png differ diff --git a/site/static/emojis/1f3c4-1f3fc-200d-2640-fe0f.png b/site/static/emojis/1f3c4-1f3fc-200d-2640-fe0f.png new file mode 100644 index 0000000000000..7f60894535e6b Binary files /dev/null and b/site/static/emojis/1f3c4-1f3fc-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f3c4-1f3fc-200d-2642-fe0f.png b/site/static/emojis/1f3c4-1f3fc-200d-2642-fe0f.png new file mode 100644 index 0000000000000..dfa13101f5e06 Binary files /dev/null and b/site/static/emojis/1f3c4-1f3fc-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f3c4-1f3fc.png b/site/static/emojis/1f3c4-1f3fc.png new file mode 100644 index 0000000000000..ad55c3b4b8b00 Binary files /dev/null and b/site/static/emojis/1f3c4-1f3fc.png differ diff --git a/site/static/emojis/1f3c4-1f3fd-200d-2640-fe0f.png b/site/static/emojis/1f3c4-1f3fd-200d-2640-fe0f.png new file mode 100644 index 0000000000000..6044602f24c81 Binary files /dev/null and b/site/static/emojis/1f3c4-1f3fd-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f3c4-1f3fd-200d-2642-fe0f.png b/site/static/emojis/1f3c4-1f3fd-200d-2642-fe0f.png new file mode 100644 index 0000000000000..d0c5918e95822 Binary files /dev/null and b/site/static/emojis/1f3c4-1f3fd-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f3c4-1f3fd.png b/site/static/emojis/1f3c4-1f3fd.png new file mode 100644 index 0000000000000..84672394fd16c Binary files /dev/null and b/site/static/emojis/1f3c4-1f3fd.png differ diff --git a/site/static/emojis/1f3c4-1f3fe-200d-2640-fe0f.png b/site/static/emojis/1f3c4-1f3fe-200d-2640-fe0f.png new file mode 100644 index 0000000000000..db8f4ee6131c5 Binary files /dev/null and b/site/static/emojis/1f3c4-1f3fe-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f3c4-1f3fe-200d-2642-fe0f.png b/site/static/emojis/1f3c4-1f3fe-200d-2642-fe0f.png new file mode 100644 index 0000000000000..db6ce1687d40e Binary files /dev/null and b/site/static/emojis/1f3c4-1f3fe-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f3c4-1f3fe.png b/site/static/emojis/1f3c4-1f3fe.png new file mode 100644 index 0000000000000..736316e609d08 Binary files /dev/null and b/site/static/emojis/1f3c4-1f3fe.png differ diff --git a/site/static/emojis/1f3c4-1f3ff-200d-2640-fe0f.png b/site/static/emojis/1f3c4-1f3ff-200d-2640-fe0f.png new file mode 100644 index 0000000000000..45a3620fc01cb Binary files /dev/null and b/site/static/emojis/1f3c4-1f3ff-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f3c4-1f3ff-200d-2642-fe0f.png b/site/static/emojis/1f3c4-1f3ff-200d-2642-fe0f.png new file mode 100644 index 0000000000000..f863def125709 Binary files /dev/null and b/site/static/emojis/1f3c4-1f3ff-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f3c4-1f3ff.png b/site/static/emojis/1f3c4-1f3ff.png new file mode 100644 index 0000000000000..4f3f5b216cf6f Binary files /dev/null and b/site/static/emojis/1f3c4-1f3ff.png differ diff --git a/site/static/emojis/1f3c4-200d-2640-fe0f.png b/site/static/emojis/1f3c4-200d-2640-fe0f.png new file mode 100644 index 0000000000000..c11a60b08be37 Binary files /dev/null and b/site/static/emojis/1f3c4-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f3c4-200d-2642-fe0f.png b/site/static/emojis/1f3c4-200d-2642-fe0f.png new file mode 100644 index 0000000000000..82ffd6cb5a41a Binary files /dev/null and b/site/static/emojis/1f3c4-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f3c4.png b/site/static/emojis/1f3c4.png new file mode 100644 index 0000000000000..5f0626a59b975 Binary files /dev/null and b/site/static/emojis/1f3c4.png differ diff --git a/site/static/emojis/1f3c5.png b/site/static/emojis/1f3c5.png new file mode 100644 index 0000000000000..b19a9ac56de50 Binary files /dev/null and b/site/static/emojis/1f3c5.png differ diff --git a/site/static/emojis/1f3c6.png b/site/static/emojis/1f3c6.png new file mode 100644 index 0000000000000..cd4438f90e405 Binary files /dev/null and b/site/static/emojis/1f3c6.png differ diff --git a/site/static/emojis/1f3c7-1f3fb.png b/site/static/emojis/1f3c7-1f3fb.png new file mode 100644 index 0000000000000..67053c98fdecb Binary files /dev/null and b/site/static/emojis/1f3c7-1f3fb.png differ diff --git a/site/static/emojis/1f3c7-1f3fc.png b/site/static/emojis/1f3c7-1f3fc.png new file mode 100644 index 0000000000000..83eed6ee1a0f8 Binary files /dev/null and b/site/static/emojis/1f3c7-1f3fc.png differ diff --git a/site/static/emojis/1f3c7-1f3fd.png b/site/static/emojis/1f3c7-1f3fd.png new file mode 100644 index 0000000000000..79d25a9411fd9 Binary files /dev/null and b/site/static/emojis/1f3c7-1f3fd.png differ diff --git a/site/static/emojis/1f3c7-1f3fe.png b/site/static/emojis/1f3c7-1f3fe.png new file mode 100644 index 0000000000000..70a05d74b4950 Binary files /dev/null and b/site/static/emojis/1f3c7-1f3fe.png differ diff --git a/site/static/emojis/1f3c7-1f3ff.png b/site/static/emojis/1f3c7-1f3ff.png new file mode 100644 index 0000000000000..be6aa30fcdf20 Binary files /dev/null and b/site/static/emojis/1f3c7-1f3ff.png differ diff --git a/site/static/emojis/1f3c7.png b/site/static/emojis/1f3c7.png new file mode 100644 index 0000000000000..904d7ea3865fc Binary files /dev/null and b/site/static/emojis/1f3c7.png differ diff --git a/site/static/emojis/1f3c8.png b/site/static/emojis/1f3c8.png new file mode 100644 index 0000000000000..4ff4d5e43a88e Binary files /dev/null and b/site/static/emojis/1f3c8.png differ diff --git a/site/static/emojis/1f3c9.png b/site/static/emojis/1f3c9.png new file mode 100644 index 0000000000000..1d533f99d68cd Binary files /dev/null and b/site/static/emojis/1f3c9.png differ diff --git a/site/static/emojis/1f3ca-1f3fb-200d-2640-fe0f.png b/site/static/emojis/1f3ca-1f3fb-200d-2640-fe0f.png new file mode 100644 index 0000000000000..3c424f3fc735a Binary files /dev/null and b/site/static/emojis/1f3ca-1f3fb-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f3ca-1f3fb-200d-2642-fe0f.png b/site/static/emojis/1f3ca-1f3fb-200d-2642-fe0f.png new file mode 100644 index 0000000000000..d303f285b8510 Binary files /dev/null and b/site/static/emojis/1f3ca-1f3fb-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f3ca-1f3fb.png b/site/static/emojis/1f3ca-1f3fb.png new file mode 100644 index 0000000000000..6d020a4d05d61 Binary files /dev/null and b/site/static/emojis/1f3ca-1f3fb.png differ diff --git a/site/static/emojis/1f3ca-1f3fc-200d-2640-fe0f.png b/site/static/emojis/1f3ca-1f3fc-200d-2640-fe0f.png new file mode 100644 index 0000000000000..1b3c39293ef51 Binary files /dev/null and b/site/static/emojis/1f3ca-1f3fc-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f3ca-1f3fc-200d-2642-fe0f.png b/site/static/emojis/1f3ca-1f3fc-200d-2642-fe0f.png new file mode 100644 index 0000000000000..4da544a7b6b7a Binary files /dev/null and b/site/static/emojis/1f3ca-1f3fc-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f3ca-1f3fc.png b/site/static/emojis/1f3ca-1f3fc.png new file mode 100644 index 0000000000000..b14a6b19a4b50 Binary files /dev/null and b/site/static/emojis/1f3ca-1f3fc.png differ diff --git a/site/static/emojis/1f3ca-1f3fd-200d-2640-fe0f.png b/site/static/emojis/1f3ca-1f3fd-200d-2640-fe0f.png new file mode 100644 index 0000000000000..ed8eab168284f Binary files /dev/null and b/site/static/emojis/1f3ca-1f3fd-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f3ca-1f3fd-200d-2642-fe0f.png b/site/static/emojis/1f3ca-1f3fd-200d-2642-fe0f.png new file mode 100644 index 0000000000000..487bf485079dd Binary files /dev/null and b/site/static/emojis/1f3ca-1f3fd-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f3ca-1f3fd.png b/site/static/emojis/1f3ca-1f3fd.png new file mode 100644 index 0000000000000..76026bed759c7 Binary files /dev/null and b/site/static/emojis/1f3ca-1f3fd.png differ diff --git a/site/static/emojis/1f3ca-1f3fe-200d-2640-fe0f.png b/site/static/emojis/1f3ca-1f3fe-200d-2640-fe0f.png new file mode 100644 index 0000000000000..bd1d02a4a6ded Binary files /dev/null and b/site/static/emojis/1f3ca-1f3fe-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f3ca-1f3fe-200d-2642-fe0f.png b/site/static/emojis/1f3ca-1f3fe-200d-2642-fe0f.png new file mode 100644 index 0000000000000..1e605881619e8 Binary files /dev/null and b/site/static/emojis/1f3ca-1f3fe-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f3ca-1f3fe.png b/site/static/emojis/1f3ca-1f3fe.png new file mode 100644 index 0000000000000..d40f61b1b7206 Binary files /dev/null and b/site/static/emojis/1f3ca-1f3fe.png differ diff --git a/site/static/emojis/1f3ca-1f3ff-200d-2640-fe0f.png b/site/static/emojis/1f3ca-1f3ff-200d-2640-fe0f.png new file mode 100644 index 0000000000000..c7bd85610ad12 Binary files /dev/null and b/site/static/emojis/1f3ca-1f3ff-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f3ca-1f3ff-200d-2642-fe0f.png b/site/static/emojis/1f3ca-1f3ff-200d-2642-fe0f.png new file mode 100644 index 0000000000000..a9dd7d3dc8e15 Binary files /dev/null and b/site/static/emojis/1f3ca-1f3ff-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f3ca-1f3ff.png b/site/static/emojis/1f3ca-1f3ff.png new file mode 100644 index 0000000000000..95eac61bcc98f Binary files /dev/null and b/site/static/emojis/1f3ca-1f3ff.png differ diff --git a/site/static/emojis/1f3ca-200d-2640-fe0f.png b/site/static/emojis/1f3ca-200d-2640-fe0f.png new file mode 100644 index 0000000000000..5f3f0483fccd9 Binary files /dev/null and b/site/static/emojis/1f3ca-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f3ca-200d-2642-fe0f.png b/site/static/emojis/1f3ca-200d-2642-fe0f.png new file mode 100644 index 0000000000000..f2c1433306cd2 Binary files /dev/null and b/site/static/emojis/1f3ca-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f3ca.png b/site/static/emojis/1f3ca.png new file mode 100644 index 0000000000000..c2896f43cc306 Binary files /dev/null and b/site/static/emojis/1f3ca.png differ diff --git a/site/static/emojis/1f3cb-1f3fb-200d-2640-fe0f.png b/site/static/emojis/1f3cb-1f3fb-200d-2640-fe0f.png new file mode 100644 index 0000000000000..df2b83f1e36fd Binary files /dev/null and b/site/static/emojis/1f3cb-1f3fb-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f3cb-1f3fb-200d-2642-fe0f.png b/site/static/emojis/1f3cb-1f3fb-200d-2642-fe0f.png new file mode 100644 index 0000000000000..660634c312091 Binary files /dev/null and b/site/static/emojis/1f3cb-1f3fb-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f3cb-1f3fb.png b/site/static/emojis/1f3cb-1f3fb.png new file mode 100644 index 0000000000000..2955cf95e635b Binary files /dev/null and b/site/static/emojis/1f3cb-1f3fb.png differ diff --git a/site/static/emojis/1f3cb-1f3fc-200d-2640-fe0f.png b/site/static/emojis/1f3cb-1f3fc-200d-2640-fe0f.png new file mode 100644 index 0000000000000..647848baaa4ab Binary files /dev/null and b/site/static/emojis/1f3cb-1f3fc-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f3cb-1f3fc-200d-2642-fe0f.png b/site/static/emojis/1f3cb-1f3fc-200d-2642-fe0f.png new file mode 100644 index 0000000000000..4ed8a9b2f6259 Binary files /dev/null and b/site/static/emojis/1f3cb-1f3fc-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f3cb-1f3fc.png b/site/static/emojis/1f3cb-1f3fc.png new file mode 100644 index 0000000000000..2a9af4a4c0c3e Binary files /dev/null and b/site/static/emojis/1f3cb-1f3fc.png differ diff --git a/site/static/emojis/1f3cb-1f3fd-200d-2640-fe0f.png b/site/static/emojis/1f3cb-1f3fd-200d-2640-fe0f.png new file mode 100644 index 0000000000000..c6e02767865a7 Binary files /dev/null and b/site/static/emojis/1f3cb-1f3fd-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f3cb-1f3fd-200d-2642-fe0f.png b/site/static/emojis/1f3cb-1f3fd-200d-2642-fe0f.png new file mode 100644 index 0000000000000..18216413f2674 Binary files /dev/null and b/site/static/emojis/1f3cb-1f3fd-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f3cb-1f3fd.png b/site/static/emojis/1f3cb-1f3fd.png new file mode 100644 index 0000000000000..4be445c6d70ba Binary files /dev/null and b/site/static/emojis/1f3cb-1f3fd.png differ diff --git a/site/static/emojis/1f3cb-1f3fe-200d-2640-fe0f.png b/site/static/emojis/1f3cb-1f3fe-200d-2640-fe0f.png new file mode 100644 index 0000000000000..94a62125fa37e Binary files /dev/null and b/site/static/emojis/1f3cb-1f3fe-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f3cb-1f3fe-200d-2642-fe0f.png b/site/static/emojis/1f3cb-1f3fe-200d-2642-fe0f.png new file mode 100644 index 0000000000000..8ceeb5ef3eda9 Binary files /dev/null and b/site/static/emojis/1f3cb-1f3fe-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f3cb-1f3fe.png b/site/static/emojis/1f3cb-1f3fe.png new file mode 100644 index 0000000000000..3c05ac275ae2d Binary files /dev/null and b/site/static/emojis/1f3cb-1f3fe.png differ diff --git a/site/static/emojis/1f3cb-1f3ff-200d-2640-fe0f.png b/site/static/emojis/1f3cb-1f3ff-200d-2640-fe0f.png new file mode 100644 index 0000000000000..4e0d6d8df576c Binary files /dev/null and b/site/static/emojis/1f3cb-1f3ff-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f3cb-1f3ff-200d-2642-fe0f.png b/site/static/emojis/1f3cb-1f3ff-200d-2642-fe0f.png new file mode 100644 index 0000000000000..6e500d5cdb04a Binary files /dev/null and b/site/static/emojis/1f3cb-1f3ff-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f3cb-1f3ff.png b/site/static/emojis/1f3cb-1f3ff.png new file mode 100644 index 0000000000000..3b4b183bea008 Binary files /dev/null and b/site/static/emojis/1f3cb-1f3ff.png differ diff --git a/site/static/emojis/1f3cb-fe0f-200d-2640-fe0f.png b/site/static/emojis/1f3cb-fe0f-200d-2640-fe0f.png new file mode 100644 index 0000000000000..1478cc88ba73a Binary files /dev/null and b/site/static/emojis/1f3cb-fe0f-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f3cb-fe0f-200d-2642-fe0f.png b/site/static/emojis/1f3cb-fe0f-200d-2642-fe0f.png new file mode 100644 index 0000000000000..876096a509baf Binary files /dev/null and b/site/static/emojis/1f3cb-fe0f-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f3cb.png b/site/static/emojis/1f3cb.png new file mode 100644 index 0000000000000..dcdf5fd270094 Binary files /dev/null and b/site/static/emojis/1f3cb.png differ diff --git a/site/static/emojis/1f3cc-1f3fb-200d-2640-fe0f.png b/site/static/emojis/1f3cc-1f3fb-200d-2640-fe0f.png new file mode 100644 index 0000000000000..1c176850f4b71 Binary files /dev/null and b/site/static/emojis/1f3cc-1f3fb-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f3cc-1f3fb-200d-2642-fe0f.png b/site/static/emojis/1f3cc-1f3fb-200d-2642-fe0f.png new file mode 100644 index 0000000000000..a6d86bbe18c62 Binary files /dev/null and b/site/static/emojis/1f3cc-1f3fb-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f3cc-1f3fb.png b/site/static/emojis/1f3cc-1f3fb.png new file mode 100644 index 0000000000000..ada62af9cea81 Binary files /dev/null and b/site/static/emojis/1f3cc-1f3fb.png differ diff --git a/site/static/emojis/1f3cc-1f3fc-200d-2640-fe0f.png b/site/static/emojis/1f3cc-1f3fc-200d-2640-fe0f.png new file mode 100644 index 0000000000000..e1be1ec2549a2 Binary files /dev/null and b/site/static/emojis/1f3cc-1f3fc-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f3cc-1f3fc-200d-2642-fe0f.png b/site/static/emojis/1f3cc-1f3fc-200d-2642-fe0f.png new file mode 100644 index 0000000000000..d480b6bce168b Binary files /dev/null and b/site/static/emojis/1f3cc-1f3fc-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f3cc-1f3fc.png b/site/static/emojis/1f3cc-1f3fc.png new file mode 100644 index 0000000000000..7aba672350710 Binary files /dev/null and b/site/static/emojis/1f3cc-1f3fc.png differ diff --git a/site/static/emojis/1f3cc-1f3fd-200d-2640-fe0f.png b/site/static/emojis/1f3cc-1f3fd-200d-2640-fe0f.png new file mode 100644 index 0000000000000..a31793fcd3e4c Binary files /dev/null and b/site/static/emojis/1f3cc-1f3fd-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f3cc-1f3fd-200d-2642-fe0f.png b/site/static/emojis/1f3cc-1f3fd-200d-2642-fe0f.png new file mode 100644 index 0000000000000..29bae8f98ab5a Binary files /dev/null and b/site/static/emojis/1f3cc-1f3fd-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f3cc-1f3fd.png b/site/static/emojis/1f3cc-1f3fd.png new file mode 100644 index 0000000000000..cd31ce995d92c Binary files /dev/null and b/site/static/emojis/1f3cc-1f3fd.png differ diff --git a/site/static/emojis/1f3cc-1f3fe-200d-2640-fe0f.png b/site/static/emojis/1f3cc-1f3fe-200d-2640-fe0f.png new file mode 100644 index 0000000000000..f8eb7fabd56b8 Binary files /dev/null and b/site/static/emojis/1f3cc-1f3fe-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f3cc-1f3fe-200d-2642-fe0f.png b/site/static/emojis/1f3cc-1f3fe-200d-2642-fe0f.png new file mode 100644 index 0000000000000..f7dcada7af98f Binary files /dev/null and b/site/static/emojis/1f3cc-1f3fe-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f3cc-1f3fe.png b/site/static/emojis/1f3cc-1f3fe.png new file mode 100644 index 0000000000000..811b8bf83d8d3 Binary files /dev/null and b/site/static/emojis/1f3cc-1f3fe.png differ diff --git a/site/static/emojis/1f3cc-1f3ff-200d-2640-fe0f.png b/site/static/emojis/1f3cc-1f3ff-200d-2640-fe0f.png new file mode 100644 index 0000000000000..1381b5fea47cd Binary files /dev/null and b/site/static/emojis/1f3cc-1f3ff-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f3cc-1f3ff-200d-2642-fe0f.png b/site/static/emojis/1f3cc-1f3ff-200d-2642-fe0f.png new file mode 100644 index 0000000000000..5d005621e17b0 Binary files /dev/null and b/site/static/emojis/1f3cc-1f3ff-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f3cc-1f3ff.png b/site/static/emojis/1f3cc-1f3ff.png new file mode 100644 index 0000000000000..77024416bc8fe Binary files /dev/null and b/site/static/emojis/1f3cc-1f3ff.png differ diff --git a/site/static/emojis/1f3cc-fe0f-200d-2640-fe0f.png b/site/static/emojis/1f3cc-fe0f-200d-2640-fe0f.png new file mode 100644 index 0000000000000..92f4457bda7f7 Binary files /dev/null and b/site/static/emojis/1f3cc-fe0f-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f3cc-fe0f-200d-2642-fe0f.png b/site/static/emojis/1f3cc-fe0f-200d-2642-fe0f.png new file mode 100644 index 0000000000000..cda196e7eb5ed Binary files /dev/null and b/site/static/emojis/1f3cc-fe0f-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f3cc.png b/site/static/emojis/1f3cc.png new file mode 100644 index 0000000000000..5816219995b38 Binary files /dev/null and b/site/static/emojis/1f3cc.png differ diff --git a/site/static/emojis/1f3cd.png b/site/static/emojis/1f3cd.png new file mode 100644 index 0000000000000..ac675cf4a04d4 Binary files /dev/null and b/site/static/emojis/1f3cd.png differ diff --git a/site/static/emojis/1f3ce.png b/site/static/emojis/1f3ce.png new file mode 100644 index 0000000000000..732ab9ff2ff1e Binary files /dev/null and b/site/static/emojis/1f3ce.png differ diff --git a/site/static/emojis/1f3cf.png b/site/static/emojis/1f3cf.png new file mode 100644 index 0000000000000..dd330cb80c5b0 Binary files /dev/null and b/site/static/emojis/1f3cf.png differ diff --git a/site/static/emojis/1f3d0.png b/site/static/emojis/1f3d0.png new file mode 100644 index 0000000000000..5836514c037b9 Binary files /dev/null and b/site/static/emojis/1f3d0.png differ diff --git a/site/static/emojis/1f3d1.png b/site/static/emojis/1f3d1.png new file mode 100644 index 0000000000000..a663a0ca6ee1a Binary files /dev/null and b/site/static/emojis/1f3d1.png differ diff --git a/site/static/emojis/1f3d2.png b/site/static/emojis/1f3d2.png new file mode 100644 index 0000000000000..3f7b86896c6c5 Binary files /dev/null and b/site/static/emojis/1f3d2.png differ diff --git a/site/static/emojis/1f3d3.png b/site/static/emojis/1f3d3.png new file mode 100644 index 0000000000000..6d5a36dbf34c9 Binary files /dev/null and b/site/static/emojis/1f3d3.png differ diff --git a/site/static/emojis/1f3d4.png b/site/static/emojis/1f3d4.png new file mode 100644 index 0000000000000..a177f1bad2772 Binary files /dev/null and b/site/static/emojis/1f3d4.png differ diff --git a/site/static/emojis/1f3d5.png b/site/static/emojis/1f3d5.png new file mode 100644 index 0000000000000..73d9df795c248 Binary files /dev/null and b/site/static/emojis/1f3d5.png differ diff --git a/site/static/emojis/1f3d6.png b/site/static/emojis/1f3d6.png new file mode 100644 index 0000000000000..19cf9ce91671d Binary files /dev/null and b/site/static/emojis/1f3d6.png differ diff --git a/site/static/emojis/1f3d7.png b/site/static/emojis/1f3d7.png new file mode 100644 index 0000000000000..0c6e9dffe5d02 Binary files /dev/null and b/site/static/emojis/1f3d7.png differ diff --git a/site/static/emojis/1f3d8.png b/site/static/emojis/1f3d8.png new file mode 100644 index 0000000000000..b4b3bf2eb3a02 Binary files /dev/null and b/site/static/emojis/1f3d8.png differ diff --git a/site/static/emojis/1f3d9.png b/site/static/emojis/1f3d9.png new file mode 100644 index 0000000000000..048591245ffec Binary files /dev/null and b/site/static/emojis/1f3d9.png differ diff --git a/site/static/emojis/1f3da.png b/site/static/emojis/1f3da.png new file mode 100644 index 0000000000000..feb0a214650dd Binary files /dev/null and b/site/static/emojis/1f3da.png differ diff --git a/site/static/emojis/1f3db.png b/site/static/emojis/1f3db.png new file mode 100644 index 0000000000000..e49f54e847393 Binary files /dev/null and b/site/static/emojis/1f3db.png differ diff --git a/site/static/emojis/1f3dc.png b/site/static/emojis/1f3dc.png new file mode 100644 index 0000000000000..7775db168d536 Binary files /dev/null and b/site/static/emojis/1f3dc.png differ diff --git a/site/static/emojis/1f3dd.png b/site/static/emojis/1f3dd.png new file mode 100644 index 0000000000000..c8a6edaab0828 Binary files /dev/null and b/site/static/emojis/1f3dd.png differ diff --git a/site/static/emojis/1f3de.png b/site/static/emojis/1f3de.png new file mode 100644 index 0000000000000..478bacc9c394d Binary files /dev/null and b/site/static/emojis/1f3de.png differ diff --git a/site/static/emojis/1f3df.png b/site/static/emojis/1f3df.png new file mode 100644 index 0000000000000..cef6dead0cbed Binary files /dev/null and b/site/static/emojis/1f3df.png differ diff --git a/site/static/emojis/1f3e0.png b/site/static/emojis/1f3e0.png new file mode 100644 index 0000000000000..a804a62786da3 Binary files /dev/null and b/site/static/emojis/1f3e0.png differ diff --git a/site/static/emojis/1f3e1.png b/site/static/emojis/1f3e1.png new file mode 100644 index 0000000000000..e8eb761a95cbb Binary files /dev/null and b/site/static/emojis/1f3e1.png differ diff --git a/site/static/emojis/1f3e2.png b/site/static/emojis/1f3e2.png new file mode 100644 index 0000000000000..0ad23d8b052a9 Binary files /dev/null and b/site/static/emojis/1f3e2.png differ diff --git a/site/static/emojis/1f3e3.png b/site/static/emojis/1f3e3.png new file mode 100644 index 0000000000000..da0982b011ced Binary files /dev/null and b/site/static/emojis/1f3e3.png differ diff --git a/site/static/emojis/1f3e4.png b/site/static/emojis/1f3e4.png new file mode 100644 index 0000000000000..e1ff2da6365ed Binary files /dev/null and b/site/static/emojis/1f3e4.png differ diff --git a/site/static/emojis/1f3e5.png b/site/static/emojis/1f3e5.png new file mode 100644 index 0000000000000..5781697a90e50 Binary files /dev/null and b/site/static/emojis/1f3e5.png differ diff --git a/site/static/emojis/1f3e6.png b/site/static/emojis/1f3e6.png new file mode 100644 index 0000000000000..011412337e3b5 Binary files /dev/null and b/site/static/emojis/1f3e6.png differ diff --git a/site/static/emojis/1f3e7.png b/site/static/emojis/1f3e7.png new file mode 100644 index 0000000000000..1e36fefdbd05e Binary files /dev/null and b/site/static/emojis/1f3e7.png differ diff --git a/site/static/emojis/1f3e8.png b/site/static/emojis/1f3e8.png new file mode 100644 index 0000000000000..646fe6e42e879 Binary files /dev/null and b/site/static/emojis/1f3e8.png differ diff --git a/site/static/emojis/1f3e9.png b/site/static/emojis/1f3e9.png new file mode 100644 index 0000000000000..6c789fc22a952 Binary files /dev/null and b/site/static/emojis/1f3e9.png differ diff --git a/site/static/emojis/1f3ea.png b/site/static/emojis/1f3ea.png new file mode 100644 index 0000000000000..bb84d3e665870 Binary files /dev/null and b/site/static/emojis/1f3ea.png differ diff --git a/site/static/emojis/1f3eb.png b/site/static/emojis/1f3eb.png new file mode 100644 index 0000000000000..ae15884cc2cbe Binary files /dev/null and b/site/static/emojis/1f3eb.png differ diff --git a/site/static/emojis/1f3ec.png b/site/static/emojis/1f3ec.png new file mode 100644 index 0000000000000..5c94977ebd583 Binary files /dev/null and b/site/static/emojis/1f3ec.png differ diff --git a/site/static/emojis/1f3ed.png b/site/static/emojis/1f3ed.png new file mode 100644 index 0000000000000..555c8a7ed5081 Binary files /dev/null and b/site/static/emojis/1f3ed.png differ diff --git a/site/static/emojis/1f3ee.png b/site/static/emojis/1f3ee.png new file mode 100644 index 0000000000000..a6e883285de65 Binary files /dev/null and b/site/static/emojis/1f3ee.png differ diff --git a/site/static/emojis/1f3ef.png b/site/static/emojis/1f3ef.png new file mode 100644 index 0000000000000..3819a53812a20 Binary files /dev/null and b/site/static/emojis/1f3ef.png differ diff --git a/site/static/emojis/1f3f0.png b/site/static/emojis/1f3f0.png new file mode 100644 index 0000000000000..78bc6200ca80b Binary files /dev/null and b/site/static/emojis/1f3f0.png differ diff --git a/site/static/emojis/1f3f3-fe0f-200d-1f308.png b/site/static/emojis/1f3f3-fe0f-200d-1f308.png new file mode 100644 index 0000000000000..a79b58c8c1e1c Binary files /dev/null and b/site/static/emojis/1f3f3-fe0f-200d-1f308.png differ diff --git a/site/static/emojis/1f3f3-fe0f-200d-26a7-fe0f.png b/site/static/emojis/1f3f3-fe0f-200d-26a7-fe0f.png new file mode 100644 index 0000000000000..8994b2d055939 Binary files /dev/null and b/site/static/emojis/1f3f3-fe0f-200d-26a7-fe0f.png differ diff --git a/site/static/emojis/1f3f3.png b/site/static/emojis/1f3f3.png new file mode 100644 index 0000000000000..49317273b4b71 Binary files /dev/null and b/site/static/emojis/1f3f3.png differ diff --git a/site/static/emojis/1f3f4-200d-2620-fe0f.png b/site/static/emojis/1f3f4-200d-2620-fe0f.png new file mode 100644 index 0000000000000..f5fc239943f3d Binary files /dev/null and b/site/static/emojis/1f3f4-200d-2620-fe0f.png differ diff --git a/site/static/emojis/1f3f4-e0067-e0062-e0065-e006e-e0067-e007f.png b/site/static/emojis/1f3f4-e0067-e0062-e0065-e006e-e0067-e007f.png new file mode 100644 index 0000000000000..fcdd94aa9ddd0 Binary files /dev/null and b/site/static/emojis/1f3f4-e0067-e0062-e0065-e006e-e0067-e007f.png differ diff --git a/site/static/emojis/1f3f4-e0067-e0062-e0073-e0063-e0074-e007f.png b/site/static/emojis/1f3f4-e0067-e0062-e0073-e0063-e0074-e007f.png new file mode 100644 index 0000000000000..05a827ffd0181 Binary files /dev/null and b/site/static/emojis/1f3f4-e0067-e0062-e0073-e0063-e0074-e007f.png differ diff --git a/site/static/emojis/1f3f4-e0067-e0062-e0077-e006c-e0073-e007f.png b/site/static/emojis/1f3f4-e0067-e0062-e0077-e006c-e0073-e007f.png new file mode 100644 index 0000000000000..0370dbf4329e3 Binary files /dev/null and b/site/static/emojis/1f3f4-e0067-e0062-e0077-e006c-e0073-e007f.png differ diff --git a/site/static/emojis/1f3f4.png b/site/static/emojis/1f3f4.png new file mode 100644 index 0000000000000..71a7af8304961 Binary files /dev/null and b/site/static/emojis/1f3f4.png differ diff --git a/site/static/emojis/1f3f5.png b/site/static/emojis/1f3f5.png new file mode 100644 index 0000000000000..0ba33a90519b0 Binary files /dev/null and b/site/static/emojis/1f3f5.png differ diff --git a/site/static/emojis/1f3f7.png b/site/static/emojis/1f3f7.png new file mode 100644 index 0000000000000..355b9e375daa6 Binary files /dev/null and b/site/static/emojis/1f3f7.png differ diff --git a/site/static/emojis/1f3f8.png b/site/static/emojis/1f3f8.png new file mode 100644 index 0000000000000..1e0a95a1805fd Binary files /dev/null and b/site/static/emojis/1f3f8.png differ diff --git a/site/static/emojis/1f3f9.png b/site/static/emojis/1f3f9.png new file mode 100644 index 0000000000000..87dea7a59485f Binary files /dev/null and b/site/static/emojis/1f3f9.png differ diff --git a/site/static/emojis/1f3fa.png b/site/static/emojis/1f3fa.png new file mode 100644 index 0000000000000..83caa8d10814d Binary files /dev/null and b/site/static/emojis/1f3fa.png differ diff --git a/site/static/emojis/1f3fb.png b/site/static/emojis/1f3fb.png new file mode 100644 index 0000000000000..84f81dfcfb533 Binary files /dev/null and b/site/static/emojis/1f3fb.png differ diff --git a/site/static/emojis/1f3fc.png b/site/static/emojis/1f3fc.png new file mode 100644 index 0000000000000..e9e39e53fdf58 Binary files /dev/null and b/site/static/emojis/1f3fc.png differ diff --git a/site/static/emojis/1f3fd.png b/site/static/emojis/1f3fd.png new file mode 100644 index 0000000000000..661cfc2e58d74 Binary files /dev/null and b/site/static/emojis/1f3fd.png differ diff --git a/site/static/emojis/1f3fe.png b/site/static/emojis/1f3fe.png new file mode 100644 index 0000000000000..5001b8017d0fa Binary files /dev/null and b/site/static/emojis/1f3fe.png differ diff --git a/site/static/emojis/1f3ff.png b/site/static/emojis/1f3ff.png new file mode 100644 index 0000000000000..bc2c6e58fb8e7 Binary files /dev/null and b/site/static/emojis/1f3ff.png differ diff --git a/site/static/emojis/1f400.png b/site/static/emojis/1f400.png new file mode 100644 index 0000000000000..a2150f2d3b930 Binary files /dev/null and b/site/static/emojis/1f400.png differ diff --git a/site/static/emojis/1f401.png b/site/static/emojis/1f401.png new file mode 100644 index 0000000000000..e2509b0729957 Binary files /dev/null and b/site/static/emojis/1f401.png differ diff --git a/site/static/emojis/1f402.png b/site/static/emojis/1f402.png new file mode 100644 index 0000000000000..e20bd7d42b797 Binary files /dev/null and b/site/static/emojis/1f402.png differ diff --git a/site/static/emojis/1f403.png b/site/static/emojis/1f403.png new file mode 100644 index 0000000000000..ced075f6af9e0 Binary files /dev/null and b/site/static/emojis/1f403.png differ diff --git a/site/static/emojis/1f404.png b/site/static/emojis/1f404.png new file mode 100644 index 0000000000000..bb0e16c3c36c8 Binary files /dev/null and b/site/static/emojis/1f404.png differ diff --git a/site/static/emojis/1f405.png b/site/static/emojis/1f405.png new file mode 100644 index 0000000000000..eb20e615c52ee Binary files /dev/null and b/site/static/emojis/1f405.png differ diff --git a/site/static/emojis/1f406.png b/site/static/emojis/1f406.png new file mode 100644 index 0000000000000..2f019b86e5df8 Binary files /dev/null and b/site/static/emojis/1f406.png differ diff --git a/site/static/emojis/1f407.png b/site/static/emojis/1f407.png new file mode 100644 index 0000000000000..afbdaf3b0d422 Binary files /dev/null and b/site/static/emojis/1f407.png differ diff --git a/site/static/emojis/1f408-200d-2b1b.png b/site/static/emojis/1f408-200d-2b1b.png new file mode 100644 index 0000000000000..b8fe4db9e294e Binary files /dev/null and b/site/static/emojis/1f408-200d-2b1b.png differ diff --git a/site/static/emojis/1f408.png b/site/static/emojis/1f408.png new file mode 100644 index 0000000000000..f92e1aad845b9 Binary files /dev/null and b/site/static/emojis/1f408.png differ diff --git a/site/static/emojis/1f409.png b/site/static/emojis/1f409.png new file mode 100644 index 0000000000000..824e37d940b26 Binary files /dev/null and b/site/static/emojis/1f409.png differ diff --git a/site/static/emojis/1f40a.png b/site/static/emojis/1f40a.png new file mode 100644 index 0000000000000..8e15d44959cc1 Binary files /dev/null and b/site/static/emojis/1f40a.png differ diff --git a/site/static/emojis/1f40b.png b/site/static/emojis/1f40b.png new file mode 100644 index 0000000000000..c103c6ef3864b Binary files /dev/null and b/site/static/emojis/1f40b.png differ diff --git a/site/static/emojis/1f40c.png b/site/static/emojis/1f40c.png new file mode 100644 index 0000000000000..898bdd1b192ff Binary files /dev/null and b/site/static/emojis/1f40c.png differ diff --git a/site/static/emojis/1f40d.png b/site/static/emojis/1f40d.png new file mode 100644 index 0000000000000..920bc69382c55 Binary files /dev/null and b/site/static/emojis/1f40d.png differ diff --git a/site/static/emojis/1f40e.png b/site/static/emojis/1f40e.png new file mode 100644 index 0000000000000..dc91a0d91ff4d Binary files /dev/null and b/site/static/emojis/1f40e.png differ diff --git a/site/static/emojis/1f40f.png b/site/static/emojis/1f40f.png new file mode 100644 index 0000000000000..96380f1497147 Binary files /dev/null and b/site/static/emojis/1f40f.png differ diff --git a/site/static/emojis/1f410.png b/site/static/emojis/1f410.png new file mode 100644 index 0000000000000..696e91c93a721 Binary files /dev/null and b/site/static/emojis/1f410.png differ diff --git a/site/static/emojis/1f411.png b/site/static/emojis/1f411.png new file mode 100644 index 0000000000000..f803dd80b80b6 Binary files /dev/null and b/site/static/emojis/1f411.png differ diff --git a/site/static/emojis/1f412.png b/site/static/emojis/1f412.png new file mode 100644 index 0000000000000..cf52ab1518ffc Binary files /dev/null and b/site/static/emojis/1f412.png differ diff --git a/site/static/emojis/1f413.png b/site/static/emojis/1f413.png new file mode 100644 index 0000000000000..61a94d4729388 Binary files /dev/null and b/site/static/emojis/1f413.png differ diff --git a/site/static/emojis/1f414.png b/site/static/emojis/1f414.png new file mode 100644 index 0000000000000..b6cfed1f66820 Binary files /dev/null and b/site/static/emojis/1f414.png differ diff --git a/site/static/emojis/1f415-200d-1f9ba.png b/site/static/emojis/1f415-200d-1f9ba.png new file mode 100644 index 0000000000000..f09349e64ed54 Binary files /dev/null and b/site/static/emojis/1f415-200d-1f9ba.png differ diff --git a/site/static/emojis/1f415.png b/site/static/emojis/1f415.png new file mode 100644 index 0000000000000..7c869c487a031 Binary files /dev/null and b/site/static/emojis/1f415.png differ diff --git a/site/static/emojis/1f416.png b/site/static/emojis/1f416.png new file mode 100644 index 0000000000000..1bb3b6e5bc6a2 Binary files /dev/null and b/site/static/emojis/1f416.png differ diff --git a/site/static/emojis/1f417.png b/site/static/emojis/1f417.png new file mode 100644 index 0000000000000..049f5bc9d1bea Binary files /dev/null and b/site/static/emojis/1f417.png differ diff --git a/site/static/emojis/1f418.png b/site/static/emojis/1f418.png new file mode 100644 index 0000000000000..ebc666dce32f3 Binary files /dev/null and b/site/static/emojis/1f418.png differ diff --git a/site/static/emojis/1f419.png b/site/static/emojis/1f419.png new file mode 100644 index 0000000000000..c90c5f4d2368d Binary files /dev/null and b/site/static/emojis/1f419.png differ diff --git a/site/static/emojis/1f41a.png b/site/static/emojis/1f41a.png new file mode 100644 index 0000000000000..496e7a814618f Binary files /dev/null and b/site/static/emojis/1f41a.png differ diff --git a/site/static/emojis/1f41b.png b/site/static/emojis/1f41b.png new file mode 100644 index 0000000000000..6010258f4aed3 Binary files /dev/null and b/site/static/emojis/1f41b.png differ diff --git a/site/static/emojis/1f41c.png b/site/static/emojis/1f41c.png new file mode 100644 index 0000000000000..268571bb0711a Binary files /dev/null and b/site/static/emojis/1f41c.png differ diff --git a/site/static/emojis/1f41d.png b/site/static/emojis/1f41d.png new file mode 100644 index 0000000000000..2440295b91ff9 Binary files /dev/null and b/site/static/emojis/1f41d.png differ diff --git a/site/static/emojis/1f41e.png b/site/static/emojis/1f41e.png new file mode 100644 index 0000000000000..f605bd5d22ce4 Binary files /dev/null and b/site/static/emojis/1f41e.png differ diff --git a/site/static/emojis/1f41f.png b/site/static/emojis/1f41f.png new file mode 100644 index 0000000000000..1d6e90fa6936d Binary files /dev/null and b/site/static/emojis/1f41f.png differ diff --git a/site/static/emojis/1f420.png b/site/static/emojis/1f420.png new file mode 100644 index 0000000000000..5f1e2e5e8eee2 Binary files /dev/null and b/site/static/emojis/1f420.png differ diff --git a/site/static/emojis/1f421.png b/site/static/emojis/1f421.png new file mode 100644 index 0000000000000..1dc9bd9a0e407 Binary files /dev/null and b/site/static/emojis/1f421.png differ diff --git a/site/static/emojis/1f422.png b/site/static/emojis/1f422.png new file mode 100644 index 0000000000000..5253638fea3b9 Binary files /dev/null and b/site/static/emojis/1f422.png differ diff --git a/site/static/emojis/1f423.png b/site/static/emojis/1f423.png new file mode 100644 index 0000000000000..23b0dd1bf4b0a Binary files /dev/null and b/site/static/emojis/1f423.png differ diff --git a/site/static/emojis/1f424.png b/site/static/emojis/1f424.png new file mode 100644 index 0000000000000..bd87c6fac35f0 Binary files /dev/null and b/site/static/emojis/1f424.png differ diff --git a/site/static/emojis/1f425.png b/site/static/emojis/1f425.png new file mode 100644 index 0000000000000..66e7b973b18a9 Binary files /dev/null and b/site/static/emojis/1f425.png differ diff --git a/site/static/emojis/1f426.png b/site/static/emojis/1f426.png new file mode 100644 index 0000000000000..d129ac778f1cb Binary files /dev/null and b/site/static/emojis/1f426.png differ diff --git a/site/static/emojis/1f427.png b/site/static/emojis/1f427.png new file mode 100644 index 0000000000000..2ee0dbc6ae0a4 Binary files /dev/null and b/site/static/emojis/1f427.png differ diff --git a/site/static/emojis/1f428.png b/site/static/emojis/1f428.png new file mode 100644 index 0000000000000..0c2ae778a75e0 Binary files /dev/null and b/site/static/emojis/1f428.png differ diff --git a/site/static/emojis/1f429.png b/site/static/emojis/1f429.png new file mode 100644 index 0000000000000..ebc9aef972f60 Binary files /dev/null and b/site/static/emojis/1f429.png differ diff --git a/site/static/emojis/1f42a.png b/site/static/emojis/1f42a.png new file mode 100644 index 0000000000000..4ede95a2aa38b Binary files /dev/null and b/site/static/emojis/1f42a.png differ diff --git a/site/static/emojis/1f42b.png b/site/static/emojis/1f42b.png new file mode 100644 index 0000000000000..af4a976b32102 Binary files /dev/null and b/site/static/emojis/1f42b.png differ diff --git a/site/static/emojis/1f42c.png b/site/static/emojis/1f42c.png new file mode 100644 index 0000000000000..86b97d8a3cfbd Binary files /dev/null and b/site/static/emojis/1f42c.png differ diff --git a/site/static/emojis/1f42d.png b/site/static/emojis/1f42d.png new file mode 100644 index 0000000000000..fa31afc1b0c9e Binary files /dev/null and b/site/static/emojis/1f42d.png differ diff --git a/site/static/emojis/1f42e.png b/site/static/emojis/1f42e.png new file mode 100644 index 0000000000000..c872a5fe67eae Binary files /dev/null and b/site/static/emojis/1f42e.png differ diff --git a/site/static/emojis/1f42f.png b/site/static/emojis/1f42f.png new file mode 100644 index 0000000000000..cb9915252d66b Binary files /dev/null and b/site/static/emojis/1f42f.png differ diff --git a/site/static/emojis/1f430.png b/site/static/emojis/1f430.png new file mode 100644 index 0000000000000..2397ddd337236 Binary files /dev/null and b/site/static/emojis/1f430.png differ diff --git a/site/static/emojis/1f431.png b/site/static/emojis/1f431.png new file mode 100644 index 0000000000000..292aff7841b64 Binary files /dev/null and b/site/static/emojis/1f431.png differ diff --git a/site/static/emojis/1f432.png b/site/static/emojis/1f432.png new file mode 100644 index 0000000000000..88a42e2fba677 Binary files /dev/null and b/site/static/emojis/1f432.png differ diff --git a/site/static/emojis/1f433.png b/site/static/emojis/1f433.png new file mode 100644 index 0000000000000..1bae0fc3a2c10 Binary files /dev/null and b/site/static/emojis/1f433.png differ diff --git a/site/static/emojis/1f434.png b/site/static/emojis/1f434.png new file mode 100644 index 0000000000000..79d0ba1ee5396 Binary files /dev/null and b/site/static/emojis/1f434.png differ diff --git a/site/static/emojis/1f435.png b/site/static/emojis/1f435.png new file mode 100644 index 0000000000000..780034d553977 Binary files /dev/null and b/site/static/emojis/1f435.png differ diff --git a/site/static/emojis/1f436.png b/site/static/emojis/1f436.png new file mode 100644 index 0000000000000..a4c07a081f6b3 Binary files /dev/null and b/site/static/emojis/1f436.png differ diff --git a/site/static/emojis/1f437.png b/site/static/emojis/1f437.png new file mode 100644 index 0000000000000..1c9215aae2a93 Binary files /dev/null and b/site/static/emojis/1f437.png differ diff --git a/site/static/emojis/1f438.png b/site/static/emojis/1f438.png new file mode 100644 index 0000000000000..9f6185698316b Binary files /dev/null and b/site/static/emojis/1f438.png differ diff --git a/site/static/emojis/1f439.png b/site/static/emojis/1f439.png new file mode 100644 index 0000000000000..70812112441d7 Binary files /dev/null and b/site/static/emojis/1f439.png differ diff --git a/site/static/emojis/1f43a.png b/site/static/emojis/1f43a.png new file mode 100644 index 0000000000000..8f676db32dd3d Binary files /dev/null and b/site/static/emojis/1f43a.png differ diff --git a/site/static/emojis/1f43b-200d-2744-fe0f.png b/site/static/emojis/1f43b-200d-2744-fe0f.png new file mode 100644 index 0000000000000..ac27142489bfd Binary files /dev/null and b/site/static/emojis/1f43b-200d-2744-fe0f.png differ diff --git a/site/static/emojis/1f43b.png b/site/static/emojis/1f43b.png new file mode 100644 index 0000000000000..726115f19eba5 Binary files /dev/null and b/site/static/emojis/1f43b.png differ diff --git a/site/static/emojis/1f43c.png b/site/static/emojis/1f43c.png new file mode 100644 index 0000000000000..e3995ee9389c1 Binary files /dev/null and b/site/static/emojis/1f43c.png differ diff --git a/site/static/emojis/1f43d.png b/site/static/emojis/1f43d.png new file mode 100644 index 0000000000000..1aee7931c026e Binary files /dev/null and b/site/static/emojis/1f43d.png differ diff --git a/site/static/emojis/1f43e.png b/site/static/emojis/1f43e.png new file mode 100644 index 0000000000000..2c6266d248ccf Binary files /dev/null and b/site/static/emojis/1f43e.png differ diff --git a/site/static/emojis/1f43f.png b/site/static/emojis/1f43f.png new file mode 100644 index 0000000000000..4e284b89bb1a7 Binary files /dev/null and b/site/static/emojis/1f43f.png differ diff --git a/site/static/emojis/1f440.png b/site/static/emojis/1f440.png new file mode 100644 index 0000000000000..1b3d0daf01db9 Binary files /dev/null and b/site/static/emojis/1f440.png differ diff --git a/site/static/emojis/1f441-200d-1f5e8.png b/site/static/emojis/1f441-200d-1f5e8.png new file mode 100644 index 0000000000000..515c73a477638 Binary files /dev/null and b/site/static/emojis/1f441-200d-1f5e8.png differ diff --git a/site/static/emojis/1f441.png b/site/static/emojis/1f441.png new file mode 100644 index 0000000000000..9a59d28b09179 Binary files /dev/null and b/site/static/emojis/1f441.png differ diff --git a/site/static/emojis/1f442-1f3fb.png b/site/static/emojis/1f442-1f3fb.png new file mode 100644 index 0000000000000..80566ef86f267 Binary files /dev/null and b/site/static/emojis/1f442-1f3fb.png differ diff --git a/site/static/emojis/1f442-1f3fc.png b/site/static/emojis/1f442-1f3fc.png new file mode 100644 index 0000000000000..a926069af7af0 Binary files /dev/null and b/site/static/emojis/1f442-1f3fc.png differ diff --git a/site/static/emojis/1f442-1f3fd.png b/site/static/emojis/1f442-1f3fd.png new file mode 100644 index 0000000000000..89f758f3bf141 Binary files /dev/null and b/site/static/emojis/1f442-1f3fd.png differ diff --git a/site/static/emojis/1f442-1f3fe.png b/site/static/emojis/1f442-1f3fe.png new file mode 100644 index 0000000000000..997fbb346eda3 Binary files /dev/null and b/site/static/emojis/1f442-1f3fe.png differ diff --git a/site/static/emojis/1f442-1f3ff.png b/site/static/emojis/1f442-1f3ff.png new file mode 100644 index 0000000000000..1b6842c5d88d4 Binary files /dev/null and b/site/static/emojis/1f442-1f3ff.png differ diff --git a/site/static/emojis/1f442.png b/site/static/emojis/1f442.png new file mode 100644 index 0000000000000..d8e2ad76e2b96 Binary files /dev/null and b/site/static/emojis/1f442.png differ diff --git a/site/static/emojis/1f443-1f3fb.png b/site/static/emojis/1f443-1f3fb.png new file mode 100644 index 0000000000000..6aea7ccc76a37 Binary files /dev/null and b/site/static/emojis/1f443-1f3fb.png differ diff --git a/site/static/emojis/1f443-1f3fc.png b/site/static/emojis/1f443-1f3fc.png new file mode 100644 index 0000000000000..76dcb3d7b6864 Binary files /dev/null and b/site/static/emojis/1f443-1f3fc.png differ diff --git a/site/static/emojis/1f443-1f3fd.png b/site/static/emojis/1f443-1f3fd.png new file mode 100644 index 0000000000000..c3a48df0723fb Binary files /dev/null and b/site/static/emojis/1f443-1f3fd.png differ diff --git a/site/static/emojis/1f443-1f3fe.png b/site/static/emojis/1f443-1f3fe.png new file mode 100644 index 0000000000000..946fd2b33083c Binary files /dev/null and b/site/static/emojis/1f443-1f3fe.png differ diff --git a/site/static/emojis/1f443-1f3ff.png b/site/static/emojis/1f443-1f3ff.png new file mode 100644 index 0000000000000..492fdc35d5084 Binary files /dev/null and b/site/static/emojis/1f443-1f3ff.png differ diff --git a/site/static/emojis/1f443.png b/site/static/emojis/1f443.png new file mode 100644 index 0000000000000..ece7bb8dd8df7 Binary files /dev/null and b/site/static/emojis/1f443.png differ diff --git a/site/static/emojis/1f444.png b/site/static/emojis/1f444.png new file mode 100644 index 0000000000000..16dbe112fe0de Binary files /dev/null and b/site/static/emojis/1f444.png differ diff --git a/site/static/emojis/1f445.png b/site/static/emojis/1f445.png new file mode 100644 index 0000000000000..441866f0a7296 Binary files /dev/null and b/site/static/emojis/1f445.png differ diff --git a/site/static/emojis/1f446-1f3fb.png b/site/static/emojis/1f446-1f3fb.png new file mode 100644 index 0000000000000..024353211d855 Binary files /dev/null and b/site/static/emojis/1f446-1f3fb.png differ diff --git a/site/static/emojis/1f446-1f3fc.png b/site/static/emojis/1f446-1f3fc.png new file mode 100644 index 0000000000000..8fe07a76f14af Binary files /dev/null and b/site/static/emojis/1f446-1f3fc.png differ diff --git a/site/static/emojis/1f446-1f3fd.png b/site/static/emojis/1f446-1f3fd.png new file mode 100644 index 0000000000000..7e795d6695522 Binary files /dev/null and b/site/static/emojis/1f446-1f3fd.png differ diff --git a/site/static/emojis/1f446-1f3fe.png b/site/static/emojis/1f446-1f3fe.png new file mode 100644 index 0000000000000..c3b63731787ad Binary files /dev/null and b/site/static/emojis/1f446-1f3fe.png differ diff --git a/site/static/emojis/1f446-1f3ff.png b/site/static/emojis/1f446-1f3ff.png new file mode 100644 index 0000000000000..9df30a7730c11 Binary files /dev/null and b/site/static/emojis/1f446-1f3ff.png differ diff --git a/site/static/emojis/1f446.png b/site/static/emojis/1f446.png new file mode 100644 index 0000000000000..8a5dfb10b0c3e Binary files /dev/null and b/site/static/emojis/1f446.png differ diff --git a/site/static/emojis/1f447-1f3fb.png b/site/static/emojis/1f447-1f3fb.png new file mode 100644 index 0000000000000..9b87944e1c7ff Binary files /dev/null and b/site/static/emojis/1f447-1f3fb.png differ diff --git a/site/static/emojis/1f447-1f3fc.png b/site/static/emojis/1f447-1f3fc.png new file mode 100644 index 0000000000000..05da2e0ef6319 Binary files /dev/null and b/site/static/emojis/1f447-1f3fc.png differ diff --git a/site/static/emojis/1f447-1f3fd.png b/site/static/emojis/1f447-1f3fd.png new file mode 100644 index 0000000000000..cf8393f05700e Binary files /dev/null and b/site/static/emojis/1f447-1f3fd.png differ diff --git a/site/static/emojis/1f447-1f3fe.png b/site/static/emojis/1f447-1f3fe.png new file mode 100644 index 0000000000000..3daf8e0c06564 Binary files /dev/null and b/site/static/emojis/1f447-1f3fe.png differ diff --git a/site/static/emojis/1f447-1f3ff.png b/site/static/emojis/1f447-1f3ff.png new file mode 100644 index 0000000000000..54ee9d9be2962 Binary files /dev/null and b/site/static/emojis/1f447-1f3ff.png differ diff --git a/site/static/emojis/1f447.png b/site/static/emojis/1f447.png new file mode 100644 index 0000000000000..b5d06ca53bd05 Binary files /dev/null and b/site/static/emojis/1f447.png differ diff --git a/site/static/emojis/1f448-1f3fb.png b/site/static/emojis/1f448-1f3fb.png new file mode 100644 index 0000000000000..576a0f3f21933 Binary files /dev/null and b/site/static/emojis/1f448-1f3fb.png differ diff --git a/site/static/emojis/1f448-1f3fc.png b/site/static/emojis/1f448-1f3fc.png new file mode 100644 index 0000000000000..08ecf7e6d55ef Binary files /dev/null and b/site/static/emojis/1f448-1f3fc.png differ diff --git a/site/static/emojis/1f448-1f3fd.png b/site/static/emojis/1f448-1f3fd.png new file mode 100644 index 0000000000000..c5b5a71402de6 Binary files /dev/null and b/site/static/emojis/1f448-1f3fd.png differ diff --git a/site/static/emojis/1f448-1f3fe.png b/site/static/emojis/1f448-1f3fe.png new file mode 100644 index 0000000000000..f1ed6f7a212a8 Binary files /dev/null and b/site/static/emojis/1f448-1f3fe.png differ diff --git a/site/static/emojis/1f448-1f3ff.png b/site/static/emojis/1f448-1f3ff.png new file mode 100644 index 0000000000000..89821cd39535a Binary files /dev/null and b/site/static/emojis/1f448-1f3ff.png differ diff --git a/site/static/emojis/1f448.png b/site/static/emojis/1f448.png new file mode 100644 index 0000000000000..441c2f819a8e9 Binary files /dev/null and b/site/static/emojis/1f448.png differ diff --git a/site/static/emojis/1f449-1f3fb.png b/site/static/emojis/1f449-1f3fb.png new file mode 100644 index 0000000000000..82ea57957b0ec Binary files /dev/null and b/site/static/emojis/1f449-1f3fb.png differ diff --git a/site/static/emojis/1f449-1f3fc.png b/site/static/emojis/1f449-1f3fc.png new file mode 100644 index 0000000000000..31c5fa365eaf0 Binary files /dev/null and b/site/static/emojis/1f449-1f3fc.png differ diff --git a/site/static/emojis/1f449-1f3fd.png b/site/static/emojis/1f449-1f3fd.png new file mode 100644 index 0000000000000..ee0081eb16587 Binary files /dev/null and b/site/static/emojis/1f449-1f3fd.png differ diff --git a/site/static/emojis/1f449-1f3fe.png b/site/static/emojis/1f449-1f3fe.png new file mode 100644 index 0000000000000..a8aa2f34395a7 Binary files /dev/null and b/site/static/emojis/1f449-1f3fe.png differ diff --git a/site/static/emojis/1f449-1f3ff.png b/site/static/emojis/1f449-1f3ff.png new file mode 100644 index 0000000000000..2b72da33b1641 Binary files /dev/null and b/site/static/emojis/1f449-1f3ff.png differ diff --git a/site/static/emojis/1f449.png b/site/static/emojis/1f449.png new file mode 100644 index 0000000000000..85c300aaa8671 Binary files /dev/null and b/site/static/emojis/1f449.png differ diff --git a/site/static/emojis/1f44a-1f3fb.png b/site/static/emojis/1f44a-1f3fb.png new file mode 100644 index 0000000000000..90bffd8278eed Binary files /dev/null and b/site/static/emojis/1f44a-1f3fb.png differ diff --git a/site/static/emojis/1f44a-1f3fc.png b/site/static/emojis/1f44a-1f3fc.png new file mode 100644 index 0000000000000..f800eabcea0a6 Binary files /dev/null and b/site/static/emojis/1f44a-1f3fc.png differ diff --git a/site/static/emojis/1f44a-1f3fd.png b/site/static/emojis/1f44a-1f3fd.png new file mode 100644 index 0000000000000..d9de1ad26d2fa Binary files /dev/null and b/site/static/emojis/1f44a-1f3fd.png differ diff --git a/site/static/emojis/1f44a-1f3fe.png b/site/static/emojis/1f44a-1f3fe.png new file mode 100644 index 0000000000000..029c1b3bc3962 Binary files /dev/null and b/site/static/emojis/1f44a-1f3fe.png differ diff --git a/site/static/emojis/1f44a-1f3ff.png b/site/static/emojis/1f44a-1f3ff.png new file mode 100644 index 0000000000000..4ad7a4a646f8d Binary files /dev/null and b/site/static/emojis/1f44a-1f3ff.png differ diff --git a/site/static/emojis/1f44a.png b/site/static/emojis/1f44a.png new file mode 100644 index 0000000000000..264880fd86ce2 Binary files /dev/null and b/site/static/emojis/1f44a.png differ diff --git a/site/static/emojis/1f44b-1f3fb.png b/site/static/emojis/1f44b-1f3fb.png new file mode 100644 index 0000000000000..8dd2c95e3603c Binary files /dev/null and b/site/static/emojis/1f44b-1f3fb.png differ diff --git a/site/static/emojis/1f44b-1f3fc.png b/site/static/emojis/1f44b-1f3fc.png new file mode 100644 index 0000000000000..4d983cd4d8c07 Binary files /dev/null and b/site/static/emojis/1f44b-1f3fc.png differ diff --git a/site/static/emojis/1f44b-1f3fd.png b/site/static/emojis/1f44b-1f3fd.png new file mode 100644 index 0000000000000..478ee389fb344 Binary files /dev/null and b/site/static/emojis/1f44b-1f3fd.png differ diff --git a/site/static/emojis/1f44b-1f3fe.png b/site/static/emojis/1f44b-1f3fe.png new file mode 100644 index 0000000000000..cba0b2d9a4cfc Binary files /dev/null and b/site/static/emojis/1f44b-1f3fe.png differ diff --git a/site/static/emojis/1f44b-1f3ff.png b/site/static/emojis/1f44b-1f3ff.png new file mode 100644 index 0000000000000..34c61982dc9c4 Binary files /dev/null and b/site/static/emojis/1f44b-1f3ff.png differ diff --git a/site/static/emojis/1f44b.png b/site/static/emojis/1f44b.png new file mode 100644 index 0000000000000..250e857fb77ac Binary files /dev/null and b/site/static/emojis/1f44b.png differ diff --git a/site/static/emojis/1f44c-1f3fb.png b/site/static/emojis/1f44c-1f3fb.png new file mode 100644 index 0000000000000..f93153c582b8e Binary files /dev/null and b/site/static/emojis/1f44c-1f3fb.png differ diff --git a/site/static/emojis/1f44c-1f3fc.png b/site/static/emojis/1f44c-1f3fc.png new file mode 100644 index 0000000000000..68e450716d13d Binary files /dev/null and b/site/static/emojis/1f44c-1f3fc.png differ diff --git a/site/static/emojis/1f44c-1f3fd.png b/site/static/emojis/1f44c-1f3fd.png new file mode 100644 index 0000000000000..869d982cb0ffe Binary files /dev/null and b/site/static/emojis/1f44c-1f3fd.png differ diff --git a/site/static/emojis/1f44c-1f3fe.png b/site/static/emojis/1f44c-1f3fe.png new file mode 100644 index 0000000000000..b3d2e82631052 Binary files /dev/null and b/site/static/emojis/1f44c-1f3fe.png differ diff --git a/site/static/emojis/1f44c-1f3ff.png b/site/static/emojis/1f44c-1f3ff.png new file mode 100644 index 0000000000000..f0c6a8cf2bfdd Binary files /dev/null and b/site/static/emojis/1f44c-1f3ff.png differ diff --git a/site/static/emojis/1f44c.png b/site/static/emojis/1f44c.png new file mode 100644 index 0000000000000..6a7b8976930cd Binary files /dev/null and b/site/static/emojis/1f44c.png differ diff --git a/site/static/emojis/1f44d-1f3fb.png b/site/static/emojis/1f44d-1f3fb.png new file mode 100644 index 0000000000000..ceab0da2e2785 Binary files /dev/null and b/site/static/emojis/1f44d-1f3fb.png differ diff --git a/site/static/emojis/1f44d-1f3fc.png b/site/static/emojis/1f44d-1f3fc.png new file mode 100644 index 0000000000000..e78a835459850 Binary files /dev/null and b/site/static/emojis/1f44d-1f3fc.png differ diff --git a/site/static/emojis/1f44d-1f3fd.png b/site/static/emojis/1f44d-1f3fd.png new file mode 100644 index 0000000000000..56a60600deb47 Binary files /dev/null and b/site/static/emojis/1f44d-1f3fd.png differ diff --git a/site/static/emojis/1f44d-1f3fe.png b/site/static/emojis/1f44d-1f3fe.png new file mode 100644 index 0000000000000..14a8eb91ad640 Binary files /dev/null and b/site/static/emojis/1f44d-1f3fe.png differ diff --git a/site/static/emojis/1f44d-1f3ff.png b/site/static/emojis/1f44d-1f3ff.png new file mode 100644 index 0000000000000..6fddfe1058958 Binary files /dev/null and b/site/static/emojis/1f44d-1f3ff.png differ diff --git a/site/static/emojis/1f44d.png b/site/static/emojis/1f44d.png new file mode 100644 index 0000000000000..51b8c75bb9ee4 Binary files /dev/null and b/site/static/emojis/1f44d.png differ diff --git a/site/static/emojis/1f44e-1f3fb.png b/site/static/emojis/1f44e-1f3fb.png new file mode 100644 index 0000000000000..48e16a253bf2f Binary files /dev/null and b/site/static/emojis/1f44e-1f3fb.png differ diff --git a/site/static/emojis/1f44e-1f3fc.png b/site/static/emojis/1f44e-1f3fc.png new file mode 100644 index 0000000000000..8fdb6a12792b2 Binary files /dev/null and b/site/static/emojis/1f44e-1f3fc.png differ diff --git a/site/static/emojis/1f44e-1f3fd.png b/site/static/emojis/1f44e-1f3fd.png new file mode 100644 index 0000000000000..1f7ff2b13a14b Binary files /dev/null and b/site/static/emojis/1f44e-1f3fd.png differ diff --git a/site/static/emojis/1f44e-1f3fe.png b/site/static/emojis/1f44e-1f3fe.png new file mode 100644 index 0000000000000..f971e494a34d4 Binary files /dev/null and b/site/static/emojis/1f44e-1f3fe.png differ diff --git a/site/static/emojis/1f44e-1f3ff.png b/site/static/emojis/1f44e-1f3ff.png new file mode 100644 index 0000000000000..62f23f40d8ad1 Binary files /dev/null and b/site/static/emojis/1f44e-1f3ff.png differ diff --git a/site/static/emojis/1f44e.png b/site/static/emojis/1f44e.png new file mode 100644 index 0000000000000..3801fe8f3e288 Binary files /dev/null and b/site/static/emojis/1f44e.png differ diff --git a/site/static/emojis/1f44f-1f3fb.png b/site/static/emojis/1f44f-1f3fb.png new file mode 100644 index 0000000000000..4194338799fd0 Binary files /dev/null and b/site/static/emojis/1f44f-1f3fb.png differ diff --git a/site/static/emojis/1f44f-1f3fc.png b/site/static/emojis/1f44f-1f3fc.png new file mode 100644 index 0000000000000..28f2ab971625c Binary files /dev/null and b/site/static/emojis/1f44f-1f3fc.png differ diff --git a/site/static/emojis/1f44f-1f3fd.png b/site/static/emojis/1f44f-1f3fd.png new file mode 100644 index 0000000000000..aef3c3398fe6f Binary files /dev/null and b/site/static/emojis/1f44f-1f3fd.png differ diff --git a/site/static/emojis/1f44f-1f3fe.png b/site/static/emojis/1f44f-1f3fe.png new file mode 100644 index 0000000000000..7d64a24db5bf1 Binary files /dev/null and b/site/static/emojis/1f44f-1f3fe.png differ diff --git a/site/static/emojis/1f44f-1f3ff.png b/site/static/emojis/1f44f-1f3ff.png new file mode 100644 index 0000000000000..389765736a402 Binary files /dev/null and b/site/static/emojis/1f44f-1f3ff.png differ diff --git a/site/static/emojis/1f44f.png b/site/static/emojis/1f44f.png new file mode 100644 index 0000000000000..8512b44bfef73 Binary files /dev/null and b/site/static/emojis/1f44f.png differ diff --git a/site/static/emojis/1f450-1f3fb.png b/site/static/emojis/1f450-1f3fb.png new file mode 100644 index 0000000000000..d049c494181b5 Binary files /dev/null and b/site/static/emojis/1f450-1f3fb.png differ diff --git a/site/static/emojis/1f450-1f3fc.png b/site/static/emojis/1f450-1f3fc.png new file mode 100644 index 0000000000000..95155ca5d5a7e Binary files /dev/null and b/site/static/emojis/1f450-1f3fc.png differ diff --git a/site/static/emojis/1f450-1f3fd.png b/site/static/emojis/1f450-1f3fd.png new file mode 100644 index 0000000000000..44a91e54085fe Binary files /dev/null and b/site/static/emojis/1f450-1f3fd.png differ diff --git a/site/static/emojis/1f450-1f3fe.png b/site/static/emojis/1f450-1f3fe.png new file mode 100644 index 0000000000000..cb7c763be0f5e Binary files /dev/null and b/site/static/emojis/1f450-1f3fe.png differ diff --git a/site/static/emojis/1f450-1f3ff.png b/site/static/emojis/1f450-1f3ff.png new file mode 100644 index 0000000000000..8fe0efb743bcf Binary files /dev/null and b/site/static/emojis/1f450-1f3ff.png differ diff --git a/site/static/emojis/1f450.png b/site/static/emojis/1f450.png new file mode 100644 index 0000000000000..43b0021baf8ab Binary files /dev/null and b/site/static/emojis/1f450.png differ diff --git a/site/static/emojis/1f451.png b/site/static/emojis/1f451.png new file mode 100644 index 0000000000000..ee8792481e33b Binary files /dev/null and b/site/static/emojis/1f451.png differ diff --git a/site/static/emojis/1f452.png b/site/static/emojis/1f452.png new file mode 100644 index 0000000000000..ae6e88c2bc40f Binary files /dev/null and b/site/static/emojis/1f452.png differ diff --git a/site/static/emojis/1f453.png b/site/static/emojis/1f453.png new file mode 100644 index 0000000000000..2808766313a4a Binary files /dev/null and b/site/static/emojis/1f453.png differ diff --git a/site/static/emojis/1f454.png b/site/static/emojis/1f454.png new file mode 100644 index 0000000000000..08d920fa1276d Binary files /dev/null and b/site/static/emojis/1f454.png differ diff --git a/site/static/emojis/1f455.png b/site/static/emojis/1f455.png new file mode 100644 index 0000000000000..1dc1d91d407e7 Binary files /dev/null and b/site/static/emojis/1f455.png differ diff --git a/site/static/emojis/1f456.png b/site/static/emojis/1f456.png new file mode 100644 index 0000000000000..44713902ee9eb Binary files /dev/null and b/site/static/emojis/1f456.png differ diff --git a/site/static/emojis/1f457.png b/site/static/emojis/1f457.png new file mode 100644 index 0000000000000..40ee78e104171 Binary files /dev/null and b/site/static/emojis/1f457.png differ diff --git a/site/static/emojis/1f458.png b/site/static/emojis/1f458.png new file mode 100644 index 0000000000000..b4fd087b12c92 Binary files /dev/null and b/site/static/emojis/1f458.png differ diff --git a/site/static/emojis/1f459.png b/site/static/emojis/1f459.png new file mode 100644 index 0000000000000..3892a929400f7 Binary files /dev/null and b/site/static/emojis/1f459.png differ diff --git a/site/static/emojis/1f45a.png b/site/static/emojis/1f45a.png new file mode 100644 index 0000000000000..721cfdc2383b7 Binary files /dev/null and b/site/static/emojis/1f45a.png differ diff --git a/site/static/emojis/1f45b.png b/site/static/emojis/1f45b.png new file mode 100644 index 0000000000000..13037d8f335c9 Binary files /dev/null and b/site/static/emojis/1f45b.png differ diff --git a/site/static/emojis/1f45c.png b/site/static/emojis/1f45c.png new file mode 100644 index 0000000000000..61e490910bcb5 Binary files /dev/null and b/site/static/emojis/1f45c.png differ diff --git a/site/static/emojis/1f45d.png b/site/static/emojis/1f45d.png new file mode 100644 index 0000000000000..1e7e71461961d Binary files /dev/null and b/site/static/emojis/1f45d.png differ diff --git a/site/static/emojis/1f45e.png b/site/static/emojis/1f45e.png new file mode 100644 index 0000000000000..87cbf8a1f84c6 Binary files /dev/null and b/site/static/emojis/1f45e.png differ diff --git a/site/static/emojis/1f45f.png b/site/static/emojis/1f45f.png new file mode 100644 index 0000000000000..fe7db6fb74fba Binary files /dev/null and b/site/static/emojis/1f45f.png differ diff --git a/site/static/emojis/1f460.png b/site/static/emojis/1f460.png new file mode 100644 index 0000000000000..02325941a2f0d Binary files /dev/null and b/site/static/emojis/1f460.png differ diff --git a/site/static/emojis/1f461.png b/site/static/emojis/1f461.png new file mode 100644 index 0000000000000..806fd1cf1e334 Binary files /dev/null and b/site/static/emojis/1f461.png differ diff --git a/site/static/emojis/1f462.png b/site/static/emojis/1f462.png new file mode 100644 index 0000000000000..91d298e0f70dc Binary files /dev/null and b/site/static/emojis/1f462.png differ diff --git a/site/static/emojis/1f463.png b/site/static/emojis/1f463.png new file mode 100644 index 0000000000000..0e2b87e7910a7 Binary files /dev/null and b/site/static/emojis/1f463.png differ diff --git a/site/static/emojis/1f464.png b/site/static/emojis/1f464.png new file mode 100644 index 0000000000000..df64d95cc0f3f Binary files /dev/null and b/site/static/emojis/1f464.png differ diff --git a/site/static/emojis/1f465.png b/site/static/emojis/1f465.png new file mode 100644 index 0000000000000..b907898cf4cce Binary files /dev/null and b/site/static/emojis/1f465.png differ diff --git a/site/static/emojis/1f466-1f3fb.png b/site/static/emojis/1f466-1f3fb.png new file mode 100644 index 0000000000000..30ee0fb9981d1 Binary files /dev/null and b/site/static/emojis/1f466-1f3fb.png differ diff --git a/site/static/emojis/1f466-1f3fc.png b/site/static/emojis/1f466-1f3fc.png new file mode 100644 index 0000000000000..219c8a3eded2b Binary files /dev/null and b/site/static/emojis/1f466-1f3fc.png differ diff --git a/site/static/emojis/1f466-1f3fd.png b/site/static/emojis/1f466-1f3fd.png new file mode 100644 index 0000000000000..fb2d105c548b3 Binary files /dev/null and b/site/static/emojis/1f466-1f3fd.png differ diff --git a/site/static/emojis/1f466-1f3fe.png b/site/static/emojis/1f466-1f3fe.png new file mode 100644 index 0000000000000..a0a1895f0951a Binary files /dev/null and b/site/static/emojis/1f466-1f3fe.png differ diff --git a/site/static/emojis/1f466-1f3ff.png b/site/static/emojis/1f466-1f3ff.png new file mode 100644 index 0000000000000..89edbdaadf657 Binary files /dev/null and b/site/static/emojis/1f466-1f3ff.png differ diff --git a/site/static/emojis/1f466.png b/site/static/emojis/1f466.png new file mode 100644 index 0000000000000..aca7839400837 Binary files /dev/null and b/site/static/emojis/1f466.png differ diff --git a/site/static/emojis/1f467-1f3fb.png b/site/static/emojis/1f467-1f3fb.png new file mode 100644 index 0000000000000..959d55e664bc8 Binary files /dev/null and b/site/static/emojis/1f467-1f3fb.png differ diff --git a/site/static/emojis/1f467-1f3fc.png b/site/static/emojis/1f467-1f3fc.png new file mode 100644 index 0000000000000..a6276570cea44 Binary files /dev/null and b/site/static/emojis/1f467-1f3fc.png differ diff --git a/site/static/emojis/1f467-1f3fd.png b/site/static/emojis/1f467-1f3fd.png new file mode 100644 index 0000000000000..c5bba797731a7 Binary files /dev/null and b/site/static/emojis/1f467-1f3fd.png differ diff --git a/site/static/emojis/1f467-1f3fe.png b/site/static/emojis/1f467-1f3fe.png new file mode 100644 index 0000000000000..0509f75b123d0 Binary files /dev/null and b/site/static/emojis/1f467-1f3fe.png differ diff --git a/site/static/emojis/1f467-1f3ff.png b/site/static/emojis/1f467-1f3ff.png new file mode 100644 index 0000000000000..c97e91ac4d823 Binary files /dev/null and b/site/static/emojis/1f467-1f3ff.png differ diff --git a/site/static/emojis/1f467.png b/site/static/emojis/1f467.png new file mode 100644 index 0000000000000..c7199f6d469d7 Binary files /dev/null and b/site/static/emojis/1f467.png differ diff --git a/site/static/emojis/1f468-1f3fb-200d-1f33e.png b/site/static/emojis/1f468-1f3fb-200d-1f33e.png new file mode 100644 index 0000000000000..b28cdb8332e53 Binary files /dev/null and b/site/static/emojis/1f468-1f3fb-200d-1f33e.png differ diff --git a/site/static/emojis/1f468-1f3fb-200d-1f373.png b/site/static/emojis/1f468-1f3fb-200d-1f373.png new file mode 100644 index 0000000000000..23bace9784a88 Binary files /dev/null and b/site/static/emojis/1f468-1f3fb-200d-1f373.png differ diff --git a/site/static/emojis/1f468-1f3fb-200d-1f37c.png b/site/static/emojis/1f468-1f3fb-200d-1f37c.png new file mode 100644 index 0000000000000..808c0f5e6c134 Binary files /dev/null and b/site/static/emojis/1f468-1f3fb-200d-1f37c.png differ diff --git a/site/static/emojis/1f468-1f3fb-200d-1f384.png b/site/static/emojis/1f468-1f3fb-200d-1f384.png new file mode 100644 index 0000000000000..ae26f1ffc0ad5 Binary files /dev/null and b/site/static/emojis/1f468-1f3fb-200d-1f384.png differ diff --git a/site/static/emojis/1f468-1f3fb-200d-1f393.png b/site/static/emojis/1f468-1f3fb-200d-1f393.png new file mode 100644 index 0000000000000..3e1eb365c2e06 Binary files /dev/null and b/site/static/emojis/1f468-1f3fb-200d-1f393.png differ diff --git a/site/static/emojis/1f468-1f3fb-200d-1f3a4.png b/site/static/emojis/1f468-1f3fb-200d-1f3a4.png new file mode 100644 index 0000000000000..95948a7fc7490 Binary files /dev/null and b/site/static/emojis/1f468-1f3fb-200d-1f3a4.png differ diff --git a/site/static/emojis/1f468-1f3fb-200d-1f3a8.png b/site/static/emojis/1f468-1f3fb-200d-1f3a8.png new file mode 100644 index 0000000000000..d0da93939aa3f Binary files /dev/null and b/site/static/emojis/1f468-1f3fb-200d-1f3a8.png differ diff --git a/site/static/emojis/1f468-1f3fb-200d-1f3eb.png b/site/static/emojis/1f468-1f3fb-200d-1f3eb.png new file mode 100644 index 0000000000000..68789803d7bd0 Binary files /dev/null and b/site/static/emojis/1f468-1f3fb-200d-1f3eb.png differ diff --git a/site/static/emojis/1f468-1f3fb-200d-1f3ed.png b/site/static/emojis/1f468-1f3fb-200d-1f3ed.png new file mode 100644 index 0000000000000..7df79d4d234f0 Binary files /dev/null and b/site/static/emojis/1f468-1f3fb-200d-1f3ed.png differ diff --git a/site/static/emojis/1f468-1f3fb-200d-1f4bb.png b/site/static/emojis/1f468-1f3fb-200d-1f4bb.png new file mode 100644 index 0000000000000..e027f55c4876c Binary files /dev/null and b/site/static/emojis/1f468-1f3fb-200d-1f4bb.png differ diff --git a/site/static/emojis/1f468-1f3fb-200d-1f4bc.png b/site/static/emojis/1f468-1f3fb-200d-1f4bc.png new file mode 100644 index 0000000000000..df0c1a7d370ba Binary files /dev/null and b/site/static/emojis/1f468-1f3fb-200d-1f4bc.png differ diff --git a/site/static/emojis/1f468-1f3fb-200d-1f527.png b/site/static/emojis/1f468-1f3fb-200d-1f527.png new file mode 100644 index 0000000000000..285e33166953e Binary files /dev/null and b/site/static/emojis/1f468-1f3fb-200d-1f527.png differ diff --git a/site/static/emojis/1f468-1f3fb-200d-1f52c.png b/site/static/emojis/1f468-1f3fb-200d-1f52c.png new file mode 100644 index 0000000000000..b5eaf0503730c Binary files /dev/null and b/site/static/emojis/1f468-1f3fb-200d-1f52c.png differ diff --git a/site/static/emojis/1f468-1f3fb-200d-1f680.png b/site/static/emojis/1f468-1f3fb-200d-1f680.png new file mode 100644 index 0000000000000..4d448a6483fe8 Binary files /dev/null and b/site/static/emojis/1f468-1f3fb-200d-1f680.png differ diff --git a/site/static/emojis/1f468-1f3fb-200d-1f692.png b/site/static/emojis/1f468-1f3fb-200d-1f692.png new file mode 100644 index 0000000000000..a8f2467ea17c0 Binary files /dev/null and b/site/static/emojis/1f468-1f3fb-200d-1f692.png differ diff --git a/site/static/emojis/1f468-1f3fb-200d-1f91d-200d-1f468-1f3fc.png b/site/static/emojis/1f468-1f3fb-200d-1f91d-200d-1f468-1f3fc.png new file mode 100644 index 0000000000000..ee0e2ec974888 Binary files /dev/null and b/site/static/emojis/1f468-1f3fb-200d-1f91d-200d-1f468-1f3fc.png differ diff --git a/site/static/emojis/1f468-1f3fb-200d-1f91d-200d-1f468-1f3fd.png b/site/static/emojis/1f468-1f3fb-200d-1f91d-200d-1f468-1f3fd.png new file mode 100644 index 0000000000000..4a1df9db541e5 Binary files /dev/null and b/site/static/emojis/1f468-1f3fb-200d-1f91d-200d-1f468-1f3fd.png differ diff --git a/site/static/emojis/1f468-1f3fb-200d-1f91d-200d-1f468-1f3fe.png b/site/static/emojis/1f468-1f3fb-200d-1f91d-200d-1f468-1f3fe.png new file mode 100644 index 0000000000000..59d86c8ed7b3c Binary files /dev/null and b/site/static/emojis/1f468-1f3fb-200d-1f91d-200d-1f468-1f3fe.png differ diff --git a/site/static/emojis/1f468-1f3fb-200d-1f91d-200d-1f468-1f3ff.png b/site/static/emojis/1f468-1f3fb-200d-1f91d-200d-1f468-1f3ff.png new file mode 100644 index 0000000000000..0c87327c47a30 Binary files /dev/null and b/site/static/emojis/1f468-1f3fb-200d-1f91d-200d-1f468-1f3ff.png differ diff --git a/site/static/emojis/1f468-1f3fb-200d-1f9af.png b/site/static/emojis/1f468-1f3fb-200d-1f9af.png new file mode 100644 index 0000000000000..8c67c0be0f5e6 Binary files /dev/null and b/site/static/emojis/1f468-1f3fb-200d-1f9af.png differ diff --git a/site/static/emojis/1f468-1f3fb-200d-1f9b0.png b/site/static/emojis/1f468-1f3fb-200d-1f9b0.png new file mode 100644 index 0000000000000..dac8c82948186 Binary files /dev/null and b/site/static/emojis/1f468-1f3fb-200d-1f9b0.png differ diff --git a/site/static/emojis/1f468-1f3fb-200d-1f9b1.png b/site/static/emojis/1f468-1f3fb-200d-1f9b1.png new file mode 100644 index 0000000000000..04735fd5c91bf Binary files /dev/null and b/site/static/emojis/1f468-1f3fb-200d-1f9b1.png differ diff --git a/site/static/emojis/1f468-1f3fb-200d-1f9b2.png b/site/static/emojis/1f468-1f3fb-200d-1f9b2.png new file mode 100644 index 0000000000000..f3f3aeee9e024 Binary files /dev/null and b/site/static/emojis/1f468-1f3fb-200d-1f9b2.png differ diff --git a/site/static/emojis/1f468-1f3fb-200d-1f9b3.png b/site/static/emojis/1f468-1f3fb-200d-1f9b3.png new file mode 100644 index 0000000000000..95b8518cd5f6f Binary files /dev/null and b/site/static/emojis/1f468-1f3fb-200d-1f9b3.png differ diff --git a/site/static/emojis/1f468-1f3fb-200d-1f9bc.png b/site/static/emojis/1f468-1f3fb-200d-1f9bc.png new file mode 100644 index 0000000000000..ebde69b480f7f Binary files /dev/null and b/site/static/emojis/1f468-1f3fb-200d-1f9bc.png differ diff --git a/site/static/emojis/1f468-1f3fb-200d-1f9bd.png b/site/static/emojis/1f468-1f3fb-200d-1f9bd.png new file mode 100644 index 0000000000000..51320cf7c82ac Binary files /dev/null and b/site/static/emojis/1f468-1f3fb-200d-1f9bd.png differ diff --git a/site/static/emojis/1f468-1f3fb-200d-2695-fe0f.png b/site/static/emojis/1f468-1f3fb-200d-2695-fe0f.png new file mode 100644 index 0000000000000..bd6e8f55d43ad Binary files /dev/null and b/site/static/emojis/1f468-1f3fb-200d-2695-fe0f.png differ diff --git a/site/static/emojis/1f468-1f3fb-200d-2696-fe0f.png b/site/static/emojis/1f468-1f3fb-200d-2696-fe0f.png new file mode 100644 index 0000000000000..f2f4294516991 Binary files /dev/null and b/site/static/emojis/1f468-1f3fb-200d-2696-fe0f.png differ diff --git a/site/static/emojis/1f468-1f3fb-200d-2708-fe0f.png b/site/static/emojis/1f468-1f3fb-200d-2708-fe0f.png new file mode 100644 index 0000000000000..6dc6627855cb6 Binary files /dev/null and b/site/static/emojis/1f468-1f3fb-200d-2708-fe0f.png differ diff --git a/site/static/emojis/1f468-1f3fb-200d-2764-fe0f-200d-1f468-1f3fb.png b/site/static/emojis/1f468-1f3fb-200d-2764-fe0f-200d-1f468-1f3fb.png new file mode 100644 index 0000000000000..8290495a65403 Binary files /dev/null and b/site/static/emojis/1f468-1f3fb-200d-2764-fe0f-200d-1f468-1f3fb.png differ diff --git a/site/static/emojis/1f468-1f3fb-200d-2764-fe0f-200d-1f468-1f3fc.png b/site/static/emojis/1f468-1f3fb-200d-2764-fe0f-200d-1f468-1f3fc.png new file mode 100644 index 0000000000000..b9262d870f930 Binary files /dev/null and b/site/static/emojis/1f468-1f3fb-200d-2764-fe0f-200d-1f468-1f3fc.png differ diff --git a/site/static/emojis/1f468-1f3fb-200d-2764-fe0f-200d-1f468-1f3fd.png b/site/static/emojis/1f468-1f3fb-200d-2764-fe0f-200d-1f468-1f3fd.png new file mode 100644 index 0000000000000..0531846ca3b76 Binary files /dev/null and b/site/static/emojis/1f468-1f3fb-200d-2764-fe0f-200d-1f468-1f3fd.png differ diff --git a/site/static/emojis/1f468-1f3fb-200d-2764-fe0f-200d-1f468-1f3fe.png b/site/static/emojis/1f468-1f3fb-200d-2764-fe0f-200d-1f468-1f3fe.png new file mode 100644 index 0000000000000..fa219506ffcf2 Binary files /dev/null and b/site/static/emojis/1f468-1f3fb-200d-2764-fe0f-200d-1f468-1f3fe.png differ diff --git a/site/static/emojis/1f468-1f3fb-200d-2764-fe0f-200d-1f468-1f3ff.png b/site/static/emojis/1f468-1f3fb-200d-2764-fe0f-200d-1f468-1f3ff.png new file mode 100644 index 0000000000000..c91e948cce39b Binary files /dev/null and b/site/static/emojis/1f468-1f3fb-200d-2764-fe0f-200d-1f468-1f3ff.png differ diff --git a/site/static/emojis/1f468-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fb.png b/site/static/emojis/1f468-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fb.png new file mode 100644 index 0000000000000..b12316d2e3fba Binary files /dev/null and b/site/static/emojis/1f468-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fb.png differ diff --git a/site/static/emojis/1f468-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fc.png b/site/static/emojis/1f468-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fc.png new file mode 100644 index 0000000000000..4ff97b2f4d1ce Binary files /dev/null and b/site/static/emojis/1f468-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fc.png differ diff --git a/site/static/emojis/1f468-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fd.png b/site/static/emojis/1f468-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fd.png new file mode 100644 index 0000000000000..bc4bbde38ce76 Binary files /dev/null and b/site/static/emojis/1f468-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fd.png differ diff --git a/site/static/emojis/1f468-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fe.png b/site/static/emojis/1f468-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fe.png new file mode 100644 index 0000000000000..843df4d0b0f21 Binary files /dev/null and b/site/static/emojis/1f468-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fe.png differ diff --git a/site/static/emojis/1f468-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3ff.png b/site/static/emojis/1f468-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3ff.png new file mode 100644 index 0000000000000..c25225e4fc6f3 Binary files /dev/null and b/site/static/emojis/1f468-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3ff.png differ diff --git a/site/static/emojis/1f468-1f3fb.png b/site/static/emojis/1f468-1f3fb.png new file mode 100644 index 0000000000000..2c36824e37595 Binary files /dev/null and b/site/static/emojis/1f468-1f3fb.png differ diff --git a/site/static/emojis/1f468-1f3fc-200d-1f33e.png b/site/static/emojis/1f468-1f3fc-200d-1f33e.png new file mode 100644 index 0000000000000..5361fb1e76e79 Binary files /dev/null and b/site/static/emojis/1f468-1f3fc-200d-1f33e.png differ diff --git a/site/static/emojis/1f468-1f3fc-200d-1f373.png b/site/static/emojis/1f468-1f3fc-200d-1f373.png new file mode 100644 index 0000000000000..43a434563a8b5 Binary files /dev/null and b/site/static/emojis/1f468-1f3fc-200d-1f373.png differ diff --git a/site/static/emojis/1f468-1f3fc-200d-1f37c.png b/site/static/emojis/1f468-1f3fc-200d-1f37c.png new file mode 100644 index 0000000000000..17fcdd4524ecb Binary files /dev/null and b/site/static/emojis/1f468-1f3fc-200d-1f37c.png differ diff --git a/site/static/emojis/1f468-1f3fc-200d-1f384.png b/site/static/emojis/1f468-1f3fc-200d-1f384.png new file mode 100644 index 0000000000000..ae1e9a8eeff50 Binary files /dev/null and b/site/static/emojis/1f468-1f3fc-200d-1f384.png differ diff --git a/site/static/emojis/1f468-1f3fc-200d-1f393.png b/site/static/emojis/1f468-1f3fc-200d-1f393.png new file mode 100644 index 0000000000000..77f968f1c8711 Binary files /dev/null and b/site/static/emojis/1f468-1f3fc-200d-1f393.png differ diff --git a/site/static/emojis/1f468-1f3fc-200d-1f3a4.png b/site/static/emojis/1f468-1f3fc-200d-1f3a4.png new file mode 100644 index 0000000000000..52980df4eb178 Binary files /dev/null and b/site/static/emojis/1f468-1f3fc-200d-1f3a4.png differ diff --git a/site/static/emojis/1f468-1f3fc-200d-1f3a8.png b/site/static/emojis/1f468-1f3fc-200d-1f3a8.png new file mode 100644 index 0000000000000..2aee77b79a9a7 Binary files /dev/null and b/site/static/emojis/1f468-1f3fc-200d-1f3a8.png differ diff --git a/site/static/emojis/1f468-1f3fc-200d-1f3eb.png b/site/static/emojis/1f468-1f3fc-200d-1f3eb.png new file mode 100644 index 0000000000000..b88314d2f12a7 Binary files /dev/null and b/site/static/emojis/1f468-1f3fc-200d-1f3eb.png differ diff --git a/site/static/emojis/1f468-1f3fc-200d-1f3ed.png b/site/static/emojis/1f468-1f3fc-200d-1f3ed.png new file mode 100644 index 0000000000000..3105701468fcc Binary files /dev/null and b/site/static/emojis/1f468-1f3fc-200d-1f3ed.png differ diff --git a/site/static/emojis/1f468-1f3fc-200d-1f4bb.png b/site/static/emojis/1f468-1f3fc-200d-1f4bb.png new file mode 100644 index 0000000000000..4cfa537593c14 Binary files /dev/null and b/site/static/emojis/1f468-1f3fc-200d-1f4bb.png differ diff --git a/site/static/emojis/1f468-1f3fc-200d-1f4bc.png b/site/static/emojis/1f468-1f3fc-200d-1f4bc.png new file mode 100644 index 0000000000000..65123e0f06d08 Binary files /dev/null and b/site/static/emojis/1f468-1f3fc-200d-1f4bc.png differ diff --git a/site/static/emojis/1f468-1f3fc-200d-1f527.png b/site/static/emojis/1f468-1f3fc-200d-1f527.png new file mode 100644 index 0000000000000..415644a4139e2 Binary files /dev/null and b/site/static/emojis/1f468-1f3fc-200d-1f527.png differ diff --git a/site/static/emojis/1f468-1f3fc-200d-1f52c.png b/site/static/emojis/1f468-1f3fc-200d-1f52c.png new file mode 100644 index 0000000000000..56f0e8bf793b4 Binary files /dev/null and b/site/static/emojis/1f468-1f3fc-200d-1f52c.png differ diff --git a/site/static/emojis/1f468-1f3fc-200d-1f680.png b/site/static/emojis/1f468-1f3fc-200d-1f680.png new file mode 100644 index 0000000000000..3d45cf40fd418 Binary files /dev/null and b/site/static/emojis/1f468-1f3fc-200d-1f680.png differ diff --git a/site/static/emojis/1f468-1f3fc-200d-1f692.png b/site/static/emojis/1f468-1f3fc-200d-1f692.png new file mode 100644 index 0000000000000..b9322dd0ee9d4 Binary files /dev/null and b/site/static/emojis/1f468-1f3fc-200d-1f692.png differ diff --git a/site/static/emojis/1f468-1f3fc-200d-1f91d-200d-1f468-1f3fb.png b/site/static/emojis/1f468-1f3fc-200d-1f91d-200d-1f468-1f3fb.png new file mode 100644 index 0000000000000..f72fc9e1d4165 Binary files /dev/null and b/site/static/emojis/1f468-1f3fc-200d-1f91d-200d-1f468-1f3fb.png differ diff --git a/site/static/emojis/1f468-1f3fc-200d-1f91d-200d-1f468-1f3fd.png b/site/static/emojis/1f468-1f3fc-200d-1f91d-200d-1f468-1f3fd.png new file mode 100644 index 0000000000000..95c78cf0f1b61 Binary files /dev/null and b/site/static/emojis/1f468-1f3fc-200d-1f91d-200d-1f468-1f3fd.png differ diff --git a/site/static/emojis/1f468-1f3fc-200d-1f91d-200d-1f468-1f3fe.png b/site/static/emojis/1f468-1f3fc-200d-1f91d-200d-1f468-1f3fe.png new file mode 100644 index 0000000000000..0775407fd1697 Binary files /dev/null and b/site/static/emojis/1f468-1f3fc-200d-1f91d-200d-1f468-1f3fe.png differ diff --git a/site/static/emojis/1f468-1f3fc-200d-1f91d-200d-1f468-1f3ff.png b/site/static/emojis/1f468-1f3fc-200d-1f91d-200d-1f468-1f3ff.png new file mode 100644 index 0000000000000..23be878bb357d Binary files /dev/null and b/site/static/emojis/1f468-1f3fc-200d-1f91d-200d-1f468-1f3ff.png differ diff --git a/site/static/emojis/1f468-1f3fc-200d-1f9af.png b/site/static/emojis/1f468-1f3fc-200d-1f9af.png new file mode 100644 index 0000000000000..41b92ea7fc38d Binary files /dev/null and b/site/static/emojis/1f468-1f3fc-200d-1f9af.png differ diff --git a/site/static/emojis/1f468-1f3fc-200d-1f9b0.png b/site/static/emojis/1f468-1f3fc-200d-1f9b0.png new file mode 100644 index 0000000000000..5344a5eb83e1a Binary files /dev/null and b/site/static/emojis/1f468-1f3fc-200d-1f9b0.png differ diff --git a/site/static/emojis/1f468-1f3fc-200d-1f9b1.png b/site/static/emojis/1f468-1f3fc-200d-1f9b1.png new file mode 100644 index 0000000000000..555c452173b2c Binary files /dev/null and b/site/static/emojis/1f468-1f3fc-200d-1f9b1.png differ diff --git a/site/static/emojis/1f468-1f3fc-200d-1f9b2.png b/site/static/emojis/1f468-1f3fc-200d-1f9b2.png new file mode 100644 index 0000000000000..dcd774d5f30d9 Binary files /dev/null and b/site/static/emojis/1f468-1f3fc-200d-1f9b2.png differ diff --git a/site/static/emojis/1f468-1f3fc-200d-1f9b3.png b/site/static/emojis/1f468-1f3fc-200d-1f9b3.png new file mode 100644 index 0000000000000..3ac9f2a521822 Binary files /dev/null and b/site/static/emojis/1f468-1f3fc-200d-1f9b3.png differ diff --git a/site/static/emojis/1f468-1f3fc-200d-1f9bc.png b/site/static/emojis/1f468-1f3fc-200d-1f9bc.png new file mode 100644 index 0000000000000..b25df4a150382 Binary files /dev/null and b/site/static/emojis/1f468-1f3fc-200d-1f9bc.png differ diff --git a/site/static/emojis/1f468-1f3fc-200d-1f9bd.png b/site/static/emojis/1f468-1f3fc-200d-1f9bd.png new file mode 100644 index 0000000000000..969888b99d874 Binary files /dev/null and b/site/static/emojis/1f468-1f3fc-200d-1f9bd.png differ diff --git a/site/static/emojis/1f468-1f3fc-200d-2695-fe0f.png b/site/static/emojis/1f468-1f3fc-200d-2695-fe0f.png new file mode 100644 index 0000000000000..ee4b0b2276add Binary files /dev/null and b/site/static/emojis/1f468-1f3fc-200d-2695-fe0f.png differ diff --git a/site/static/emojis/1f468-1f3fc-200d-2696-fe0f.png b/site/static/emojis/1f468-1f3fc-200d-2696-fe0f.png new file mode 100644 index 0000000000000..df34a740ac4e8 Binary files /dev/null and b/site/static/emojis/1f468-1f3fc-200d-2696-fe0f.png differ diff --git a/site/static/emojis/1f468-1f3fc-200d-2708-fe0f.png b/site/static/emojis/1f468-1f3fc-200d-2708-fe0f.png new file mode 100644 index 0000000000000..a6b365c661f4c Binary files /dev/null and b/site/static/emojis/1f468-1f3fc-200d-2708-fe0f.png differ diff --git a/site/static/emojis/1f468-1f3fc-200d-2764-fe0f-200d-1f468-1f3fb.png b/site/static/emojis/1f468-1f3fc-200d-2764-fe0f-200d-1f468-1f3fb.png new file mode 100644 index 0000000000000..d268d0385a9dc Binary files /dev/null and b/site/static/emojis/1f468-1f3fc-200d-2764-fe0f-200d-1f468-1f3fb.png differ diff --git a/site/static/emojis/1f468-1f3fc-200d-2764-fe0f-200d-1f468-1f3fc.png b/site/static/emojis/1f468-1f3fc-200d-2764-fe0f-200d-1f468-1f3fc.png new file mode 100644 index 0000000000000..9c3cbdc838d9a Binary files /dev/null and b/site/static/emojis/1f468-1f3fc-200d-2764-fe0f-200d-1f468-1f3fc.png differ diff --git a/site/static/emojis/1f468-1f3fc-200d-2764-fe0f-200d-1f468-1f3fd.png b/site/static/emojis/1f468-1f3fc-200d-2764-fe0f-200d-1f468-1f3fd.png new file mode 100644 index 0000000000000..23983683671a2 Binary files /dev/null and b/site/static/emojis/1f468-1f3fc-200d-2764-fe0f-200d-1f468-1f3fd.png differ diff --git a/site/static/emojis/1f468-1f3fc-200d-2764-fe0f-200d-1f468-1f3fe.png b/site/static/emojis/1f468-1f3fc-200d-2764-fe0f-200d-1f468-1f3fe.png new file mode 100644 index 0000000000000..7c247fb4a3612 Binary files /dev/null and b/site/static/emojis/1f468-1f3fc-200d-2764-fe0f-200d-1f468-1f3fe.png differ diff --git a/site/static/emojis/1f468-1f3fc-200d-2764-fe0f-200d-1f468-1f3ff.png b/site/static/emojis/1f468-1f3fc-200d-2764-fe0f-200d-1f468-1f3ff.png new file mode 100644 index 0000000000000..24e5d43fd5029 Binary files /dev/null and b/site/static/emojis/1f468-1f3fc-200d-2764-fe0f-200d-1f468-1f3ff.png differ diff --git a/site/static/emojis/1f468-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fb.png b/site/static/emojis/1f468-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fb.png new file mode 100644 index 0000000000000..bca840789ebc7 Binary files /dev/null and b/site/static/emojis/1f468-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fb.png differ diff --git a/site/static/emojis/1f468-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fc.png b/site/static/emojis/1f468-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fc.png new file mode 100644 index 0000000000000..649b70d1905e9 Binary files /dev/null and b/site/static/emojis/1f468-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fc.png differ diff --git a/site/static/emojis/1f468-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fd.png b/site/static/emojis/1f468-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fd.png new file mode 100644 index 0000000000000..7649e7a3e3552 Binary files /dev/null and b/site/static/emojis/1f468-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fd.png differ diff --git a/site/static/emojis/1f468-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fe.png b/site/static/emojis/1f468-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fe.png new file mode 100644 index 0000000000000..563216eb4ba39 Binary files /dev/null and b/site/static/emojis/1f468-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fe.png differ diff --git a/site/static/emojis/1f468-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3ff.png b/site/static/emojis/1f468-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3ff.png new file mode 100644 index 0000000000000..752afb85884f9 Binary files /dev/null and b/site/static/emojis/1f468-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3ff.png differ diff --git a/site/static/emojis/1f468-1f3fc.png b/site/static/emojis/1f468-1f3fc.png new file mode 100644 index 0000000000000..a5197a24d530a Binary files /dev/null and b/site/static/emojis/1f468-1f3fc.png differ diff --git a/site/static/emojis/1f468-1f3fd-200d-1f33e.png b/site/static/emojis/1f468-1f3fd-200d-1f33e.png new file mode 100644 index 0000000000000..433b19cf994d0 Binary files /dev/null and b/site/static/emojis/1f468-1f3fd-200d-1f33e.png differ diff --git a/site/static/emojis/1f468-1f3fd-200d-1f373.png b/site/static/emojis/1f468-1f3fd-200d-1f373.png new file mode 100644 index 0000000000000..a04904eeeaf5e Binary files /dev/null and b/site/static/emojis/1f468-1f3fd-200d-1f373.png differ diff --git a/site/static/emojis/1f468-1f3fd-200d-1f37c.png b/site/static/emojis/1f468-1f3fd-200d-1f37c.png new file mode 100644 index 0000000000000..798c17a2c7d85 Binary files /dev/null and b/site/static/emojis/1f468-1f3fd-200d-1f37c.png differ diff --git a/site/static/emojis/1f468-1f3fd-200d-1f384.png b/site/static/emojis/1f468-1f3fd-200d-1f384.png new file mode 100644 index 0000000000000..3cd9a5135178d Binary files /dev/null and b/site/static/emojis/1f468-1f3fd-200d-1f384.png differ diff --git a/site/static/emojis/1f468-1f3fd-200d-1f393.png b/site/static/emojis/1f468-1f3fd-200d-1f393.png new file mode 100644 index 0000000000000..d48c7cf19a6a7 Binary files /dev/null and b/site/static/emojis/1f468-1f3fd-200d-1f393.png differ diff --git a/site/static/emojis/1f468-1f3fd-200d-1f3a4.png b/site/static/emojis/1f468-1f3fd-200d-1f3a4.png new file mode 100644 index 0000000000000..22ed9b589a8e8 Binary files /dev/null and b/site/static/emojis/1f468-1f3fd-200d-1f3a4.png differ diff --git a/site/static/emojis/1f468-1f3fd-200d-1f3a8.png b/site/static/emojis/1f468-1f3fd-200d-1f3a8.png new file mode 100644 index 0000000000000..cb83a98819e76 Binary files /dev/null and b/site/static/emojis/1f468-1f3fd-200d-1f3a8.png differ diff --git a/site/static/emojis/1f468-1f3fd-200d-1f3eb.png b/site/static/emojis/1f468-1f3fd-200d-1f3eb.png new file mode 100644 index 0000000000000..8980a62fec833 Binary files /dev/null and b/site/static/emojis/1f468-1f3fd-200d-1f3eb.png differ diff --git a/site/static/emojis/1f468-1f3fd-200d-1f3ed.png b/site/static/emojis/1f468-1f3fd-200d-1f3ed.png new file mode 100644 index 0000000000000..2244d972a8382 Binary files /dev/null and b/site/static/emojis/1f468-1f3fd-200d-1f3ed.png differ diff --git a/site/static/emojis/1f468-1f3fd-200d-1f4bb.png b/site/static/emojis/1f468-1f3fd-200d-1f4bb.png new file mode 100644 index 0000000000000..36c104087624b Binary files /dev/null and b/site/static/emojis/1f468-1f3fd-200d-1f4bb.png differ diff --git a/site/static/emojis/1f468-1f3fd-200d-1f4bc.png b/site/static/emojis/1f468-1f3fd-200d-1f4bc.png new file mode 100644 index 0000000000000..65475b2de69fa Binary files /dev/null and b/site/static/emojis/1f468-1f3fd-200d-1f4bc.png differ diff --git a/site/static/emojis/1f468-1f3fd-200d-1f527.png b/site/static/emojis/1f468-1f3fd-200d-1f527.png new file mode 100644 index 0000000000000..09e4853df7ae4 Binary files /dev/null and b/site/static/emojis/1f468-1f3fd-200d-1f527.png differ diff --git a/site/static/emojis/1f468-1f3fd-200d-1f52c.png b/site/static/emojis/1f468-1f3fd-200d-1f52c.png new file mode 100644 index 0000000000000..9c670b2c4cc1d Binary files /dev/null and b/site/static/emojis/1f468-1f3fd-200d-1f52c.png differ diff --git a/site/static/emojis/1f468-1f3fd-200d-1f680.png b/site/static/emojis/1f468-1f3fd-200d-1f680.png new file mode 100644 index 0000000000000..9e911eca584f1 Binary files /dev/null and b/site/static/emojis/1f468-1f3fd-200d-1f680.png differ diff --git a/site/static/emojis/1f468-1f3fd-200d-1f692.png b/site/static/emojis/1f468-1f3fd-200d-1f692.png new file mode 100644 index 0000000000000..c7cef26f4c748 Binary files /dev/null and b/site/static/emojis/1f468-1f3fd-200d-1f692.png differ diff --git a/site/static/emojis/1f468-1f3fd-200d-1f91d-200d-1f468-1f3fb.png b/site/static/emojis/1f468-1f3fd-200d-1f91d-200d-1f468-1f3fb.png new file mode 100644 index 0000000000000..3a85784d201b8 Binary files /dev/null and b/site/static/emojis/1f468-1f3fd-200d-1f91d-200d-1f468-1f3fb.png differ diff --git a/site/static/emojis/1f468-1f3fd-200d-1f91d-200d-1f468-1f3fc.png b/site/static/emojis/1f468-1f3fd-200d-1f91d-200d-1f468-1f3fc.png new file mode 100644 index 0000000000000..eeca65ba76abc Binary files /dev/null and b/site/static/emojis/1f468-1f3fd-200d-1f91d-200d-1f468-1f3fc.png differ diff --git a/site/static/emojis/1f468-1f3fd-200d-1f91d-200d-1f468-1f3fe.png b/site/static/emojis/1f468-1f3fd-200d-1f91d-200d-1f468-1f3fe.png new file mode 100644 index 0000000000000..6e802288da7be Binary files /dev/null and b/site/static/emojis/1f468-1f3fd-200d-1f91d-200d-1f468-1f3fe.png differ diff --git a/site/static/emojis/1f468-1f3fd-200d-1f91d-200d-1f468-1f3ff.png b/site/static/emojis/1f468-1f3fd-200d-1f91d-200d-1f468-1f3ff.png new file mode 100644 index 0000000000000..f71b54bae5248 Binary files /dev/null and b/site/static/emojis/1f468-1f3fd-200d-1f91d-200d-1f468-1f3ff.png differ diff --git a/site/static/emojis/1f468-1f3fd-200d-1f9af.png b/site/static/emojis/1f468-1f3fd-200d-1f9af.png new file mode 100644 index 0000000000000..542dde3a9e632 Binary files /dev/null and b/site/static/emojis/1f468-1f3fd-200d-1f9af.png differ diff --git a/site/static/emojis/1f468-1f3fd-200d-1f9b0.png b/site/static/emojis/1f468-1f3fd-200d-1f9b0.png new file mode 100644 index 0000000000000..d30e0010a0858 Binary files /dev/null and b/site/static/emojis/1f468-1f3fd-200d-1f9b0.png differ diff --git a/site/static/emojis/1f468-1f3fd-200d-1f9b1.png b/site/static/emojis/1f468-1f3fd-200d-1f9b1.png new file mode 100644 index 0000000000000..a50bcdb773732 Binary files /dev/null and b/site/static/emojis/1f468-1f3fd-200d-1f9b1.png differ diff --git a/site/static/emojis/1f468-1f3fd-200d-1f9b2.png b/site/static/emojis/1f468-1f3fd-200d-1f9b2.png new file mode 100644 index 0000000000000..7f8c9c0343888 Binary files /dev/null and b/site/static/emojis/1f468-1f3fd-200d-1f9b2.png differ diff --git a/site/static/emojis/1f468-1f3fd-200d-1f9b3.png b/site/static/emojis/1f468-1f3fd-200d-1f9b3.png new file mode 100644 index 0000000000000..d9ab3d622c129 Binary files /dev/null and b/site/static/emojis/1f468-1f3fd-200d-1f9b3.png differ diff --git a/site/static/emojis/1f468-1f3fd-200d-1f9bc.png b/site/static/emojis/1f468-1f3fd-200d-1f9bc.png new file mode 100644 index 0000000000000..cd6f3ee38bd28 Binary files /dev/null and b/site/static/emojis/1f468-1f3fd-200d-1f9bc.png differ diff --git a/site/static/emojis/1f468-1f3fd-200d-1f9bd.png b/site/static/emojis/1f468-1f3fd-200d-1f9bd.png new file mode 100644 index 0000000000000..bea6fd5f8ffb8 Binary files /dev/null and b/site/static/emojis/1f468-1f3fd-200d-1f9bd.png differ diff --git a/site/static/emojis/1f468-1f3fd-200d-2695-fe0f.png b/site/static/emojis/1f468-1f3fd-200d-2695-fe0f.png new file mode 100644 index 0000000000000..43c4697839756 Binary files /dev/null and b/site/static/emojis/1f468-1f3fd-200d-2695-fe0f.png differ diff --git a/site/static/emojis/1f468-1f3fd-200d-2696-fe0f.png b/site/static/emojis/1f468-1f3fd-200d-2696-fe0f.png new file mode 100644 index 0000000000000..5ba5b8635fef3 Binary files /dev/null and b/site/static/emojis/1f468-1f3fd-200d-2696-fe0f.png differ diff --git a/site/static/emojis/1f468-1f3fd-200d-2708-fe0f.png b/site/static/emojis/1f468-1f3fd-200d-2708-fe0f.png new file mode 100644 index 0000000000000..6ed640ab1ef07 Binary files /dev/null and b/site/static/emojis/1f468-1f3fd-200d-2708-fe0f.png differ diff --git a/site/static/emojis/1f468-1f3fd-200d-2764-fe0f-200d-1f468-1f3fb.png b/site/static/emojis/1f468-1f3fd-200d-2764-fe0f-200d-1f468-1f3fb.png new file mode 100644 index 0000000000000..b6c8a1110f88e Binary files /dev/null and b/site/static/emojis/1f468-1f3fd-200d-2764-fe0f-200d-1f468-1f3fb.png differ diff --git a/site/static/emojis/1f468-1f3fd-200d-2764-fe0f-200d-1f468-1f3fc.png b/site/static/emojis/1f468-1f3fd-200d-2764-fe0f-200d-1f468-1f3fc.png new file mode 100644 index 0000000000000..92f4a52f4cdfb Binary files /dev/null and b/site/static/emojis/1f468-1f3fd-200d-2764-fe0f-200d-1f468-1f3fc.png differ diff --git a/site/static/emojis/1f468-1f3fd-200d-2764-fe0f-200d-1f468-1f3fd.png b/site/static/emojis/1f468-1f3fd-200d-2764-fe0f-200d-1f468-1f3fd.png new file mode 100644 index 0000000000000..651837977e0c6 Binary files /dev/null and b/site/static/emojis/1f468-1f3fd-200d-2764-fe0f-200d-1f468-1f3fd.png differ diff --git a/site/static/emojis/1f468-1f3fd-200d-2764-fe0f-200d-1f468-1f3fe.png b/site/static/emojis/1f468-1f3fd-200d-2764-fe0f-200d-1f468-1f3fe.png new file mode 100644 index 0000000000000..6b72c3a5e575c Binary files /dev/null and b/site/static/emojis/1f468-1f3fd-200d-2764-fe0f-200d-1f468-1f3fe.png differ diff --git a/site/static/emojis/1f468-1f3fd-200d-2764-fe0f-200d-1f468-1f3ff.png b/site/static/emojis/1f468-1f3fd-200d-2764-fe0f-200d-1f468-1f3ff.png new file mode 100644 index 0000000000000..546203a463f2a Binary files /dev/null and b/site/static/emojis/1f468-1f3fd-200d-2764-fe0f-200d-1f468-1f3ff.png differ diff --git a/site/static/emojis/1f468-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fb.png b/site/static/emojis/1f468-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fb.png new file mode 100644 index 0000000000000..b101259ad4872 Binary files /dev/null and b/site/static/emojis/1f468-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fb.png differ diff --git a/site/static/emojis/1f468-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fc.png b/site/static/emojis/1f468-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fc.png new file mode 100644 index 0000000000000..bef3788ae07cd Binary files /dev/null and b/site/static/emojis/1f468-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fc.png differ diff --git a/site/static/emojis/1f468-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fd.png b/site/static/emojis/1f468-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fd.png new file mode 100644 index 0000000000000..529c3e6041c03 Binary files /dev/null and b/site/static/emojis/1f468-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fd.png differ diff --git a/site/static/emojis/1f468-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fe.png b/site/static/emojis/1f468-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fe.png new file mode 100644 index 0000000000000..59617840ca304 Binary files /dev/null and b/site/static/emojis/1f468-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fe.png differ diff --git a/site/static/emojis/1f468-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3ff.png b/site/static/emojis/1f468-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3ff.png new file mode 100644 index 0000000000000..8cb73c6954e1e Binary files /dev/null and b/site/static/emojis/1f468-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3ff.png differ diff --git a/site/static/emojis/1f468-1f3fd.png b/site/static/emojis/1f468-1f3fd.png new file mode 100644 index 0000000000000..e4aea99247867 Binary files /dev/null and b/site/static/emojis/1f468-1f3fd.png differ diff --git a/site/static/emojis/1f468-1f3fe-200d-1f33e.png b/site/static/emojis/1f468-1f3fe-200d-1f33e.png new file mode 100644 index 0000000000000..4288e466d1fec Binary files /dev/null and b/site/static/emojis/1f468-1f3fe-200d-1f33e.png differ diff --git a/site/static/emojis/1f468-1f3fe-200d-1f373.png b/site/static/emojis/1f468-1f3fe-200d-1f373.png new file mode 100644 index 0000000000000..cbccc305efd54 Binary files /dev/null and b/site/static/emojis/1f468-1f3fe-200d-1f373.png differ diff --git a/site/static/emojis/1f468-1f3fe-200d-1f37c.png b/site/static/emojis/1f468-1f3fe-200d-1f37c.png new file mode 100644 index 0000000000000..daa4a1bd54a61 Binary files /dev/null and b/site/static/emojis/1f468-1f3fe-200d-1f37c.png differ diff --git a/site/static/emojis/1f468-1f3fe-200d-1f384.png b/site/static/emojis/1f468-1f3fe-200d-1f384.png new file mode 100644 index 0000000000000..bbb8796fdbd58 Binary files /dev/null and b/site/static/emojis/1f468-1f3fe-200d-1f384.png differ diff --git a/site/static/emojis/1f468-1f3fe-200d-1f393.png b/site/static/emojis/1f468-1f3fe-200d-1f393.png new file mode 100644 index 0000000000000..b6ea714bc6c29 Binary files /dev/null and b/site/static/emojis/1f468-1f3fe-200d-1f393.png differ diff --git a/site/static/emojis/1f468-1f3fe-200d-1f3a4.png b/site/static/emojis/1f468-1f3fe-200d-1f3a4.png new file mode 100644 index 0000000000000..c354254bd6afe Binary files /dev/null and b/site/static/emojis/1f468-1f3fe-200d-1f3a4.png differ diff --git a/site/static/emojis/1f468-1f3fe-200d-1f3a8.png b/site/static/emojis/1f468-1f3fe-200d-1f3a8.png new file mode 100644 index 0000000000000..6aeda931f884f Binary files /dev/null and b/site/static/emojis/1f468-1f3fe-200d-1f3a8.png differ diff --git a/site/static/emojis/1f468-1f3fe-200d-1f3eb.png b/site/static/emojis/1f468-1f3fe-200d-1f3eb.png new file mode 100644 index 0000000000000..ab2aa4994dc99 Binary files /dev/null and b/site/static/emojis/1f468-1f3fe-200d-1f3eb.png differ diff --git a/site/static/emojis/1f468-1f3fe-200d-1f3ed.png b/site/static/emojis/1f468-1f3fe-200d-1f3ed.png new file mode 100644 index 0000000000000..421a07faa9306 Binary files /dev/null and b/site/static/emojis/1f468-1f3fe-200d-1f3ed.png differ diff --git a/site/static/emojis/1f468-1f3fe-200d-1f4bb.png b/site/static/emojis/1f468-1f3fe-200d-1f4bb.png new file mode 100644 index 0000000000000..a9e8269bd4734 Binary files /dev/null and b/site/static/emojis/1f468-1f3fe-200d-1f4bb.png differ diff --git a/site/static/emojis/1f468-1f3fe-200d-1f4bc.png b/site/static/emojis/1f468-1f3fe-200d-1f4bc.png new file mode 100644 index 0000000000000..767ad37fdbecc Binary files /dev/null and b/site/static/emojis/1f468-1f3fe-200d-1f4bc.png differ diff --git a/site/static/emojis/1f468-1f3fe-200d-1f527.png b/site/static/emojis/1f468-1f3fe-200d-1f527.png new file mode 100644 index 0000000000000..f1793d24f4db8 Binary files /dev/null and b/site/static/emojis/1f468-1f3fe-200d-1f527.png differ diff --git a/site/static/emojis/1f468-1f3fe-200d-1f52c.png b/site/static/emojis/1f468-1f3fe-200d-1f52c.png new file mode 100644 index 0000000000000..39830d40784ee Binary files /dev/null and b/site/static/emojis/1f468-1f3fe-200d-1f52c.png differ diff --git a/site/static/emojis/1f468-1f3fe-200d-1f680.png b/site/static/emojis/1f468-1f3fe-200d-1f680.png new file mode 100644 index 0000000000000..a19a44cb6ef6f Binary files /dev/null and b/site/static/emojis/1f468-1f3fe-200d-1f680.png differ diff --git a/site/static/emojis/1f468-1f3fe-200d-1f692.png b/site/static/emojis/1f468-1f3fe-200d-1f692.png new file mode 100644 index 0000000000000..d6eb28613d606 Binary files /dev/null and b/site/static/emojis/1f468-1f3fe-200d-1f692.png differ diff --git a/site/static/emojis/1f468-1f3fe-200d-1f91d-200d-1f468-1f3fb.png b/site/static/emojis/1f468-1f3fe-200d-1f91d-200d-1f468-1f3fb.png new file mode 100644 index 0000000000000..7e58b7fb33b50 Binary files /dev/null and b/site/static/emojis/1f468-1f3fe-200d-1f91d-200d-1f468-1f3fb.png differ diff --git a/site/static/emojis/1f468-1f3fe-200d-1f91d-200d-1f468-1f3fc.png b/site/static/emojis/1f468-1f3fe-200d-1f91d-200d-1f468-1f3fc.png new file mode 100644 index 0000000000000..c4c0bb7c27364 Binary files /dev/null and b/site/static/emojis/1f468-1f3fe-200d-1f91d-200d-1f468-1f3fc.png differ diff --git a/site/static/emojis/1f468-1f3fe-200d-1f91d-200d-1f468-1f3fd.png b/site/static/emojis/1f468-1f3fe-200d-1f91d-200d-1f468-1f3fd.png new file mode 100644 index 0000000000000..1c87ac47956e7 Binary files /dev/null and b/site/static/emojis/1f468-1f3fe-200d-1f91d-200d-1f468-1f3fd.png differ diff --git a/site/static/emojis/1f468-1f3fe-200d-1f91d-200d-1f468-1f3ff.png b/site/static/emojis/1f468-1f3fe-200d-1f91d-200d-1f468-1f3ff.png new file mode 100644 index 0000000000000..9acfab532a0b2 Binary files /dev/null and b/site/static/emojis/1f468-1f3fe-200d-1f91d-200d-1f468-1f3ff.png differ diff --git a/site/static/emojis/1f468-1f3fe-200d-1f9af.png b/site/static/emojis/1f468-1f3fe-200d-1f9af.png new file mode 100644 index 0000000000000..ea907f31fbea5 Binary files /dev/null and b/site/static/emojis/1f468-1f3fe-200d-1f9af.png differ diff --git a/site/static/emojis/1f468-1f3fe-200d-1f9b0.png b/site/static/emojis/1f468-1f3fe-200d-1f9b0.png new file mode 100644 index 0000000000000..e1e44448e9f95 Binary files /dev/null and b/site/static/emojis/1f468-1f3fe-200d-1f9b0.png differ diff --git a/site/static/emojis/1f468-1f3fe-200d-1f9b1.png b/site/static/emojis/1f468-1f3fe-200d-1f9b1.png new file mode 100644 index 0000000000000..1cd00e7767884 Binary files /dev/null and b/site/static/emojis/1f468-1f3fe-200d-1f9b1.png differ diff --git a/site/static/emojis/1f468-1f3fe-200d-1f9b2.png b/site/static/emojis/1f468-1f3fe-200d-1f9b2.png new file mode 100644 index 0000000000000..686089b88a6e8 Binary files /dev/null and b/site/static/emojis/1f468-1f3fe-200d-1f9b2.png differ diff --git a/site/static/emojis/1f468-1f3fe-200d-1f9b3.png b/site/static/emojis/1f468-1f3fe-200d-1f9b3.png new file mode 100644 index 0000000000000..3820783ba8e80 Binary files /dev/null and b/site/static/emojis/1f468-1f3fe-200d-1f9b3.png differ diff --git a/site/static/emojis/1f468-1f3fe-200d-1f9bc.png b/site/static/emojis/1f468-1f3fe-200d-1f9bc.png new file mode 100644 index 0000000000000..4c01fea875068 Binary files /dev/null and b/site/static/emojis/1f468-1f3fe-200d-1f9bc.png differ diff --git a/site/static/emojis/1f468-1f3fe-200d-1f9bd.png b/site/static/emojis/1f468-1f3fe-200d-1f9bd.png new file mode 100644 index 0000000000000..4d89035705faf Binary files /dev/null and b/site/static/emojis/1f468-1f3fe-200d-1f9bd.png differ diff --git a/site/static/emojis/1f468-1f3fe-200d-2695-fe0f.png b/site/static/emojis/1f468-1f3fe-200d-2695-fe0f.png new file mode 100644 index 0000000000000..7bbd95a8155b8 Binary files /dev/null and b/site/static/emojis/1f468-1f3fe-200d-2695-fe0f.png differ diff --git a/site/static/emojis/1f468-1f3fe-200d-2696-fe0f.png b/site/static/emojis/1f468-1f3fe-200d-2696-fe0f.png new file mode 100644 index 0000000000000..46dfbd0f1e928 Binary files /dev/null and b/site/static/emojis/1f468-1f3fe-200d-2696-fe0f.png differ diff --git a/site/static/emojis/1f468-1f3fe-200d-2708-fe0f.png b/site/static/emojis/1f468-1f3fe-200d-2708-fe0f.png new file mode 100644 index 0000000000000..f51a7bb099232 Binary files /dev/null and b/site/static/emojis/1f468-1f3fe-200d-2708-fe0f.png differ diff --git a/site/static/emojis/1f468-1f3fe-200d-2764-fe0f-200d-1f468-1f3fb.png b/site/static/emojis/1f468-1f3fe-200d-2764-fe0f-200d-1f468-1f3fb.png new file mode 100644 index 0000000000000..da5c2ec02b59a Binary files /dev/null and b/site/static/emojis/1f468-1f3fe-200d-2764-fe0f-200d-1f468-1f3fb.png differ diff --git a/site/static/emojis/1f468-1f3fe-200d-2764-fe0f-200d-1f468-1f3fc.png b/site/static/emojis/1f468-1f3fe-200d-2764-fe0f-200d-1f468-1f3fc.png new file mode 100644 index 0000000000000..619e0c9dc2798 Binary files /dev/null and b/site/static/emojis/1f468-1f3fe-200d-2764-fe0f-200d-1f468-1f3fc.png differ diff --git a/site/static/emojis/1f468-1f3fe-200d-2764-fe0f-200d-1f468-1f3fd.png b/site/static/emojis/1f468-1f3fe-200d-2764-fe0f-200d-1f468-1f3fd.png new file mode 100644 index 0000000000000..ee52f49cf5c0e Binary files /dev/null and b/site/static/emojis/1f468-1f3fe-200d-2764-fe0f-200d-1f468-1f3fd.png differ diff --git a/site/static/emojis/1f468-1f3fe-200d-2764-fe0f-200d-1f468-1f3fe.png b/site/static/emojis/1f468-1f3fe-200d-2764-fe0f-200d-1f468-1f3fe.png new file mode 100644 index 0000000000000..50d9c522f883f Binary files /dev/null and b/site/static/emojis/1f468-1f3fe-200d-2764-fe0f-200d-1f468-1f3fe.png differ diff --git a/site/static/emojis/1f468-1f3fe-200d-2764-fe0f-200d-1f468-1f3ff.png b/site/static/emojis/1f468-1f3fe-200d-2764-fe0f-200d-1f468-1f3ff.png new file mode 100644 index 0000000000000..da404b418229c Binary files /dev/null and b/site/static/emojis/1f468-1f3fe-200d-2764-fe0f-200d-1f468-1f3ff.png differ diff --git a/site/static/emojis/1f468-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fb.png b/site/static/emojis/1f468-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fb.png new file mode 100644 index 0000000000000..9b1088d2dcadf Binary files /dev/null and b/site/static/emojis/1f468-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fb.png differ diff --git a/site/static/emojis/1f468-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fc.png b/site/static/emojis/1f468-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fc.png new file mode 100644 index 0000000000000..4bafa7449decd Binary files /dev/null and b/site/static/emojis/1f468-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fc.png differ diff --git a/site/static/emojis/1f468-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fd.png b/site/static/emojis/1f468-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fd.png new file mode 100644 index 0000000000000..4ad28a205b1f8 Binary files /dev/null and b/site/static/emojis/1f468-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fd.png differ diff --git a/site/static/emojis/1f468-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fe.png b/site/static/emojis/1f468-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fe.png new file mode 100644 index 0000000000000..e2e60de7f0a1b Binary files /dev/null and b/site/static/emojis/1f468-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fe.png differ diff --git a/site/static/emojis/1f468-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3ff.png b/site/static/emojis/1f468-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3ff.png new file mode 100644 index 0000000000000..06844e2d3248b Binary files /dev/null and b/site/static/emojis/1f468-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3ff.png differ diff --git a/site/static/emojis/1f468-1f3fe.png b/site/static/emojis/1f468-1f3fe.png new file mode 100644 index 0000000000000..98fd811ee3350 Binary files /dev/null and b/site/static/emojis/1f468-1f3fe.png differ diff --git a/site/static/emojis/1f468-1f3ff-200d-1f33e.png b/site/static/emojis/1f468-1f3ff-200d-1f33e.png new file mode 100644 index 0000000000000..017942bcd6c0f Binary files /dev/null and b/site/static/emojis/1f468-1f3ff-200d-1f33e.png differ diff --git a/site/static/emojis/1f468-1f3ff-200d-1f373.png b/site/static/emojis/1f468-1f3ff-200d-1f373.png new file mode 100644 index 0000000000000..8bd27337325ae Binary files /dev/null and b/site/static/emojis/1f468-1f3ff-200d-1f373.png differ diff --git a/site/static/emojis/1f468-1f3ff-200d-1f37c.png b/site/static/emojis/1f468-1f3ff-200d-1f37c.png new file mode 100644 index 0000000000000..8e30073f4f98b Binary files /dev/null and b/site/static/emojis/1f468-1f3ff-200d-1f37c.png differ diff --git a/site/static/emojis/1f468-1f3ff-200d-1f384.png b/site/static/emojis/1f468-1f3ff-200d-1f384.png new file mode 100644 index 0000000000000..1432544fc2c5f Binary files /dev/null and b/site/static/emojis/1f468-1f3ff-200d-1f384.png differ diff --git a/site/static/emojis/1f468-1f3ff-200d-1f393.png b/site/static/emojis/1f468-1f3ff-200d-1f393.png new file mode 100644 index 0000000000000..ef973d59b6fa7 Binary files /dev/null and b/site/static/emojis/1f468-1f3ff-200d-1f393.png differ diff --git a/site/static/emojis/1f468-1f3ff-200d-1f3a4.png b/site/static/emojis/1f468-1f3ff-200d-1f3a4.png new file mode 100644 index 0000000000000..839463e530fdc Binary files /dev/null and b/site/static/emojis/1f468-1f3ff-200d-1f3a4.png differ diff --git a/site/static/emojis/1f468-1f3ff-200d-1f3a8.png b/site/static/emojis/1f468-1f3ff-200d-1f3a8.png new file mode 100644 index 0000000000000..494c966bd74e2 Binary files /dev/null and b/site/static/emojis/1f468-1f3ff-200d-1f3a8.png differ diff --git a/site/static/emojis/1f468-1f3ff-200d-1f3eb.png b/site/static/emojis/1f468-1f3ff-200d-1f3eb.png new file mode 100644 index 0000000000000..6687d31166bb4 Binary files /dev/null and b/site/static/emojis/1f468-1f3ff-200d-1f3eb.png differ diff --git a/site/static/emojis/1f468-1f3ff-200d-1f3ed.png b/site/static/emojis/1f468-1f3ff-200d-1f3ed.png new file mode 100644 index 0000000000000..581f0ac8d5fb8 Binary files /dev/null and b/site/static/emojis/1f468-1f3ff-200d-1f3ed.png differ diff --git a/site/static/emojis/1f468-1f3ff-200d-1f4bb.png b/site/static/emojis/1f468-1f3ff-200d-1f4bb.png new file mode 100644 index 0000000000000..475e95e11b86c Binary files /dev/null and b/site/static/emojis/1f468-1f3ff-200d-1f4bb.png differ diff --git a/site/static/emojis/1f468-1f3ff-200d-1f4bc.png b/site/static/emojis/1f468-1f3ff-200d-1f4bc.png new file mode 100644 index 0000000000000..ce338cf323756 Binary files /dev/null and b/site/static/emojis/1f468-1f3ff-200d-1f4bc.png differ diff --git a/site/static/emojis/1f468-1f3ff-200d-1f527.png b/site/static/emojis/1f468-1f3ff-200d-1f527.png new file mode 100644 index 0000000000000..89f704df67da5 Binary files /dev/null and b/site/static/emojis/1f468-1f3ff-200d-1f527.png differ diff --git a/site/static/emojis/1f468-1f3ff-200d-1f52c.png b/site/static/emojis/1f468-1f3ff-200d-1f52c.png new file mode 100644 index 0000000000000..2b592b89dabf1 Binary files /dev/null and b/site/static/emojis/1f468-1f3ff-200d-1f52c.png differ diff --git a/site/static/emojis/1f468-1f3ff-200d-1f680.png b/site/static/emojis/1f468-1f3ff-200d-1f680.png new file mode 100644 index 0000000000000..c307fce21ccc9 Binary files /dev/null and b/site/static/emojis/1f468-1f3ff-200d-1f680.png differ diff --git a/site/static/emojis/1f468-1f3ff-200d-1f692.png b/site/static/emojis/1f468-1f3ff-200d-1f692.png new file mode 100644 index 0000000000000..fa5f4e772c8e8 Binary files /dev/null and b/site/static/emojis/1f468-1f3ff-200d-1f692.png differ diff --git a/site/static/emojis/1f468-1f3ff-200d-1f91d-200d-1f468-1f3fb.png b/site/static/emojis/1f468-1f3ff-200d-1f91d-200d-1f468-1f3fb.png new file mode 100644 index 0000000000000..99feb8229beb7 Binary files /dev/null and b/site/static/emojis/1f468-1f3ff-200d-1f91d-200d-1f468-1f3fb.png differ diff --git a/site/static/emojis/1f468-1f3ff-200d-1f91d-200d-1f468-1f3fc.png b/site/static/emojis/1f468-1f3ff-200d-1f91d-200d-1f468-1f3fc.png new file mode 100644 index 0000000000000..2ec63cdce3f2c Binary files /dev/null and b/site/static/emojis/1f468-1f3ff-200d-1f91d-200d-1f468-1f3fc.png differ diff --git a/site/static/emojis/1f468-1f3ff-200d-1f91d-200d-1f468-1f3fd.png b/site/static/emojis/1f468-1f3ff-200d-1f91d-200d-1f468-1f3fd.png new file mode 100644 index 0000000000000..6d7f9a24dfa88 Binary files /dev/null and b/site/static/emojis/1f468-1f3ff-200d-1f91d-200d-1f468-1f3fd.png differ diff --git a/site/static/emojis/1f468-1f3ff-200d-1f91d-200d-1f468-1f3fe.png b/site/static/emojis/1f468-1f3ff-200d-1f91d-200d-1f468-1f3fe.png new file mode 100644 index 0000000000000..d7faf9293bd00 Binary files /dev/null and b/site/static/emojis/1f468-1f3ff-200d-1f91d-200d-1f468-1f3fe.png differ diff --git a/site/static/emojis/1f468-1f3ff-200d-1f9af.png b/site/static/emojis/1f468-1f3ff-200d-1f9af.png new file mode 100644 index 0000000000000..fd675d90c30ee Binary files /dev/null and b/site/static/emojis/1f468-1f3ff-200d-1f9af.png differ diff --git a/site/static/emojis/1f468-1f3ff-200d-1f9b0.png b/site/static/emojis/1f468-1f3ff-200d-1f9b0.png new file mode 100644 index 0000000000000..59c95dcd28801 Binary files /dev/null and b/site/static/emojis/1f468-1f3ff-200d-1f9b0.png differ diff --git a/site/static/emojis/1f468-1f3ff-200d-1f9b1.png b/site/static/emojis/1f468-1f3ff-200d-1f9b1.png new file mode 100644 index 0000000000000..d3f13d397923a Binary files /dev/null and b/site/static/emojis/1f468-1f3ff-200d-1f9b1.png differ diff --git a/site/static/emojis/1f468-1f3ff-200d-1f9b2.png b/site/static/emojis/1f468-1f3ff-200d-1f9b2.png new file mode 100644 index 0000000000000..4948d260302fc Binary files /dev/null and b/site/static/emojis/1f468-1f3ff-200d-1f9b2.png differ diff --git a/site/static/emojis/1f468-1f3ff-200d-1f9b3.png b/site/static/emojis/1f468-1f3ff-200d-1f9b3.png new file mode 100644 index 0000000000000..b66b396f69422 Binary files /dev/null and b/site/static/emojis/1f468-1f3ff-200d-1f9b3.png differ diff --git a/site/static/emojis/1f468-1f3ff-200d-1f9bc.png b/site/static/emojis/1f468-1f3ff-200d-1f9bc.png new file mode 100644 index 0000000000000..bdcdcd1cdec0a Binary files /dev/null and b/site/static/emojis/1f468-1f3ff-200d-1f9bc.png differ diff --git a/site/static/emojis/1f468-1f3ff-200d-1f9bd.png b/site/static/emojis/1f468-1f3ff-200d-1f9bd.png new file mode 100644 index 0000000000000..041fd9f5b9246 Binary files /dev/null and b/site/static/emojis/1f468-1f3ff-200d-1f9bd.png differ diff --git a/site/static/emojis/1f468-1f3ff-200d-2695-fe0f.png b/site/static/emojis/1f468-1f3ff-200d-2695-fe0f.png new file mode 100644 index 0000000000000..98c9f1b28e8cc Binary files /dev/null and b/site/static/emojis/1f468-1f3ff-200d-2695-fe0f.png differ diff --git a/site/static/emojis/1f468-1f3ff-200d-2696-fe0f.png b/site/static/emojis/1f468-1f3ff-200d-2696-fe0f.png new file mode 100644 index 0000000000000..ec57bb7631d61 Binary files /dev/null and b/site/static/emojis/1f468-1f3ff-200d-2696-fe0f.png differ diff --git a/site/static/emojis/1f468-1f3ff-200d-2708-fe0f.png b/site/static/emojis/1f468-1f3ff-200d-2708-fe0f.png new file mode 100644 index 0000000000000..76e27a6cfa530 Binary files /dev/null and b/site/static/emojis/1f468-1f3ff-200d-2708-fe0f.png differ diff --git a/site/static/emojis/1f468-1f3ff-200d-2764-fe0f-200d-1f468-1f3fb.png b/site/static/emojis/1f468-1f3ff-200d-2764-fe0f-200d-1f468-1f3fb.png new file mode 100644 index 0000000000000..0c837fe51f5be Binary files /dev/null and b/site/static/emojis/1f468-1f3ff-200d-2764-fe0f-200d-1f468-1f3fb.png differ diff --git a/site/static/emojis/1f468-1f3ff-200d-2764-fe0f-200d-1f468-1f3fc.png b/site/static/emojis/1f468-1f3ff-200d-2764-fe0f-200d-1f468-1f3fc.png new file mode 100644 index 0000000000000..e53c5b5ab0191 Binary files /dev/null and b/site/static/emojis/1f468-1f3ff-200d-2764-fe0f-200d-1f468-1f3fc.png differ diff --git a/site/static/emojis/1f468-1f3ff-200d-2764-fe0f-200d-1f468-1f3fd.png b/site/static/emojis/1f468-1f3ff-200d-2764-fe0f-200d-1f468-1f3fd.png new file mode 100644 index 0000000000000..8217fadc48082 Binary files /dev/null and b/site/static/emojis/1f468-1f3ff-200d-2764-fe0f-200d-1f468-1f3fd.png differ diff --git a/site/static/emojis/1f468-1f3ff-200d-2764-fe0f-200d-1f468-1f3fe.png b/site/static/emojis/1f468-1f3ff-200d-2764-fe0f-200d-1f468-1f3fe.png new file mode 100644 index 0000000000000..7f6849e4be959 Binary files /dev/null and b/site/static/emojis/1f468-1f3ff-200d-2764-fe0f-200d-1f468-1f3fe.png differ diff --git a/site/static/emojis/1f468-1f3ff-200d-2764-fe0f-200d-1f468-1f3ff.png b/site/static/emojis/1f468-1f3ff-200d-2764-fe0f-200d-1f468-1f3ff.png new file mode 100644 index 0000000000000..62bce01c72999 Binary files /dev/null and b/site/static/emojis/1f468-1f3ff-200d-2764-fe0f-200d-1f468-1f3ff.png differ diff --git a/site/static/emojis/1f468-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fb.png b/site/static/emojis/1f468-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fb.png new file mode 100644 index 0000000000000..534a9fd574cb4 Binary files /dev/null and b/site/static/emojis/1f468-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fb.png differ diff --git a/site/static/emojis/1f468-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fc.png b/site/static/emojis/1f468-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fc.png new file mode 100644 index 0000000000000..64d4c1c1f7e05 Binary files /dev/null and b/site/static/emojis/1f468-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fc.png differ diff --git a/site/static/emojis/1f468-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fd.png b/site/static/emojis/1f468-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fd.png new file mode 100644 index 0000000000000..7e4cf9dff4e05 Binary files /dev/null and b/site/static/emojis/1f468-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fd.png differ diff --git a/site/static/emojis/1f468-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fe.png b/site/static/emojis/1f468-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fe.png new file mode 100644 index 0000000000000..7afaeaf87cbb7 Binary files /dev/null and b/site/static/emojis/1f468-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fe.png differ diff --git a/site/static/emojis/1f468-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3ff.png b/site/static/emojis/1f468-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3ff.png new file mode 100644 index 0000000000000..741c39ca2438d Binary files /dev/null and b/site/static/emojis/1f468-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3ff.png differ diff --git a/site/static/emojis/1f468-1f3ff.png b/site/static/emojis/1f468-1f3ff.png new file mode 100644 index 0000000000000..94443e7b543d3 Binary files /dev/null and b/site/static/emojis/1f468-1f3ff.png differ diff --git a/site/static/emojis/1f468-200d-1f33e.png b/site/static/emojis/1f468-200d-1f33e.png new file mode 100644 index 0000000000000..7d7bc9383423e Binary files /dev/null and b/site/static/emojis/1f468-200d-1f33e.png differ diff --git a/site/static/emojis/1f468-200d-1f373.png b/site/static/emojis/1f468-200d-1f373.png new file mode 100644 index 0000000000000..370414efa8ad1 Binary files /dev/null and b/site/static/emojis/1f468-200d-1f373.png differ diff --git a/site/static/emojis/1f468-200d-1f37c.png b/site/static/emojis/1f468-200d-1f37c.png new file mode 100644 index 0000000000000..38c86b659031f Binary files /dev/null and b/site/static/emojis/1f468-200d-1f37c.png differ diff --git a/site/static/emojis/1f468-200d-1f384.png b/site/static/emojis/1f468-200d-1f384.png new file mode 100644 index 0000000000000..44e75755f2198 Binary files /dev/null and b/site/static/emojis/1f468-200d-1f384.png differ diff --git a/site/static/emojis/1f468-200d-1f393.png b/site/static/emojis/1f468-200d-1f393.png new file mode 100644 index 0000000000000..9cd13fdc726ce Binary files /dev/null and b/site/static/emojis/1f468-200d-1f393.png differ diff --git a/site/static/emojis/1f468-200d-1f3a4.png b/site/static/emojis/1f468-200d-1f3a4.png new file mode 100644 index 0000000000000..e45c0323b4674 Binary files /dev/null and b/site/static/emojis/1f468-200d-1f3a4.png differ diff --git a/site/static/emojis/1f468-200d-1f3a8.png b/site/static/emojis/1f468-200d-1f3a8.png new file mode 100644 index 0000000000000..00af96eb897ec Binary files /dev/null and b/site/static/emojis/1f468-200d-1f3a8.png differ diff --git a/site/static/emojis/1f468-200d-1f3eb.png b/site/static/emojis/1f468-200d-1f3eb.png new file mode 100644 index 0000000000000..fd1fd2a4f5c72 Binary files /dev/null and b/site/static/emojis/1f468-200d-1f3eb.png differ diff --git a/site/static/emojis/1f468-200d-1f3ed.png b/site/static/emojis/1f468-200d-1f3ed.png new file mode 100644 index 0000000000000..e934a5ada3b27 Binary files /dev/null and b/site/static/emojis/1f468-200d-1f3ed.png differ diff --git a/site/static/emojis/1f468-200d-1f466-200d-1f466.png b/site/static/emojis/1f468-200d-1f466-200d-1f466.png new file mode 100644 index 0000000000000..6a05ea907ddf7 Binary files /dev/null and b/site/static/emojis/1f468-200d-1f466-200d-1f466.png differ diff --git a/site/static/emojis/1f468-200d-1f466.png b/site/static/emojis/1f468-200d-1f466.png new file mode 100644 index 0000000000000..76513b6f11113 Binary files /dev/null and b/site/static/emojis/1f468-200d-1f466.png differ diff --git a/site/static/emojis/1f468-200d-1f467-200d-1f466.png b/site/static/emojis/1f468-200d-1f467-200d-1f466.png new file mode 100644 index 0000000000000..ce964aafdc7d1 Binary files /dev/null and b/site/static/emojis/1f468-200d-1f467-200d-1f466.png differ diff --git a/site/static/emojis/1f468-200d-1f467-200d-1f467.png b/site/static/emojis/1f468-200d-1f467-200d-1f467.png new file mode 100644 index 0000000000000..229540a57456d Binary files /dev/null and b/site/static/emojis/1f468-200d-1f467-200d-1f467.png differ diff --git a/site/static/emojis/1f468-200d-1f467.png b/site/static/emojis/1f468-200d-1f467.png new file mode 100644 index 0000000000000..1804a244a51f3 Binary files /dev/null and b/site/static/emojis/1f468-200d-1f467.png differ diff --git a/site/static/emojis/1f468-200d-1f468-200d-1f466-200d-1f466.png b/site/static/emojis/1f468-200d-1f468-200d-1f466-200d-1f466.png new file mode 100644 index 0000000000000..0431738f3a0ec Binary files /dev/null and b/site/static/emojis/1f468-200d-1f468-200d-1f466-200d-1f466.png differ diff --git a/site/static/emojis/1f468-200d-1f468-200d-1f466.png b/site/static/emojis/1f468-200d-1f468-200d-1f466.png new file mode 100644 index 0000000000000..ccbcfe8a46b38 Binary files /dev/null and b/site/static/emojis/1f468-200d-1f468-200d-1f466.png differ diff --git a/site/static/emojis/1f468-200d-1f468-200d-1f467-200d-1f466.png b/site/static/emojis/1f468-200d-1f468-200d-1f467-200d-1f466.png new file mode 100644 index 0000000000000..29461eeaf2666 Binary files /dev/null and b/site/static/emojis/1f468-200d-1f468-200d-1f467-200d-1f466.png differ diff --git a/site/static/emojis/1f468-200d-1f468-200d-1f467-200d-1f467.png b/site/static/emojis/1f468-200d-1f468-200d-1f467-200d-1f467.png new file mode 100644 index 0000000000000..96819e84f9490 Binary files /dev/null and b/site/static/emojis/1f468-200d-1f468-200d-1f467-200d-1f467.png differ diff --git a/site/static/emojis/1f468-200d-1f468-200d-1f467.png b/site/static/emojis/1f468-200d-1f468-200d-1f467.png new file mode 100644 index 0000000000000..82981a5616f0c Binary files /dev/null and b/site/static/emojis/1f468-200d-1f468-200d-1f467.png differ diff --git a/site/static/emojis/1f468-200d-1f469-200d-1f466-200d-1f466.png b/site/static/emojis/1f468-200d-1f469-200d-1f466-200d-1f466.png new file mode 100644 index 0000000000000..6a14c29f03f00 Binary files /dev/null and b/site/static/emojis/1f468-200d-1f469-200d-1f466-200d-1f466.png differ diff --git a/site/static/emojis/1f468-200d-1f469-200d-1f466.png b/site/static/emojis/1f468-200d-1f469-200d-1f466.png new file mode 100644 index 0000000000000..2f58a80605cb6 Binary files /dev/null and b/site/static/emojis/1f468-200d-1f469-200d-1f466.png differ diff --git a/site/static/emojis/1f468-200d-1f469-200d-1f467-200d-1f466.png b/site/static/emojis/1f468-200d-1f469-200d-1f467-200d-1f466.png new file mode 100644 index 0000000000000..76663a74ee3d9 Binary files /dev/null and b/site/static/emojis/1f468-200d-1f469-200d-1f467-200d-1f466.png differ diff --git a/site/static/emojis/1f468-200d-1f469-200d-1f467-200d-1f467.png b/site/static/emojis/1f468-200d-1f469-200d-1f467-200d-1f467.png new file mode 100644 index 0000000000000..56dd2a91d9d0d Binary files /dev/null and b/site/static/emojis/1f468-200d-1f469-200d-1f467-200d-1f467.png differ diff --git a/site/static/emojis/1f468-200d-1f469-200d-1f467.png b/site/static/emojis/1f468-200d-1f469-200d-1f467.png new file mode 100644 index 0000000000000..c23b12cb1cfd2 Binary files /dev/null and b/site/static/emojis/1f468-200d-1f469-200d-1f467.png differ diff --git a/site/static/emojis/1f468-200d-1f4bb.png b/site/static/emojis/1f468-200d-1f4bb.png new file mode 100644 index 0000000000000..b55ddcb360d08 Binary files /dev/null and b/site/static/emojis/1f468-200d-1f4bb.png differ diff --git a/site/static/emojis/1f468-200d-1f4bc.png b/site/static/emojis/1f468-200d-1f4bc.png new file mode 100644 index 0000000000000..9b1e7dd16742f Binary files /dev/null and b/site/static/emojis/1f468-200d-1f4bc.png differ diff --git a/site/static/emojis/1f468-200d-1f527.png b/site/static/emojis/1f468-200d-1f527.png new file mode 100644 index 0000000000000..d731a12c7cc59 Binary files /dev/null and b/site/static/emojis/1f468-200d-1f527.png differ diff --git a/site/static/emojis/1f468-200d-1f52c.png b/site/static/emojis/1f468-200d-1f52c.png new file mode 100644 index 0000000000000..10d2db918ce42 Binary files /dev/null and b/site/static/emojis/1f468-200d-1f52c.png differ diff --git a/site/static/emojis/1f468-200d-1f680.png b/site/static/emojis/1f468-200d-1f680.png new file mode 100644 index 0000000000000..698e909a12539 Binary files /dev/null and b/site/static/emojis/1f468-200d-1f680.png differ diff --git a/site/static/emojis/1f468-200d-1f692.png b/site/static/emojis/1f468-200d-1f692.png new file mode 100644 index 0000000000000..07fa090b4f48d Binary files /dev/null and b/site/static/emojis/1f468-200d-1f692.png differ diff --git a/site/static/emojis/1f468-200d-1f9af.png b/site/static/emojis/1f468-200d-1f9af.png new file mode 100644 index 0000000000000..3672517803851 Binary files /dev/null and b/site/static/emojis/1f468-200d-1f9af.png differ diff --git a/site/static/emojis/1f468-200d-1f9b0.png b/site/static/emojis/1f468-200d-1f9b0.png new file mode 100644 index 0000000000000..4d5ef0e8408e6 Binary files /dev/null and b/site/static/emojis/1f468-200d-1f9b0.png differ diff --git a/site/static/emojis/1f468-200d-1f9b1.png b/site/static/emojis/1f468-200d-1f9b1.png new file mode 100644 index 0000000000000..36afa4fe95fd3 Binary files /dev/null and b/site/static/emojis/1f468-200d-1f9b1.png differ diff --git a/site/static/emojis/1f468-200d-1f9b2.png b/site/static/emojis/1f468-200d-1f9b2.png new file mode 100644 index 0000000000000..8e3a83850644a Binary files /dev/null and b/site/static/emojis/1f468-200d-1f9b2.png differ diff --git a/site/static/emojis/1f468-200d-1f9b3.png b/site/static/emojis/1f468-200d-1f9b3.png new file mode 100644 index 0000000000000..8886449b99a9f Binary files /dev/null and b/site/static/emojis/1f468-200d-1f9b3.png differ diff --git a/site/static/emojis/1f468-200d-1f9bc.png b/site/static/emojis/1f468-200d-1f9bc.png new file mode 100644 index 0000000000000..d7110f072acf7 Binary files /dev/null and b/site/static/emojis/1f468-200d-1f9bc.png differ diff --git a/site/static/emojis/1f468-200d-1f9bd.png b/site/static/emojis/1f468-200d-1f9bd.png new file mode 100644 index 0000000000000..ce9c939e7c5b0 Binary files /dev/null and b/site/static/emojis/1f468-200d-1f9bd.png differ diff --git a/site/static/emojis/1f468-200d-2695-fe0f.png b/site/static/emojis/1f468-200d-2695-fe0f.png new file mode 100644 index 0000000000000..0155f25b7b035 Binary files /dev/null and b/site/static/emojis/1f468-200d-2695-fe0f.png differ diff --git a/site/static/emojis/1f468-200d-2696-fe0f.png b/site/static/emojis/1f468-200d-2696-fe0f.png new file mode 100644 index 0000000000000..ffba6a5cc3c47 Binary files /dev/null and b/site/static/emojis/1f468-200d-2696-fe0f.png differ diff --git a/site/static/emojis/1f468-200d-2708-fe0f.png b/site/static/emojis/1f468-200d-2708-fe0f.png new file mode 100644 index 0000000000000..9f7bbb145f039 Binary files /dev/null and b/site/static/emojis/1f468-200d-2708-fe0f.png differ diff --git a/site/static/emojis/1f468-200d-2764-fe0f-200d-1f468.png b/site/static/emojis/1f468-200d-2764-fe0f-200d-1f468.png new file mode 100644 index 0000000000000..c332da0d55696 Binary files /dev/null and b/site/static/emojis/1f468-200d-2764-fe0f-200d-1f468.png differ diff --git a/site/static/emojis/1f468-200d-2764-fe0f-200d-1f48b-200d-1f468.png b/site/static/emojis/1f468-200d-2764-fe0f-200d-1f48b-200d-1f468.png new file mode 100644 index 0000000000000..619116ee22b49 Binary files /dev/null and b/site/static/emojis/1f468-200d-2764-fe0f-200d-1f48b-200d-1f468.png differ diff --git a/site/static/emojis/1f468.png b/site/static/emojis/1f468.png new file mode 100644 index 0000000000000..8ebc6be4ae307 Binary files /dev/null and b/site/static/emojis/1f468.png differ diff --git a/site/static/emojis/1f469-1f3fb-200d-1f33e.png b/site/static/emojis/1f469-1f3fb-200d-1f33e.png new file mode 100644 index 0000000000000..01336cf2b676c Binary files /dev/null and b/site/static/emojis/1f469-1f3fb-200d-1f33e.png differ diff --git a/site/static/emojis/1f469-1f3fb-200d-1f373.png b/site/static/emojis/1f469-1f3fb-200d-1f373.png new file mode 100644 index 0000000000000..f2772df0d66a9 Binary files /dev/null and b/site/static/emojis/1f469-1f3fb-200d-1f373.png differ diff --git a/site/static/emojis/1f469-1f3fb-200d-1f37c.png b/site/static/emojis/1f469-1f3fb-200d-1f37c.png new file mode 100644 index 0000000000000..f14e525bd5de7 Binary files /dev/null and b/site/static/emojis/1f469-1f3fb-200d-1f37c.png differ diff --git a/site/static/emojis/1f469-1f3fb-200d-1f384.png b/site/static/emojis/1f469-1f3fb-200d-1f384.png new file mode 100644 index 0000000000000..6d3c340692069 Binary files /dev/null and b/site/static/emojis/1f469-1f3fb-200d-1f384.png differ diff --git a/site/static/emojis/1f469-1f3fb-200d-1f393.png b/site/static/emojis/1f469-1f3fb-200d-1f393.png new file mode 100644 index 0000000000000..b8dda6f8c96a6 Binary files /dev/null and b/site/static/emojis/1f469-1f3fb-200d-1f393.png differ diff --git a/site/static/emojis/1f469-1f3fb-200d-1f3a4.png b/site/static/emojis/1f469-1f3fb-200d-1f3a4.png new file mode 100644 index 0000000000000..ebeac884bd583 Binary files /dev/null and b/site/static/emojis/1f469-1f3fb-200d-1f3a4.png differ diff --git a/site/static/emojis/1f469-1f3fb-200d-1f3a8.png b/site/static/emojis/1f469-1f3fb-200d-1f3a8.png new file mode 100644 index 0000000000000..a8130c1f2eff8 Binary files /dev/null and b/site/static/emojis/1f469-1f3fb-200d-1f3a8.png differ diff --git a/site/static/emojis/1f469-1f3fb-200d-1f3eb.png b/site/static/emojis/1f469-1f3fb-200d-1f3eb.png new file mode 100644 index 0000000000000..ec83c4c826f28 Binary files /dev/null and b/site/static/emojis/1f469-1f3fb-200d-1f3eb.png differ diff --git a/site/static/emojis/1f469-1f3fb-200d-1f3ed.png b/site/static/emojis/1f469-1f3fb-200d-1f3ed.png new file mode 100644 index 0000000000000..8f8f9062a39e7 Binary files /dev/null and b/site/static/emojis/1f469-1f3fb-200d-1f3ed.png differ diff --git a/site/static/emojis/1f469-1f3fb-200d-1f4bb.png b/site/static/emojis/1f469-1f3fb-200d-1f4bb.png new file mode 100644 index 0000000000000..1b4de1c454703 Binary files /dev/null and b/site/static/emojis/1f469-1f3fb-200d-1f4bb.png differ diff --git a/site/static/emojis/1f469-1f3fb-200d-1f4bc.png b/site/static/emojis/1f469-1f3fb-200d-1f4bc.png new file mode 100644 index 0000000000000..c48aabe00b37a Binary files /dev/null and b/site/static/emojis/1f469-1f3fb-200d-1f4bc.png differ diff --git a/site/static/emojis/1f469-1f3fb-200d-1f527.png b/site/static/emojis/1f469-1f3fb-200d-1f527.png new file mode 100644 index 0000000000000..0bdb1bb66bbe9 Binary files /dev/null and b/site/static/emojis/1f469-1f3fb-200d-1f527.png differ diff --git a/site/static/emojis/1f469-1f3fb-200d-1f52c.png b/site/static/emojis/1f469-1f3fb-200d-1f52c.png new file mode 100644 index 0000000000000..3af32eeddbed6 Binary files /dev/null and b/site/static/emojis/1f469-1f3fb-200d-1f52c.png differ diff --git a/site/static/emojis/1f469-1f3fb-200d-1f680.png b/site/static/emojis/1f469-1f3fb-200d-1f680.png new file mode 100644 index 0000000000000..3279782af1ee0 Binary files /dev/null and b/site/static/emojis/1f469-1f3fb-200d-1f680.png differ diff --git a/site/static/emojis/1f469-1f3fb-200d-1f692.png b/site/static/emojis/1f469-1f3fb-200d-1f692.png new file mode 100644 index 0000000000000..81148034d9881 Binary files /dev/null and b/site/static/emojis/1f469-1f3fb-200d-1f692.png differ diff --git a/site/static/emojis/1f469-1f3fb-200d-1f91d-200d-1f468-1f3fc.png b/site/static/emojis/1f469-1f3fb-200d-1f91d-200d-1f468-1f3fc.png new file mode 100644 index 0000000000000..04d54b11f6506 Binary files /dev/null and b/site/static/emojis/1f469-1f3fb-200d-1f91d-200d-1f468-1f3fc.png differ diff --git a/site/static/emojis/1f469-1f3fb-200d-1f91d-200d-1f468-1f3fd.png b/site/static/emojis/1f469-1f3fb-200d-1f91d-200d-1f468-1f3fd.png new file mode 100644 index 0000000000000..634db3cf5feae Binary files /dev/null and b/site/static/emojis/1f469-1f3fb-200d-1f91d-200d-1f468-1f3fd.png differ diff --git a/site/static/emojis/1f469-1f3fb-200d-1f91d-200d-1f468-1f3fe.png b/site/static/emojis/1f469-1f3fb-200d-1f91d-200d-1f468-1f3fe.png new file mode 100644 index 0000000000000..89c6c6dfe273e Binary files /dev/null and b/site/static/emojis/1f469-1f3fb-200d-1f91d-200d-1f468-1f3fe.png differ diff --git a/site/static/emojis/1f469-1f3fb-200d-1f91d-200d-1f468-1f3ff.png b/site/static/emojis/1f469-1f3fb-200d-1f91d-200d-1f468-1f3ff.png new file mode 100644 index 0000000000000..a93dbebd069d2 Binary files /dev/null and b/site/static/emojis/1f469-1f3fb-200d-1f91d-200d-1f468-1f3ff.png differ diff --git a/site/static/emojis/1f469-1f3fb-200d-1f91d-200d-1f469-1f3fc.png b/site/static/emojis/1f469-1f3fb-200d-1f91d-200d-1f469-1f3fc.png new file mode 100644 index 0000000000000..5e77313428033 Binary files /dev/null and b/site/static/emojis/1f469-1f3fb-200d-1f91d-200d-1f469-1f3fc.png differ diff --git a/site/static/emojis/1f469-1f3fb-200d-1f91d-200d-1f469-1f3fd.png b/site/static/emojis/1f469-1f3fb-200d-1f91d-200d-1f469-1f3fd.png new file mode 100644 index 0000000000000..41834dd9ff00c Binary files /dev/null and b/site/static/emojis/1f469-1f3fb-200d-1f91d-200d-1f469-1f3fd.png differ diff --git a/site/static/emojis/1f469-1f3fb-200d-1f91d-200d-1f469-1f3fe.png b/site/static/emojis/1f469-1f3fb-200d-1f91d-200d-1f469-1f3fe.png new file mode 100644 index 0000000000000..72a9f81285ec7 Binary files /dev/null and b/site/static/emojis/1f469-1f3fb-200d-1f91d-200d-1f469-1f3fe.png differ diff --git a/site/static/emojis/1f469-1f3fb-200d-1f91d-200d-1f469-1f3ff.png b/site/static/emojis/1f469-1f3fb-200d-1f91d-200d-1f469-1f3ff.png new file mode 100644 index 0000000000000..68bf8a6891584 Binary files /dev/null and b/site/static/emojis/1f469-1f3fb-200d-1f91d-200d-1f469-1f3ff.png differ diff --git a/site/static/emojis/1f469-1f3fb-200d-1f9af.png b/site/static/emojis/1f469-1f3fb-200d-1f9af.png new file mode 100644 index 0000000000000..3e532dbcddd12 Binary files /dev/null and b/site/static/emojis/1f469-1f3fb-200d-1f9af.png differ diff --git a/site/static/emojis/1f469-1f3fb-200d-1f9b0.png b/site/static/emojis/1f469-1f3fb-200d-1f9b0.png new file mode 100644 index 0000000000000..189c8458f5cde Binary files /dev/null and b/site/static/emojis/1f469-1f3fb-200d-1f9b0.png differ diff --git a/site/static/emojis/1f469-1f3fb-200d-1f9b1.png b/site/static/emojis/1f469-1f3fb-200d-1f9b1.png new file mode 100644 index 0000000000000..3a9bee7f4e3df Binary files /dev/null and b/site/static/emojis/1f469-1f3fb-200d-1f9b1.png differ diff --git a/site/static/emojis/1f469-1f3fb-200d-1f9b2.png b/site/static/emojis/1f469-1f3fb-200d-1f9b2.png new file mode 100644 index 0000000000000..9c6334028b2d4 Binary files /dev/null and b/site/static/emojis/1f469-1f3fb-200d-1f9b2.png differ diff --git a/site/static/emojis/1f469-1f3fb-200d-1f9b3.png b/site/static/emojis/1f469-1f3fb-200d-1f9b3.png new file mode 100644 index 0000000000000..d7ba9dd493a15 Binary files /dev/null and b/site/static/emojis/1f469-1f3fb-200d-1f9b3.png differ diff --git a/site/static/emojis/1f469-1f3fb-200d-1f9bc.png b/site/static/emojis/1f469-1f3fb-200d-1f9bc.png new file mode 100644 index 0000000000000..840f5d1d377a7 Binary files /dev/null and b/site/static/emojis/1f469-1f3fb-200d-1f9bc.png differ diff --git a/site/static/emojis/1f469-1f3fb-200d-1f9bd.png b/site/static/emojis/1f469-1f3fb-200d-1f9bd.png new file mode 100644 index 0000000000000..5d3b083b4c952 Binary files /dev/null and b/site/static/emojis/1f469-1f3fb-200d-1f9bd.png differ diff --git a/site/static/emojis/1f469-1f3fb-200d-2695-fe0f.png b/site/static/emojis/1f469-1f3fb-200d-2695-fe0f.png new file mode 100644 index 0000000000000..57c7ce71e131b Binary files /dev/null and b/site/static/emojis/1f469-1f3fb-200d-2695-fe0f.png differ diff --git a/site/static/emojis/1f469-1f3fb-200d-2696-fe0f.png b/site/static/emojis/1f469-1f3fb-200d-2696-fe0f.png new file mode 100644 index 0000000000000..0b91b7b5da45e Binary files /dev/null and b/site/static/emojis/1f469-1f3fb-200d-2696-fe0f.png differ diff --git a/site/static/emojis/1f469-1f3fb-200d-2708-fe0f.png b/site/static/emojis/1f469-1f3fb-200d-2708-fe0f.png new file mode 100644 index 0000000000000..52f3f5ac251d1 Binary files /dev/null and b/site/static/emojis/1f469-1f3fb-200d-2708-fe0f.png differ diff --git a/site/static/emojis/1f469-1f3fb-200d-2764-fe0f-200d-1f468-1f3fb.png b/site/static/emojis/1f469-1f3fb-200d-2764-fe0f-200d-1f468-1f3fb.png new file mode 100644 index 0000000000000..6abeec5e11900 Binary files /dev/null and b/site/static/emojis/1f469-1f3fb-200d-2764-fe0f-200d-1f468-1f3fb.png differ diff --git a/site/static/emojis/1f469-1f3fb-200d-2764-fe0f-200d-1f468-1f3fc.png b/site/static/emojis/1f469-1f3fb-200d-2764-fe0f-200d-1f468-1f3fc.png new file mode 100644 index 0000000000000..68839e31531bb Binary files /dev/null and b/site/static/emojis/1f469-1f3fb-200d-2764-fe0f-200d-1f468-1f3fc.png differ diff --git a/site/static/emojis/1f469-1f3fb-200d-2764-fe0f-200d-1f468-1f3fd.png b/site/static/emojis/1f469-1f3fb-200d-2764-fe0f-200d-1f468-1f3fd.png new file mode 100644 index 0000000000000..d7b5854e88178 Binary files /dev/null and b/site/static/emojis/1f469-1f3fb-200d-2764-fe0f-200d-1f468-1f3fd.png differ diff --git a/site/static/emojis/1f469-1f3fb-200d-2764-fe0f-200d-1f468-1f3fe.png b/site/static/emojis/1f469-1f3fb-200d-2764-fe0f-200d-1f468-1f3fe.png new file mode 100644 index 0000000000000..4df2de094c9c2 Binary files /dev/null and b/site/static/emojis/1f469-1f3fb-200d-2764-fe0f-200d-1f468-1f3fe.png differ diff --git a/site/static/emojis/1f469-1f3fb-200d-2764-fe0f-200d-1f468-1f3ff.png b/site/static/emojis/1f469-1f3fb-200d-2764-fe0f-200d-1f468-1f3ff.png new file mode 100644 index 0000000000000..ea30ee71595e8 Binary files /dev/null and b/site/static/emojis/1f469-1f3fb-200d-2764-fe0f-200d-1f468-1f3ff.png differ diff --git a/site/static/emojis/1f469-1f3fb-200d-2764-fe0f-200d-1f469-1f3fb.png b/site/static/emojis/1f469-1f3fb-200d-2764-fe0f-200d-1f469-1f3fb.png new file mode 100644 index 0000000000000..b75ca49c728f9 Binary files /dev/null and b/site/static/emojis/1f469-1f3fb-200d-2764-fe0f-200d-1f469-1f3fb.png differ diff --git a/site/static/emojis/1f469-1f3fb-200d-2764-fe0f-200d-1f469-1f3fc.png b/site/static/emojis/1f469-1f3fb-200d-2764-fe0f-200d-1f469-1f3fc.png new file mode 100644 index 0000000000000..684f958f46125 Binary files /dev/null and b/site/static/emojis/1f469-1f3fb-200d-2764-fe0f-200d-1f469-1f3fc.png differ diff --git a/site/static/emojis/1f469-1f3fb-200d-2764-fe0f-200d-1f469-1f3fd.png b/site/static/emojis/1f469-1f3fb-200d-2764-fe0f-200d-1f469-1f3fd.png new file mode 100644 index 0000000000000..f7c8955059a0b Binary files /dev/null and b/site/static/emojis/1f469-1f3fb-200d-2764-fe0f-200d-1f469-1f3fd.png differ diff --git a/site/static/emojis/1f469-1f3fb-200d-2764-fe0f-200d-1f469-1f3fe.png b/site/static/emojis/1f469-1f3fb-200d-2764-fe0f-200d-1f469-1f3fe.png new file mode 100644 index 0000000000000..d1d44f460f71f Binary files /dev/null and b/site/static/emojis/1f469-1f3fb-200d-2764-fe0f-200d-1f469-1f3fe.png differ diff --git a/site/static/emojis/1f469-1f3fb-200d-2764-fe0f-200d-1f469-1f3ff.png b/site/static/emojis/1f469-1f3fb-200d-2764-fe0f-200d-1f469-1f3ff.png new file mode 100644 index 0000000000000..2b42948594491 Binary files /dev/null and b/site/static/emojis/1f469-1f3fb-200d-2764-fe0f-200d-1f469-1f3ff.png differ diff --git a/site/static/emojis/1f469-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fb.png b/site/static/emojis/1f469-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fb.png new file mode 100644 index 0000000000000..eeeb5612db598 Binary files /dev/null and b/site/static/emojis/1f469-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fb.png differ diff --git a/site/static/emojis/1f469-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fc.png b/site/static/emojis/1f469-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fc.png new file mode 100644 index 0000000000000..cc49c8299c680 Binary files /dev/null and b/site/static/emojis/1f469-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fc.png differ diff --git a/site/static/emojis/1f469-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fd.png b/site/static/emojis/1f469-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fd.png new file mode 100644 index 0000000000000..248c9382f55a2 Binary files /dev/null and b/site/static/emojis/1f469-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fd.png differ diff --git a/site/static/emojis/1f469-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fe.png b/site/static/emojis/1f469-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fe.png new file mode 100644 index 0000000000000..fb9b86989eb48 Binary files /dev/null and b/site/static/emojis/1f469-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fe.png differ diff --git a/site/static/emojis/1f469-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3ff.png b/site/static/emojis/1f469-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3ff.png new file mode 100644 index 0000000000000..96a9871423c0c Binary files /dev/null and b/site/static/emojis/1f469-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3ff.png differ diff --git a/site/static/emojis/1f469-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fb.png b/site/static/emojis/1f469-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fb.png new file mode 100644 index 0000000000000..dcd0954ff5c4c Binary files /dev/null and b/site/static/emojis/1f469-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fb.png differ diff --git a/site/static/emojis/1f469-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fc.png b/site/static/emojis/1f469-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fc.png new file mode 100644 index 0000000000000..91df6227b37b8 Binary files /dev/null and b/site/static/emojis/1f469-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fc.png differ diff --git a/site/static/emojis/1f469-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fd.png b/site/static/emojis/1f469-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fd.png new file mode 100644 index 0000000000000..fbafff818e9ca Binary files /dev/null and b/site/static/emojis/1f469-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fd.png differ diff --git a/site/static/emojis/1f469-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fe.png b/site/static/emojis/1f469-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fe.png new file mode 100644 index 0000000000000..98e2a42003a3e Binary files /dev/null and b/site/static/emojis/1f469-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fe.png differ diff --git a/site/static/emojis/1f469-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3ff.png b/site/static/emojis/1f469-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3ff.png new file mode 100644 index 0000000000000..fc113be7c25a9 Binary files /dev/null and b/site/static/emojis/1f469-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3ff.png differ diff --git a/site/static/emojis/1f469-1f3fb.png b/site/static/emojis/1f469-1f3fb.png new file mode 100644 index 0000000000000..6fe70fb42acdb Binary files /dev/null and b/site/static/emojis/1f469-1f3fb.png differ diff --git a/site/static/emojis/1f469-1f3fc-200d-1f33e.png b/site/static/emojis/1f469-1f3fc-200d-1f33e.png new file mode 100644 index 0000000000000..fdd72768298f3 Binary files /dev/null and b/site/static/emojis/1f469-1f3fc-200d-1f33e.png differ diff --git a/site/static/emojis/1f469-1f3fc-200d-1f373.png b/site/static/emojis/1f469-1f3fc-200d-1f373.png new file mode 100644 index 0000000000000..b49e21297604a Binary files /dev/null and b/site/static/emojis/1f469-1f3fc-200d-1f373.png differ diff --git a/site/static/emojis/1f469-1f3fc-200d-1f37c.png b/site/static/emojis/1f469-1f3fc-200d-1f37c.png new file mode 100644 index 0000000000000..be4de07d79684 Binary files /dev/null and b/site/static/emojis/1f469-1f3fc-200d-1f37c.png differ diff --git a/site/static/emojis/1f469-1f3fc-200d-1f384.png b/site/static/emojis/1f469-1f3fc-200d-1f384.png new file mode 100644 index 0000000000000..52c9ba810d3b3 Binary files /dev/null and b/site/static/emojis/1f469-1f3fc-200d-1f384.png differ diff --git a/site/static/emojis/1f469-1f3fc-200d-1f393.png b/site/static/emojis/1f469-1f3fc-200d-1f393.png new file mode 100644 index 0000000000000..83fcaee79db19 Binary files /dev/null and b/site/static/emojis/1f469-1f3fc-200d-1f393.png differ diff --git a/site/static/emojis/1f469-1f3fc-200d-1f3a4.png b/site/static/emojis/1f469-1f3fc-200d-1f3a4.png new file mode 100644 index 0000000000000..376945c0f4cb0 Binary files /dev/null and b/site/static/emojis/1f469-1f3fc-200d-1f3a4.png differ diff --git a/site/static/emojis/1f469-1f3fc-200d-1f3a8.png b/site/static/emojis/1f469-1f3fc-200d-1f3a8.png new file mode 100644 index 0000000000000..c60866bbc3014 Binary files /dev/null and b/site/static/emojis/1f469-1f3fc-200d-1f3a8.png differ diff --git a/site/static/emojis/1f469-1f3fc-200d-1f3eb.png b/site/static/emojis/1f469-1f3fc-200d-1f3eb.png new file mode 100644 index 0000000000000..77f9248f4fc71 Binary files /dev/null and b/site/static/emojis/1f469-1f3fc-200d-1f3eb.png differ diff --git a/site/static/emojis/1f469-1f3fc-200d-1f3ed.png b/site/static/emojis/1f469-1f3fc-200d-1f3ed.png new file mode 100644 index 0000000000000..9c1e189d53db8 Binary files /dev/null and b/site/static/emojis/1f469-1f3fc-200d-1f3ed.png differ diff --git a/site/static/emojis/1f469-1f3fc-200d-1f4bb.png b/site/static/emojis/1f469-1f3fc-200d-1f4bb.png new file mode 100644 index 0000000000000..8d5d19e6923d8 Binary files /dev/null and b/site/static/emojis/1f469-1f3fc-200d-1f4bb.png differ diff --git a/site/static/emojis/1f469-1f3fc-200d-1f4bc.png b/site/static/emojis/1f469-1f3fc-200d-1f4bc.png new file mode 100644 index 0000000000000..464266db06b68 Binary files /dev/null and b/site/static/emojis/1f469-1f3fc-200d-1f4bc.png differ diff --git a/site/static/emojis/1f469-1f3fc-200d-1f527.png b/site/static/emojis/1f469-1f3fc-200d-1f527.png new file mode 100644 index 0000000000000..a7227fa9050c1 Binary files /dev/null and b/site/static/emojis/1f469-1f3fc-200d-1f527.png differ diff --git a/site/static/emojis/1f469-1f3fc-200d-1f52c.png b/site/static/emojis/1f469-1f3fc-200d-1f52c.png new file mode 100644 index 0000000000000..98c2b0578b2be Binary files /dev/null and b/site/static/emojis/1f469-1f3fc-200d-1f52c.png differ diff --git a/site/static/emojis/1f469-1f3fc-200d-1f680.png b/site/static/emojis/1f469-1f3fc-200d-1f680.png new file mode 100644 index 0000000000000..ac9ae0e67d271 Binary files /dev/null and b/site/static/emojis/1f469-1f3fc-200d-1f680.png differ diff --git a/site/static/emojis/1f469-1f3fc-200d-1f692.png b/site/static/emojis/1f469-1f3fc-200d-1f692.png new file mode 100644 index 0000000000000..b68993e5251de Binary files /dev/null and b/site/static/emojis/1f469-1f3fc-200d-1f692.png differ diff --git a/site/static/emojis/1f469-1f3fc-200d-1f91d-200d-1f468-1f3fb.png b/site/static/emojis/1f469-1f3fc-200d-1f91d-200d-1f468-1f3fb.png new file mode 100644 index 0000000000000..abb332bb8783c Binary files /dev/null and b/site/static/emojis/1f469-1f3fc-200d-1f91d-200d-1f468-1f3fb.png differ diff --git a/site/static/emojis/1f469-1f3fc-200d-1f91d-200d-1f468-1f3fd.png b/site/static/emojis/1f469-1f3fc-200d-1f91d-200d-1f468-1f3fd.png new file mode 100644 index 0000000000000..5f6a93568f0aa Binary files /dev/null and b/site/static/emojis/1f469-1f3fc-200d-1f91d-200d-1f468-1f3fd.png differ diff --git a/site/static/emojis/1f469-1f3fc-200d-1f91d-200d-1f468-1f3fe.png b/site/static/emojis/1f469-1f3fc-200d-1f91d-200d-1f468-1f3fe.png new file mode 100644 index 0000000000000..a00d6d7da8670 Binary files /dev/null and b/site/static/emojis/1f469-1f3fc-200d-1f91d-200d-1f468-1f3fe.png differ diff --git a/site/static/emojis/1f469-1f3fc-200d-1f91d-200d-1f468-1f3ff.png b/site/static/emojis/1f469-1f3fc-200d-1f91d-200d-1f468-1f3ff.png new file mode 100644 index 0000000000000..94502bbc28b55 Binary files /dev/null and b/site/static/emojis/1f469-1f3fc-200d-1f91d-200d-1f468-1f3ff.png differ diff --git a/site/static/emojis/1f469-1f3fc-200d-1f91d-200d-1f469-1f3fb.png b/site/static/emojis/1f469-1f3fc-200d-1f91d-200d-1f469-1f3fb.png new file mode 100644 index 0000000000000..f1580c23ed282 Binary files /dev/null and b/site/static/emojis/1f469-1f3fc-200d-1f91d-200d-1f469-1f3fb.png differ diff --git a/site/static/emojis/1f469-1f3fc-200d-1f91d-200d-1f469-1f3fd.png b/site/static/emojis/1f469-1f3fc-200d-1f91d-200d-1f469-1f3fd.png new file mode 100644 index 0000000000000..d73b98c43377e Binary files /dev/null and b/site/static/emojis/1f469-1f3fc-200d-1f91d-200d-1f469-1f3fd.png differ diff --git a/site/static/emojis/1f469-1f3fc-200d-1f91d-200d-1f469-1f3fe.png b/site/static/emojis/1f469-1f3fc-200d-1f91d-200d-1f469-1f3fe.png new file mode 100644 index 0000000000000..a356909601d27 Binary files /dev/null and b/site/static/emojis/1f469-1f3fc-200d-1f91d-200d-1f469-1f3fe.png differ diff --git a/site/static/emojis/1f469-1f3fc-200d-1f91d-200d-1f469-1f3ff.png b/site/static/emojis/1f469-1f3fc-200d-1f91d-200d-1f469-1f3ff.png new file mode 100644 index 0000000000000..377891fd05c81 Binary files /dev/null and b/site/static/emojis/1f469-1f3fc-200d-1f91d-200d-1f469-1f3ff.png differ diff --git a/site/static/emojis/1f469-1f3fc-200d-1f9af.png b/site/static/emojis/1f469-1f3fc-200d-1f9af.png new file mode 100644 index 0000000000000..598edf8d97757 Binary files /dev/null and b/site/static/emojis/1f469-1f3fc-200d-1f9af.png differ diff --git a/site/static/emojis/1f469-1f3fc-200d-1f9b0.png b/site/static/emojis/1f469-1f3fc-200d-1f9b0.png new file mode 100644 index 0000000000000..d4453666b3517 Binary files /dev/null and b/site/static/emojis/1f469-1f3fc-200d-1f9b0.png differ diff --git a/site/static/emojis/1f469-1f3fc-200d-1f9b1.png b/site/static/emojis/1f469-1f3fc-200d-1f9b1.png new file mode 100644 index 0000000000000..00e006de0f57b Binary files /dev/null and b/site/static/emojis/1f469-1f3fc-200d-1f9b1.png differ diff --git a/site/static/emojis/1f469-1f3fc-200d-1f9b2.png b/site/static/emojis/1f469-1f3fc-200d-1f9b2.png new file mode 100644 index 0000000000000..47ef56b31a16e Binary files /dev/null and b/site/static/emojis/1f469-1f3fc-200d-1f9b2.png differ diff --git a/site/static/emojis/1f469-1f3fc-200d-1f9b3.png b/site/static/emojis/1f469-1f3fc-200d-1f9b3.png new file mode 100644 index 0000000000000..30aece94502c6 Binary files /dev/null and b/site/static/emojis/1f469-1f3fc-200d-1f9b3.png differ diff --git a/site/static/emojis/1f469-1f3fc-200d-1f9bc.png b/site/static/emojis/1f469-1f3fc-200d-1f9bc.png new file mode 100644 index 0000000000000..1522085332909 Binary files /dev/null and b/site/static/emojis/1f469-1f3fc-200d-1f9bc.png differ diff --git a/site/static/emojis/1f469-1f3fc-200d-1f9bd.png b/site/static/emojis/1f469-1f3fc-200d-1f9bd.png new file mode 100644 index 0000000000000..3b739dacfc421 Binary files /dev/null and b/site/static/emojis/1f469-1f3fc-200d-1f9bd.png differ diff --git a/site/static/emojis/1f469-1f3fc-200d-2695-fe0f.png b/site/static/emojis/1f469-1f3fc-200d-2695-fe0f.png new file mode 100644 index 0000000000000..256743387ebfa Binary files /dev/null and b/site/static/emojis/1f469-1f3fc-200d-2695-fe0f.png differ diff --git a/site/static/emojis/1f469-1f3fc-200d-2696-fe0f.png b/site/static/emojis/1f469-1f3fc-200d-2696-fe0f.png new file mode 100644 index 0000000000000..44a0942517b1a Binary files /dev/null and b/site/static/emojis/1f469-1f3fc-200d-2696-fe0f.png differ diff --git a/site/static/emojis/1f469-1f3fc-200d-2708-fe0f.png b/site/static/emojis/1f469-1f3fc-200d-2708-fe0f.png new file mode 100644 index 0000000000000..afe2b71eddd66 Binary files /dev/null and b/site/static/emojis/1f469-1f3fc-200d-2708-fe0f.png differ diff --git a/site/static/emojis/1f469-1f3fc-200d-2764-fe0f-200d-1f468-1f3fb.png b/site/static/emojis/1f469-1f3fc-200d-2764-fe0f-200d-1f468-1f3fb.png new file mode 100644 index 0000000000000..31285f92fe9cd Binary files /dev/null and b/site/static/emojis/1f469-1f3fc-200d-2764-fe0f-200d-1f468-1f3fb.png differ diff --git a/site/static/emojis/1f469-1f3fc-200d-2764-fe0f-200d-1f468-1f3fc.png b/site/static/emojis/1f469-1f3fc-200d-2764-fe0f-200d-1f468-1f3fc.png new file mode 100644 index 0000000000000..521cde1def838 Binary files /dev/null and b/site/static/emojis/1f469-1f3fc-200d-2764-fe0f-200d-1f468-1f3fc.png differ diff --git a/site/static/emojis/1f469-1f3fc-200d-2764-fe0f-200d-1f468-1f3fd.png b/site/static/emojis/1f469-1f3fc-200d-2764-fe0f-200d-1f468-1f3fd.png new file mode 100644 index 0000000000000..3feae07a6b85d Binary files /dev/null and b/site/static/emojis/1f469-1f3fc-200d-2764-fe0f-200d-1f468-1f3fd.png differ diff --git a/site/static/emojis/1f469-1f3fc-200d-2764-fe0f-200d-1f468-1f3fe.png b/site/static/emojis/1f469-1f3fc-200d-2764-fe0f-200d-1f468-1f3fe.png new file mode 100644 index 0000000000000..49c1c5d66dd72 Binary files /dev/null and b/site/static/emojis/1f469-1f3fc-200d-2764-fe0f-200d-1f468-1f3fe.png differ diff --git a/site/static/emojis/1f469-1f3fc-200d-2764-fe0f-200d-1f468-1f3ff.png b/site/static/emojis/1f469-1f3fc-200d-2764-fe0f-200d-1f468-1f3ff.png new file mode 100644 index 0000000000000..c2a3bc4a718dd Binary files /dev/null and b/site/static/emojis/1f469-1f3fc-200d-2764-fe0f-200d-1f468-1f3ff.png differ diff --git a/site/static/emojis/1f469-1f3fc-200d-2764-fe0f-200d-1f469-1f3fb.png b/site/static/emojis/1f469-1f3fc-200d-2764-fe0f-200d-1f469-1f3fb.png new file mode 100644 index 0000000000000..349fcbde31e34 Binary files /dev/null and b/site/static/emojis/1f469-1f3fc-200d-2764-fe0f-200d-1f469-1f3fb.png differ diff --git a/site/static/emojis/1f469-1f3fc-200d-2764-fe0f-200d-1f469-1f3fc.png b/site/static/emojis/1f469-1f3fc-200d-2764-fe0f-200d-1f469-1f3fc.png new file mode 100644 index 0000000000000..f8ad5951da211 Binary files /dev/null and b/site/static/emojis/1f469-1f3fc-200d-2764-fe0f-200d-1f469-1f3fc.png differ diff --git a/site/static/emojis/1f469-1f3fc-200d-2764-fe0f-200d-1f469-1f3fd.png b/site/static/emojis/1f469-1f3fc-200d-2764-fe0f-200d-1f469-1f3fd.png new file mode 100644 index 0000000000000..453036d7302a7 Binary files /dev/null and b/site/static/emojis/1f469-1f3fc-200d-2764-fe0f-200d-1f469-1f3fd.png differ diff --git a/site/static/emojis/1f469-1f3fc-200d-2764-fe0f-200d-1f469-1f3fe.png b/site/static/emojis/1f469-1f3fc-200d-2764-fe0f-200d-1f469-1f3fe.png new file mode 100644 index 0000000000000..c1db221991c82 Binary files /dev/null and b/site/static/emojis/1f469-1f3fc-200d-2764-fe0f-200d-1f469-1f3fe.png differ diff --git a/site/static/emojis/1f469-1f3fc-200d-2764-fe0f-200d-1f469-1f3ff.png b/site/static/emojis/1f469-1f3fc-200d-2764-fe0f-200d-1f469-1f3ff.png new file mode 100644 index 0000000000000..2355698dc5903 Binary files /dev/null and b/site/static/emojis/1f469-1f3fc-200d-2764-fe0f-200d-1f469-1f3ff.png differ diff --git a/site/static/emojis/1f469-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fb.png b/site/static/emojis/1f469-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fb.png new file mode 100644 index 0000000000000..e4364650ef659 Binary files /dev/null and b/site/static/emojis/1f469-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fb.png differ diff --git a/site/static/emojis/1f469-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fc.png b/site/static/emojis/1f469-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fc.png new file mode 100644 index 0000000000000..dc588d402d7f1 Binary files /dev/null and b/site/static/emojis/1f469-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fc.png differ diff --git a/site/static/emojis/1f469-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fd.png b/site/static/emojis/1f469-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fd.png new file mode 100644 index 0000000000000..6fcaba167284d Binary files /dev/null and b/site/static/emojis/1f469-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fd.png differ diff --git a/site/static/emojis/1f469-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fe.png b/site/static/emojis/1f469-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fe.png new file mode 100644 index 0000000000000..9947bd58653ea Binary files /dev/null and b/site/static/emojis/1f469-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fe.png differ diff --git a/site/static/emojis/1f469-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3ff.png b/site/static/emojis/1f469-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3ff.png new file mode 100644 index 0000000000000..389c1ff7bd914 Binary files /dev/null and b/site/static/emojis/1f469-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3ff.png differ diff --git a/site/static/emojis/1f469-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fb.png b/site/static/emojis/1f469-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fb.png new file mode 100644 index 0000000000000..6c5c51161b681 Binary files /dev/null and b/site/static/emojis/1f469-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fb.png differ diff --git a/site/static/emojis/1f469-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fc.png b/site/static/emojis/1f469-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fc.png new file mode 100644 index 0000000000000..5dca5078ecb74 Binary files /dev/null and b/site/static/emojis/1f469-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fc.png differ diff --git a/site/static/emojis/1f469-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fd.png b/site/static/emojis/1f469-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fd.png new file mode 100644 index 0000000000000..d94389a658836 Binary files /dev/null and b/site/static/emojis/1f469-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fd.png differ diff --git a/site/static/emojis/1f469-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fe.png b/site/static/emojis/1f469-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fe.png new file mode 100644 index 0000000000000..37d3eedb0e2ac Binary files /dev/null and b/site/static/emojis/1f469-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fe.png differ diff --git a/site/static/emojis/1f469-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3ff.png b/site/static/emojis/1f469-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3ff.png new file mode 100644 index 0000000000000..a5b00492ceeac Binary files /dev/null and b/site/static/emojis/1f469-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3ff.png differ diff --git a/site/static/emojis/1f469-1f3fc.png b/site/static/emojis/1f469-1f3fc.png new file mode 100644 index 0000000000000..ef30b5b50fc54 Binary files /dev/null and b/site/static/emojis/1f469-1f3fc.png differ diff --git a/site/static/emojis/1f469-1f3fd-200d-1f33e.png b/site/static/emojis/1f469-1f3fd-200d-1f33e.png new file mode 100644 index 0000000000000..ab863a38dd1d1 Binary files /dev/null and b/site/static/emojis/1f469-1f3fd-200d-1f33e.png differ diff --git a/site/static/emojis/1f469-1f3fd-200d-1f373.png b/site/static/emojis/1f469-1f3fd-200d-1f373.png new file mode 100644 index 0000000000000..d8cb7162537cc Binary files /dev/null and b/site/static/emojis/1f469-1f3fd-200d-1f373.png differ diff --git a/site/static/emojis/1f469-1f3fd-200d-1f37c.png b/site/static/emojis/1f469-1f3fd-200d-1f37c.png new file mode 100644 index 0000000000000..f6380c01cf08c Binary files /dev/null and b/site/static/emojis/1f469-1f3fd-200d-1f37c.png differ diff --git a/site/static/emojis/1f469-1f3fd-200d-1f384.png b/site/static/emojis/1f469-1f3fd-200d-1f384.png new file mode 100644 index 0000000000000..9651385708daf Binary files /dev/null and b/site/static/emojis/1f469-1f3fd-200d-1f384.png differ diff --git a/site/static/emojis/1f469-1f3fd-200d-1f393.png b/site/static/emojis/1f469-1f3fd-200d-1f393.png new file mode 100644 index 0000000000000..1d75113f5c7bf Binary files /dev/null and b/site/static/emojis/1f469-1f3fd-200d-1f393.png differ diff --git a/site/static/emojis/1f469-1f3fd-200d-1f3a4.png b/site/static/emojis/1f469-1f3fd-200d-1f3a4.png new file mode 100644 index 0000000000000..aeee09c4353ea Binary files /dev/null and b/site/static/emojis/1f469-1f3fd-200d-1f3a4.png differ diff --git a/site/static/emojis/1f469-1f3fd-200d-1f3a8.png b/site/static/emojis/1f469-1f3fd-200d-1f3a8.png new file mode 100644 index 0000000000000..dc3d89a35ec5e Binary files /dev/null and b/site/static/emojis/1f469-1f3fd-200d-1f3a8.png differ diff --git a/site/static/emojis/1f469-1f3fd-200d-1f3eb.png b/site/static/emojis/1f469-1f3fd-200d-1f3eb.png new file mode 100644 index 0000000000000..5d78b83432483 Binary files /dev/null and b/site/static/emojis/1f469-1f3fd-200d-1f3eb.png differ diff --git a/site/static/emojis/1f469-1f3fd-200d-1f3ed.png b/site/static/emojis/1f469-1f3fd-200d-1f3ed.png new file mode 100644 index 0000000000000..1b5be523ba0d2 Binary files /dev/null and b/site/static/emojis/1f469-1f3fd-200d-1f3ed.png differ diff --git a/site/static/emojis/1f469-1f3fd-200d-1f4bb.png b/site/static/emojis/1f469-1f3fd-200d-1f4bb.png new file mode 100644 index 0000000000000..4ee8b25a584e1 Binary files /dev/null and b/site/static/emojis/1f469-1f3fd-200d-1f4bb.png differ diff --git a/site/static/emojis/1f469-1f3fd-200d-1f4bc.png b/site/static/emojis/1f469-1f3fd-200d-1f4bc.png new file mode 100644 index 0000000000000..24b42f4d30175 Binary files /dev/null and b/site/static/emojis/1f469-1f3fd-200d-1f4bc.png differ diff --git a/site/static/emojis/1f469-1f3fd-200d-1f527.png b/site/static/emojis/1f469-1f3fd-200d-1f527.png new file mode 100644 index 0000000000000..30a610ea22918 Binary files /dev/null and b/site/static/emojis/1f469-1f3fd-200d-1f527.png differ diff --git a/site/static/emojis/1f469-1f3fd-200d-1f52c.png b/site/static/emojis/1f469-1f3fd-200d-1f52c.png new file mode 100644 index 0000000000000..240e843f7c6be Binary files /dev/null and b/site/static/emojis/1f469-1f3fd-200d-1f52c.png differ diff --git a/site/static/emojis/1f469-1f3fd-200d-1f680.png b/site/static/emojis/1f469-1f3fd-200d-1f680.png new file mode 100644 index 0000000000000..e8bc3b12e6242 Binary files /dev/null and b/site/static/emojis/1f469-1f3fd-200d-1f680.png differ diff --git a/site/static/emojis/1f469-1f3fd-200d-1f692.png b/site/static/emojis/1f469-1f3fd-200d-1f692.png new file mode 100644 index 0000000000000..4ca5e00308169 Binary files /dev/null and b/site/static/emojis/1f469-1f3fd-200d-1f692.png differ diff --git a/site/static/emojis/1f469-1f3fd-200d-1f91d-200d-1f468-1f3fb.png b/site/static/emojis/1f469-1f3fd-200d-1f91d-200d-1f468-1f3fb.png new file mode 100644 index 0000000000000..7db467b58a7c9 Binary files /dev/null and b/site/static/emojis/1f469-1f3fd-200d-1f91d-200d-1f468-1f3fb.png differ diff --git a/site/static/emojis/1f469-1f3fd-200d-1f91d-200d-1f468-1f3fc.png b/site/static/emojis/1f469-1f3fd-200d-1f91d-200d-1f468-1f3fc.png new file mode 100644 index 0000000000000..59bf91323077c Binary files /dev/null and b/site/static/emojis/1f469-1f3fd-200d-1f91d-200d-1f468-1f3fc.png differ diff --git a/site/static/emojis/1f469-1f3fd-200d-1f91d-200d-1f468-1f3fe.png b/site/static/emojis/1f469-1f3fd-200d-1f91d-200d-1f468-1f3fe.png new file mode 100644 index 0000000000000..9cf571019156c Binary files /dev/null and b/site/static/emojis/1f469-1f3fd-200d-1f91d-200d-1f468-1f3fe.png differ diff --git a/site/static/emojis/1f469-1f3fd-200d-1f91d-200d-1f468-1f3ff.png b/site/static/emojis/1f469-1f3fd-200d-1f91d-200d-1f468-1f3ff.png new file mode 100644 index 0000000000000..ad588fcd75fba Binary files /dev/null and b/site/static/emojis/1f469-1f3fd-200d-1f91d-200d-1f468-1f3ff.png differ diff --git a/site/static/emojis/1f469-1f3fd-200d-1f91d-200d-1f469-1f3fb.png b/site/static/emojis/1f469-1f3fd-200d-1f91d-200d-1f469-1f3fb.png new file mode 100644 index 0000000000000..64a48c6aa5bf9 Binary files /dev/null and b/site/static/emojis/1f469-1f3fd-200d-1f91d-200d-1f469-1f3fb.png differ diff --git a/site/static/emojis/1f469-1f3fd-200d-1f91d-200d-1f469-1f3fc.png b/site/static/emojis/1f469-1f3fd-200d-1f91d-200d-1f469-1f3fc.png new file mode 100644 index 0000000000000..9068a99a0ef63 Binary files /dev/null and b/site/static/emojis/1f469-1f3fd-200d-1f91d-200d-1f469-1f3fc.png differ diff --git a/site/static/emojis/1f469-1f3fd-200d-1f91d-200d-1f469-1f3fe.png b/site/static/emojis/1f469-1f3fd-200d-1f91d-200d-1f469-1f3fe.png new file mode 100644 index 0000000000000..d705ac79cec8d Binary files /dev/null and b/site/static/emojis/1f469-1f3fd-200d-1f91d-200d-1f469-1f3fe.png differ diff --git a/site/static/emojis/1f469-1f3fd-200d-1f91d-200d-1f469-1f3ff.png b/site/static/emojis/1f469-1f3fd-200d-1f91d-200d-1f469-1f3ff.png new file mode 100644 index 0000000000000..792b28361db3b Binary files /dev/null and b/site/static/emojis/1f469-1f3fd-200d-1f91d-200d-1f469-1f3ff.png differ diff --git a/site/static/emojis/1f469-1f3fd-200d-1f9af.png b/site/static/emojis/1f469-1f3fd-200d-1f9af.png new file mode 100644 index 0000000000000..71a6adab9cda2 Binary files /dev/null and b/site/static/emojis/1f469-1f3fd-200d-1f9af.png differ diff --git a/site/static/emojis/1f469-1f3fd-200d-1f9b0.png b/site/static/emojis/1f469-1f3fd-200d-1f9b0.png new file mode 100644 index 0000000000000..36b5bbd70f5e8 Binary files /dev/null and b/site/static/emojis/1f469-1f3fd-200d-1f9b0.png differ diff --git a/site/static/emojis/1f469-1f3fd-200d-1f9b1.png b/site/static/emojis/1f469-1f3fd-200d-1f9b1.png new file mode 100644 index 0000000000000..82049eb799d69 Binary files /dev/null and b/site/static/emojis/1f469-1f3fd-200d-1f9b1.png differ diff --git a/site/static/emojis/1f469-1f3fd-200d-1f9b2.png b/site/static/emojis/1f469-1f3fd-200d-1f9b2.png new file mode 100644 index 0000000000000..c66fd3fdd19f7 Binary files /dev/null and b/site/static/emojis/1f469-1f3fd-200d-1f9b2.png differ diff --git a/site/static/emojis/1f469-1f3fd-200d-1f9b3.png b/site/static/emojis/1f469-1f3fd-200d-1f9b3.png new file mode 100644 index 0000000000000..6feda96ac2ff7 Binary files /dev/null and b/site/static/emojis/1f469-1f3fd-200d-1f9b3.png differ diff --git a/site/static/emojis/1f469-1f3fd-200d-1f9bc.png b/site/static/emojis/1f469-1f3fd-200d-1f9bc.png new file mode 100644 index 0000000000000..9ff345026ea85 Binary files /dev/null and b/site/static/emojis/1f469-1f3fd-200d-1f9bc.png differ diff --git a/site/static/emojis/1f469-1f3fd-200d-1f9bd.png b/site/static/emojis/1f469-1f3fd-200d-1f9bd.png new file mode 100644 index 0000000000000..432260e9bbb82 Binary files /dev/null and b/site/static/emojis/1f469-1f3fd-200d-1f9bd.png differ diff --git a/site/static/emojis/1f469-1f3fd-200d-2695-fe0f.png b/site/static/emojis/1f469-1f3fd-200d-2695-fe0f.png new file mode 100644 index 0000000000000..ccf237ccb2e97 Binary files /dev/null and b/site/static/emojis/1f469-1f3fd-200d-2695-fe0f.png differ diff --git a/site/static/emojis/1f469-1f3fd-200d-2696-fe0f.png b/site/static/emojis/1f469-1f3fd-200d-2696-fe0f.png new file mode 100644 index 0000000000000..6f56b22ae25f0 Binary files /dev/null and b/site/static/emojis/1f469-1f3fd-200d-2696-fe0f.png differ diff --git a/site/static/emojis/1f469-1f3fd-200d-2708-fe0f.png b/site/static/emojis/1f469-1f3fd-200d-2708-fe0f.png new file mode 100644 index 0000000000000..45c0a24913966 Binary files /dev/null and b/site/static/emojis/1f469-1f3fd-200d-2708-fe0f.png differ diff --git a/site/static/emojis/1f469-1f3fd-200d-2764-fe0f-200d-1f468-1f3fb.png b/site/static/emojis/1f469-1f3fd-200d-2764-fe0f-200d-1f468-1f3fb.png new file mode 100644 index 0000000000000..206e1a5623b82 Binary files /dev/null and b/site/static/emojis/1f469-1f3fd-200d-2764-fe0f-200d-1f468-1f3fb.png differ diff --git a/site/static/emojis/1f469-1f3fd-200d-2764-fe0f-200d-1f468-1f3fc.png b/site/static/emojis/1f469-1f3fd-200d-2764-fe0f-200d-1f468-1f3fc.png new file mode 100644 index 0000000000000..02bd684d583c8 Binary files /dev/null and b/site/static/emojis/1f469-1f3fd-200d-2764-fe0f-200d-1f468-1f3fc.png differ diff --git a/site/static/emojis/1f469-1f3fd-200d-2764-fe0f-200d-1f468-1f3fd.png b/site/static/emojis/1f469-1f3fd-200d-2764-fe0f-200d-1f468-1f3fd.png new file mode 100644 index 0000000000000..d54a5b4f5f30f Binary files /dev/null and b/site/static/emojis/1f469-1f3fd-200d-2764-fe0f-200d-1f468-1f3fd.png differ diff --git a/site/static/emojis/1f469-1f3fd-200d-2764-fe0f-200d-1f468-1f3fe.png b/site/static/emojis/1f469-1f3fd-200d-2764-fe0f-200d-1f468-1f3fe.png new file mode 100644 index 0000000000000..c6cdea3693b1d Binary files /dev/null and b/site/static/emojis/1f469-1f3fd-200d-2764-fe0f-200d-1f468-1f3fe.png differ diff --git a/site/static/emojis/1f469-1f3fd-200d-2764-fe0f-200d-1f468-1f3ff.png b/site/static/emojis/1f469-1f3fd-200d-2764-fe0f-200d-1f468-1f3ff.png new file mode 100644 index 0000000000000..0d822f8189468 Binary files /dev/null and b/site/static/emojis/1f469-1f3fd-200d-2764-fe0f-200d-1f468-1f3ff.png differ diff --git a/site/static/emojis/1f469-1f3fd-200d-2764-fe0f-200d-1f469-1f3fb.png b/site/static/emojis/1f469-1f3fd-200d-2764-fe0f-200d-1f469-1f3fb.png new file mode 100644 index 0000000000000..f606a06bd2811 Binary files /dev/null and b/site/static/emojis/1f469-1f3fd-200d-2764-fe0f-200d-1f469-1f3fb.png differ diff --git a/site/static/emojis/1f469-1f3fd-200d-2764-fe0f-200d-1f469-1f3fc.png b/site/static/emojis/1f469-1f3fd-200d-2764-fe0f-200d-1f469-1f3fc.png new file mode 100644 index 0000000000000..7fcb5a963b382 Binary files /dev/null and b/site/static/emojis/1f469-1f3fd-200d-2764-fe0f-200d-1f469-1f3fc.png differ diff --git a/site/static/emojis/1f469-1f3fd-200d-2764-fe0f-200d-1f469-1f3fd.png b/site/static/emojis/1f469-1f3fd-200d-2764-fe0f-200d-1f469-1f3fd.png new file mode 100644 index 0000000000000..c113409044657 Binary files /dev/null and b/site/static/emojis/1f469-1f3fd-200d-2764-fe0f-200d-1f469-1f3fd.png differ diff --git a/site/static/emojis/1f469-1f3fd-200d-2764-fe0f-200d-1f469-1f3fe.png b/site/static/emojis/1f469-1f3fd-200d-2764-fe0f-200d-1f469-1f3fe.png new file mode 100644 index 0000000000000..e6966af61ac27 Binary files /dev/null and b/site/static/emojis/1f469-1f3fd-200d-2764-fe0f-200d-1f469-1f3fe.png differ diff --git a/site/static/emojis/1f469-1f3fd-200d-2764-fe0f-200d-1f469-1f3ff.png b/site/static/emojis/1f469-1f3fd-200d-2764-fe0f-200d-1f469-1f3ff.png new file mode 100644 index 0000000000000..33337f36c061e Binary files /dev/null and b/site/static/emojis/1f469-1f3fd-200d-2764-fe0f-200d-1f469-1f3ff.png differ diff --git a/site/static/emojis/1f469-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fb.png b/site/static/emojis/1f469-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fb.png new file mode 100644 index 0000000000000..0ee1621a52e08 Binary files /dev/null and b/site/static/emojis/1f469-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fb.png differ diff --git a/site/static/emojis/1f469-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fc.png b/site/static/emojis/1f469-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fc.png new file mode 100644 index 0000000000000..11982d12a5f60 Binary files /dev/null and b/site/static/emojis/1f469-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fc.png differ diff --git a/site/static/emojis/1f469-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fd.png b/site/static/emojis/1f469-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fd.png new file mode 100644 index 0000000000000..ea319f30e3541 Binary files /dev/null and b/site/static/emojis/1f469-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fd.png differ diff --git a/site/static/emojis/1f469-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fe.png b/site/static/emojis/1f469-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fe.png new file mode 100644 index 0000000000000..80a370409fc5d Binary files /dev/null and b/site/static/emojis/1f469-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fe.png differ diff --git a/site/static/emojis/1f469-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3ff.png b/site/static/emojis/1f469-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3ff.png new file mode 100644 index 0000000000000..510571ddce6ab Binary files /dev/null and b/site/static/emojis/1f469-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3ff.png differ diff --git a/site/static/emojis/1f469-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fb.png b/site/static/emojis/1f469-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fb.png new file mode 100644 index 0000000000000..3126c6c1af9f5 Binary files /dev/null and b/site/static/emojis/1f469-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fb.png differ diff --git a/site/static/emojis/1f469-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fc.png b/site/static/emojis/1f469-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fc.png new file mode 100644 index 0000000000000..98fab6f963954 Binary files /dev/null and b/site/static/emojis/1f469-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fc.png differ diff --git a/site/static/emojis/1f469-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fd.png b/site/static/emojis/1f469-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fd.png new file mode 100644 index 0000000000000..99f90fb6f4f78 Binary files /dev/null and b/site/static/emojis/1f469-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fd.png differ diff --git a/site/static/emojis/1f469-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fe.png b/site/static/emojis/1f469-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fe.png new file mode 100644 index 0000000000000..b25ef75e8a9eb Binary files /dev/null and b/site/static/emojis/1f469-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fe.png differ diff --git a/site/static/emojis/1f469-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3ff.png b/site/static/emojis/1f469-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3ff.png new file mode 100644 index 0000000000000..d735157eb7807 Binary files /dev/null and b/site/static/emojis/1f469-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3ff.png differ diff --git a/site/static/emojis/1f469-1f3fd.png b/site/static/emojis/1f469-1f3fd.png new file mode 100644 index 0000000000000..c5f68bae0f56d Binary files /dev/null and b/site/static/emojis/1f469-1f3fd.png differ diff --git a/site/static/emojis/1f469-1f3fe-200d-1f33e.png b/site/static/emojis/1f469-1f3fe-200d-1f33e.png new file mode 100644 index 0000000000000..520a84bdb8047 Binary files /dev/null and b/site/static/emojis/1f469-1f3fe-200d-1f33e.png differ diff --git a/site/static/emojis/1f469-1f3fe-200d-1f373.png b/site/static/emojis/1f469-1f3fe-200d-1f373.png new file mode 100644 index 0000000000000..00860e85eebd3 Binary files /dev/null and b/site/static/emojis/1f469-1f3fe-200d-1f373.png differ diff --git a/site/static/emojis/1f469-1f3fe-200d-1f37c.png b/site/static/emojis/1f469-1f3fe-200d-1f37c.png new file mode 100644 index 0000000000000..2941a44c5effb Binary files /dev/null and b/site/static/emojis/1f469-1f3fe-200d-1f37c.png differ diff --git a/site/static/emojis/1f469-1f3fe-200d-1f384.png b/site/static/emojis/1f469-1f3fe-200d-1f384.png new file mode 100644 index 0000000000000..3ec0c5686e2e6 Binary files /dev/null and b/site/static/emojis/1f469-1f3fe-200d-1f384.png differ diff --git a/site/static/emojis/1f469-1f3fe-200d-1f393.png b/site/static/emojis/1f469-1f3fe-200d-1f393.png new file mode 100644 index 0000000000000..5740309845974 Binary files /dev/null and b/site/static/emojis/1f469-1f3fe-200d-1f393.png differ diff --git a/site/static/emojis/1f469-1f3fe-200d-1f3a4.png b/site/static/emojis/1f469-1f3fe-200d-1f3a4.png new file mode 100644 index 0000000000000..3897fa2d2a667 Binary files /dev/null and b/site/static/emojis/1f469-1f3fe-200d-1f3a4.png differ diff --git a/site/static/emojis/1f469-1f3fe-200d-1f3a8.png b/site/static/emojis/1f469-1f3fe-200d-1f3a8.png new file mode 100644 index 0000000000000..5521daed8aee1 Binary files /dev/null and b/site/static/emojis/1f469-1f3fe-200d-1f3a8.png differ diff --git a/site/static/emojis/1f469-1f3fe-200d-1f3eb.png b/site/static/emojis/1f469-1f3fe-200d-1f3eb.png new file mode 100644 index 0000000000000..362323f42c4bf Binary files /dev/null and b/site/static/emojis/1f469-1f3fe-200d-1f3eb.png differ diff --git a/site/static/emojis/1f469-1f3fe-200d-1f3ed.png b/site/static/emojis/1f469-1f3fe-200d-1f3ed.png new file mode 100644 index 0000000000000..0dc2e09e25a63 Binary files /dev/null and b/site/static/emojis/1f469-1f3fe-200d-1f3ed.png differ diff --git a/site/static/emojis/1f469-1f3fe-200d-1f4bb.png b/site/static/emojis/1f469-1f3fe-200d-1f4bb.png new file mode 100644 index 0000000000000..6107c8305fe4d Binary files /dev/null and b/site/static/emojis/1f469-1f3fe-200d-1f4bb.png differ diff --git a/site/static/emojis/1f469-1f3fe-200d-1f4bc.png b/site/static/emojis/1f469-1f3fe-200d-1f4bc.png new file mode 100644 index 0000000000000..b4a3d21965870 Binary files /dev/null and b/site/static/emojis/1f469-1f3fe-200d-1f4bc.png differ diff --git a/site/static/emojis/1f469-1f3fe-200d-1f527.png b/site/static/emojis/1f469-1f3fe-200d-1f527.png new file mode 100644 index 0000000000000..45ef04294dfc6 Binary files /dev/null and b/site/static/emojis/1f469-1f3fe-200d-1f527.png differ diff --git a/site/static/emojis/1f469-1f3fe-200d-1f52c.png b/site/static/emojis/1f469-1f3fe-200d-1f52c.png new file mode 100644 index 0000000000000..d808b83cdfdf0 Binary files /dev/null and b/site/static/emojis/1f469-1f3fe-200d-1f52c.png differ diff --git a/site/static/emojis/1f469-1f3fe-200d-1f680.png b/site/static/emojis/1f469-1f3fe-200d-1f680.png new file mode 100644 index 0000000000000..b81db8a6a91cb Binary files /dev/null and b/site/static/emojis/1f469-1f3fe-200d-1f680.png differ diff --git a/site/static/emojis/1f469-1f3fe-200d-1f692.png b/site/static/emojis/1f469-1f3fe-200d-1f692.png new file mode 100644 index 0000000000000..e8ebea98adae0 Binary files /dev/null and b/site/static/emojis/1f469-1f3fe-200d-1f692.png differ diff --git a/site/static/emojis/1f469-1f3fe-200d-1f91d-200d-1f468-1f3fb.png b/site/static/emojis/1f469-1f3fe-200d-1f91d-200d-1f468-1f3fb.png new file mode 100644 index 0000000000000..96bab42fe3f2b Binary files /dev/null and b/site/static/emojis/1f469-1f3fe-200d-1f91d-200d-1f468-1f3fb.png differ diff --git a/site/static/emojis/1f469-1f3fe-200d-1f91d-200d-1f468-1f3fc.png b/site/static/emojis/1f469-1f3fe-200d-1f91d-200d-1f468-1f3fc.png new file mode 100644 index 0000000000000..ec63a8daf9273 Binary files /dev/null and b/site/static/emojis/1f469-1f3fe-200d-1f91d-200d-1f468-1f3fc.png differ diff --git a/site/static/emojis/1f469-1f3fe-200d-1f91d-200d-1f468-1f3fd.png b/site/static/emojis/1f469-1f3fe-200d-1f91d-200d-1f468-1f3fd.png new file mode 100644 index 0000000000000..e28c33145bde3 Binary files /dev/null and b/site/static/emojis/1f469-1f3fe-200d-1f91d-200d-1f468-1f3fd.png differ diff --git a/site/static/emojis/1f469-1f3fe-200d-1f91d-200d-1f468-1f3ff.png b/site/static/emojis/1f469-1f3fe-200d-1f91d-200d-1f468-1f3ff.png new file mode 100644 index 0000000000000..4a44a039d269d Binary files /dev/null and b/site/static/emojis/1f469-1f3fe-200d-1f91d-200d-1f468-1f3ff.png differ diff --git a/site/static/emojis/1f469-1f3fe-200d-1f91d-200d-1f469-1f3fb.png b/site/static/emojis/1f469-1f3fe-200d-1f91d-200d-1f469-1f3fb.png new file mode 100644 index 0000000000000..97a1b798aeb66 Binary files /dev/null and b/site/static/emojis/1f469-1f3fe-200d-1f91d-200d-1f469-1f3fb.png differ diff --git a/site/static/emojis/1f469-1f3fe-200d-1f91d-200d-1f469-1f3fc.png b/site/static/emojis/1f469-1f3fe-200d-1f91d-200d-1f469-1f3fc.png new file mode 100644 index 0000000000000..88eb58af4bf26 Binary files /dev/null and b/site/static/emojis/1f469-1f3fe-200d-1f91d-200d-1f469-1f3fc.png differ diff --git a/site/static/emojis/1f469-1f3fe-200d-1f91d-200d-1f469-1f3fd.png b/site/static/emojis/1f469-1f3fe-200d-1f91d-200d-1f469-1f3fd.png new file mode 100644 index 0000000000000..09992c848d422 Binary files /dev/null and b/site/static/emojis/1f469-1f3fe-200d-1f91d-200d-1f469-1f3fd.png differ diff --git a/site/static/emojis/1f469-1f3fe-200d-1f91d-200d-1f469-1f3ff.png b/site/static/emojis/1f469-1f3fe-200d-1f91d-200d-1f469-1f3ff.png new file mode 100644 index 0000000000000..2865b2d0cca88 Binary files /dev/null and b/site/static/emojis/1f469-1f3fe-200d-1f91d-200d-1f469-1f3ff.png differ diff --git a/site/static/emojis/1f469-1f3fe-200d-1f9af.png b/site/static/emojis/1f469-1f3fe-200d-1f9af.png new file mode 100644 index 0000000000000..1a868a9429f0b Binary files /dev/null and b/site/static/emojis/1f469-1f3fe-200d-1f9af.png differ diff --git a/site/static/emojis/1f469-1f3fe-200d-1f9b0.png b/site/static/emojis/1f469-1f3fe-200d-1f9b0.png new file mode 100644 index 0000000000000..ea95260345b18 Binary files /dev/null and b/site/static/emojis/1f469-1f3fe-200d-1f9b0.png differ diff --git a/site/static/emojis/1f469-1f3fe-200d-1f9b1.png b/site/static/emojis/1f469-1f3fe-200d-1f9b1.png new file mode 100644 index 0000000000000..fcfa7dd7a3a80 Binary files /dev/null and b/site/static/emojis/1f469-1f3fe-200d-1f9b1.png differ diff --git a/site/static/emojis/1f469-1f3fe-200d-1f9b2.png b/site/static/emojis/1f469-1f3fe-200d-1f9b2.png new file mode 100644 index 0000000000000..7b8d469877a7a Binary files /dev/null and b/site/static/emojis/1f469-1f3fe-200d-1f9b2.png differ diff --git a/site/static/emojis/1f469-1f3fe-200d-1f9b3.png b/site/static/emojis/1f469-1f3fe-200d-1f9b3.png new file mode 100644 index 0000000000000..2adad8ef1cf47 Binary files /dev/null and b/site/static/emojis/1f469-1f3fe-200d-1f9b3.png differ diff --git a/site/static/emojis/1f469-1f3fe-200d-1f9bc.png b/site/static/emojis/1f469-1f3fe-200d-1f9bc.png new file mode 100644 index 0000000000000..b2f38a46194da Binary files /dev/null and b/site/static/emojis/1f469-1f3fe-200d-1f9bc.png differ diff --git a/site/static/emojis/1f469-1f3fe-200d-1f9bd.png b/site/static/emojis/1f469-1f3fe-200d-1f9bd.png new file mode 100644 index 0000000000000..31f9f77e3a158 Binary files /dev/null and b/site/static/emojis/1f469-1f3fe-200d-1f9bd.png differ diff --git a/site/static/emojis/1f469-1f3fe-200d-2695-fe0f.png b/site/static/emojis/1f469-1f3fe-200d-2695-fe0f.png new file mode 100644 index 0000000000000..1e54df038dd25 Binary files /dev/null and b/site/static/emojis/1f469-1f3fe-200d-2695-fe0f.png differ diff --git a/site/static/emojis/1f469-1f3fe-200d-2696-fe0f.png b/site/static/emojis/1f469-1f3fe-200d-2696-fe0f.png new file mode 100644 index 0000000000000..717291843456d Binary files /dev/null and b/site/static/emojis/1f469-1f3fe-200d-2696-fe0f.png differ diff --git a/site/static/emojis/1f469-1f3fe-200d-2708-fe0f.png b/site/static/emojis/1f469-1f3fe-200d-2708-fe0f.png new file mode 100644 index 0000000000000..c07612d8a731c Binary files /dev/null and b/site/static/emojis/1f469-1f3fe-200d-2708-fe0f.png differ diff --git a/site/static/emojis/1f469-1f3fe-200d-2764-fe0f-200d-1f468-1f3fb.png b/site/static/emojis/1f469-1f3fe-200d-2764-fe0f-200d-1f468-1f3fb.png new file mode 100644 index 0000000000000..39ad0efe9685d Binary files /dev/null and b/site/static/emojis/1f469-1f3fe-200d-2764-fe0f-200d-1f468-1f3fb.png differ diff --git a/site/static/emojis/1f469-1f3fe-200d-2764-fe0f-200d-1f468-1f3fc.png b/site/static/emojis/1f469-1f3fe-200d-2764-fe0f-200d-1f468-1f3fc.png new file mode 100644 index 0000000000000..8d9e5ee9a2d30 Binary files /dev/null and b/site/static/emojis/1f469-1f3fe-200d-2764-fe0f-200d-1f468-1f3fc.png differ diff --git a/site/static/emojis/1f469-1f3fe-200d-2764-fe0f-200d-1f468-1f3fd.png b/site/static/emojis/1f469-1f3fe-200d-2764-fe0f-200d-1f468-1f3fd.png new file mode 100644 index 0000000000000..7aebfc0948c23 Binary files /dev/null and b/site/static/emojis/1f469-1f3fe-200d-2764-fe0f-200d-1f468-1f3fd.png differ diff --git a/site/static/emojis/1f469-1f3fe-200d-2764-fe0f-200d-1f468-1f3fe.png b/site/static/emojis/1f469-1f3fe-200d-2764-fe0f-200d-1f468-1f3fe.png new file mode 100644 index 0000000000000..e1a35a7716404 Binary files /dev/null and b/site/static/emojis/1f469-1f3fe-200d-2764-fe0f-200d-1f468-1f3fe.png differ diff --git a/site/static/emojis/1f469-1f3fe-200d-2764-fe0f-200d-1f468-1f3ff.png b/site/static/emojis/1f469-1f3fe-200d-2764-fe0f-200d-1f468-1f3ff.png new file mode 100644 index 0000000000000..ef0e889fe62ef Binary files /dev/null and b/site/static/emojis/1f469-1f3fe-200d-2764-fe0f-200d-1f468-1f3ff.png differ diff --git a/site/static/emojis/1f469-1f3fe-200d-2764-fe0f-200d-1f469-1f3fb.png b/site/static/emojis/1f469-1f3fe-200d-2764-fe0f-200d-1f469-1f3fb.png new file mode 100644 index 0000000000000..13955c52816a0 Binary files /dev/null and b/site/static/emojis/1f469-1f3fe-200d-2764-fe0f-200d-1f469-1f3fb.png differ diff --git a/site/static/emojis/1f469-1f3fe-200d-2764-fe0f-200d-1f469-1f3fc.png b/site/static/emojis/1f469-1f3fe-200d-2764-fe0f-200d-1f469-1f3fc.png new file mode 100644 index 0000000000000..673dff419900b Binary files /dev/null and b/site/static/emojis/1f469-1f3fe-200d-2764-fe0f-200d-1f469-1f3fc.png differ diff --git a/site/static/emojis/1f469-1f3fe-200d-2764-fe0f-200d-1f469-1f3fd.png b/site/static/emojis/1f469-1f3fe-200d-2764-fe0f-200d-1f469-1f3fd.png new file mode 100644 index 0000000000000..8e965d3e4086d Binary files /dev/null and b/site/static/emojis/1f469-1f3fe-200d-2764-fe0f-200d-1f469-1f3fd.png differ diff --git a/site/static/emojis/1f469-1f3fe-200d-2764-fe0f-200d-1f469-1f3fe.png b/site/static/emojis/1f469-1f3fe-200d-2764-fe0f-200d-1f469-1f3fe.png new file mode 100644 index 0000000000000..dfaeda2a7de3f Binary files /dev/null and b/site/static/emojis/1f469-1f3fe-200d-2764-fe0f-200d-1f469-1f3fe.png differ diff --git a/site/static/emojis/1f469-1f3fe-200d-2764-fe0f-200d-1f469-1f3ff.png b/site/static/emojis/1f469-1f3fe-200d-2764-fe0f-200d-1f469-1f3ff.png new file mode 100644 index 0000000000000..4137f157b9661 Binary files /dev/null and b/site/static/emojis/1f469-1f3fe-200d-2764-fe0f-200d-1f469-1f3ff.png differ diff --git a/site/static/emojis/1f469-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fb.png b/site/static/emojis/1f469-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fb.png new file mode 100644 index 0000000000000..be6712935f18c Binary files /dev/null and b/site/static/emojis/1f469-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fb.png differ diff --git a/site/static/emojis/1f469-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fc.png b/site/static/emojis/1f469-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fc.png new file mode 100644 index 0000000000000..d12011600da50 Binary files /dev/null and b/site/static/emojis/1f469-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fc.png differ diff --git a/site/static/emojis/1f469-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fd.png b/site/static/emojis/1f469-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fd.png new file mode 100644 index 0000000000000..3457dd389fd8a Binary files /dev/null and b/site/static/emojis/1f469-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fd.png differ diff --git a/site/static/emojis/1f469-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fe.png b/site/static/emojis/1f469-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fe.png new file mode 100644 index 0000000000000..34c45bcee9c8e Binary files /dev/null and b/site/static/emojis/1f469-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fe.png differ diff --git a/site/static/emojis/1f469-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3ff.png b/site/static/emojis/1f469-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3ff.png new file mode 100644 index 0000000000000..74e69f5ad2e51 Binary files /dev/null and b/site/static/emojis/1f469-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3ff.png differ diff --git a/site/static/emojis/1f469-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fb.png b/site/static/emojis/1f469-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fb.png new file mode 100644 index 0000000000000..3cdcd5d25dd73 Binary files /dev/null and b/site/static/emojis/1f469-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fb.png differ diff --git a/site/static/emojis/1f469-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fc.png b/site/static/emojis/1f469-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fc.png new file mode 100644 index 0000000000000..a2e182d2308a1 Binary files /dev/null and b/site/static/emojis/1f469-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fc.png differ diff --git a/site/static/emojis/1f469-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fd.png b/site/static/emojis/1f469-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fd.png new file mode 100644 index 0000000000000..3a0cbc15619d5 Binary files /dev/null and b/site/static/emojis/1f469-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fd.png differ diff --git a/site/static/emojis/1f469-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fe.png b/site/static/emojis/1f469-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fe.png new file mode 100644 index 0000000000000..c919434ea4d5c Binary files /dev/null and b/site/static/emojis/1f469-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fe.png differ diff --git a/site/static/emojis/1f469-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3ff.png b/site/static/emojis/1f469-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3ff.png new file mode 100644 index 0000000000000..60acfb5941d9f Binary files /dev/null and b/site/static/emojis/1f469-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3ff.png differ diff --git a/site/static/emojis/1f469-1f3fe.png b/site/static/emojis/1f469-1f3fe.png new file mode 100644 index 0000000000000..294369061f2f3 Binary files /dev/null and b/site/static/emojis/1f469-1f3fe.png differ diff --git a/site/static/emojis/1f469-1f3ff-200d-1f33e.png b/site/static/emojis/1f469-1f3ff-200d-1f33e.png new file mode 100644 index 0000000000000..7e6a26f7d3eb7 Binary files /dev/null and b/site/static/emojis/1f469-1f3ff-200d-1f33e.png differ diff --git a/site/static/emojis/1f469-1f3ff-200d-1f373.png b/site/static/emojis/1f469-1f3ff-200d-1f373.png new file mode 100644 index 0000000000000..6bc9ea8a92812 Binary files /dev/null and b/site/static/emojis/1f469-1f3ff-200d-1f373.png differ diff --git a/site/static/emojis/1f469-1f3ff-200d-1f37c.png b/site/static/emojis/1f469-1f3ff-200d-1f37c.png new file mode 100644 index 0000000000000..519d8e43accb3 Binary files /dev/null and b/site/static/emojis/1f469-1f3ff-200d-1f37c.png differ diff --git a/site/static/emojis/1f469-1f3ff-200d-1f384.png b/site/static/emojis/1f469-1f3ff-200d-1f384.png new file mode 100644 index 0000000000000..f86966be832c9 Binary files /dev/null and b/site/static/emojis/1f469-1f3ff-200d-1f384.png differ diff --git a/site/static/emojis/1f469-1f3ff-200d-1f393.png b/site/static/emojis/1f469-1f3ff-200d-1f393.png new file mode 100644 index 0000000000000..60292568c134b Binary files /dev/null and b/site/static/emojis/1f469-1f3ff-200d-1f393.png differ diff --git a/site/static/emojis/1f469-1f3ff-200d-1f3a4.png b/site/static/emojis/1f469-1f3ff-200d-1f3a4.png new file mode 100644 index 0000000000000..91976880edd54 Binary files /dev/null and b/site/static/emojis/1f469-1f3ff-200d-1f3a4.png differ diff --git a/site/static/emojis/1f469-1f3ff-200d-1f3a8.png b/site/static/emojis/1f469-1f3ff-200d-1f3a8.png new file mode 100644 index 0000000000000..1217f191a7272 Binary files /dev/null and b/site/static/emojis/1f469-1f3ff-200d-1f3a8.png differ diff --git a/site/static/emojis/1f469-1f3ff-200d-1f3eb.png b/site/static/emojis/1f469-1f3ff-200d-1f3eb.png new file mode 100644 index 0000000000000..b8cae5d44ea03 Binary files /dev/null and b/site/static/emojis/1f469-1f3ff-200d-1f3eb.png differ diff --git a/site/static/emojis/1f469-1f3ff-200d-1f3ed.png b/site/static/emojis/1f469-1f3ff-200d-1f3ed.png new file mode 100644 index 0000000000000..e93b848a3cd32 Binary files /dev/null and b/site/static/emojis/1f469-1f3ff-200d-1f3ed.png differ diff --git a/site/static/emojis/1f469-1f3ff-200d-1f4bb.png b/site/static/emojis/1f469-1f3ff-200d-1f4bb.png new file mode 100644 index 0000000000000..0bfedd67cd790 Binary files /dev/null and b/site/static/emojis/1f469-1f3ff-200d-1f4bb.png differ diff --git a/site/static/emojis/1f469-1f3ff-200d-1f4bc.png b/site/static/emojis/1f469-1f3ff-200d-1f4bc.png new file mode 100644 index 0000000000000..81b90ae238f32 Binary files /dev/null and b/site/static/emojis/1f469-1f3ff-200d-1f4bc.png differ diff --git a/site/static/emojis/1f469-1f3ff-200d-1f527.png b/site/static/emojis/1f469-1f3ff-200d-1f527.png new file mode 100644 index 0000000000000..a03fdb747083e Binary files /dev/null and b/site/static/emojis/1f469-1f3ff-200d-1f527.png differ diff --git a/site/static/emojis/1f469-1f3ff-200d-1f52c.png b/site/static/emojis/1f469-1f3ff-200d-1f52c.png new file mode 100644 index 0000000000000..bddc3c88f2b7a Binary files /dev/null and b/site/static/emojis/1f469-1f3ff-200d-1f52c.png differ diff --git a/site/static/emojis/1f469-1f3ff-200d-1f680.png b/site/static/emojis/1f469-1f3ff-200d-1f680.png new file mode 100644 index 0000000000000..e2609e7f214c7 Binary files /dev/null and b/site/static/emojis/1f469-1f3ff-200d-1f680.png differ diff --git a/site/static/emojis/1f469-1f3ff-200d-1f692.png b/site/static/emojis/1f469-1f3ff-200d-1f692.png new file mode 100644 index 0000000000000..a41c8c3f18286 Binary files /dev/null and b/site/static/emojis/1f469-1f3ff-200d-1f692.png differ diff --git a/site/static/emojis/1f469-1f3ff-200d-1f91d-200d-1f468-1f3fb.png b/site/static/emojis/1f469-1f3ff-200d-1f91d-200d-1f468-1f3fb.png new file mode 100644 index 0000000000000..b09e52c1df9f9 Binary files /dev/null and b/site/static/emojis/1f469-1f3ff-200d-1f91d-200d-1f468-1f3fb.png differ diff --git a/site/static/emojis/1f469-1f3ff-200d-1f91d-200d-1f468-1f3fc.png b/site/static/emojis/1f469-1f3ff-200d-1f91d-200d-1f468-1f3fc.png new file mode 100644 index 0000000000000..52b1a7faf382b Binary files /dev/null and b/site/static/emojis/1f469-1f3ff-200d-1f91d-200d-1f468-1f3fc.png differ diff --git a/site/static/emojis/1f469-1f3ff-200d-1f91d-200d-1f468-1f3fd.png b/site/static/emojis/1f469-1f3ff-200d-1f91d-200d-1f468-1f3fd.png new file mode 100644 index 0000000000000..06fb17dbcefd7 Binary files /dev/null and b/site/static/emojis/1f469-1f3ff-200d-1f91d-200d-1f468-1f3fd.png differ diff --git a/site/static/emojis/1f469-1f3ff-200d-1f91d-200d-1f468-1f3fe.png b/site/static/emojis/1f469-1f3ff-200d-1f91d-200d-1f468-1f3fe.png new file mode 100644 index 0000000000000..a55b2981f5658 Binary files /dev/null and b/site/static/emojis/1f469-1f3ff-200d-1f91d-200d-1f468-1f3fe.png differ diff --git a/site/static/emojis/1f469-1f3ff-200d-1f91d-200d-1f469-1f3fb.png b/site/static/emojis/1f469-1f3ff-200d-1f91d-200d-1f469-1f3fb.png new file mode 100644 index 0000000000000..0354f5130e155 Binary files /dev/null and b/site/static/emojis/1f469-1f3ff-200d-1f91d-200d-1f469-1f3fb.png differ diff --git a/site/static/emojis/1f469-1f3ff-200d-1f91d-200d-1f469-1f3fc.png b/site/static/emojis/1f469-1f3ff-200d-1f91d-200d-1f469-1f3fc.png new file mode 100644 index 0000000000000..a0be380ae8cc6 Binary files /dev/null and b/site/static/emojis/1f469-1f3ff-200d-1f91d-200d-1f469-1f3fc.png differ diff --git a/site/static/emojis/1f469-1f3ff-200d-1f91d-200d-1f469-1f3fd.png b/site/static/emojis/1f469-1f3ff-200d-1f91d-200d-1f469-1f3fd.png new file mode 100644 index 0000000000000..4328159c2e006 Binary files /dev/null and b/site/static/emojis/1f469-1f3ff-200d-1f91d-200d-1f469-1f3fd.png differ diff --git a/site/static/emojis/1f469-1f3ff-200d-1f91d-200d-1f469-1f3fe.png b/site/static/emojis/1f469-1f3ff-200d-1f91d-200d-1f469-1f3fe.png new file mode 100644 index 0000000000000..80d7e7fa78c81 Binary files /dev/null and b/site/static/emojis/1f469-1f3ff-200d-1f91d-200d-1f469-1f3fe.png differ diff --git a/site/static/emojis/1f469-1f3ff-200d-1f9af.png b/site/static/emojis/1f469-1f3ff-200d-1f9af.png new file mode 100644 index 0000000000000..cd03b2dd09abc Binary files /dev/null and b/site/static/emojis/1f469-1f3ff-200d-1f9af.png differ diff --git a/site/static/emojis/1f469-1f3ff-200d-1f9b0.png b/site/static/emojis/1f469-1f3ff-200d-1f9b0.png new file mode 100644 index 0000000000000..805814296d430 Binary files /dev/null and b/site/static/emojis/1f469-1f3ff-200d-1f9b0.png differ diff --git a/site/static/emojis/1f469-1f3ff-200d-1f9b1.png b/site/static/emojis/1f469-1f3ff-200d-1f9b1.png new file mode 100644 index 0000000000000..7ae6c1ff7c1fe Binary files /dev/null and b/site/static/emojis/1f469-1f3ff-200d-1f9b1.png differ diff --git a/site/static/emojis/1f469-1f3ff-200d-1f9b2.png b/site/static/emojis/1f469-1f3ff-200d-1f9b2.png new file mode 100644 index 0000000000000..ced00feafd0a5 Binary files /dev/null and b/site/static/emojis/1f469-1f3ff-200d-1f9b2.png differ diff --git a/site/static/emojis/1f469-1f3ff-200d-1f9b3.png b/site/static/emojis/1f469-1f3ff-200d-1f9b3.png new file mode 100644 index 0000000000000..fdc58db65eb81 Binary files /dev/null and b/site/static/emojis/1f469-1f3ff-200d-1f9b3.png differ diff --git a/site/static/emojis/1f469-1f3ff-200d-1f9bc.png b/site/static/emojis/1f469-1f3ff-200d-1f9bc.png new file mode 100644 index 0000000000000..0b0320ccc284e Binary files /dev/null and b/site/static/emojis/1f469-1f3ff-200d-1f9bc.png differ diff --git a/site/static/emojis/1f469-1f3ff-200d-1f9bd.png b/site/static/emojis/1f469-1f3ff-200d-1f9bd.png new file mode 100644 index 0000000000000..9af884f32e71c Binary files /dev/null and b/site/static/emojis/1f469-1f3ff-200d-1f9bd.png differ diff --git a/site/static/emojis/1f469-1f3ff-200d-2695-fe0f.png b/site/static/emojis/1f469-1f3ff-200d-2695-fe0f.png new file mode 100644 index 0000000000000..16435b24c1f8b Binary files /dev/null and b/site/static/emojis/1f469-1f3ff-200d-2695-fe0f.png differ diff --git a/site/static/emojis/1f469-1f3ff-200d-2696-fe0f.png b/site/static/emojis/1f469-1f3ff-200d-2696-fe0f.png new file mode 100644 index 0000000000000..b3651d1e90600 Binary files /dev/null and b/site/static/emojis/1f469-1f3ff-200d-2696-fe0f.png differ diff --git a/site/static/emojis/1f469-1f3ff-200d-2708-fe0f.png b/site/static/emojis/1f469-1f3ff-200d-2708-fe0f.png new file mode 100644 index 0000000000000..798cd2a8be777 Binary files /dev/null and b/site/static/emojis/1f469-1f3ff-200d-2708-fe0f.png differ diff --git a/site/static/emojis/1f469-1f3ff-200d-2764-fe0f-200d-1f468-1f3fb.png b/site/static/emojis/1f469-1f3ff-200d-2764-fe0f-200d-1f468-1f3fb.png new file mode 100644 index 0000000000000..3012fc53ba505 Binary files /dev/null and b/site/static/emojis/1f469-1f3ff-200d-2764-fe0f-200d-1f468-1f3fb.png differ diff --git a/site/static/emojis/1f469-1f3ff-200d-2764-fe0f-200d-1f468-1f3fc.png b/site/static/emojis/1f469-1f3ff-200d-2764-fe0f-200d-1f468-1f3fc.png new file mode 100644 index 0000000000000..c2d672ca471ca Binary files /dev/null and b/site/static/emojis/1f469-1f3ff-200d-2764-fe0f-200d-1f468-1f3fc.png differ diff --git a/site/static/emojis/1f469-1f3ff-200d-2764-fe0f-200d-1f468-1f3fd.png b/site/static/emojis/1f469-1f3ff-200d-2764-fe0f-200d-1f468-1f3fd.png new file mode 100644 index 0000000000000..63b6d1058fa55 Binary files /dev/null and b/site/static/emojis/1f469-1f3ff-200d-2764-fe0f-200d-1f468-1f3fd.png differ diff --git a/site/static/emojis/1f469-1f3ff-200d-2764-fe0f-200d-1f468-1f3fe.png b/site/static/emojis/1f469-1f3ff-200d-2764-fe0f-200d-1f468-1f3fe.png new file mode 100644 index 0000000000000..7fb5c124d7855 Binary files /dev/null and b/site/static/emojis/1f469-1f3ff-200d-2764-fe0f-200d-1f468-1f3fe.png differ diff --git a/site/static/emojis/1f469-1f3ff-200d-2764-fe0f-200d-1f468-1f3ff.png b/site/static/emojis/1f469-1f3ff-200d-2764-fe0f-200d-1f468-1f3ff.png new file mode 100644 index 0000000000000..e796b055f23cc Binary files /dev/null and b/site/static/emojis/1f469-1f3ff-200d-2764-fe0f-200d-1f468-1f3ff.png differ diff --git a/site/static/emojis/1f469-1f3ff-200d-2764-fe0f-200d-1f469-1f3fb.png b/site/static/emojis/1f469-1f3ff-200d-2764-fe0f-200d-1f469-1f3fb.png new file mode 100644 index 0000000000000..a95a138db5386 Binary files /dev/null and b/site/static/emojis/1f469-1f3ff-200d-2764-fe0f-200d-1f469-1f3fb.png differ diff --git a/site/static/emojis/1f469-1f3ff-200d-2764-fe0f-200d-1f469-1f3fc.png b/site/static/emojis/1f469-1f3ff-200d-2764-fe0f-200d-1f469-1f3fc.png new file mode 100644 index 0000000000000..8a6ae7b04d8be Binary files /dev/null and b/site/static/emojis/1f469-1f3ff-200d-2764-fe0f-200d-1f469-1f3fc.png differ diff --git a/site/static/emojis/1f469-1f3ff-200d-2764-fe0f-200d-1f469-1f3fd.png b/site/static/emojis/1f469-1f3ff-200d-2764-fe0f-200d-1f469-1f3fd.png new file mode 100644 index 0000000000000..eba466bf620c4 Binary files /dev/null and b/site/static/emojis/1f469-1f3ff-200d-2764-fe0f-200d-1f469-1f3fd.png differ diff --git a/site/static/emojis/1f469-1f3ff-200d-2764-fe0f-200d-1f469-1f3fe.png b/site/static/emojis/1f469-1f3ff-200d-2764-fe0f-200d-1f469-1f3fe.png new file mode 100644 index 0000000000000..db682f62ebfa6 Binary files /dev/null and b/site/static/emojis/1f469-1f3ff-200d-2764-fe0f-200d-1f469-1f3fe.png differ diff --git a/site/static/emojis/1f469-1f3ff-200d-2764-fe0f-200d-1f469-1f3ff.png b/site/static/emojis/1f469-1f3ff-200d-2764-fe0f-200d-1f469-1f3ff.png new file mode 100644 index 0000000000000..4890f4668743c Binary files /dev/null and b/site/static/emojis/1f469-1f3ff-200d-2764-fe0f-200d-1f469-1f3ff.png differ diff --git a/site/static/emojis/1f469-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fb.png b/site/static/emojis/1f469-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fb.png new file mode 100644 index 0000000000000..0468d7bf376ca Binary files /dev/null and b/site/static/emojis/1f469-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fb.png differ diff --git a/site/static/emojis/1f469-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fc.png b/site/static/emojis/1f469-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fc.png new file mode 100644 index 0000000000000..0bead8d1bc828 Binary files /dev/null and b/site/static/emojis/1f469-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fc.png differ diff --git a/site/static/emojis/1f469-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fd.png b/site/static/emojis/1f469-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fd.png new file mode 100644 index 0000000000000..187f23270ab88 Binary files /dev/null and b/site/static/emojis/1f469-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fd.png differ diff --git a/site/static/emojis/1f469-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fe.png b/site/static/emojis/1f469-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fe.png new file mode 100644 index 0000000000000..9f920bdd86fc7 Binary files /dev/null and b/site/static/emojis/1f469-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fe.png differ diff --git a/site/static/emojis/1f469-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3ff.png b/site/static/emojis/1f469-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3ff.png new file mode 100644 index 0000000000000..de2699dc8f8d8 Binary files /dev/null and b/site/static/emojis/1f469-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3ff.png differ diff --git a/site/static/emojis/1f469-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fb.png b/site/static/emojis/1f469-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fb.png new file mode 100644 index 0000000000000..48b888bca271b Binary files /dev/null and b/site/static/emojis/1f469-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fb.png differ diff --git a/site/static/emojis/1f469-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fc.png b/site/static/emojis/1f469-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fc.png new file mode 100644 index 0000000000000..cb68cc6a4cf02 Binary files /dev/null and b/site/static/emojis/1f469-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fc.png differ diff --git a/site/static/emojis/1f469-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fd.png b/site/static/emojis/1f469-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fd.png new file mode 100644 index 0000000000000..aa06a8bcb20ca Binary files /dev/null and b/site/static/emojis/1f469-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fd.png differ diff --git a/site/static/emojis/1f469-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fe.png b/site/static/emojis/1f469-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fe.png new file mode 100644 index 0000000000000..1f7a610e30bea Binary files /dev/null and b/site/static/emojis/1f469-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fe.png differ diff --git a/site/static/emojis/1f469-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3ff.png b/site/static/emojis/1f469-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3ff.png new file mode 100644 index 0000000000000..663dc3885c7da Binary files /dev/null and b/site/static/emojis/1f469-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3ff.png differ diff --git a/site/static/emojis/1f469-1f3ff.png b/site/static/emojis/1f469-1f3ff.png new file mode 100644 index 0000000000000..3d2c2262011f1 Binary files /dev/null and b/site/static/emojis/1f469-1f3ff.png differ diff --git a/site/static/emojis/1f469-200d-1f33e.png b/site/static/emojis/1f469-200d-1f33e.png new file mode 100644 index 0000000000000..039da46e99809 Binary files /dev/null and b/site/static/emojis/1f469-200d-1f33e.png differ diff --git a/site/static/emojis/1f469-200d-1f373.png b/site/static/emojis/1f469-200d-1f373.png new file mode 100644 index 0000000000000..6a2f087204a5c Binary files /dev/null and b/site/static/emojis/1f469-200d-1f373.png differ diff --git a/site/static/emojis/1f469-200d-1f37c.png b/site/static/emojis/1f469-200d-1f37c.png new file mode 100644 index 0000000000000..aadeca6076c7e Binary files /dev/null and b/site/static/emojis/1f469-200d-1f37c.png differ diff --git a/site/static/emojis/1f469-200d-1f384.png b/site/static/emojis/1f469-200d-1f384.png new file mode 100644 index 0000000000000..56dc794884bbb Binary files /dev/null and b/site/static/emojis/1f469-200d-1f384.png differ diff --git a/site/static/emojis/1f469-200d-1f393.png b/site/static/emojis/1f469-200d-1f393.png new file mode 100644 index 0000000000000..86f0cefe9a984 Binary files /dev/null and b/site/static/emojis/1f469-200d-1f393.png differ diff --git a/site/static/emojis/1f469-200d-1f3a4.png b/site/static/emojis/1f469-200d-1f3a4.png new file mode 100644 index 0000000000000..06d534d439ac9 Binary files /dev/null and b/site/static/emojis/1f469-200d-1f3a4.png differ diff --git a/site/static/emojis/1f469-200d-1f3a8.png b/site/static/emojis/1f469-200d-1f3a8.png new file mode 100644 index 0000000000000..7c50ca6ca4d87 Binary files /dev/null and b/site/static/emojis/1f469-200d-1f3a8.png differ diff --git a/site/static/emojis/1f469-200d-1f3eb.png b/site/static/emojis/1f469-200d-1f3eb.png new file mode 100644 index 0000000000000..b4a6c798afa3d Binary files /dev/null and b/site/static/emojis/1f469-200d-1f3eb.png differ diff --git a/site/static/emojis/1f469-200d-1f3ed.png b/site/static/emojis/1f469-200d-1f3ed.png new file mode 100644 index 0000000000000..c3a0396c115ae Binary files /dev/null and b/site/static/emojis/1f469-200d-1f3ed.png differ diff --git a/site/static/emojis/1f469-200d-1f466-200d-1f466.png b/site/static/emojis/1f469-200d-1f466-200d-1f466.png new file mode 100644 index 0000000000000..26b9d2918a54e Binary files /dev/null and b/site/static/emojis/1f469-200d-1f466-200d-1f466.png differ diff --git a/site/static/emojis/1f469-200d-1f466.png b/site/static/emojis/1f469-200d-1f466.png new file mode 100644 index 0000000000000..cb5c353579e94 Binary files /dev/null and b/site/static/emojis/1f469-200d-1f466.png differ diff --git a/site/static/emojis/1f469-200d-1f467-200d-1f466.png b/site/static/emojis/1f469-200d-1f467-200d-1f466.png new file mode 100644 index 0000000000000..ad1a7aebd04d5 Binary files /dev/null and b/site/static/emojis/1f469-200d-1f467-200d-1f466.png differ diff --git a/site/static/emojis/1f469-200d-1f467-200d-1f467.png b/site/static/emojis/1f469-200d-1f467-200d-1f467.png new file mode 100644 index 0000000000000..7a491db3a1d14 Binary files /dev/null and b/site/static/emojis/1f469-200d-1f467-200d-1f467.png differ diff --git a/site/static/emojis/1f469-200d-1f467.png b/site/static/emojis/1f469-200d-1f467.png new file mode 100644 index 0000000000000..65ef0c898cad4 Binary files /dev/null and b/site/static/emojis/1f469-200d-1f467.png differ diff --git a/site/static/emojis/1f469-200d-1f469-200d-1f466-200d-1f466.png b/site/static/emojis/1f469-200d-1f469-200d-1f466-200d-1f466.png new file mode 100644 index 0000000000000..fd9cd351cec70 Binary files /dev/null and b/site/static/emojis/1f469-200d-1f469-200d-1f466-200d-1f466.png differ diff --git a/site/static/emojis/1f469-200d-1f469-200d-1f466.png b/site/static/emojis/1f469-200d-1f469-200d-1f466.png new file mode 100644 index 0000000000000..cbb3c134b069c Binary files /dev/null and b/site/static/emojis/1f469-200d-1f469-200d-1f466.png differ diff --git a/site/static/emojis/1f469-200d-1f469-200d-1f467-200d-1f466.png b/site/static/emojis/1f469-200d-1f469-200d-1f467-200d-1f466.png new file mode 100644 index 0000000000000..b0d01ae365a72 Binary files /dev/null and b/site/static/emojis/1f469-200d-1f469-200d-1f467-200d-1f466.png differ diff --git a/site/static/emojis/1f469-200d-1f469-200d-1f467-200d-1f467.png b/site/static/emojis/1f469-200d-1f469-200d-1f467-200d-1f467.png new file mode 100644 index 0000000000000..5e736a9fe2c8a Binary files /dev/null and b/site/static/emojis/1f469-200d-1f469-200d-1f467-200d-1f467.png differ diff --git a/site/static/emojis/1f469-200d-1f469-200d-1f467.png b/site/static/emojis/1f469-200d-1f469-200d-1f467.png new file mode 100644 index 0000000000000..cf0581b5ac720 Binary files /dev/null and b/site/static/emojis/1f469-200d-1f469-200d-1f467.png differ diff --git a/site/static/emojis/1f469-200d-1f4bb.png b/site/static/emojis/1f469-200d-1f4bb.png new file mode 100644 index 0000000000000..b9471c2dc6c1e Binary files /dev/null and b/site/static/emojis/1f469-200d-1f4bb.png differ diff --git a/site/static/emojis/1f469-200d-1f4bc.png b/site/static/emojis/1f469-200d-1f4bc.png new file mode 100644 index 0000000000000..1646ce6498a1f Binary files /dev/null and b/site/static/emojis/1f469-200d-1f4bc.png differ diff --git a/site/static/emojis/1f469-200d-1f527.png b/site/static/emojis/1f469-200d-1f527.png new file mode 100644 index 0000000000000..95e2c6589b021 Binary files /dev/null and b/site/static/emojis/1f469-200d-1f527.png differ diff --git a/site/static/emojis/1f469-200d-1f52c.png b/site/static/emojis/1f469-200d-1f52c.png new file mode 100644 index 0000000000000..af9c4fe71fca6 Binary files /dev/null and b/site/static/emojis/1f469-200d-1f52c.png differ diff --git a/site/static/emojis/1f469-200d-1f680.png b/site/static/emojis/1f469-200d-1f680.png new file mode 100644 index 0000000000000..d1a0dc9c643cd Binary files /dev/null and b/site/static/emojis/1f469-200d-1f680.png differ diff --git a/site/static/emojis/1f469-200d-1f692.png b/site/static/emojis/1f469-200d-1f692.png new file mode 100644 index 0000000000000..282f50cb478c6 Binary files /dev/null and b/site/static/emojis/1f469-200d-1f692.png differ diff --git a/site/static/emojis/1f469-200d-1f9af.png b/site/static/emojis/1f469-200d-1f9af.png new file mode 100644 index 0000000000000..4c2c23eb6654c Binary files /dev/null and b/site/static/emojis/1f469-200d-1f9af.png differ diff --git a/site/static/emojis/1f469-200d-1f9b0.png b/site/static/emojis/1f469-200d-1f9b0.png new file mode 100644 index 0000000000000..373c1c537b75c Binary files /dev/null and b/site/static/emojis/1f469-200d-1f9b0.png differ diff --git a/site/static/emojis/1f469-200d-1f9b1.png b/site/static/emojis/1f469-200d-1f9b1.png new file mode 100644 index 0000000000000..80ca4a5c3bbf7 Binary files /dev/null and b/site/static/emojis/1f469-200d-1f9b1.png differ diff --git a/site/static/emojis/1f469-200d-1f9b2.png b/site/static/emojis/1f469-200d-1f9b2.png new file mode 100644 index 0000000000000..2fe69f9458c7f Binary files /dev/null and b/site/static/emojis/1f469-200d-1f9b2.png differ diff --git a/site/static/emojis/1f469-200d-1f9b3.png b/site/static/emojis/1f469-200d-1f9b3.png new file mode 100644 index 0000000000000..98de2e9c3ebf8 Binary files /dev/null and b/site/static/emojis/1f469-200d-1f9b3.png differ diff --git a/site/static/emojis/1f469-200d-1f9bc.png b/site/static/emojis/1f469-200d-1f9bc.png new file mode 100644 index 0000000000000..8f9a994642c29 Binary files /dev/null and b/site/static/emojis/1f469-200d-1f9bc.png differ diff --git a/site/static/emojis/1f469-200d-1f9bd.png b/site/static/emojis/1f469-200d-1f9bd.png new file mode 100644 index 0000000000000..23b365ddc0dda Binary files /dev/null and b/site/static/emojis/1f469-200d-1f9bd.png differ diff --git a/site/static/emojis/1f469-200d-2695-fe0f.png b/site/static/emojis/1f469-200d-2695-fe0f.png new file mode 100644 index 0000000000000..c33e27829f93c Binary files /dev/null and b/site/static/emojis/1f469-200d-2695-fe0f.png differ diff --git a/site/static/emojis/1f469-200d-2696-fe0f.png b/site/static/emojis/1f469-200d-2696-fe0f.png new file mode 100644 index 0000000000000..65e7b72694f25 Binary files /dev/null and b/site/static/emojis/1f469-200d-2696-fe0f.png differ diff --git a/site/static/emojis/1f469-200d-2708-fe0f.png b/site/static/emojis/1f469-200d-2708-fe0f.png new file mode 100644 index 0000000000000..ccb503b8b27cc Binary files /dev/null and b/site/static/emojis/1f469-200d-2708-fe0f.png differ diff --git a/site/static/emojis/1f469-200d-2764-fe0f-200d-1f468.png b/site/static/emojis/1f469-200d-2764-fe0f-200d-1f468.png new file mode 100644 index 0000000000000..d559bec4b400a Binary files /dev/null and b/site/static/emojis/1f469-200d-2764-fe0f-200d-1f468.png differ diff --git a/site/static/emojis/1f469-200d-2764-fe0f-200d-1f469.png b/site/static/emojis/1f469-200d-2764-fe0f-200d-1f469.png new file mode 100644 index 0000000000000..42400b469b05c Binary files /dev/null and b/site/static/emojis/1f469-200d-2764-fe0f-200d-1f469.png differ diff --git a/site/static/emojis/1f469-200d-2764-fe0f-200d-1f48b-200d-1f468.png b/site/static/emojis/1f469-200d-2764-fe0f-200d-1f48b-200d-1f468.png new file mode 100644 index 0000000000000..bced8de9f4ca5 Binary files /dev/null and b/site/static/emojis/1f469-200d-2764-fe0f-200d-1f48b-200d-1f468.png differ diff --git a/site/static/emojis/1f469-200d-2764-fe0f-200d-1f48b-200d-1f469.png b/site/static/emojis/1f469-200d-2764-fe0f-200d-1f48b-200d-1f469.png new file mode 100644 index 0000000000000..8055e53c7b72c Binary files /dev/null and b/site/static/emojis/1f469-200d-2764-fe0f-200d-1f48b-200d-1f469.png differ diff --git a/site/static/emojis/1f469.png b/site/static/emojis/1f469.png new file mode 100644 index 0000000000000..918d94f8a470f Binary files /dev/null and b/site/static/emojis/1f469.png differ diff --git a/site/static/emojis/1f46a.png b/site/static/emojis/1f46a.png new file mode 100644 index 0000000000000..f9016da446e51 Binary files /dev/null and b/site/static/emojis/1f46a.png differ diff --git a/site/static/emojis/1f46b-1f3fb.png b/site/static/emojis/1f46b-1f3fb.png new file mode 100644 index 0000000000000..c82b331ae02e3 Binary files /dev/null and b/site/static/emojis/1f46b-1f3fb.png differ diff --git a/site/static/emojis/1f46b-1f3fc.png b/site/static/emojis/1f46b-1f3fc.png new file mode 100644 index 0000000000000..d756e1a64e654 Binary files /dev/null and b/site/static/emojis/1f46b-1f3fc.png differ diff --git a/site/static/emojis/1f46b-1f3fd.png b/site/static/emojis/1f46b-1f3fd.png new file mode 100644 index 0000000000000..bd6315f21b6a1 Binary files /dev/null and b/site/static/emojis/1f46b-1f3fd.png differ diff --git a/site/static/emojis/1f46b-1f3fe.png b/site/static/emojis/1f46b-1f3fe.png new file mode 100644 index 0000000000000..75c3f3391ca1e Binary files /dev/null and b/site/static/emojis/1f46b-1f3fe.png differ diff --git a/site/static/emojis/1f46b-1f3ff.png b/site/static/emojis/1f46b-1f3ff.png new file mode 100644 index 0000000000000..8d46caeacb891 Binary files /dev/null and b/site/static/emojis/1f46b-1f3ff.png differ diff --git a/site/static/emojis/1f46b.png b/site/static/emojis/1f46b.png new file mode 100644 index 0000000000000..dd41b77856b37 Binary files /dev/null and b/site/static/emojis/1f46b.png differ diff --git a/site/static/emojis/1f46c-1f3fb.png b/site/static/emojis/1f46c-1f3fb.png new file mode 100644 index 0000000000000..7a7105d5ce8b2 Binary files /dev/null and b/site/static/emojis/1f46c-1f3fb.png differ diff --git a/site/static/emojis/1f46c-1f3fc.png b/site/static/emojis/1f46c-1f3fc.png new file mode 100644 index 0000000000000..f3f01894ec97e Binary files /dev/null and b/site/static/emojis/1f46c-1f3fc.png differ diff --git a/site/static/emojis/1f46c-1f3fd.png b/site/static/emojis/1f46c-1f3fd.png new file mode 100644 index 0000000000000..5a3839e45db0a Binary files /dev/null and b/site/static/emojis/1f46c-1f3fd.png differ diff --git a/site/static/emojis/1f46c-1f3fe.png b/site/static/emojis/1f46c-1f3fe.png new file mode 100644 index 0000000000000..c24f08b025a48 Binary files /dev/null and b/site/static/emojis/1f46c-1f3fe.png differ diff --git a/site/static/emojis/1f46c-1f3ff.png b/site/static/emojis/1f46c-1f3ff.png new file mode 100644 index 0000000000000..2b04da70d3ac1 Binary files /dev/null and b/site/static/emojis/1f46c-1f3ff.png differ diff --git a/site/static/emojis/1f46c.png b/site/static/emojis/1f46c.png new file mode 100644 index 0000000000000..63649e2bc1522 Binary files /dev/null and b/site/static/emojis/1f46c.png differ diff --git a/site/static/emojis/1f46d-1f3fb.png b/site/static/emojis/1f46d-1f3fb.png new file mode 100644 index 0000000000000..9eb93c9b3500d Binary files /dev/null and b/site/static/emojis/1f46d-1f3fb.png differ diff --git a/site/static/emojis/1f46d-1f3fc.png b/site/static/emojis/1f46d-1f3fc.png new file mode 100644 index 0000000000000..51a33eebf409b Binary files /dev/null and b/site/static/emojis/1f46d-1f3fc.png differ diff --git a/site/static/emojis/1f46d-1f3fd.png b/site/static/emojis/1f46d-1f3fd.png new file mode 100644 index 0000000000000..47ade250696de Binary files /dev/null and b/site/static/emojis/1f46d-1f3fd.png differ diff --git a/site/static/emojis/1f46d-1f3fe.png b/site/static/emojis/1f46d-1f3fe.png new file mode 100644 index 0000000000000..1ac7b9e6ce955 Binary files /dev/null and b/site/static/emojis/1f46d-1f3fe.png differ diff --git a/site/static/emojis/1f46d-1f3ff.png b/site/static/emojis/1f46d-1f3ff.png new file mode 100644 index 0000000000000..bc5432db845b7 Binary files /dev/null and b/site/static/emojis/1f46d-1f3ff.png differ diff --git a/site/static/emojis/1f46d.png b/site/static/emojis/1f46d.png new file mode 100644 index 0000000000000..5dbc59dacb2ba Binary files /dev/null and b/site/static/emojis/1f46d.png differ diff --git a/site/static/emojis/1f46e-1f3fb-200d-2640-fe0f.png b/site/static/emojis/1f46e-1f3fb-200d-2640-fe0f.png new file mode 100644 index 0000000000000..3a6da267e636b Binary files /dev/null and b/site/static/emojis/1f46e-1f3fb-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f46e-1f3fb-200d-2642-fe0f.png b/site/static/emojis/1f46e-1f3fb-200d-2642-fe0f.png new file mode 100644 index 0000000000000..70042a6aa0ee8 Binary files /dev/null and b/site/static/emojis/1f46e-1f3fb-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f46e-1f3fb.png b/site/static/emojis/1f46e-1f3fb.png new file mode 100644 index 0000000000000..0c8e6410c46b8 Binary files /dev/null and b/site/static/emojis/1f46e-1f3fb.png differ diff --git a/site/static/emojis/1f46e-1f3fc-200d-2640-fe0f.png b/site/static/emojis/1f46e-1f3fc-200d-2640-fe0f.png new file mode 100644 index 0000000000000..6175b1d664095 Binary files /dev/null and b/site/static/emojis/1f46e-1f3fc-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f46e-1f3fc-200d-2642-fe0f.png b/site/static/emojis/1f46e-1f3fc-200d-2642-fe0f.png new file mode 100644 index 0000000000000..7a8fda8766e2c Binary files /dev/null and b/site/static/emojis/1f46e-1f3fc-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f46e-1f3fc.png b/site/static/emojis/1f46e-1f3fc.png new file mode 100644 index 0000000000000..7b5c5252cddcd Binary files /dev/null and b/site/static/emojis/1f46e-1f3fc.png differ diff --git a/site/static/emojis/1f46e-1f3fd-200d-2640-fe0f.png b/site/static/emojis/1f46e-1f3fd-200d-2640-fe0f.png new file mode 100644 index 0000000000000..8e2c504b4d07a Binary files /dev/null and b/site/static/emojis/1f46e-1f3fd-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f46e-1f3fd-200d-2642-fe0f.png b/site/static/emojis/1f46e-1f3fd-200d-2642-fe0f.png new file mode 100644 index 0000000000000..33f8980e71340 Binary files /dev/null and b/site/static/emojis/1f46e-1f3fd-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f46e-1f3fd.png b/site/static/emojis/1f46e-1f3fd.png new file mode 100644 index 0000000000000..f9e093e9f48d2 Binary files /dev/null and b/site/static/emojis/1f46e-1f3fd.png differ diff --git a/site/static/emojis/1f46e-1f3fe-200d-2640-fe0f.png b/site/static/emojis/1f46e-1f3fe-200d-2640-fe0f.png new file mode 100644 index 0000000000000..df3dad6aacf76 Binary files /dev/null and b/site/static/emojis/1f46e-1f3fe-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f46e-1f3fe-200d-2642-fe0f.png b/site/static/emojis/1f46e-1f3fe-200d-2642-fe0f.png new file mode 100644 index 0000000000000..2baa54ab5a56a Binary files /dev/null and b/site/static/emojis/1f46e-1f3fe-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f46e-1f3fe.png b/site/static/emojis/1f46e-1f3fe.png new file mode 100644 index 0000000000000..8275ab3b11701 Binary files /dev/null and b/site/static/emojis/1f46e-1f3fe.png differ diff --git a/site/static/emojis/1f46e-1f3ff-200d-2640-fe0f.png b/site/static/emojis/1f46e-1f3ff-200d-2640-fe0f.png new file mode 100644 index 0000000000000..9098ad285043c Binary files /dev/null and b/site/static/emojis/1f46e-1f3ff-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f46e-1f3ff-200d-2642-fe0f.png b/site/static/emojis/1f46e-1f3ff-200d-2642-fe0f.png new file mode 100644 index 0000000000000..e31a033ba38f8 Binary files /dev/null and b/site/static/emojis/1f46e-1f3ff-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f46e-1f3ff.png b/site/static/emojis/1f46e-1f3ff.png new file mode 100644 index 0000000000000..5e0e1f1d9a6f4 Binary files /dev/null and b/site/static/emojis/1f46e-1f3ff.png differ diff --git a/site/static/emojis/1f46e-200d-2640-fe0f.png b/site/static/emojis/1f46e-200d-2640-fe0f.png new file mode 100644 index 0000000000000..13ed498d63958 Binary files /dev/null and b/site/static/emojis/1f46e-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f46e-200d-2642-fe0f.png b/site/static/emojis/1f46e-200d-2642-fe0f.png new file mode 100644 index 0000000000000..acd2111f6164e Binary files /dev/null and b/site/static/emojis/1f46e-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f46e.png b/site/static/emojis/1f46e.png new file mode 100644 index 0000000000000..7093bb3cd61b7 Binary files /dev/null and b/site/static/emojis/1f46e.png differ diff --git a/site/static/emojis/1f46f-200d-2640-fe0f.png b/site/static/emojis/1f46f-200d-2640-fe0f.png new file mode 100644 index 0000000000000..e71b3cc1c0e43 Binary files /dev/null and b/site/static/emojis/1f46f-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f46f-200d-2642-fe0f.png b/site/static/emojis/1f46f-200d-2642-fe0f.png new file mode 100644 index 0000000000000..13fb047fb53a7 Binary files /dev/null and b/site/static/emojis/1f46f-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f46f.png b/site/static/emojis/1f46f.png new file mode 100644 index 0000000000000..5b84d390400ae Binary files /dev/null and b/site/static/emojis/1f46f.png differ diff --git a/site/static/emojis/1f470-1f3fb-200d-2640-fe0f.png b/site/static/emojis/1f470-1f3fb-200d-2640-fe0f.png new file mode 100644 index 0000000000000..e3a5d3ff7c673 Binary files /dev/null and b/site/static/emojis/1f470-1f3fb-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f470-1f3fb-200d-2642-fe0f.png b/site/static/emojis/1f470-1f3fb-200d-2642-fe0f.png new file mode 100644 index 0000000000000..af472a42b30f9 Binary files /dev/null and b/site/static/emojis/1f470-1f3fb-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f470-1f3fb.png b/site/static/emojis/1f470-1f3fb.png new file mode 100644 index 0000000000000..c28329b037a3a Binary files /dev/null and b/site/static/emojis/1f470-1f3fb.png differ diff --git a/site/static/emojis/1f470-1f3fc-200d-2640-fe0f.png b/site/static/emojis/1f470-1f3fc-200d-2640-fe0f.png new file mode 100644 index 0000000000000..b054d60fafee0 Binary files /dev/null and b/site/static/emojis/1f470-1f3fc-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f470-1f3fc-200d-2642-fe0f.png b/site/static/emojis/1f470-1f3fc-200d-2642-fe0f.png new file mode 100644 index 0000000000000..954b610ce3549 Binary files /dev/null and b/site/static/emojis/1f470-1f3fc-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f470-1f3fc.png b/site/static/emojis/1f470-1f3fc.png new file mode 100644 index 0000000000000..c231a438c5939 Binary files /dev/null and b/site/static/emojis/1f470-1f3fc.png differ diff --git a/site/static/emojis/1f470-1f3fd-200d-2640-fe0f.png b/site/static/emojis/1f470-1f3fd-200d-2640-fe0f.png new file mode 100644 index 0000000000000..29159df5f2b84 Binary files /dev/null and b/site/static/emojis/1f470-1f3fd-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f470-1f3fd-200d-2642-fe0f.png b/site/static/emojis/1f470-1f3fd-200d-2642-fe0f.png new file mode 100644 index 0000000000000..39a13a4b27aac Binary files /dev/null and b/site/static/emojis/1f470-1f3fd-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f470-1f3fd.png b/site/static/emojis/1f470-1f3fd.png new file mode 100644 index 0000000000000..5dcec53626b05 Binary files /dev/null and b/site/static/emojis/1f470-1f3fd.png differ diff --git a/site/static/emojis/1f470-1f3fe-200d-2640-fe0f.png b/site/static/emojis/1f470-1f3fe-200d-2640-fe0f.png new file mode 100644 index 0000000000000..bf45ade5f3a4d Binary files /dev/null and b/site/static/emojis/1f470-1f3fe-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f470-1f3fe-200d-2642-fe0f.png b/site/static/emojis/1f470-1f3fe-200d-2642-fe0f.png new file mode 100644 index 0000000000000..f7691ee7c8d1f Binary files /dev/null and b/site/static/emojis/1f470-1f3fe-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f470-1f3fe.png b/site/static/emojis/1f470-1f3fe.png new file mode 100644 index 0000000000000..0f8a2fb28a8ea Binary files /dev/null and b/site/static/emojis/1f470-1f3fe.png differ diff --git a/site/static/emojis/1f470-1f3ff-200d-2640-fe0f.png b/site/static/emojis/1f470-1f3ff-200d-2640-fe0f.png new file mode 100644 index 0000000000000..86e4a38016b2d Binary files /dev/null and b/site/static/emojis/1f470-1f3ff-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f470-1f3ff-200d-2642-fe0f.png b/site/static/emojis/1f470-1f3ff-200d-2642-fe0f.png new file mode 100644 index 0000000000000..464cd6cc44034 Binary files /dev/null and b/site/static/emojis/1f470-1f3ff-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f470-1f3ff.png b/site/static/emojis/1f470-1f3ff.png new file mode 100644 index 0000000000000..9e7cff0276856 Binary files /dev/null and b/site/static/emojis/1f470-1f3ff.png differ diff --git a/site/static/emojis/1f470-200d-2640-fe0f.png b/site/static/emojis/1f470-200d-2640-fe0f.png new file mode 100644 index 0000000000000..dafe0b4746140 Binary files /dev/null and b/site/static/emojis/1f470-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f470-200d-2642-fe0f.png b/site/static/emojis/1f470-200d-2642-fe0f.png new file mode 100644 index 0000000000000..278ac8d861868 Binary files /dev/null and b/site/static/emojis/1f470-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f470.png b/site/static/emojis/1f470.png new file mode 100644 index 0000000000000..3adfd123ed71c Binary files /dev/null and b/site/static/emojis/1f470.png differ diff --git a/site/static/emojis/1f471-1f3fb-200d-2640-fe0f.png b/site/static/emojis/1f471-1f3fb-200d-2640-fe0f.png new file mode 100644 index 0000000000000..06e54a10b7899 Binary files /dev/null and b/site/static/emojis/1f471-1f3fb-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f471-1f3fb-200d-2642-fe0f.png b/site/static/emojis/1f471-1f3fb-200d-2642-fe0f.png new file mode 100644 index 0000000000000..9da7e3f7fb64d Binary files /dev/null and b/site/static/emojis/1f471-1f3fb-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f471-1f3fb.png b/site/static/emojis/1f471-1f3fb.png new file mode 100644 index 0000000000000..9a9dbe92eb77c Binary files /dev/null and b/site/static/emojis/1f471-1f3fb.png differ diff --git a/site/static/emojis/1f471-1f3fc-200d-2640-fe0f.png b/site/static/emojis/1f471-1f3fc-200d-2640-fe0f.png new file mode 100644 index 0000000000000..0f58537be863d Binary files /dev/null and b/site/static/emojis/1f471-1f3fc-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f471-1f3fc-200d-2642-fe0f.png b/site/static/emojis/1f471-1f3fc-200d-2642-fe0f.png new file mode 100644 index 0000000000000..7ff9efd4dab8e Binary files /dev/null and b/site/static/emojis/1f471-1f3fc-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f471-1f3fc.png b/site/static/emojis/1f471-1f3fc.png new file mode 100644 index 0000000000000..01319fe8423be Binary files /dev/null and b/site/static/emojis/1f471-1f3fc.png differ diff --git a/site/static/emojis/1f471-1f3fd-200d-2640-fe0f.png b/site/static/emojis/1f471-1f3fd-200d-2640-fe0f.png new file mode 100644 index 0000000000000..377a236450c0a Binary files /dev/null and b/site/static/emojis/1f471-1f3fd-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f471-1f3fd-200d-2642-fe0f.png b/site/static/emojis/1f471-1f3fd-200d-2642-fe0f.png new file mode 100644 index 0000000000000..5780e5eb278bc Binary files /dev/null and b/site/static/emojis/1f471-1f3fd-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f471-1f3fd.png b/site/static/emojis/1f471-1f3fd.png new file mode 100644 index 0000000000000..e28275a14bf24 Binary files /dev/null and b/site/static/emojis/1f471-1f3fd.png differ diff --git a/site/static/emojis/1f471-1f3fe-200d-2640-fe0f.png b/site/static/emojis/1f471-1f3fe-200d-2640-fe0f.png new file mode 100644 index 0000000000000..e5856a3a9081e Binary files /dev/null and b/site/static/emojis/1f471-1f3fe-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f471-1f3fe-200d-2642-fe0f.png b/site/static/emojis/1f471-1f3fe-200d-2642-fe0f.png new file mode 100644 index 0000000000000..60694c689fb50 Binary files /dev/null and b/site/static/emojis/1f471-1f3fe-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f471-1f3fe.png b/site/static/emojis/1f471-1f3fe.png new file mode 100644 index 0000000000000..599b7ba9d9a55 Binary files /dev/null and b/site/static/emojis/1f471-1f3fe.png differ diff --git a/site/static/emojis/1f471-1f3ff-200d-2640-fe0f.png b/site/static/emojis/1f471-1f3ff-200d-2640-fe0f.png new file mode 100644 index 0000000000000..15a0886ea905c Binary files /dev/null and b/site/static/emojis/1f471-1f3ff-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f471-1f3ff-200d-2642-fe0f.png b/site/static/emojis/1f471-1f3ff-200d-2642-fe0f.png new file mode 100644 index 0000000000000..91e94883a8c8d Binary files /dev/null and b/site/static/emojis/1f471-1f3ff-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f471-1f3ff.png b/site/static/emojis/1f471-1f3ff.png new file mode 100644 index 0000000000000..56bd2f00406e9 Binary files /dev/null and b/site/static/emojis/1f471-1f3ff.png differ diff --git a/site/static/emojis/1f471-200d-2640-fe0f.png b/site/static/emojis/1f471-200d-2640-fe0f.png new file mode 100644 index 0000000000000..59f40b86e377a Binary files /dev/null and b/site/static/emojis/1f471-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f471-200d-2642-fe0f.png b/site/static/emojis/1f471-200d-2642-fe0f.png new file mode 100644 index 0000000000000..d4c3407b5c756 Binary files /dev/null and b/site/static/emojis/1f471-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f471.png b/site/static/emojis/1f471.png new file mode 100644 index 0000000000000..2825ca0ec1b92 Binary files /dev/null and b/site/static/emojis/1f471.png differ diff --git a/site/static/emojis/1f472-1f3fb.png b/site/static/emojis/1f472-1f3fb.png new file mode 100644 index 0000000000000..7330ddb3926d8 Binary files /dev/null and b/site/static/emojis/1f472-1f3fb.png differ diff --git a/site/static/emojis/1f472-1f3fc.png b/site/static/emojis/1f472-1f3fc.png new file mode 100644 index 0000000000000..46758f8e86133 Binary files /dev/null and b/site/static/emojis/1f472-1f3fc.png differ diff --git a/site/static/emojis/1f472-1f3fd.png b/site/static/emojis/1f472-1f3fd.png new file mode 100644 index 0000000000000..ff468047329da Binary files /dev/null and b/site/static/emojis/1f472-1f3fd.png differ diff --git a/site/static/emojis/1f472-1f3fe.png b/site/static/emojis/1f472-1f3fe.png new file mode 100644 index 0000000000000..a8e65ba81d969 Binary files /dev/null and b/site/static/emojis/1f472-1f3fe.png differ diff --git a/site/static/emojis/1f472-1f3ff.png b/site/static/emojis/1f472-1f3ff.png new file mode 100644 index 0000000000000..ade1565c18926 Binary files /dev/null and b/site/static/emojis/1f472-1f3ff.png differ diff --git a/site/static/emojis/1f472.png b/site/static/emojis/1f472.png new file mode 100644 index 0000000000000..818c6fac4baba Binary files /dev/null and b/site/static/emojis/1f472.png differ diff --git a/site/static/emojis/1f473-1f3fb-200d-2640-fe0f.png b/site/static/emojis/1f473-1f3fb-200d-2640-fe0f.png new file mode 100644 index 0000000000000..255fa6adba73b Binary files /dev/null and b/site/static/emojis/1f473-1f3fb-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f473-1f3fb-200d-2642-fe0f.png b/site/static/emojis/1f473-1f3fb-200d-2642-fe0f.png new file mode 100644 index 0000000000000..42453c6fdb217 Binary files /dev/null and b/site/static/emojis/1f473-1f3fb-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f473-1f3fb.png b/site/static/emojis/1f473-1f3fb.png new file mode 100644 index 0000000000000..44096010ca10f Binary files /dev/null and b/site/static/emojis/1f473-1f3fb.png differ diff --git a/site/static/emojis/1f473-1f3fc-200d-2640-fe0f.png b/site/static/emojis/1f473-1f3fc-200d-2640-fe0f.png new file mode 100644 index 0000000000000..2c6fc0b44ec8b Binary files /dev/null and b/site/static/emojis/1f473-1f3fc-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f473-1f3fc-200d-2642-fe0f.png b/site/static/emojis/1f473-1f3fc-200d-2642-fe0f.png new file mode 100644 index 0000000000000..5b6257f79d3c1 Binary files /dev/null and b/site/static/emojis/1f473-1f3fc-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f473-1f3fc.png b/site/static/emojis/1f473-1f3fc.png new file mode 100644 index 0000000000000..9287f432ac2a2 Binary files /dev/null and b/site/static/emojis/1f473-1f3fc.png differ diff --git a/site/static/emojis/1f473-1f3fd-200d-2640-fe0f.png b/site/static/emojis/1f473-1f3fd-200d-2640-fe0f.png new file mode 100644 index 0000000000000..5114a3f61c7df Binary files /dev/null and b/site/static/emojis/1f473-1f3fd-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f473-1f3fd-200d-2642-fe0f.png b/site/static/emojis/1f473-1f3fd-200d-2642-fe0f.png new file mode 100644 index 0000000000000..5bb1f8422a9f1 Binary files /dev/null and b/site/static/emojis/1f473-1f3fd-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f473-1f3fd.png b/site/static/emojis/1f473-1f3fd.png new file mode 100644 index 0000000000000..64ec778f7c3ab Binary files /dev/null and b/site/static/emojis/1f473-1f3fd.png differ diff --git a/site/static/emojis/1f473-1f3fe-200d-2640-fe0f.png b/site/static/emojis/1f473-1f3fe-200d-2640-fe0f.png new file mode 100644 index 0000000000000..dc8229ff0bf60 Binary files /dev/null and b/site/static/emojis/1f473-1f3fe-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f473-1f3fe-200d-2642-fe0f.png b/site/static/emojis/1f473-1f3fe-200d-2642-fe0f.png new file mode 100644 index 0000000000000..a7a297c7958d2 Binary files /dev/null and b/site/static/emojis/1f473-1f3fe-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f473-1f3fe.png b/site/static/emojis/1f473-1f3fe.png new file mode 100644 index 0000000000000..bd69b7bfeae2f Binary files /dev/null and b/site/static/emojis/1f473-1f3fe.png differ diff --git a/site/static/emojis/1f473-1f3ff-200d-2640-fe0f.png b/site/static/emojis/1f473-1f3ff-200d-2640-fe0f.png new file mode 100644 index 0000000000000..455c763e58352 Binary files /dev/null and b/site/static/emojis/1f473-1f3ff-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f473-1f3ff-200d-2642-fe0f.png b/site/static/emojis/1f473-1f3ff-200d-2642-fe0f.png new file mode 100644 index 0000000000000..4cb5d7dd524fb Binary files /dev/null and b/site/static/emojis/1f473-1f3ff-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f473-1f3ff.png b/site/static/emojis/1f473-1f3ff.png new file mode 100644 index 0000000000000..89e31c4bbbe92 Binary files /dev/null and b/site/static/emojis/1f473-1f3ff.png differ diff --git a/site/static/emojis/1f473-200d-2640-fe0f.png b/site/static/emojis/1f473-200d-2640-fe0f.png new file mode 100644 index 0000000000000..102b138b6da5c Binary files /dev/null and b/site/static/emojis/1f473-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f473-200d-2642-fe0f.png b/site/static/emojis/1f473-200d-2642-fe0f.png new file mode 100644 index 0000000000000..81b794e3ede54 Binary files /dev/null and b/site/static/emojis/1f473-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f473.png b/site/static/emojis/1f473.png new file mode 100644 index 0000000000000..793d62fa6c780 Binary files /dev/null and b/site/static/emojis/1f473.png differ diff --git a/site/static/emojis/1f474-1f3fb.png b/site/static/emojis/1f474-1f3fb.png new file mode 100644 index 0000000000000..75647b8dbc58e Binary files /dev/null and b/site/static/emojis/1f474-1f3fb.png differ diff --git a/site/static/emojis/1f474-1f3fc.png b/site/static/emojis/1f474-1f3fc.png new file mode 100644 index 0000000000000..35d32ce14ecf9 Binary files /dev/null and b/site/static/emojis/1f474-1f3fc.png differ diff --git a/site/static/emojis/1f474-1f3fd.png b/site/static/emojis/1f474-1f3fd.png new file mode 100644 index 0000000000000..2bed5c60485bc Binary files /dev/null and b/site/static/emojis/1f474-1f3fd.png differ diff --git a/site/static/emojis/1f474-1f3fe.png b/site/static/emojis/1f474-1f3fe.png new file mode 100644 index 0000000000000..6b70028287272 Binary files /dev/null and b/site/static/emojis/1f474-1f3fe.png differ diff --git a/site/static/emojis/1f474-1f3ff.png b/site/static/emojis/1f474-1f3ff.png new file mode 100644 index 0000000000000..2fb3fb1ce1a0a Binary files /dev/null and b/site/static/emojis/1f474-1f3ff.png differ diff --git a/site/static/emojis/1f474.png b/site/static/emojis/1f474.png new file mode 100644 index 0000000000000..5650d2b0c2cab Binary files /dev/null and b/site/static/emojis/1f474.png differ diff --git a/site/static/emojis/1f475-1f3fb.png b/site/static/emojis/1f475-1f3fb.png new file mode 100644 index 0000000000000..dda546263e114 Binary files /dev/null and b/site/static/emojis/1f475-1f3fb.png differ diff --git a/site/static/emojis/1f475-1f3fc.png b/site/static/emojis/1f475-1f3fc.png new file mode 100644 index 0000000000000..a73b9f647fd06 Binary files /dev/null and b/site/static/emojis/1f475-1f3fc.png differ diff --git a/site/static/emojis/1f475-1f3fd.png b/site/static/emojis/1f475-1f3fd.png new file mode 100644 index 0000000000000..fe04b280e9bd7 Binary files /dev/null and b/site/static/emojis/1f475-1f3fd.png differ diff --git a/site/static/emojis/1f475-1f3fe.png b/site/static/emojis/1f475-1f3fe.png new file mode 100644 index 0000000000000..f2ecc405563aa Binary files /dev/null and b/site/static/emojis/1f475-1f3fe.png differ diff --git a/site/static/emojis/1f475-1f3ff.png b/site/static/emojis/1f475-1f3ff.png new file mode 100644 index 0000000000000..d10982f3999c6 Binary files /dev/null and b/site/static/emojis/1f475-1f3ff.png differ diff --git a/site/static/emojis/1f475.png b/site/static/emojis/1f475.png new file mode 100644 index 0000000000000..e9d04f9e69f9f Binary files /dev/null and b/site/static/emojis/1f475.png differ diff --git a/site/static/emojis/1f476-1f3fb.png b/site/static/emojis/1f476-1f3fb.png new file mode 100644 index 0000000000000..949fd809cb7dd Binary files /dev/null and b/site/static/emojis/1f476-1f3fb.png differ diff --git a/site/static/emojis/1f476-1f3fc.png b/site/static/emojis/1f476-1f3fc.png new file mode 100644 index 0000000000000..d06f285a2ce8c Binary files /dev/null and b/site/static/emojis/1f476-1f3fc.png differ diff --git a/site/static/emojis/1f476-1f3fd.png b/site/static/emojis/1f476-1f3fd.png new file mode 100644 index 0000000000000..4da9b776d77c0 Binary files /dev/null and b/site/static/emojis/1f476-1f3fd.png differ diff --git a/site/static/emojis/1f476-1f3fe.png b/site/static/emojis/1f476-1f3fe.png new file mode 100644 index 0000000000000..14f78b00e9e06 Binary files /dev/null and b/site/static/emojis/1f476-1f3fe.png differ diff --git a/site/static/emojis/1f476-1f3ff.png b/site/static/emojis/1f476-1f3ff.png new file mode 100644 index 0000000000000..2008c1726d698 Binary files /dev/null and b/site/static/emojis/1f476-1f3ff.png differ diff --git a/site/static/emojis/1f476.png b/site/static/emojis/1f476.png new file mode 100644 index 0000000000000..f093e36bb925b Binary files /dev/null and b/site/static/emojis/1f476.png differ diff --git a/site/static/emojis/1f477-1f3fb-200d-2640-fe0f.png b/site/static/emojis/1f477-1f3fb-200d-2640-fe0f.png new file mode 100644 index 0000000000000..abb56fda88cb9 Binary files /dev/null and b/site/static/emojis/1f477-1f3fb-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f477-1f3fb-200d-2642-fe0f.png b/site/static/emojis/1f477-1f3fb-200d-2642-fe0f.png new file mode 100644 index 0000000000000..25f1238cf00e1 Binary files /dev/null and b/site/static/emojis/1f477-1f3fb-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f477-1f3fb.png b/site/static/emojis/1f477-1f3fb.png new file mode 100644 index 0000000000000..069befedd333e Binary files /dev/null and b/site/static/emojis/1f477-1f3fb.png differ diff --git a/site/static/emojis/1f477-1f3fc-200d-2640-fe0f.png b/site/static/emojis/1f477-1f3fc-200d-2640-fe0f.png new file mode 100644 index 0000000000000..f01d7faf54ad3 Binary files /dev/null and b/site/static/emojis/1f477-1f3fc-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f477-1f3fc-200d-2642-fe0f.png b/site/static/emojis/1f477-1f3fc-200d-2642-fe0f.png new file mode 100644 index 0000000000000..03035e37c5490 Binary files /dev/null and b/site/static/emojis/1f477-1f3fc-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f477-1f3fc.png b/site/static/emojis/1f477-1f3fc.png new file mode 100644 index 0000000000000..aa57d0135217c Binary files /dev/null and b/site/static/emojis/1f477-1f3fc.png differ diff --git a/site/static/emojis/1f477-1f3fd-200d-2640-fe0f.png b/site/static/emojis/1f477-1f3fd-200d-2640-fe0f.png new file mode 100644 index 0000000000000..a9a62219119f3 Binary files /dev/null and b/site/static/emojis/1f477-1f3fd-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f477-1f3fd-200d-2642-fe0f.png b/site/static/emojis/1f477-1f3fd-200d-2642-fe0f.png new file mode 100644 index 0000000000000..1475fc9949aa9 Binary files /dev/null and b/site/static/emojis/1f477-1f3fd-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f477-1f3fd.png b/site/static/emojis/1f477-1f3fd.png new file mode 100644 index 0000000000000..3c96be1b8d5ec Binary files /dev/null and b/site/static/emojis/1f477-1f3fd.png differ diff --git a/site/static/emojis/1f477-1f3fe-200d-2640-fe0f.png b/site/static/emojis/1f477-1f3fe-200d-2640-fe0f.png new file mode 100644 index 0000000000000..72172594edeb6 Binary files /dev/null and b/site/static/emojis/1f477-1f3fe-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f477-1f3fe-200d-2642-fe0f.png b/site/static/emojis/1f477-1f3fe-200d-2642-fe0f.png new file mode 100644 index 0000000000000..2083c8be7c4be Binary files /dev/null and b/site/static/emojis/1f477-1f3fe-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f477-1f3fe.png b/site/static/emojis/1f477-1f3fe.png new file mode 100644 index 0000000000000..72ea66cb29912 Binary files /dev/null and b/site/static/emojis/1f477-1f3fe.png differ diff --git a/site/static/emojis/1f477-1f3ff-200d-2640-fe0f.png b/site/static/emojis/1f477-1f3ff-200d-2640-fe0f.png new file mode 100644 index 0000000000000..c818e20b45c68 Binary files /dev/null and b/site/static/emojis/1f477-1f3ff-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f477-1f3ff-200d-2642-fe0f.png b/site/static/emojis/1f477-1f3ff-200d-2642-fe0f.png new file mode 100644 index 0000000000000..627ad314175f2 Binary files /dev/null and b/site/static/emojis/1f477-1f3ff-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f477-1f3ff.png b/site/static/emojis/1f477-1f3ff.png new file mode 100644 index 0000000000000..3b934e5d11b91 Binary files /dev/null and b/site/static/emojis/1f477-1f3ff.png differ diff --git a/site/static/emojis/1f477-200d-2640-fe0f.png b/site/static/emojis/1f477-200d-2640-fe0f.png new file mode 100644 index 0000000000000..5a3ed34ad4322 Binary files /dev/null and b/site/static/emojis/1f477-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f477-200d-2642-fe0f.png b/site/static/emojis/1f477-200d-2642-fe0f.png new file mode 100644 index 0000000000000..fe6733ec0cb9b Binary files /dev/null and b/site/static/emojis/1f477-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f477.png b/site/static/emojis/1f477.png new file mode 100644 index 0000000000000..49aef2f63671e Binary files /dev/null and b/site/static/emojis/1f477.png differ diff --git a/site/static/emojis/1f478-1f3fb.png b/site/static/emojis/1f478-1f3fb.png new file mode 100644 index 0000000000000..4caae554c83cf Binary files /dev/null and b/site/static/emojis/1f478-1f3fb.png differ diff --git a/site/static/emojis/1f478-1f3fc.png b/site/static/emojis/1f478-1f3fc.png new file mode 100644 index 0000000000000..ad2322790680c Binary files /dev/null and b/site/static/emojis/1f478-1f3fc.png differ diff --git a/site/static/emojis/1f478-1f3fd.png b/site/static/emojis/1f478-1f3fd.png new file mode 100644 index 0000000000000..61dcaca7b9358 Binary files /dev/null and b/site/static/emojis/1f478-1f3fd.png differ diff --git a/site/static/emojis/1f478-1f3fe.png b/site/static/emojis/1f478-1f3fe.png new file mode 100644 index 0000000000000..71c963faed01a Binary files /dev/null and b/site/static/emojis/1f478-1f3fe.png differ diff --git a/site/static/emojis/1f478-1f3ff.png b/site/static/emojis/1f478-1f3ff.png new file mode 100644 index 0000000000000..7579ff1914fba Binary files /dev/null and b/site/static/emojis/1f478-1f3ff.png differ diff --git a/site/static/emojis/1f478.png b/site/static/emojis/1f478.png new file mode 100644 index 0000000000000..6542a8d9b0896 Binary files /dev/null and b/site/static/emojis/1f478.png differ diff --git a/site/static/emojis/1f479.png b/site/static/emojis/1f479.png new file mode 100644 index 0000000000000..e9ca4c6f3ac30 Binary files /dev/null and b/site/static/emojis/1f479.png differ diff --git a/site/static/emojis/1f47a.png b/site/static/emojis/1f47a.png new file mode 100644 index 0000000000000..a479705e10500 Binary files /dev/null and b/site/static/emojis/1f47a.png differ diff --git a/site/static/emojis/1f47b.png b/site/static/emojis/1f47b.png new file mode 100644 index 0000000000000..93eebb055c7e2 Binary files /dev/null and b/site/static/emojis/1f47b.png differ diff --git a/site/static/emojis/1f47c-1f3fb.png b/site/static/emojis/1f47c-1f3fb.png new file mode 100644 index 0000000000000..161df6e791bd4 Binary files /dev/null and b/site/static/emojis/1f47c-1f3fb.png differ diff --git a/site/static/emojis/1f47c-1f3fc.png b/site/static/emojis/1f47c-1f3fc.png new file mode 100644 index 0000000000000..e72aa44c898f8 Binary files /dev/null and b/site/static/emojis/1f47c-1f3fc.png differ diff --git a/site/static/emojis/1f47c-1f3fd.png b/site/static/emojis/1f47c-1f3fd.png new file mode 100644 index 0000000000000..0cd969ba94b1b Binary files /dev/null and b/site/static/emojis/1f47c-1f3fd.png differ diff --git a/site/static/emojis/1f47c-1f3fe.png b/site/static/emojis/1f47c-1f3fe.png new file mode 100644 index 0000000000000..e82ae008cb878 Binary files /dev/null and b/site/static/emojis/1f47c-1f3fe.png differ diff --git a/site/static/emojis/1f47c-1f3ff.png b/site/static/emojis/1f47c-1f3ff.png new file mode 100644 index 0000000000000..ecf1950186554 Binary files /dev/null and b/site/static/emojis/1f47c-1f3ff.png differ diff --git a/site/static/emojis/1f47c.png b/site/static/emojis/1f47c.png new file mode 100644 index 0000000000000..584cd15d4d703 Binary files /dev/null and b/site/static/emojis/1f47c.png differ diff --git a/site/static/emojis/1f47d.png b/site/static/emojis/1f47d.png new file mode 100644 index 0000000000000..e722644aa2013 Binary files /dev/null and b/site/static/emojis/1f47d.png differ diff --git a/site/static/emojis/1f47e.png b/site/static/emojis/1f47e.png new file mode 100644 index 0000000000000..043e4950ac329 Binary files /dev/null and b/site/static/emojis/1f47e.png differ diff --git a/site/static/emojis/1f47f.png b/site/static/emojis/1f47f.png new file mode 100644 index 0000000000000..5bc58b3ddddf9 Binary files /dev/null and b/site/static/emojis/1f47f.png differ diff --git a/site/static/emojis/1f480.png b/site/static/emojis/1f480.png new file mode 100644 index 0000000000000..3ec66641b83b8 Binary files /dev/null and b/site/static/emojis/1f480.png differ diff --git a/site/static/emojis/1f481-1f3fb-200d-2640-fe0f.png b/site/static/emojis/1f481-1f3fb-200d-2640-fe0f.png new file mode 100644 index 0000000000000..6ff67d24b7bfe Binary files /dev/null and b/site/static/emojis/1f481-1f3fb-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f481-1f3fb-200d-2642-fe0f.png b/site/static/emojis/1f481-1f3fb-200d-2642-fe0f.png new file mode 100644 index 0000000000000..9477058016f68 Binary files /dev/null and b/site/static/emojis/1f481-1f3fb-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f481-1f3fb.png b/site/static/emojis/1f481-1f3fb.png new file mode 100644 index 0000000000000..24d5128f903a0 Binary files /dev/null and b/site/static/emojis/1f481-1f3fb.png differ diff --git a/site/static/emojis/1f481-1f3fc-200d-2640-fe0f.png b/site/static/emojis/1f481-1f3fc-200d-2640-fe0f.png new file mode 100644 index 0000000000000..2198601817690 Binary files /dev/null and b/site/static/emojis/1f481-1f3fc-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f481-1f3fc-200d-2642-fe0f.png b/site/static/emojis/1f481-1f3fc-200d-2642-fe0f.png new file mode 100644 index 0000000000000..0242604a638f4 Binary files /dev/null and b/site/static/emojis/1f481-1f3fc-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f481-1f3fc.png b/site/static/emojis/1f481-1f3fc.png new file mode 100644 index 0000000000000..96fb262c30df9 Binary files /dev/null and b/site/static/emojis/1f481-1f3fc.png differ diff --git a/site/static/emojis/1f481-1f3fd-200d-2640-fe0f.png b/site/static/emojis/1f481-1f3fd-200d-2640-fe0f.png new file mode 100644 index 0000000000000..22a5d00a30875 Binary files /dev/null and b/site/static/emojis/1f481-1f3fd-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f481-1f3fd-200d-2642-fe0f.png b/site/static/emojis/1f481-1f3fd-200d-2642-fe0f.png new file mode 100644 index 0000000000000..ec70756513aeb Binary files /dev/null and b/site/static/emojis/1f481-1f3fd-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f481-1f3fd.png b/site/static/emojis/1f481-1f3fd.png new file mode 100644 index 0000000000000..115223a816fe1 Binary files /dev/null and b/site/static/emojis/1f481-1f3fd.png differ diff --git a/site/static/emojis/1f481-1f3fe-200d-2640-fe0f.png b/site/static/emojis/1f481-1f3fe-200d-2640-fe0f.png new file mode 100644 index 0000000000000..1bfc1fdb6749c Binary files /dev/null and b/site/static/emojis/1f481-1f3fe-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f481-1f3fe-200d-2642-fe0f.png b/site/static/emojis/1f481-1f3fe-200d-2642-fe0f.png new file mode 100644 index 0000000000000..ace710f49d8a5 Binary files /dev/null and b/site/static/emojis/1f481-1f3fe-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f481-1f3fe.png b/site/static/emojis/1f481-1f3fe.png new file mode 100644 index 0000000000000..668de97a58064 Binary files /dev/null and b/site/static/emojis/1f481-1f3fe.png differ diff --git a/site/static/emojis/1f481-1f3ff-200d-2640-fe0f.png b/site/static/emojis/1f481-1f3ff-200d-2640-fe0f.png new file mode 100644 index 0000000000000..f475567604c61 Binary files /dev/null and b/site/static/emojis/1f481-1f3ff-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f481-1f3ff-200d-2642-fe0f.png b/site/static/emojis/1f481-1f3ff-200d-2642-fe0f.png new file mode 100644 index 0000000000000..92611e20142c2 Binary files /dev/null and b/site/static/emojis/1f481-1f3ff-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f481-1f3ff.png b/site/static/emojis/1f481-1f3ff.png new file mode 100644 index 0000000000000..440c65c5ebf0c Binary files /dev/null and b/site/static/emojis/1f481-1f3ff.png differ diff --git a/site/static/emojis/1f481-200d-2640-fe0f.png b/site/static/emojis/1f481-200d-2640-fe0f.png new file mode 100644 index 0000000000000..1669256349fe0 Binary files /dev/null and b/site/static/emojis/1f481-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f481-200d-2642-fe0f.png b/site/static/emojis/1f481-200d-2642-fe0f.png new file mode 100644 index 0000000000000..0c1369ab732bc Binary files /dev/null and b/site/static/emojis/1f481-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f481.png b/site/static/emojis/1f481.png new file mode 100644 index 0000000000000..eca519992a254 Binary files /dev/null and b/site/static/emojis/1f481.png differ diff --git a/site/static/emojis/1f482-1f3fb-200d-2640-fe0f.png b/site/static/emojis/1f482-1f3fb-200d-2640-fe0f.png new file mode 100644 index 0000000000000..757e031bc4033 Binary files /dev/null and b/site/static/emojis/1f482-1f3fb-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f482-1f3fb-200d-2642-fe0f.png b/site/static/emojis/1f482-1f3fb-200d-2642-fe0f.png new file mode 100644 index 0000000000000..7769d5353719b Binary files /dev/null and b/site/static/emojis/1f482-1f3fb-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f482-1f3fb.png b/site/static/emojis/1f482-1f3fb.png new file mode 100644 index 0000000000000..73e15cdfb1981 Binary files /dev/null and b/site/static/emojis/1f482-1f3fb.png differ diff --git a/site/static/emojis/1f482-1f3fc-200d-2640-fe0f.png b/site/static/emojis/1f482-1f3fc-200d-2640-fe0f.png new file mode 100644 index 0000000000000..52bb7244e29d8 Binary files /dev/null and b/site/static/emojis/1f482-1f3fc-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f482-1f3fc-200d-2642-fe0f.png b/site/static/emojis/1f482-1f3fc-200d-2642-fe0f.png new file mode 100644 index 0000000000000..1664fa8df56f9 Binary files /dev/null and b/site/static/emojis/1f482-1f3fc-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f482-1f3fc.png b/site/static/emojis/1f482-1f3fc.png new file mode 100644 index 0000000000000..df444ad5774ee Binary files /dev/null and b/site/static/emojis/1f482-1f3fc.png differ diff --git a/site/static/emojis/1f482-1f3fd-200d-2640-fe0f.png b/site/static/emojis/1f482-1f3fd-200d-2640-fe0f.png new file mode 100644 index 0000000000000..20ceadf907313 Binary files /dev/null and b/site/static/emojis/1f482-1f3fd-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f482-1f3fd-200d-2642-fe0f.png b/site/static/emojis/1f482-1f3fd-200d-2642-fe0f.png new file mode 100644 index 0000000000000..5cf7987069367 Binary files /dev/null and b/site/static/emojis/1f482-1f3fd-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f482-1f3fd.png b/site/static/emojis/1f482-1f3fd.png new file mode 100644 index 0000000000000..9cafd1242b1cc Binary files /dev/null and b/site/static/emojis/1f482-1f3fd.png differ diff --git a/site/static/emojis/1f482-1f3fe-200d-2640-fe0f.png b/site/static/emojis/1f482-1f3fe-200d-2640-fe0f.png new file mode 100644 index 0000000000000..78671ba2d3379 Binary files /dev/null and b/site/static/emojis/1f482-1f3fe-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f482-1f3fe-200d-2642-fe0f.png b/site/static/emojis/1f482-1f3fe-200d-2642-fe0f.png new file mode 100644 index 0000000000000..37e92ac881e28 Binary files /dev/null and b/site/static/emojis/1f482-1f3fe-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f482-1f3fe.png b/site/static/emojis/1f482-1f3fe.png new file mode 100644 index 0000000000000..0324eed397c60 Binary files /dev/null and b/site/static/emojis/1f482-1f3fe.png differ diff --git a/site/static/emojis/1f482-1f3ff-200d-2640-fe0f.png b/site/static/emojis/1f482-1f3ff-200d-2640-fe0f.png new file mode 100644 index 0000000000000..f2e824f8affe1 Binary files /dev/null and b/site/static/emojis/1f482-1f3ff-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f482-1f3ff-200d-2642-fe0f.png b/site/static/emojis/1f482-1f3ff-200d-2642-fe0f.png new file mode 100644 index 0000000000000..6d658ba383bd0 Binary files /dev/null and b/site/static/emojis/1f482-1f3ff-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f482-1f3ff.png b/site/static/emojis/1f482-1f3ff.png new file mode 100644 index 0000000000000..23fcb9b4b988c Binary files /dev/null and b/site/static/emojis/1f482-1f3ff.png differ diff --git a/site/static/emojis/1f482-200d-2640-fe0f.png b/site/static/emojis/1f482-200d-2640-fe0f.png new file mode 100644 index 0000000000000..db3181a9e1fdf Binary files /dev/null and b/site/static/emojis/1f482-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f482-200d-2642-fe0f.png b/site/static/emojis/1f482-200d-2642-fe0f.png new file mode 100644 index 0000000000000..954eee8342926 Binary files /dev/null and b/site/static/emojis/1f482-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f482.png b/site/static/emojis/1f482.png new file mode 100644 index 0000000000000..b5a7d423ac35c Binary files /dev/null and b/site/static/emojis/1f482.png differ diff --git a/site/static/emojis/1f483-1f3fb.png b/site/static/emojis/1f483-1f3fb.png new file mode 100644 index 0000000000000..ec9955f575727 Binary files /dev/null and b/site/static/emojis/1f483-1f3fb.png differ diff --git a/site/static/emojis/1f483-1f3fc.png b/site/static/emojis/1f483-1f3fc.png new file mode 100644 index 0000000000000..e1768ae610d18 Binary files /dev/null and b/site/static/emojis/1f483-1f3fc.png differ diff --git a/site/static/emojis/1f483-1f3fd.png b/site/static/emojis/1f483-1f3fd.png new file mode 100644 index 0000000000000..885fc7edb2d46 Binary files /dev/null and b/site/static/emojis/1f483-1f3fd.png differ diff --git a/site/static/emojis/1f483-1f3fe.png b/site/static/emojis/1f483-1f3fe.png new file mode 100644 index 0000000000000..824b1cdad4d48 Binary files /dev/null and b/site/static/emojis/1f483-1f3fe.png differ diff --git a/site/static/emojis/1f483-1f3ff.png b/site/static/emojis/1f483-1f3ff.png new file mode 100644 index 0000000000000..2288e55a257c3 Binary files /dev/null and b/site/static/emojis/1f483-1f3ff.png differ diff --git a/site/static/emojis/1f483.png b/site/static/emojis/1f483.png new file mode 100644 index 0000000000000..758c9b077da15 Binary files /dev/null and b/site/static/emojis/1f483.png differ diff --git a/site/static/emojis/1f484.png b/site/static/emojis/1f484.png new file mode 100644 index 0000000000000..6427cf477a394 Binary files /dev/null and b/site/static/emojis/1f484.png differ diff --git a/site/static/emojis/1f485-1f3fb.png b/site/static/emojis/1f485-1f3fb.png new file mode 100644 index 0000000000000..94c08c55def90 Binary files /dev/null and b/site/static/emojis/1f485-1f3fb.png differ diff --git a/site/static/emojis/1f485-1f3fc.png b/site/static/emojis/1f485-1f3fc.png new file mode 100644 index 0000000000000..46c13f0da2afb Binary files /dev/null and b/site/static/emojis/1f485-1f3fc.png differ diff --git a/site/static/emojis/1f485-1f3fd.png b/site/static/emojis/1f485-1f3fd.png new file mode 100644 index 0000000000000..dc23af78440e5 Binary files /dev/null and b/site/static/emojis/1f485-1f3fd.png differ diff --git a/site/static/emojis/1f485-1f3fe.png b/site/static/emojis/1f485-1f3fe.png new file mode 100644 index 0000000000000..1b964408433a1 Binary files /dev/null and b/site/static/emojis/1f485-1f3fe.png differ diff --git a/site/static/emojis/1f485-1f3ff.png b/site/static/emojis/1f485-1f3ff.png new file mode 100644 index 0000000000000..32d637ccf3c96 Binary files /dev/null and b/site/static/emojis/1f485-1f3ff.png differ diff --git a/site/static/emojis/1f485.png b/site/static/emojis/1f485.png new file mode 100644 index 0000000000000..cba5a05fcf3eb Binary files /dev/null and b/site/static/emojis/1f485.png differ diff --git a/site/static/emojis/1f486-1f3fb-200d-2640-fe0f.png b/site/static/emojis/1f486-1f3fb-200d-2640-fe0f.png new file mode 100644 index 0000000000000..9358a2510a6db Binary files /dev/null and b/site/static/emojis/1f486-1f3fb-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f486-1f3fb-200d-2642-fe0f.png b/site/static/emojis/1f486-1f3fb-200d-2642-fe0f.png new file mode 100644 index 0000000000000..3e1a5eafb67bd Binary files /dev/null and b/site/static/emojis/1f486-1f3fb-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f486-1f3fb.png b/site/static/emojis/1f486-1f3fb.png new file mode 100644 index 0000000000000..7efac7579fb77 Binary files /dev/null and b/site/static/emojis/1f486-1f3fb.png differ diff --git a/site/static/emojis/1f486-1f3fc-200d-2640-fe0f.png b/site/static/emojis/1f486-1f3fc-200d-2640-fe0f.png new file mode 100644 index 0000000000000..82f2f6a48dad3 Binary files /dev/null and b/site/static/emojis/1f486-1f3fc-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f486-1f3fc-200d-2642-fe0f.png b/site/static/emojis/1f486-1f3fc-200d-2642-fe0f.png new file mode 100644 index 0000000000000..734dce274e132 Binary files /dev/null and b/site/static/emojis/1f486-1f3fc-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f486-1f3fc.png b/site/static/emojis/1f486-1f3fc.png new file mode 100644 index 0000000000000..a021bd20501b1 Binary files /dev/null and b/site/static/emojis/1f486-1f3fc.png differ diff --git a/site/static/emojis/1f486-1f3fd-200d-2640-fe0f.png b/site/static/emojis/1f486-1f3fd-200d-2640-fe0f.png new file mode 100644 index 0000000000000..f95d2d1349f2f Binary files /dev/null and b/site/static/emojis/1f486-1f3fd-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f486-1f3fd-200d-2642-fe0f.png b/site/static/emojis/1f486-1f3fd-200d-2642-fe0f.png new file mode 100644 index 0000000000000..5a43d75899280 Binary files /dev/null and b/site/static/emojis/1f486-1f3fd-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f486-1f3fd.png b/site/static/emojis/1f486-1f3fd.png new file mode 100644 index 0000000000000..e4ebf9678b3f8 Binary files /dev/null and b/site/static/emojis/1f486-1f3fd.png differ diff --git a/site/static/emojis/1f486-1f3fe-200d-2640-fe0f.png b/site/static/emojis/1f486-1f3fe-200d-2640-fe0f.png new file mode 100644 index 0000000000000..efd42dbadba9d Binary files /dev/null and b/site/static/emojis/1f486-1f3fe-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f486-1f3fe-200d-2642-fe0f.png b/site/static/emojis/1f486-1f3fe-200d-2642-fe0f.png new file mode 100644 index 0000000000000..0225d35992b42 Binary files /dev/null and b/site/static/emojis/1f486-1f3fe-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f486-1f3fe.png b/site/static/emojis/1f486-1f3fe.png new file mode 100644 index 0000000000000..e64dde84c430a Binary files /dev/null and b/site/static/emojis/1f486-1f3fe.png differ diff --git a/site/static/emojis/1f486-1f3ff-200d-2640-fe0f.png b/site/static/emojis/1f486-1f3ff-200d-2640-fe0f.png new file mode 100644 index 0000000000000..dae49c589d538 Binary files /dev/null and b/site/static/emojis/1f486-1f3ff-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f486-1f3ff-200d-2642-fe0f.png b/site/static/emojis/1f486-1f3ff-200d-2642-fe0f.png new file mode 100644 index 0000000000000..31e00a02efab3 Binary files /dev/null and b/site/static/emojis/1f486-1f3ff-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f486-1f3ff.png b/site/static/emojis/1f486-1f3ff.png new file mode 100644 index 0000000000000..cb742c724669e Binary files /dev/null and b/site/static/emojis/1f486-1f3ff.png differ diff --git a/site/static/emojis/1f486-200d-2640-fe0f.png b/site/static/emojis/1f486-200d-2640-fe0f.png new file mode 100644 index 0000000000000..8c4b5524186d5 Binary files /dev/null and b/site/static/emojis/1f486-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f486-200d-2642-fe0f.png b/site/static/emojis/1f486-200d-2642-fe0f.png new file mode 100644 index 0000000000000..428e9688d8353 Binary files /dev/null and b/site/static/emojis/1f486-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f486.png b/site/static/emojis/1f486.png new file mode 100644 index 0000000000000..20eac93bc84d2 Binary files /dev/null and b/site/static/emojis/1f486.png differ diff --git a/site/static/emojis/1f487-1f3fb-200d-2640-fe0f.png b/site/static/emojis/1f487-1f3fb-200d-2640-fe0f.png new file mode 100644 index 0000000000000..d43b5be2867ed Binary files /dev/null and b/site/static/emojis/1f487-1f3fb-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f487-1f3fb-200d-2642-fe0f.png b/site/static/emojis/1f487-1f3fb-200d-2642-fe0f.png new file mode 100644 index 0000000000000..28a8f358739f4 Binary files /dev/null and b/site/static/emojis/1f487-1f3fb-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f487-1f3fb.png b/site/static/emojis/1f487-1f3fb.png new file mode 100644 index 0000000000000..7d257dfd55567 Binary files /dev/null and b/site/static/emojis/1f487-1f3fb.png differ diff --git a/site/static/emojis/1f487-1f3fc-200d-2640-fe0f.png b/site/static/emojis/1f487-1f3fc-200d-2640-fe0f.png new file mode 100644 index 0000000000000..268ed6a121b30 Binary files /dev/null and b/site/static/emojis/1f487-1f3fc-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f487-1f3fc-200d-2642-fe0f.png b/site/static/emojis/1f487-1f3fc-200d-2642-fe0f.png new file mode 100644 index 0000000000000..99e8cf9544670 Binary files /dev/null and b/site/static/emojis/1f487-1f3fc-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f487-1f3fc.png b/site/static/emojis/1f487-1f3fc.png new file mode 100644 index 0000000000000..c85ad00c528b4 Binary files /dev/null and b/site/static/emojis/1f487-1f3fc.png differ diff --git a/site/static/emojis/1f487-1f3fd-200d-2640-fe0f.png b/site/static/emojis/1f487-1f3fd-200d-2640-fe0f.png new file mode 100644 index 0000000000000..7b8a067c08df8 Binary files /dev/null and b/site/static/emojis/1f487-1f3fd-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f487-1f3fd-200d-2642-fe0f.png b/site/static/emojis/1f487-1f3fd-200d-2642-fe0f.png new file mode 100644 index 0000000000000..ea5d33fa13b6e Binary files /dev/null and b/site/static/emojis/1f487-1f3fd-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f487-1f3fd.png b/site/static/emojis/1f487-1f3fd.png new file mode 100644 index 0000000000000..6210438abfdd4 Binary files /dev/null and b/site/static/emojis/1f487-1f3fd.png differ diff --git a/site/static/emojis/1f487-1f3fe-200d-2640-fe0f.png b/site/static/emojis/1f487-1f3fe-200d-2640-fe0f.png new file mode 100644 index 0000000000000..5a6ce144d8257 Binary files /dev/null and b/site/static/emojis/1f487-1f3fe-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f487-1f3fe-200d-2642-fe0f.png b/site/static/emojis/1f487-1f3fe-200d-2642-fe0f.png new file mode 100644 index 0000000000000..b3c78959de122 Binary files /dev/null and b/site/static/emojis/1f487-1f3fe-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f487-1f3fe.png b/site/static/emojis/1f487-1f3fe.png new file mode 100644 index 0000000000000..b02ae7a6145f0 Binary files /dev/null and b/site/static/emojis/1f487-1f3fe.png differ diff --git a/site/static/emojis/1f487-1f3ff-200d-2640-fe0f.png b/site/static/emojis/1f487-1f3ff-200d-2640-fe0f.png new file mode 100644 index 0000000000000..0a8e1f3b49bb4 Binary files /dev/null and b/site/static/emojis/1f487-1f3ff-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f487-1f3ff-200d-2642-fe0f.png b/site/static/emojis/1f487-1f3ff-200d-2642-fe0f.png new file mode 100644 index 0000000000000..fa980f2467b15 Binary files /dev/null and b/site/static/emojis/1f487-1f3ff-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f487-1f3ff.png b/site/static/emojis/1f487-1f3ff.png new file mode 100644 index 0000000000000..720901ada392f Binary files /dev/null and b/site/static/emojis/1f487-1f3ff.png differ diff --git a/site/static/emojis/1f487-200d-2640-fe0f.png b/site/static/emojis/1f487-200d-2640-fe0f.png new file mode 100644 index 0000000000000..acd8162d19fd5 Binary files /dev/null and b/site/static/emojis/1f487-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f487-200d-2642-fe0f.png b/site/static/emojis/1f487-200d-2642-fe0f.png new file mode 100644 index 0000000000000..8b290f6dc25f2 Binary files /dev/null and b/site/static/emojis/1f487-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f487.png b/site/static/emojis/1f487.png new file mode 100644 index 0000000000000..029cb0b6d561d Binary files /dev/null and b/site/static/emojis/1f487.png differ diff --git a/site/static/emojis/1f488.png b/site/static/emojis/1f488.png new file mode 100644 index 0000000000000..5c19ed5067de6 Binary files /dev/null and b/site/static/emojis/1f488.png differ diff --git a/site/static/emojis/1f489.png b/site/static/emojis/1f489.png new file mode 100644 index 0000000000000..5f2d305e7c40b Binary files /dev/null and b/site/static/emojis/1f489.png differ diff --git a/site/static/emojis/1f48a.png b/site/static/emojis/1f48a.png new file mode 100644 index 0000000000000..81b7fe1b57734 Binary files /dev/null and b/site/static/emojis/1f48a.png differ diff --git a/site/static/emojis/1f48b.png b/site/static/emojis/1f48b.png new file mode 100644 index 0000000000000..5feb59b18c12a Binary files /dev/null and b/site/static/emojis/1f48b.png differ diff --git a/site/static/emojis/1f48c.png b/site/static/emojis/1f48c.png new file mode 100644 index 0000000000000..a79d3c1579dd7 Binary files /dev/null and b/site/static/emojis/1f48c.png differ diff --git a/site/static/emojis/1f48d.png b/site/static/emojis/1f48d.png new file mode 100644 index 0000000000000..f9a1fce4f1e07 Binary files /dev/null and b/site/static/emojis/1f48d.png differ diff --git a/site/static/emojis/1f48e.png b/site/static/emojis/1f48e.png new file mode 100644 index 0000000000000..7eca5b21c842a Binary files /dev/null and b/site/static/emojis/1f48e.png differ diff --git a/site/static/emojis/1f48f-1f3fb.png b/site/static/emojis/1f48f-1f3fb.png new file mode 100644 index 0000000000000..d2ee5c4d778d7 Binary files /dev/null and b/site/static/emojis/1f48f-1f3fb.png differ diff --git a/site/static/emojis/1f48f-1f3fc.png b/site/static/emojis/1f48f-1f3fc.png new file mode 100644 index 0000000000000..ccee0497c4334 Binary files /dev/null and b/site/static/emojis/1f48f-1f3fc.png differ diff --git a/site/static/emojis/1f48f-1f3fd.png b/site/static/emojis/1f48f-1f3fd.png new file mode 100644 index 0000000000000..15709e5651e5b Binary files /dev/null and b/site/static/emojis/1f48f-1f3fd.png differ diff --git a/site/static/emojis/1f48f-1f3fe.png b/site/static/emojis/1f48f-1f3fe.png new file mode 100644 index 0000000000000..96ac2ef4f18c1 Binary files /dev/null and b/site/static/emojis/1f48f-1f3fe.png differ diff --git a/site/static/emojis/1f48f-1f3ff.png b/site/static/emojis/1f48f-1f3ff.png new file mode 100644 index 0000000000000..461bc796326ad Binary files /dev/null and b/site/static/emojis/1f48f-1f3ff.png differ diff --git a/site/static/emojis/1f48f.png b/site/static/emojis/1f48f.png new file mode 100644 index 0000000000000..0774078e9583b Binary files /dev/null and b/site/static/emojis/1f48f.png differ diff --git a/site/static/emojis/1f490.png b/site/static/emojis/1f490.png new file mode 100644 index 0000000000000..79bdf474e6a04 Binary files /dev/null and b/site/static/emojis/1f490.png differ diff --git a/site/static/emojis/1f491-1f3fb.png b/site/static/emojis/1f491-1f3fb.png new file mode 100644 index 0000000000000..1d6c1bfc670ca Binary files /dev/null and b/site/static/emojis/1f491-1f3fb.png differ diff --git a/site/static/emojis/1f491-1f3fc.png b/site/static/emojis/1f491-1f3fc.png new file mode 100644 index 0000000000000..f11a685fe8242 Binary files /dev/null and b/site/static/emojis/1f491-1f3fc.png differ diff --git a/site/static/emojis/1f491-1f3fd.png b/site/static/emojis/1f491-1f3fd.png new file mode 100644 index 0000000000000..f2e3534bd3bb8 Binary files /dev/null and b/site/static/emojis/1f491-1f3fd.png differ diff --git a/site/static/emojis/1f491-1f3fe.png b/site/static/emojis/1f491-1f3fe.png new file mode 100644 index 0000000000000..5cf2c2f1484f2 Binary files /dev/null and b/site/static/emojis/1f491-1f3fe.png differ diff --git a/site/static/emojis/1f491-1f3ff.png b/site/static/emojis/1f491-1f3ff.png new file mode 100644 index 0000000000000..b5231a51fef81 Binary files /dev/null and b/site/static/emojis/1f491-1f3ff.png differ diff --git a/site/static/emojis/1f491.png b/site/static/emojis/1f491.png new file mode 100644 index 0000000000000..066d5dfcb9371 Binary files /dev/null and b/site/static/emojis/1f491.png differ diff --git a/site/static/emojis/1f492.png b/site/static/emojis/1f492.png new file mode 100644 index 0000000000000..386d58d1046cc Binary files /dev/null and b/site/static/emojis/1f492.png differ diff --git a/site/static/emojis/1f493.png b/site/static/emojis/1f493.png new file mode 100644 index 0000000000000..33b8aa93d4bc1 Binary files /dev/null and b/site/static/emojis/1f493.png differ diff --git a/site/static/emojis/1f494.png b/site/static/emojis/1f494.png new file mode 100644 index 0000000000000..5af54e5f15770 Binary files /dev/null and b/site/static/emojis/1f494.png differ diff --git a/site/static/emojis/1f495.png b/site/static/emojis/1f495.png new file mode 100644 index 0000000000000..bffc24e976de2 Binary files /dev/null and b/site/static/emojis/1f495.png differ diff --git a/site/static/emojis/1f496.png b/site/static/emojis/1f496.png new file mode 100644 index 0000000000000..48e0216c617c0 Binary files /dev/null and b/site/static/emojis/1f496.png differ diff --git a/site/static/emojis/1f497.png b/site/static/emojis/1f497.png new file mode 100644 index 0000000000000..591c9bf24489e Binary files /dev/null and b/site/static/emojis/1f497.png differ diff --git a/site/static/emojis/1f498.png b/site/static/emojis/1f498.png new file mode 100644 index 0000000000000..ad41943b5422a Binary files /dev/null and b/site/static/emojis/1f498.png differ diff --git a/site/static/emojis/1f499.png b/site/static/emojis/1f499.png new file mode 100644 index 0000000000000..736bc85cae281 Binary files /dev/null and b/site/static/emojis/1f499.png differ diff --git a/site/static/emojis/1f49a.png b/site/static/emojis/1f49a.png new file mode 100644 index 0000000000000..b8bf54c3202a4 Binary files /dev/null and b/site/static/emojis/1f49a.png differ diff --git a/site/static/emojis/1f49b.png b/site/static/emojis/1f49b.png new file mode 100644 index 0000000000000..215fb3c6e014f Binary files /dev/null and b/site/static/emojis/1f49b.png differ diff --git a/site/static/emojis/1f49c.png b/site/static/emojis/1f49c.png new file mode 100644 index 0000000000000..c68892cc281de Binary files /dev/null and b/site/static/emojis/1f49c.png differ diff --git a/site/static/emojis/1f49d.png b/site/static/emojis/1f49d.png new file mode 100644 index 0000000000000..35c270742a7e1 Binary files /dev/null and b/site/static/emojis/1f49d.png differ diff --git a/site/static/emojis/1f49e.png b/site/static/emojis/1f49e.png new file mode 100644 index 0000000000000..a85936255c901 Binary files /dev/null and b/site/static/emojis/1f49e.png differ diff --git a/site/static/emojis/1f49f.png b/site/static/emojis/1f49f.png new file mode 100644 index 0000000000000..f0369314984a0 Binary files /dev/null and b/site/static/emojis/1f49f.png differ diff --git a/site/static/emojis/1f4a0.png b/site/static/emojis/1f4a0.png new file mode 100644 index 0000000000000..3e22818d4ad76 Binary files /dev/null and b/site/static/emojis/1f4a0.png differ diff --git a/site/static/emojis/1f4a1.png b/site/static/emojis/1f4a1.png new file mode 100644 index 0000000000000..ae01adac42078 Binary files /dev/null and b/site/static/emojis/1f4a1.png differ diff --git a/site/static/emojis/1f4a2.png b/site/static/emojis/1f4a2.png new file mode 100644 index 0000000000000..0630d37eca7a3 Binary files /dev/null and b/site/static/emojis/1f4a2.png differ diff --git a/site/static/emojis/1f4a3.png b/site/static/emojis/1f4a3.png new file mode 100644 index 0000000000000..af90401f42b93 Binary files /dev/null and b/site/static/emojis/1f4a3.png differ diff --git a/site/static/emojis/1f4a4.png b/site/static/emojis/1f4a4.png new file mode 100644 index 0000000000000..0b3671fb5e091 Binary files /dev/null and b/site/static/emojis/1f4a4.png differ diff --git a/site/static/emojis/1f4a5.png b/site/static/emojis/1f4a5.png new file mode 100644 index 0000000000000..8bf99d6434e9b Binary files /dev/null and b/site/static/emojis/1f4a5.png differ diff --git a/site/static/emojis/1f4a6.png b/site/static/emojis/1f4a6.png new file mode 100644 index 0000000000000..6bec97d0c0952 Binary files /dev/null and b/site/static/emojis/1f4a6.png differ diff --git a/site/static/emojis/1f4a7.png b/site/static/emojis/1f4a7.png new file mode 100644 index 0000000000000..c3398a2d090a6 Binary files /dev/null and b/site/static/emojis/1f4a7.png differ diff --git a/site/static/emojis/1f4a8.png b/site/static/emojis/1f4a8.png new file mode 100644 index 0000000000000..d9b0016b0e20f Binary files /dev/null and b/site/static/emojis/1f4a8.png differ diff --git a/site/static/emojis/1f4a9.png b/site/static/emojis/1f4a9.png new file mode 100644 index 0000000000000..bf8eac64dae19 Binary files /dev/null and b/site/static/emojis/1f4a9.png differ diff --git a/site/static/emojis/1f4aa-1f3fb.png b/site/static/emojis/1f4aa-1f3fb.png new file mode 100644 index 0000000000000..16769e9787474 Binary files /dev/null and b/site/static/emojis/1f4aa-1f3fb.png differ diff --git a/site/static/emojis/1f4aa-1f3fc.png b/site/static/emojis/1f4aa-1f3fc.png new file mode 100644 index 0000000000000..3d70cd4ba9caf Binary files /dev/null and b/site/static/emojis/1f4aa-1f3fc.png differ diff --git a/site/static/emojis/1f4aa-1f3fd.png b/site/static/emojis/1f4aa-1f3fd.png new file mode 100644 index 0000000000000..8f734365ebe18 Binary files /dev/null and b/site/static/emojis/1f4aa-1f3fd.png differ diff --git a/site/static/emojis/1f4aa-1f3fe.png b/site/static/emojis/1f4aa-1f3fe.png new file mode 100644 index 0000000000000..6fe4ff8cafacd Binary files /dev/null and b/site/static/emojis/1f4aa-1f3fe.png differ diff --git a/site/static/emojis/1f4aa-1f3ff.png b/site/static/emojis/1f4aa-1f3ff.png new file mode 100644 index 0000000000000..1ce1f149e8fa9 Binary files /dev/null and b/site/static/emojis/1f4aa-1f3ff.png differ diff --git a/site/static/emojis/1f4aa.png b/site/static/emojis/1f4aa.png new file mode 100644 index 0000000000000..ff53dfc3dc6d3 Binary files /dev/null and b/site/static/emojis/1f4aa.png differ diff --git a/site/static/emojis/1f4ab.png b/site/static/emojis/1f4ab.png new file mode 100644 index 0000000000000..87a7b7eab40cb Binary files /dev/null and b/site/static/emojis/1f4ab.png differ diff --git a/site/static/emojis/1f4ac.png b/site/static/emojis/1f4ac.png new file mode 100644 index 0000000000000..62a11b6dcb66a Binary files /dev/null and b/site/static/emojis/1f4ac.png differ diff --git a/site/static/emojis/1f4ad.png b/site/static/emojis/1f4ad.png new file mode 100644 index 0000000000000..f31b04629430d Binary files /dev/null and b/site/static/emojis/1f4ad.png differ diff --git a/site/static/emojis/1f4ae.png b/site/static/emojis/1f4ae.png new file mode 100644 index 0000000000000..bbad8a9e34e42 Binary files /dev/null and b/site/static/emojis/1f4ae.png differ diff --git a/site/static/emojis/1f4af.png b/site/static/emojis/1f4af.png new file mode 100644 index 0000000000000..6a8fb87e7c5b9 Binary files /dev/null and b/site/static/emojis/1f4af.png differ diff --git a/site/static/emojis/1f4b0.png b/site/static/emojis/1f4b0.png new file mode 100644 index 0000000000000..8b2e49b8599f3 Binary files /dev/null and b/site/static/emojis/1f4b0.png differ diff --git a/site/static/emojis/1f4b1.png b/site/static/emojis/1f4b1.png new file mode 100644 index 0000000000000..967a03177e516 Binary files /dev/null and b/site/static/emojis/1f4b1.png differ diff --git a/site/static/emojis/1f4b2.png b/site/static/emojis/1f4b2.png new file mode 100644 index 0000000000000..e3bf117999cbe Binary files /dev/null and b/site/static/emojis/1f4b2.png differ diff --git a/site/static/emojis/1f4b3.png b/site/static/emojis/1f4b3.png new file mode 100644 index 0000000000000..4f5b6dcf832ae Binary files /dev/null and b/site/static/emojis/1f4b3.png differ diff --git a/site/static/emojis/1f4b4.png b/site/static/emojis/1f4b4.png new file mode 100644 index 0000000000000..d9a37b469945c Binary files /dev/null and b/site/static/emojis/1f4b4.png differ diff --git a/site/static/emojis/1f4b5.png b/site/static/emojis/1f4b5.png new file mode 100644 index 0000000000000..4f29d43c5256d Binary files /dev/null and b/site/static/emojis/1f4b5.png differ diff --git a/site/static/emojis/1f4b6.png b/site/static/emojis/1f4b6.png new file mode 100644 index 0000000000000..b393e772a3ebb Binary files /dev/null and b/site/static/emojis/1f4b6.png differ diff --git a/site/static/emojis/1f4b7.png b/site/static/emojis/1f4b7.png new file mode 100644 index 0000000000000..d48d889d232cf Binary files /dev/null and b/site/static/emojis/1f4b7.png differ diff --git a/site/static/emojis/1f4b8.png b/site/static/emojis/1f4b8.png new file mode 100644 index 0000000000000..4ede47ad1e012 Binary files /dev/null and b/site/static/emojis/1f4b8.png differ diff --git a/site/static/emojis/1f4b9.png b/site/static/emojis/1f4b9.png new file mode 100644 index 0000000000000..29ed4d39ccf61 Binary files /dev/null and b/site/static/emojis/1f4b9.png differ diff --git a/site/static/emojis/1f4ba.png b/site/static/emojis/1f4ba.png new file mode 100644 index 0000000000000..fd029b0f56eac Binary files /dev/null and b/site/static/emojis/1f4ba.png differ diff --git a/site/static/emojis/1f4bb.png b/site/static/emojis/1f4bb.png new file mode 100644 index 0000000000000..9d295ffe22655 Binary files /dev/null and b/site/static/emojis/1f4bb.png differ diff --git a/site/static/emojis/1f4bc.png b/site/static/emojis/1f4bc.png new file mode 100644 index 0000000000000..08670c075aa69 Binary files /dev/null and b/site/static/emojis/1f4bc.png differ diff --git a/site/static/emojis/1f4bd.png b/site/static/emojis/1f4bd.png new file mode 100644 index 0000000000000..460752a2dc3f3 Binary files /dev/null and b/site/static/emojis/1f4bd.png differ diff --git a/site/static/emojis/1f4be.png b/site/static/emojis/1f4be.png new file mode 100644 index 0000000000000..fc9746b7bf5ed Binary files /dev/null and b/site/static/emojis/1f4be.png differ diff --git a/site/static/emojis/1f4bf.png b/site/static/emojis/1f4bf.png new file mode 100644 index 0000000000000..319a0f68a4d37 Binary files /dev/null and b/site/static/emojis/1f4bf.png differ diff --git a/site/static/emojis/1f4c0.png b/site/static/emojis/1f4c0.png new file mode 100644 index 0000000000000..64f792e404eb0 Binary files /dev/null and b/site/static/emojis/1f4c0.png differ diff --git a/site/static/emojis/1f4c1.png b/site/static/emojis/1f4c1.png new file mode 100644 index 0000000000000..92b1b50bca6c2 Binary files /dev/null and b/site/static/emojis/1f4c1.png differ diff --git a/site/static/emojis/1f4c2.png b/site/static/emojis/1f4c2.png new file mode 100644 index 0000000000000..5a7f53bc8f23e Binary files /dev/null and b/site/static/emojis/1f4c2.png differ diff --git a/site/static/emojis/1f4c3.png b/site/static/emojis/1f4c3.png new file mode 100644 index 0000000000000..4c4d33a65b2ea Binary files /dev/null and b/site/static/emojis/1f4c3.png differ diff --git a/site/static/emojis/1f4c4.png b/site/static/emojis/1f4c4.png new file mode 100644 index 0000000000000..c868e03bb6154 Binary files /dev/null and b/site/static/emojis/1f4c4.png differ diff --git a/site/static/emojis/1f4c5.png b/site/static/emojis/1f4c5.png new file mode 100644 index 0000000000000..6ad723c46277b Binary files /dev/null and b/site/static/emojis/1f4c5.png differ diff --git a/site/static/emojis/1f4c6.png b/site/static/emojis/1f4c6.png new file mode 100644 index 0000000000000..32054b032a798 Binary files /dev/null and b/site/static/emojis/1f4c6.png differ diff --git a/site/static/emojis/1f4c7.png b/site/static/emojis/1f4c7.png new file mode 100644 index 0000000000000..cd17bac8944e7 Binary files /dev/null and b/site/static/emojis/1f4c7.png differ diff --git a/site/static/emojis/1f4c8.png b/site/static/emojis/1f4c8.png new file mode 100644 index 0000000000000..8ff6e47cfa670 Binary files /dev/null and b/site/static/emojis/1f4c8.png differ diff --git a/site/static/emojis/1f4c9.png b/site/static/emojis/1f4c9.png new file mode 100644 index 0000000000000..aa190e8236521 Binary files /dev/null and b/site/static/emojis/1f4c9.png differ diff --git a/site/static/emojis/1f4ca.png b/site/static/emojis/1f4ca.png new file mode 100644 index 0000000000000..c449d4cc189cf Binary files /dev/null and b/site/static/emojis/1f4ca.png differ diff --git a/site/static/emojis/1f4cb.png b/site/static/emojis/1f4cb.png new file mode 100644 index 0000000000000..9a2a5559fd6e7 Binary files /dev/null and b/site/static/emojis/1f4cb.png differ diff --git a/site/static/emojis/1f4cc.png b/site/static/emojis/1f4cc.png new file mode 100644 index 0000000000000..f442f25924f33 Binary files /dev/null and b/site/static/emojis/1f4cc.png differ diff --git a/site/static/emojis/1f4cd.png b/site/static/emojis/1f4cd.png new file mode 100644 index 0000000000000..81a54135c3c18 Binary files /dev/null and b/site/static/emojis/1f4cd.png differ diff --git a/site/static/emojis/1f4ce.png b/site/static/emojis/1f4ce.png new file mode 100644 index 0000000000000..bab2f94fa8759 Binary files /dev/null and b/site/static/emojis/1f4ce.png differ diff --git a/site/static/emojis/1f4cf.png b/site/static/emojis/1f4cf.png new file mode 100644 index 0000000000000..aae172cb5ba82 Binary files /dev/null and b/site/static/emojis/1f4cf.png differ diff --git a/site/static/emojis/1f4d0.png b/site/static/emojis/1f4d0.png new file mode 100644 index 0000000000000..ccc5b2cd7b4b2 Binary files /dev/null and b/site/static/emojis/1f4d0.png differ diff --git a/site/static/emojis/1f4d1.png b/site/static/emojis/1f4d1.png new file mode 100644 index 0000000000000..d3e85665fa01d Binary files /dev/null and b/site/static/emojis/1f4d1.png differ diff --git a/site/static/emojis/1f4d2.png b/site/static/emojis/1f4d2.png new file mode 100644 index 0000000000000..d4ba357a59771 Binary files /dev/null and b/site/static/emojis/1f4d2.png differ diff --git a/site/static/emojis/1f4d3.png b/site/static/emojis/1f4d3.png new file mode 100644 index 0000000000000..3e4482daa9ccf Binary files /dev/null and b/site/static/emojis/1f4d3.png differ diff --git a/site/static/emojis/1f4d4.png b/site/static/emojis/1f4d4.png new file mode 100644 index 0000000000000..fa299b384f760 Binary files /dev/null and b/site/static/emojis/1f4d4.png differ diff --git a/site/static/emojis/1f4d5.png b/site/static/emojis/1f4d5.png new file mode 100644 index 0000000000000..0acd2bbc5064c Binary files /dev/null and b/site/static/emojis/1f4d5.png differ diff --git a/site/static/emojis/1f4d6.png b/site/static/emojis/1f4d6.png new file mode 100644 index 0000000000000..4a839711c0746 Binary files /dev/null and b/site/static/emojis/1f4d6.png differ diff --git a/site/static/emojis/1f4d7.png b/site/static/emojis/1f4d7.png new file mode 100644 index 0000000000000..dec65326de7d1 Binary files /dev/null and b/site/static/emojis/1f4d7.png differ diff --git a/site/static/emojis/1f4d8.png b/site/static/emojis/1f4d8.png new file mode 100644 index 0000000000000..f4eecca91b1e0 Binary files /dev/null and b/site/static/emojis/1f4d8.png differ diff --git a/site/static/emojis/1f4d9.png b/site/static/emojis/1f4d9.png new file mode 100644 index 0000000000000..08f81464d4361 Binary files /dev/null and b/site/static/emojis/1f4d9.png differ diff --git a/site/static/emojis/1f4da.png b/site/static/emojis/1f4da.png new file mode 100644 index 0000000000000..cdcbcb8efce3c Binary files /dev/null and b/site/static/emojis/1f4da.png differ diff --git a/site/static/emojis/1f4db.png b/site/static/emojis/1f4db.png new file mode 100644 index 0000000000000..fc4a0e50feec7 Binary files /dev/null and b/site/static/emojis/1f4db.png differ diff --git a/site/static/emojis/1f4dc.png b/site/static/emojis/1f4dc.png new file mode 100644 index 0000000000000..9126fd0cd96e5 Binary files /dev/null and b/site/static/emojis/1f4dc.png differ diff --git a/site/static/emojis/1f4dd.png b/site/static/emojis/1f4dd.png new file mode 100644 index 0000000000000..0f953e52a049d Binary files /dev/null and b/site/static/emojis/1f4dd.png differ diff --git a/site/static/emojis/1f4de.png b/site/static/emojis/1f4de.png new file mode 100644 index 0000000000000..cb3e2d71a6991 Binary files /dev/null and b/site/static/emojis/1f4de.png differ diff --git a/site/static/emojis/1f4df.png b/site/static/emojis/1f4df.png new file mode 100644 index 0000000000000..ac6ae4ce9a2cb Binary files /dev/null and b/site/static/emojis/1f4df.png differ diff --git a/site/static/emojis/1f4e0.png b/site/static/emojis/1f4e0.png new file mode 100644 index 0000000000000..c9b62aca2f82f Binary files /dev/null and b/site/static/emojis/1f4e0.png differ diff --git a/site/static/emojis/1f4e1.png b/site/static/emojis/1f4e1.png new file mode 100644 index 0000000000000..c1b86f723f7cc Binary files /dev/null and b/site/static/emojis/1f4e1.png differ diff --git a/site/static/emojis/1f4e2.png b/site/static/emojis/1f4e2.png new file mode 100644 index 0000000000000..7cdddf23e7b0a Binary files /dev/null and b/site/static/emojis/1f4e2.png differ diff --git a/site/static/emojis/1f4e3.png b/site/static/emojis/1f4e3.png new file mode 100644 index 0000000000000..aa253356319fe Binary files /dev/null and b/site/static/emojis/1f4e3.png differ diff --git a/site/static/emojis/1f4e4.png b/site/static/emojis/1f4e4.png new file mode 100644 index 0000000000000..246875f21d330 Binary files /dev/null and b/site/static/emojis/1f4e4.png differ diff --git a/site/static/emojis/1f4e5.png b/site/static/emojis/1f4e5.png new file mode 100644 index 0000000000000..7588c05d1778d Binary files /dev/null and b/site/static/emojis/1f4e5.png differ diff --git a/site/static/emojis/1f4e6.png b/site/static/emojis/1f4e6.png new file mode 100644 index 0000000000000..7e2bab3d03522 Binary files /dev/null and b/site/static/emojis/1f4e6.png differ diff --git a/site/static/emojis/1f4e7.png b/site/static/emojis/1f4e7.png new file mode 100644 index 0000000000000..9974eca3ba556 Binary files /dev/null and b/site/static/emojis/1f4e7.png differ diff --git a/site/static/emojis/1f4e8.png b/site/static/emojis/1f4e8.png new file mode 100644 index 0000000000000..e710181235758 Binary files /dev/null and b/site/static/emojis/1f4e8.png differ diff --git a/site/static/emojis/1f4e9.png b/site/static/emojis/1f4e9.png new file mode 100644 index 0000000000000..2a40f0ad75e8d Binary files /dev/null and b/site/static/emojis/1f4e9.png differ diff --git a/site/static/emojis/1f4ea.png b/site/static/emojis/1f4ea.png new file mode 100644 index 0000000000000..374256b336c6f Binary files /dev/null and b/site/static/emojis/1f4ea.png differ diff --git a/site/static/emojis/1f4eb.png b/site/static/emojis/1f4eb.png new file mode 100644 index 0000000000000..8896b0e280a96 Binary files /dev/null and b/site/static/emojis/1f4eb.png differ diff --git a/site/static/emojis/1f4ec.png b/site/static/emojis/1f4ec.png new file mode 100644 index 0000000000000..0e20c2ad00ba2 Binary files /dev/null and b/site/static/emojis/1f4ec.png differ diff --git a/site/static/emojis/1f4ed.png b/site/static/emojis/1f4ed.png new file mode 100644 index 0000000000000..36d5b729e462a Binary files /dev/null and b/site/static/emojis/1f4ed.png differ diff --git a/site/static/emojis/1f4ee.png b/site/static/emojis/1f4ee.png new file mode 100644 index 0000000000000..ce53f3998b461 Binary files /dev/null and b/site/static/emojis/1f4ee.png differ diff --git a/site/static/emojis/1f4ef.png b/site/static/emojis/1f4ef.png new file mode 100644 index 0000000000000..d999826a78eb9 Binary files /dev/null and b/site/static/emojis/1f4ef.png differ diff --git a/site/static/emojis/1f4f0.png b/site/static/emojis/1f4f0.png new file mode 100644 index 0000000000000..644645b3db429 Binary files /dev/null and b/site/static/emojis/1f4f0.png differ diff --git a/site/static/emojis/1f4f1.png b/site/static/emojis/1f4f1.png new file mode 100644 index 0000000000000..f44861b91b94b Binary files /dev/null and b/site/static/emojis/1f4f1.png differ diff --git a/site/static/emojis/1f4f2.png b/site/static/emojis/1f4f2.png new file mode 100644 index 0000000000000..67556774870d4 Binary files /dev/null and b/site/static/emojis/1f4f2.png differ diff --git a/site/static/emojis/1f4f3.png b/site/static/emojis/1f4f3.png new file mode 100644 index 0000000000000..c332ca7aa6001 Binary files /dev/null and b/site/static/emojis/1f4f3.png differ diff --git a/site/static/emojis/1f4f4.png b/site/static/emojis/1f4f4.png new file mode 100644 index 0000000000000..abc1b821bee19 Binary files /dev/null and b/site/static/emojis/1f4f4.png differ diff --git a/site/static/emojis/1f4f5.png b/site/static/emojis/1f4f5.png new file mode 100644 index 0000000000000..f4e538d8c6579 Binary files /dev/null and b/site/static/emojis/1f4f5.png differ diff --git a/site/static/emojis/1f4f6.png b/site/static/emojis/1f4f6.png new file mode 100644 index 0000000000000..f4f93cfdc77f2 Binary files /dev/null and b/site/static/emojis/1f4f6.png differ diff --git a/site/static/emojis/1f4f7.png b/site/static/emojis/1f4f7.png new file mode 100644 index 0000000000000..246f692dac7ce Binary files /dev/null and b/site/static/emojis/1f4f7.png differ diff --git a/site/static/emojis/1f4f8.png b/site/static/emojis/1f4f8.png new file mode 100644 index 0000000000000..591257f3ee870 Binary files /dev/null and b/site/static/emojis/1f4f8.png differ diff --git a/site/static/emojis/1f4f9.png b/site/static/emojis/1f4f9.png new file mode 100644 index 0000000000000..8ee4f62766e17 Binary files /dev/null and b/site/static/emojis/1f4f9.png differ diff --git a/site/static/emojis/1f4fa.png b/site/static/emojis/1f4fa.png new file mode 100644 index 0000000000000..54d39eb43922d Binary files /dev/null and b/site/static/emojis/1f4fa.png differ diff --git a/site/static/emojis/1f4fb.png b/site/static/emojis/1f4fb.png new file mode 100644 index 0000000000000..9609bbef83910 Binary files /dev/null and b/site/static/emojis/1f4fb.png differ diff --git a/site/static/emojis/1f4fc.png b/site/static/emojis/1f4fc.png new file mode 100644 index 0000000000000..aca48416a791e Binary files /dev/null and b/site/static/emojis/1f4fc.png differ diff --git a/site/static/emojis/1f4fd.png b/site/static/emojis/1f4fd.png new file mode 100644 index 0000000000000..f2dcfad6a50fd Binary files /dev/null and b/site/static/emojis/1f4fd.png differ diff --git a/site/static/emojis/1f4ff.png b/site/static/emojis/1f4ff.png new file mode 100644 index 0000000000000..be750c49dac9f Binary files /dev/null and b/site/static/emojis/1f4ff.png differ diff --git a/site/static/emojis/1f500.png b/site/static/emojis/1f500.png new file mode 100644 index 0000000000000..fbe6dd1270f39 Binary files /dev/null and b/site/static/emojis/1f500.png differ diff --git a/site/static/emojis/1f501.png b/site/static/emojis/1f501.png new file mode 100644 index 0000000000000..a2ae9a301f2b7 Binary files /dev/null and b/site/static/emojis/1f501.png differ diff --git a/site/static/emojis/1f502.png b/site/static/emojis/1f502.png new file mode 100644 index 0000000000000..a8a0ce467b3f6 Binary files /dev/null and b/site/static/emojis/1f502.png differ diff --git a/site/static/emojis/1f503.png b/site/static/emojis/1f503.png new file mode 100644 index 0000000000000..a955030f54956 Binary files /dev/null and b/site/static/emojis/1f503.png differ diff --git a/site/static/emojis/1f504.png b/site/static/emojis/1f504.png new file mode 100644 index 0000000000000..62af6feb54aea Binary files /dev/null and b/site/static/emojis/1f504.png differ diff --git a/site/static/emojis/1f505.png b/site/static/emojis/1f505.png new file mode 100644 index 0000000000000..5a2249c2604f5 Binary files /dev/null and b/site/static/emojis/1f505.png differ diff --git a/site/static/emojis/1f506.png b/site/static/emojis/1f506.png new file mode 100644 index 0000000000000..f84a19af53f15 Binary files /dev/null and b/site/static/emojis/1f506.png differ diff --git a/site/static/emojis/1f507.png b/site/static/emojis/1f507.png new file mode 100644 index 0000000000000..425ea54f07b91 Binary files /dev/null and b/site/static/emojis/1f507.png differ diff --git a/site/static/emojis/1f508.png b/site/static/emojis/1f508.png new file mode 100644 index 0000000000000..727fc474d0cb9 Binary files /dev/null and b/site/static/emojis/1f508.png differ diff --git a/site/static/emojis/1f509.png b/site/static/emojis/1f509.png new file mode 100644 index 0000000000000..dd3b69384daec Binary files /dev/null and b/site/static/emojis/1f509.png differ diff --git a/site/static/emojis/1f50a.png b/site/static/emojis/1f50a.png new file mode 100644 index 0000000000000..16a3b36e06840 Binary files /dev/null and b/site/static/emojis/1f50a.png differ diff --git a/site/static/emojis/1f50b.png b/site/static/emojis/1f50b.png new file mode 100644 index 0000000000000..ea11270323735 Binary files /dev/null and b/site/static/emojis/1f50b.png differ diff --git a/site/static/emojis/1f50c.png b/site/static/emojis/1f50c.png new file mode 100644 index 0000000000000..fa12e63965caf Binary files /dev/null and b/site/static/emojis/1f50c.png differ diff --git a/site/static/emojis/1f50d.png b/site/static/emojis/1f50d.png new file mode 100644 index 0000000000000..da93723dd7b06 Binary files /dev/null and b/site/static/emojis/1f50d.png differ diff --git a/site/static/emojis/1f50e.png b/site/static/emojis/1f50e.png new file mode 100644 index 0000000000000..af8a137dad2bb Binary files /dev/null and b/site/static/emojis/1f50e.png differ diff --git a/site/static/emojis/1f50f.png b/site/static/emojis/1f50f.png new file mode 100644 index 0000000000000..bd5af0edff488 Binary files /dev/null and b/site/static/emojis/1f50f.png differ diff --git a/site/static/emojis/1f510.png b/site/static/emojis/1f510.png new file mode 100644 index 0000000000000..8ba2a9f009354 Binary files /dev/null and b/site/static/emojis/1f510.png differ diff --git a/site/static/emojis/1f511.png b/site/static/emojis/1f511.png new file mode 100644 index 0000000000000..7b1d7807ddaac Binary files /dev/null and b/site/static/emojis/1f511.png differ diff --git a/site/static/emojis/1f512.png b/site/static/emojis/1f512.png new file mode 100644 index 0000000000000..4a91357b5a535 Binary files /dev/null and b/site/static/emojis/1f512.png differ diff --git a/site/static/emojis/1f513.png b/site/static/emojis/1f513.png new file mode 100644 index 0000000000000..ac2f5865f7736 Binary files /dev/null and b/site/static/emojis/1f513.png differ diff --git a/site/static/emojis/1f514.png b/site/static/emojis/1f514.png new file mode 100644 index 0000000000000..6626232b615e3 Binary files /dev/null and b/site/static/emojis/1f514.png differ diff --git a/site/static/emojis/1f515.png b/site/static/emojis/1f515.png new file mode 100644 index 0000000000000..d4ae2ec14fc76 Binary files /dev/null and b/site/static/emojis/1f515.png differ diff --git a/site/static/emojis/1f516.png b/site/static/emojis/1f516.png new file mode 100644 index 0000000000000..d11e540ad2dbb Binary files /dev/null and b/site/static/emojis/1f516.png differ diff --git a/site/static/emojis/1f517.png b/site/static/emojis/1f517.png new file mode 100644 index 0000000000000..76618cb5bc952 Binary files /dev/null and b/site/static/emojis/1f517.png differ diff --git a/site/static/emojis/1f518.png b/site/static/emojis/1f518.png new file mode 100644 index 0000000000000..49d062b28a65f Binary files /dev/null and b/site/static/emojis/1f518.png differ diff --git a/site/static/emojis/1f519.png b/site/static/emojis/1f519.png new file mode 100644 index 0000000000000..97707411bf9b3 Binary files /dev/null and b/site/static/emojis/1f519.png differ diff --git a/site/static/emojis/1f51a.png b/site/static/emojis/1f51a.png new file mode 100644 index 0000000000000..f399acb0356c1 Binary files /dev/null and b/site/static/emojis/1f51a.png differ diff --git a/site/static/emojis/1f51b.png b/site/static/emojis/1f51b.png new file mode 100644 index 0000000000000..6aaaa73b26d86 Binary files /dev/null and b/site/static/emojis/1f51b.png differ diff --git a/site/static/emojis/1f51c.png b/site/static/emojis/1f51c.png new file mode 100644 index 0000000000000..35fddd633e5ec Binary files /dev/null and b/site/static/emojis/1f51c.png differ diff --git a/site/static/emojis/1f51d.png b/site/static/emojis/1f51d.png new file mode 100644 index 0000000000000..9a7fe01181e1f Binary files /dev/null and b/site/static/emojis/1f51d.png differ diff --git a/site/static/emojis/1f51e.png b/site/static/emojis/1f51e.png new file mode 100644 index 0000000000000..ea100db7f2ef2 Binary files /dev/null and b/site/static/emojis/1f51e.png differ diff --git a/site/static/emojis/1f51f.png b/site/static/emojis/1f51f.png new file mode 100644 index 0000000000000..bc4b0fd18b24b Binary files /dev/null and b/site/static/emojis/1f51f.png differ diff --git a/site/static/emojis/1f520.png b/site/static/emojis/1f520.png new file mode 100644 index 0000000000000..9da0bed608d7d Binary files /dev/null and b/site/static/emojis/1f520.png differ diff --git a/site/static/emojis/1f521.png b/site/static/emojis/1f521.png new file mode 100644 index 0000000000000..e808e12e5e5c0 Binary files /dev/null and b/site/static/emojis/1f521.png differ diff --git a/site/static/emojis/1f522.png b/site/static/emojis/1f522.png new file mode 100644 index 0000000000000..84c2082306023 Binary files /dev/null and b/site/static/emojis/1f522.png differ diff --git a/site/static/emojis/1f523.png b/site/static/emojis/1f523.png new file mode 100644 index 0000000000000..fa2d4ec815b2e Binary files /dev/null and b/site/static/emojis/1f523.png differ diff --git a/site/static/emojis/1f524.png b/site/static/emojis/1f524.png new file mode 100644 index 0000000000000..2b187cadfd83f Binary files /dev/null and b/site/static/emojis/1f524.png differ diff --git a/site/static/emojis/1f525.png b/site/static/emojis/1f525.png new file mode 100644 index 0000000000000..717523f17e680 Binary files /dev/null and b/site/static/emojis/1f525.png differ diff --git a/site/static/emojis/1f526.png b/site/static/emojis/1f526.png new file mode 100644 index 0000000000000..d071d1c986a12 Binary files /dev/null and b/site/static/emojis/1f526.png differ diff --git a/site/static/emojis/1f527.png b/site/static/emojis/1f527.png new file mode 100644 index 0000000000000..f16a78613d5d9 Binary files /dev/null and b/site/static/emojis/1f527.png differ diff --git a/site/static/emojis/1f528.png b/site/static/emojis/1f528.png new file mode 100644 index 0000000000000..d76ec56de0275 Binary files /dev/null and b/site/static/emojis/1f528.png differ diff --git a/site/static/emojis/1f529.png b/site/static/emojis/1f529.png new file mode 100644 index 0000000000000..346e985869697 Binary files /dev/null and b/site/static/emojis/1f529.png differ diff --git a/site/static/emojis/1f52a.png b/site/static/emojis/1f52a.png new file mode 100644 index 0000000000000..79cfa347a5ad2 Binary files /dev/null and b/site/static/emojis/1f52a.png differ diff --git a/site/static/emojis/1f52b.png b/site/static/emojis/1f52b.png new file mode 100644 index 0000000000000..e3f5d67061cc8 Binary files /dev/null and b/site/static/emojis/1f52b.png differ diff --git a/site/static/emojis/1f52c.png b/site/static/emojis/1f52c.png new file mode 100644 index 0000000000000..5136b7767f9b6 Binary files /dev/null and b/site/static/emojis/1f52c.png differ diff --git a/site/static/emojis/1f52d.png b/site/static/emojis/1f52d.png new file mode 100644 index 0000000000000..f180454c6c97a Binary files /dev/null and b/site/static/emojis/1f52d.png differ diff --git a/site/static/emojis/1f52e.png b/site/static/emojis/1f52e.png new file mode 100644 index 0000000000000..a8abfb842c233 Binary files /dev/null and b/site/static/emojis/1f52e.png differ diff --git a/site/static/emojis/1f52f.png b/site/static/emojis/1f52f.png new file mode 100644 index 0000000000000..b6f1d4f896ca8 Binary files /dev/null and b/site/static/emojis/1f52f.png differ diff --git a/site/static/emojis/1f530.png b/site/static/emojis/1f530.png new file mode 100644 index 0000000000000..f45bbca7ee05b Binary files /dev/null and b/site/static/emojis/1f530.png differ diff --git a/site/static/emojis/1f531.png b/site/static/emojis/1f531.png new file mode 100644 index 0000000000000..fea3585283167 Binary files /dev/null and b/site/static/emojis/1f531.png differ diff --git a/site/static/emojis/1f532.png b/site/static/emojis/1f532.png new file mode 100644 index 0000000000000..87392a4ea9667 Binary files /dev/null and b/site/static/emojis/1f532.png differ diff --git a/site/static/emojis/1f533.png b/site/static/emojis/1f533.png new file mode 100644 index 0000000000000..cff774c98812c Binary files /dev/null and b/site/static/emojis/1f533.png differ diff --git a/site/static/emojis/1f534.png b/site/static/emojis/1f534.png new file mode 100644 index 0000000000000..721075df18dc4 Binary files /dev/null and b/site/static/emojis/1f534.png differ diff --git a/site/static/emojis/1f535.png b/site/static/emojis/1f535.png new file mode 100644 index 0000000000000..de9927d965e40 Binary files /dev/null and b/site/static/emojis/1f535.png differ diff --git a/site/static/emojis/1f536.png b/site/static/emojis/1f536.png new file mode 100644 index 0000000000000..d808f65499934 Binary files /dev/null and b/site/static/emojis/1f536.png differ diff --git a/site/static/emojis/1f537.png b/site/static/emojis/1f537.png new file mode 100644 index 0000000000000..9c2363d71b909 Binary files /dev/null and b/site/static/emojis/1f537.png differ diff --git a/site/static/emojis/1f538.png b/site/static/emojis/1f538.png new file mode 100644 index 0000000000000..02eab512a7529 Binary files /dev/null and b/site/static/emojis/1f538.png differ diff --git a/site/static/emojis/1f539.png b/site/static/emojis/1f539.png new file mode 100644 index 0000000000000..89ce677201f85 Binary files /dev/null and b/site/static/emojis/1f539.png differ diff --git a/site/static/emojis/1f53a.png b/site/static/emojis/1f53a.png new file mode 100644 index 0000000000000..470f3d3748131 Binary files /dev/null and b/site/static/emojis/1f53a.png differ diff --git a/site/static/emojis/1f53b.png b/site/static/emojis/1f53b.png new file mode 100644 index 0000000000000..ece2885060908 Binary files /dev/null and b/site/static/emojis/1f53b.png differ diff --git a/site/static/emojis/1f53c.png b/site/static/emojis/1f53c.png new file mode 100644 index 0000000000000..7c78843ecdca4 Binary files /dev/null and b/site/static/emojis/1f53c.png differ diff --git a/site/static/emojis/1f53d.png b/site/static/emojis/1f53d.png new file mode 100644 index 0000000000000..70b308b6ca954 Binary files /dev/null and b/site/static/emojis/1f53d.png differ diff --git a/site/static/emojis/1f549.png b/site/static/emojis/1f549.png new file mode 100644 index 0000000000000..eb644f25ca56e Binary files /dev/null and b/site/static/emojis/1f549.png differ diff --git a/site/static/emojis/1f54a.png b/site/static/emojis/1f54a.png new file mode 100644 index 0000000000000..0676697ba31ae Binary files /dev/null and b/site/static/emojis/1f54a.png differ diff --git a/site/static/emojis/1f54b.png b/site/static/emojis/1f54b.png new file mode 100644 index 0000000000000..89899e709db36 Binary files /dev/null and b/site/static/emojis/1f54b.png differ diff --git a/site/static/emojis/1f54c.png b/site/static/emojis/1f54c.png new file mode 100644 index 0000000000000..0ffb68aa444a5 Binary files /dev/null and b/site/static/emojis/1f54c.png differ diff --git a/site/static/emojis/1f54d.png b/site/static/emojis/1f54d.png new file mode 100644 index 0000000000000..d5c15756f344a Binary files /dev/null and b/site/static/emojis/1f54d.png differ diff --git a/site/static/emojis/1f54e.png b/site/static/emojis/1f54e.png new file mode 100644 index 0000000000000..4e031b2e13698 Binary files /dev/null and b/site/static/emojis/1f54e.png differ diff --git a/site/static/emojis/1f550.png b/site/static/emojis/1f550.png new file mode 100644 index 0000000000000..4fd13e3d50c20 Binary files /dev/null and b/site/static/emojis/1f550.png differ diff --git a/site/static/emojis/1f551.png b/site/static/emojis/1f551.png new file mode 100644 index 0000000000000..14fa3f30f40cd Binary files /dev/null and b/site/static/emojis/1f551.png differ diff --git a/site/static/emojis/1f552.png b/site/static/emojis/1f552.png new file mode 100644 index 0000000000000..354da1a39889e Binary files /dev/null and b/site/static/emojis/1f552.png differ diff --git a/site/static/emojis/1f553.png b/site/static/emojis/1f553.png new file mode 100644 index 0000000000000..4c6107313b753 Binary files /dev/null and b/site/static/emojis/1f553.png differ diff --git a/site/static/emojis/1f554.png b/site/static/emojis/1f554.png new file mode 100644 index 0000000000000..07c7e8ffc947e Binary files /dev/null and b/site/static/emojis/1f554.png differ diff --git a/site/static/emojis/1f555.png b/site/static/emojis/1f555.png new file mode 100644 index 0000000000000..71a04ff4ba882 Binary files /dev/null and b/site/static/emojis/1f555.png differ diff --git a/site/static/emojis/1f556.png b/site/static/emojis/1f556.png new file mode 100644 index 0000000000000..72a0b9a48bafb Binary files /dev/null and b/site/static/emojis/1f556.png differ diff --git a/site/static/emojis/1f557.png b/site/static/emojis/1f557.png new file mode 100644 index 0000000000000..bb9753cc8a39d Binary files /dev/null and b/site/static/emojis/1f557.png differ diff --git a/site/static/emojis/1f558.png b/site/static/emojis/1f558.png new file mode 100644 index 0000000000000..70d5adbeee98a Binary files /dev/null and b/site/static/emojis/1f558.png differ diff --git a/site/static/emojis/1f559.png b/site/static/emojis/1f559.png new file mode 100644 index 0000000000000..25e6dabf0ac1d Binary files /dev/null and b/site/static/emojis/1f559.png differ diff --git a/site/static/emojis/1f55a.png b/site/static/emojis/1f55a.png new file mode 100644 index 0000000000000..51c70f80c8e43 Binary files /dev/null and b/site/static/emojis/1f55a.png differ diff --git a/site/static/emojis/1f55b.png b/site/static/emojis/1f55b.png new file mode 100644 index 0000000000000..1b58527cf52f1 Binary files /dev/null and b/site/static/emojis/1f55b.png differ diff --git a/site/static/emojis/1f55c.png b/site/static/emojis/1f55c.png new file mode 100644 index 0000000000000..741b630a75d80 Binary files /dev/null and b/site/static/emojis/1f55c.png differ diff --git a/site/static/emojis/1f55d.png b/site/static/emojis/1f55d.png new file mode 100644 index 0000000000000..58a1af0d56806 Binary files /dev/null and b/site/static/emojis/1f55d.png differ diff --git a/site/static/emojis/1f55e.png b/site/static/emojis/1f55e.png new file mode 100644 index 0000000000000..112d5c452c644 Binary files /dev/null and b/site/static/emojis/1f55e.png differ diff --git a/site/static/emojis/1f55f.png b/site/static/emojis/1f55f.png new file mode 100644 index 0000000000000..14ddea9f30742 Binary files /dev/null and b/site/static/emojis/1f55f.png differ diff --git a/site/static/emojis/1f560.png b/site/static/emojis/1f560.png new file mode 100644 index 0000000000000..b30c623abd0a3 Binary files /dev/null and b/site/static/emojis/1f560.png differ diff --git a/site/static/emojis/1f561.png b/site/static/emojis/1f561.png new file mode 100644 index 0000000000000..2753c64c5445c Binary files /dev/null and b/site/static/emojis/1f561.png differ diff --git a/site/static/emojis/1f562.png b/site/static/emojis/1f562.png new file mode 100644 index 0000000000000..a4e4cb5dbb89d Binary files /dev/null and b/site/static/emojis/1f562.png differ diff --git a/site/static/emojis/1f563.png b/site/static/emojis/1f563.png new file mode 100644 index 0000000000000..ca7e45feab57e Binary files /dev/null and b/site/static/emojis/1f563.png differ diff --git a/site/static/emojis/1f564.png b/site/static/emojis/1f564.png new file mode 100644 index 0000000000000..9c3582dafeabc Binary files /dev/null and b/site/static/emojis/1f564.png differ diff --git a/site/static/emojis/1f565.png b/site/static/emojis/1f565.png new file mode 100644 index 0000000000000..f8af392f87f56 Binary files /dev/null and b/site/static/emojis/1f565.png differ diff --git a/site/static/emojis/1f566.png b/site/static/emojis/1f566.png new file mode 100644 index 0000000000000..c4134e8e5a3da Binary files /dev/null and b/site/static/emojis/1f566.png differ diff --git a/site/static/emojis/1f567.png b/site/static/emojis/1f567.png new file mode 100644 index 0000000000000..9e6bb465eeb8d Binary files /dev/null and b/site/static/emojis/1f567.png differ diff --git a/site/static/emojis/1f56f.png b/site/static/emojis/1f56f.png new file mode 100644 index 0000000000000..5b48a36fa5528 Binary files /dev/null and b/site/static/emojis/1f56f.png differ diff --git a/site/static/emojis/1f570.png b/site/static/emojis/1f570.png new file mode 100644 index 0000000000000..583feb4ef4075 Binary files /dev/null and b/site/static/emojis/1f570.png differ diff --git a/site/static/emojis/1f573.png b/site/static/emojis/1f573.png new file mode 100644 index 0000000000000..5ebed95d62c5b Binary files /dev/null and b/site/static/emojis/1f573.png differ diff --git a/site/static/emojis/1f574-1f3fb-200d-2640-fe0f.png b/site/static/emojis/1f574-1f3fb-200d-2640-fe0f.png new file mode 100644 index 0000000000000..1eedd74c0ae02 Binary files /dev/null and b/site/static/emojis/1f574-1f3fb-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f574-1f3fb-200d-2642-fe0f.png b/site/static/emojis/1f574-1f3fb-200d-2642-fe0f.png new file mode 100644 index 0000000000000..c4070ba337c8f Binary files /dev/null and b/site/static/emojis/1f574-1f3fb-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f574-1f3fb.png b/site/static/emojis/1f574-1f3fb.png new file mode 100644 index 0000000000000..ecce7bca8ec07 Binary files /dev/null and b/site/static/emojis/1f574-1f3fb.png differ diff --git a/site/static/emojis/1f574-1f3fc-200d-2640-fe0f.png b/site/static/emojis/1f574-1f3fc-200d-2640-fe0f.png new file mode 100644 index 0000000000000..806f043fc346d Binary files /dev/null and b/site/static/emojis/1f574-1f3fc-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f574-1f3fc-200d-2642-fe0f.png b/site/static/emojis/1f574-1f3fc-200d-2642-fe0f.png new file mode 100644 index 0000000000000..525ff09c0a66f Binary files /dev/null and b/site/static/emojis/1f574-1f3fc-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f574-1f3fc.png b/site/static/emojis/1f574-1f3fc.png new file mode 100644 index 0000000000000..205c9a42cbfc5 Binary files /dev/null and b/site/static/emojis/1f574-1f3fc.png differ diff --git a/site/static/emojis/1f574-1f3fd-200d-2640-fe0f.png b/site/static/emojis/1f574-1f3fd-200d-2640-fe0f.png new file mode 100644 index 0000000000000..15e65ab440c54 Binary files /dev/null and b/site/static/emojis/1f574-1f3fd-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f574-1f3fd-200d-2642-fe0f.png b/site/static/emojis/1f574-1f3fd-200d-2642-fe0f.png new file mode 100644 index 0000000000000..17b4804701671 Binary files /dev/null and b/site/static/emojis/1f574-1f3fd-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f574-1f3fd.png b/site/static/emojis/1f574-1f3fd.png new file mode 100644 index 0000000000000..b0b9ccd2c8750 Binary files /dev/null and b/site/static/emojis/1f574-1f3fd.png differ diff --git a/site/static/emojis/1f574-1f3fe-200d-2640-fe0f.png b/site/static/emojis/1f574-1f3fe-200d-2640-fe0f.png new file mode 100644 index 0000000000000..98d11b84e782c Binary files /dev/null and b/site/static/emojis/1f574-1f3fe-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f574-1f3fe-200d-2642-fe0f.png b/site/static/emojis/1f574-1f3fe-200d-2642-fe0f.png new file mode 100644 index 0000000000000..5814bfc6efd48 Binary files /dev/null and b/site/static/emojis/1f574-1f3fe-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f574-1f3fe.png b/site/static/emojis/1f574-1f3fe.png new file mode 100644 index 0000000000000..18db02ee44739 Binary files /dev/null and b/site/static/emojis/1f574-1f3fe.png differ diff --git a/site/static/emojis/1f574-1f3ff-200d-2640-fe0f.png b/site/static/emojis/1f574-1f3ff-200d-2640-fe0f.png new file mode 100644 index 0000000000000..4359b4c44bffd Binary files /dev/null and b/site/static/emojis/1f574-1f3ff-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f574-1f3ff-200d-2642-fe0f.png b/site/static/emojis/1f574-1f3ff-200d-2642-fe0f.png new file mode 100644 index 0000000000000..5da1f05658969 Binary files /dev/null and b/site/static/emojis/1f574-1f3ff-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f574-1f3ff.png b/site/static/emojis/1f574-1f3ff.png new file mode 100644 index 0000000000000..01f734fe8d443 Binary files /dev/null and b/site/static/emojis/1f574-1f3ff.png differ diff --git a/site/static/emojis/1f574-fe0f-200d-2640-fe0f.png b/site/static/emojis/1f574-fe0f-200d-2640-fe0f.png new file mode 100644 index 0000000000000..ddfa42524c047 Binary files /dev/null and b/site/static/emojis/1f574-fe0f-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f574-fe0f-200d-2642-fe0f.png b/site/static/emojis/1f574-fe0f-200d-2642-fe0f.png new file mode 100644 index 0000000000000..83de6d644628c Binary files /dev/null and b/site/static/emojis/1f574-fe0f-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f574.png b/site/static/emojis/1f574.png new file mode 100644 index 0000000000000..d947a641ce21c Binary files /dev/null and b/site/static/emojis/1f574.png differ diff --git a/site/static/emojis/1f575-1f3fb-200d-2640-fe0f.png b/site/static/emojis/1f575-1f3fb-200d-2640-fe0f.png new file mode 100644 index 0000000000000..7b0a67f84150d Binary files /dev/null and b/site/static/emojis/1f575-1f3fb-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f575-1f3fb-200d-2642-fe0f.png b/site/static/emojis/1f575-1f3fb-200d-2642-fe0f.png new file mode 100644 index 0000000000000..edbb1f1fdddb6 Binary files /dev/null and b/site/static/emojis/1f575-1f3fb-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f575-1f3fb.png b/site/static/emojis/1f575-1f3fb.png new file mode 100644 index 0000000000000..28c11bef71ad1 Binary files /dev/null and b/site/static/emojis/1f575-1f3fb.png differ diff --git a/site/static/emojis/1f575-1f3fc-200d-2640-fe0f.png b/site/static/emojis/1f575-1f3fc-200d-2640-fe0f.png new file mode 100644 index 0000000000000..dc84904de2d87 Binary files /dev/null and b/site/static/emojis/1f575-1f3fc-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f575-1f3fc-200d-2642-fe0f.png b/site/static/emojis/1f575-1f3fc-200d-2642-fe0f.png new file mode 100644 index 0000000000000..64d1e806878ea Binary files /dev/null and b/site/static/emojis/1f575-1f3fc-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f575-1f3fc.png b/site/static/emojis/1f575-1f3fc.png new file mode 100644 index 0000000000000..f5163334f12cc Binary files /dev/null and b/site/static/emojis/1f575-1f3fc.png differ diff --git a/site/static/emojis/1f575-1f3fd-200d-2640-fe0f.png b/site/static/emojis/1f575-1f3fd-200d-2640-fe0f.png new file mode 100644 index 0000000000000..c5d9838c2f616 Binary files /dev/null and b/site/static/emojis/1f575-1f3fd-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f575-1f3fd-200d-2642-fe0f.png b/site/static/emojis/1f575-1f3fd-200d-2642-fe0f.png new file mode 100644 index 0000000000000..1656142df600d Binary files /dev/null and b/site/static/emojis/1f575-1f3fd-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f575-1f3fd.png b/site/static/emojis/1f575-1f3fd.png new file mode 100644 index 0000000000000..ed52180925abd Binary files /dev/null and b/site/static/emojis/1f575-1f3fd.png differ diff --git a/site/static/emojis/1f575-1f3fe-200d-2640-fe0f.png b/site/static/emojis/1f575-1f3fe-200d-2640-fe0f.png new file mode 100644 index 0000000000000..1c3f9edfa97da Binary files /dev/null and b/site/static/emojis/1f575-1f3fe-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f575-1f3fe-200d-2642-fe0f.png b/site/static/emojis/1f575-1f3fe-200d-2642-fe0f.png new file mode 100644 index 0000000000000..f275f195c9edd Binary files /dev/null and b/site/static/emojis/1f575-1f3fe-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f575-1f3fe.png b/site/static/emojis/1f575-1f3fe.png new file mode 100644 index 0000000000000..20715fbb024e8 Binary files /dev/null and b/site/static/emojis/1f575-1f3fe.png differ diff --git a/site/static/emojis/1f575-1f3ff-200d-2640-fe0f.png b/site/static/emojis/1f575-1f3ff-200d-2640-fe0f.png new file mode 100644 index 0000000000000..bcd5fbb8873ef Binary files /dev/null and b/site/static/emojis/1f575-1f3ff-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f575-1f3ff-200d-2642-fe0f.png b/site/static/emojis/1f575-1f3ff-200d-2642-fe0f.png new file mode 100644 index 0000000000000..0a9f8373aa89f Binary files /dev/null and b/site/static/emojis/1f575-1f3ff-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f575-1f3ff.png b/site/static/emojis/1f575-1f3ff.png new file mode 100644 index 0000000000000..d625b611e15dc Binary files /dev/null and b/site/static/emojis/1f575-1f3ff.png differ diff --git a/site/static/emojis/1f575-fe0f-200d-2640-fe0f.png b/site/static/emojis/1f575-fe0f-200d-2640-fe0f.png new file mode 100644 index 0000000000000..dd3d5f0db040e Binary files /dev/null and b/site/static/emojis/1f575-fe0f-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f575-fe0f-200d-2642-fe0f.png b/site/static/emojis/1f575-fe0f-200d-2642-fe0f.png new file mode 100644 index 0000000000000..8ed60e2b51f80 Binary files /dev/null and b/site/static/emojis/1f575-fe0f-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f575.png b/site/static/emojis/1f575.png new file mode 100644 index 0000000000000..26e5ed1afc411 Binary files /dev/null and b/site/static/emojis/1f575.png differ diff --git a/site/static/emojis/1f576.png b/site/static/emojis/1f576.png new file mode 100644 index 0000000000000..70cd5c81deb34 Binary files /dev/null and b/site/static/emojis/1f576.png differ diff --git a/site/static/emojis/1f577.png b/site/static/emojis/1f577.png new file mode 100644 index 0000000000000..475377b870978 Binary files /dev/null and b/site/static/emojis/1f577.png differ diff --git a/site/static/emojis/1f578.png b/site/static/emojis/1f578.png new file mode 100644 index 0000000000000..7b5fbf60155f2 Binary files /dev/null and b/site/static/emojis/1f578.png differ diff --git a/site/static/emojis/1f579.png b/site/static/emojis/1f579.png new file mode 100644 index 0000000000000..6dbd77dc377e6 Binary files /dev/null and b/site/static/emojis/1f579.png differ diff --git a/site/static/emojis/1f57a-1f3fb.png b/site/static/emojis/1f57a-1f3fb.png new file mode 100644 index 0000000000000..62de0e07417fc Binary files /dev/null and b/site/static/emojis/1f57a-1f3fb.png differ diff --git a/site/static/emojis/1f57a-1f3fc.png b/site/static/emojis/1f57a-1f3fc.png new file mode 100644 index 0000000000000..f3640871fcb79 Binary files /dev/null and b/site/static/emojis/1f57a-1f3fc.png differ diff --git a/site/static/emojis/1f57a-1f3fd.png b/site/static/emojis/1f57a-1f3fd.png new file mode 100644 index 0000000000000..f39461bd91453 Binary files /dev/null and b/site/static/emojis/1f57a-1f3fd.png differ diff --git a/site/static/emojis/1f57a-1f3fe.png b/site/static/emojis/1f57a-1f3fe.png new file mode 100644 index 0000000000000..f99b43ba5aed3 Binary files /dev/null and b/site/static/emojis/1f57a-1f3fe.png differ diff --git a/site/static/emojis/1f57a-1f3ff.png b/site/static/emojis/1f57a-1f3ff.png new file mode 100644 index 0000000000000..477ecad66636b Binary files /dev/null and b/site/static/emojis/1f57a-1f3ff.png differ diff --git a/site/static/emojis/1f57a.png b/site/static/emojis/1f57a.png new file mode 100644 index 0000000000000..12499df34fd35 Binary files /dev/null and b/site/static/emojis/1f57a.png differ diff --git a/site/static/emojis/1f587.png b/site/static/emojis/1f587.png new file mode 100644 index 0000000000000..048cde6fb8a0f Binary files /dev/null and b/site/static/emojis/1f587.png differ diff --git a/site/static/emojis/1f58a.png b/site/static/emojis/1f58a.png new file mode 100644 index 0000000000000..178fd352f3fc4 Binary files /dev/null and b/site/static/emojis/1f58a.png differ diff --git a/site/static/emojis/1f58b.png b/site/static/emojis/1f58b.png new file mode 100644 index 0000000000000..f996037a2f73d Binary files /dev/null and b/site/static/emojis/1f58b.png differ diff --git a/site/static/emojis/1f58c.png b/site/static/emojis/1f58c.png new file mode 100644 index 0000000000000..dc9fbae60fdaf Binary files /dev/null and b/site/static/emojis/1f58c.png differ diff --git a/site/static/emojis/1f58d.png b/site/static/emojis/1f58d.png new file mode 100644 index 0000000000000..ffa2e36762943 Binary files /dev/null and b/site/static/emojis/1f58d.png differ diff --git a/site/static/emojis/1f590-1f3fb.png b/site/static/emojis/1f590-1f3fb.png new file mode 100644 index 0000000000000..3d0a6dc228ee2 Binary files /dev/null and b/site/static/emojis/1f590-1f3fb.png differ diff --git a/site/static/emojis/1f590-1f3fc.png b/site/static/emojis/1f590-1f3fc.png new file mode 100644 index 0000000000000..ada57e3d89684 Binary files /dev/null and b/site/static/emojis/1f590-1f3fc.png differ diff --git a/site/static/emojis/1f590-1f3fd.png b/site/static/emojis/1f590-1f3fd.png new file mode 100644 index 0000000000000..297c12b450533 Binary files /dev/null and b/site/static/emojis/1f590-1f3fd.png differ diff --git a/site/static/emojis/1f590-1f3fe.png b/site/static/emojis/1f590-1f3fe.png new file mode 100644 index 0000000000000..043d7551e35ab Binary files /dev/null and b/site/static/emojis/1f590-1f3fe.png differ diff --git a/site/static/emojis/1f590-1f3ff.png b/site/static/emojis/1f590-1f3ff.png new file mode 100644 index 0000000000000..09b7feaaa79e9 Binary files /dev/null and b/site/static/emojis/1f590-1f3ff.png differ diff --git a/site/static/emojis/1f590.png b/site/static/emojis/1f590.png new file mode 100644 index 0000000000000..6e03235070cf7 Binary files /dev/null and b/site/static/emojis/1f590.png differ diff --git a/site/static/emojis/1f595-1f3fb.png b/site/static/emojis/1f595-1f3fb.png new file mode 100644 index 0000000000000..396d2f521e5f0 Binary files /dev/null and b/site/static/emojis/1f595-1f3fb.png differ diff --git a/site/static/emojis/1f595-1f3fc.png b/site/static/emojis/1f595-1f3fc.png new file mode 100644 index 0000000000000..c7e4024287dd4 Binary files /dev/null and b/site/static/emojis/1f595-1f3fc.png differ diff --git a/site/static/emojis/1f595-1f3fd.png b/site/static/emojis/1f595-1f3fd.png new file mode 100644 index 0000000000000..dacfe5cd79df4 Binary files /dev/null and b/site/static/emojis/1f595-1f3fd.png differ diff --git a/site/static/emojis/1f595-1f3fe.png b/site/static/emojis/1f595-1f3fe.png new file mode 100644 index 0000000000000..8af84e4b73712 Binary files /dev/null and b/site/static/emojis/1f595-1f3fe.png differ diff --git a/site/static/emojis/1f595-1f3ff.png b/site/static/emojis/1f595-1f3ff.png new file mode 100644 index 0000000000000..036298512cb0a Binary files /dev/null and b/site/static/emojis/1f595-1f3ff.png differ diff --git a/site/static/emojis/1f595.png b/site/static/emojis/1f595.png new file mode 100644 index 0000000000000..9b5de31144a01 Binary files /dev/null and b/site/static/emojis/1f595.png differ diff --git a/site/static/emojis/1f596-1f3fb.png b/site/static/emojis/1f596-1f3fb.png new file mode 100644 index 0000000000000..467aef7e49ed6 Binary files /dev/null and b/site/static/emojis/1f596-1f3fb.png differ diff --git a/site/static/emojis/1f596-1f3fc.png b/site/static/emojis/1f596-1f3fc.png new file mode 100644 index 0000000000000..60b9be3931857 Binary files /dev/null and b/site/static/emojis/1f596-1f3fc.png differ diff --git a/site/static/emojis/1f596-1f3fd.png b/site/static/emojis/1f596-1f3fd.png new file mode 100644 index 0000000000000..36ba32915cd41 Binary files /dev/null and b/site/static/emojis/1f596-1f3fd.png differ diff --git a/site/static/emojis/1f596-1f3fe.png b/site/static/emojis/1f596-1f3fe.png new file mode 100644 index 0000000000000..07db6dba3d1b6 Binary files /dev/null and b/site/static/emojis/1f596-1f3fe.png differ diff --git a/site/static/emojis/1f596-1f3ff.png b/site/static/emojis/1f596-1f3ff.png new file mode 100644 index 0000000000000..59a79e6def098 Binary files /dev/null and b/site/static/emojis/1f596-1f3ff.png differ diff --git a/site/static/emojis/1f596.png b/site/static/emojis/1f596.png new file mode 100644 index 0000000000000..0778c7bc57bf7 Binary files /dev/null and b/site/static/emojis/1f596.png differ diff --git a/site/static/emojis/1f5a4.png b/site/static/emojis/1f5a4.png new file mode 100644 index 0000000000000..39b91ddf20643 Binary files /dev/null and b/site/static/emojis/1f5a4.png differ diff --git a/site/static/emojis/1f5a5.png b/site/static/emojis/1f5a5.png new file mode 100644 index 0000000000000..ac11f31e76a2f Binary files /dev/null and b/site/static/emojis/1f5a5.png differ diff --git a/site/static/emojis/1f5a8.png b/site/static/emojis/1f5a8.png new file mode 100644 index 0000000000000..094e0d57b4301 Binary files /dev/null and b/site/static/emojis/1f5a8.png differ diff --git a/site/static/emojis/1f5b1.png b/site/static/emojis/1f5b1.png new file mode 100644 index 0000000000000..a8c2b82f502cc Binary files /dev/null and b/site/static/emojis/1f5b1.png differ diff --git a/site/static/emojis/1f5b2.png b/site/static/emojis/1f5b2.png new file mode 100644 index 0000000000000..62a462eda2cce Binary files /dev/null and b/site/static/emojis/1f5b2.png differ diff --git a/site/static/emojis/1f5bc.png b/site/static/emojis/1f5bc.png new file mode 100644 index 0000000000000..0f22c74fc4cb6 Binary files /dev/null and b/site/static/emojis/1f5bc.png differ diff --git a/site/static/emojis/1f5c2.png b/site/static/emojis/1f5c2.png new file mode 100644 index 0000000000000..9a75e28dfef63 Binary files /dev/null and b/site/static/emojis/1f5c2.png differ diff --git a/site/static/emojis/1f5c3.png b/site/static/emojis/1f5c3.png new file mode 100644 index 0000000000000..b4a283d9348c1 Binary files /dev/null and b/site/static/emojis/1f5c3.png differ diff --git a/site/static/emojis/1f5c4.png b/site/static/emojis/1f5c4.png new file mode 100644 index 0000000000000..9b19e2e8a2ddb Binary files /dev/null and b/site/static/emojis/1f5c4.png differ diff --git a/site/static/emojis/1f5d1.png b/site/static/emojis/1f5d1.png new file mode 100644 index 0000000000000..bdd43bc6e0870 Binary files /dev/null and b/site/static/emojis/1f5d1.png differ diff --git a/site/static/emojis/1f5d2.png b/site/static/emojis/1f5d2.png new file mode 100644 index 0000000000000..b77006699cda8 Binary files /dev/null and b/site/static/emojis/1f5d2.png differ diff --git a/site/static/emojis/1f5d3.png b/site/static/emojis/1f5d3.png new file mode 100644 index 0000000000000..72e526929f1ba Binary files /dev/null and b/site/static/emojis/1f5d3.png differ diff --git a/site/static/emojis/1f5dc.png b/site/static/emojis/1f5dc.png new file mode 100644 index 0000000000000..35702a97c5eb1 Binary files /dev/null and b/site/static/emojis/1f5dc.png differ diff --git a/site/static/emojis/1f5dd.png b/site/static/emojis/1f5dd.png new file mode 100644 index 0000000000000..2a6bb2d8824d5 Binary files /dev/null and b/site/static/emojis/1f5dd.png differ diff --git a/site/static/emojis/1f5de.png b/site/static/emojis/1f5de.png new file mode 100644 index 0000000000000..f32e9860ad5db Binary files /dev/null and b/site/static/emojis/1f5de.png differ diff --git a/site/static/emojis/1f5e1.png b/site/static/emojis/1f5e1.png new file mode 100644 index 0000000000000..19328e1e26289 Binary files /dev/null and b/site/static/emojis/1f5e1.png differ diff --git a/site/static/emojis/1f5e3.png b/site/static/emojis/1f5e3.png new file mode 100644 index 0000000000000..b98f4fffeb7d6 Binary files /dev/null and b/site/static/emojis/1f5e3.png differ diff --git a/site/static/emojis/1f5e8.png b/site/static/emojis/1f5e8.png new file mode 100644 index 0000000000000..ee9daef15ebb9 Binary files /dev/null and b/site/static/emojis/1f5e8.png differ diff --git a/site/static/emojis/1f5ef.png b/site/static/emojis/1f5ef.png new file mode 100644 index 0000000000000..ea4f27ae7240e Binary files /dev/null and b/site/static/emojis/1f5ef.png differ diff --git a/site/static/emojis/1f5f3.png b/site/static/emojis/1f5f3.png new file mode 100644 index 0000000000000..c9cabef7e26b8 Binary files /dev/null and b/site/static/emojis/1f5f3.png differ diff --git a/site/static/emojis/1f5fa.png b/site/static/emojis/1f5fa.png new file mode 100644 index 0000000000000..c03959d257e02 Binary files /dev/null and b/site/static/emojis/1f5fa.png differ diff --git a/site/static/emojis/1f5fb.png b/site/static/emojis/1f5fb.png new file mode 100644 index 0000000000000..ee42aa786f056 Binary files /dev/null and b/site/static/emojis/1f5fb.png differ diff --git a/site/static/emojis/1f5fc.png b/site/static/emojis/1f5fc.png new file mode 100644 index 0000000000000..b33cacb9008af Binary files /dev/null and b/site/static/emojis/1f5fc.png differ diff --git a/site/static/emojis/1f5fd.png b/site/static/emojis/1f5fd.png new file mode 100644 index 0000000000000..1d3dd5a3b5621 Binary files /dev/null and b/site/static/emojis/1f5fd.png differ diff --git a/site/static/emojis/1f5fe.png b/site/static/emojis/1f5fe.png new file mode 100644 index 0000000000000..b223c92c0bc78 Binary files /dev/null and b/site/static/emojis/1f5fe.png differ diff --git a/site/static/emojis/1f5ff.png b/site/static/emojis/1f5ff.png new file mode 100644 index 0000000000000..09b71d9ea26b4 Binary files /dev/null and b/site/static/emojis/1f5ff.png differ diff --git a/site/static/emojis/1f600.png b/site/static/emojis/1f600.png new file mode 100644 index 0000000000000..e1cca7d00cf1b Binary files /dev/null and b/site/static/emojis/1f600.png differ diff --git a/site/static/emojis/1f601.png b/site/static/emojis/1f601.png new file mode 100644 index 0000000000000..3a73f9d906720 Binary files /dev/null and b/site/static/emojis/1f601.png differ diff --git a/site/static/emojis/1f602.png b/site/static/emojis/1f602.png new file mode 100644 index 0000000000000..e1113e8e3ff02 Binary files /dev/null and b/site/static/emojis/1f602.png differ diff --git a/site/static/emojis/1f603.png b/site/static/emojis/1f603.png new file mode 100644 index 0000000000000..e24b685f611d5 Binary files /dev/null and b/site/static/emojis/1f603.png differ diff --git a/site/static/emojis/1f604.png b/site/static/emojis/1f604.png new file mode 100644 index 0000000000000..e032945e68535 Binary files /dev/null and b/site/static/emojis/1f604.png differ diff --git a/site/static/emojis/1f605.png b/site/static/emojis/1f605.png new file mode 100644 index 0000000000000..bfc7c287f5c0b Binary files /dev/null and b/site/static/emojis/1f605.png differ diff --git a/site/static/emojis/1f606.png b/site/static/emojis/1f606.png new file mode 100644 index 0000000000000..ac4797ee40d08 Binary files /dev/null and b/site/static/emojis/1f606.png differ diff --git a/site/static/emojis/1f607.png b/site/static/emojis/1f607.png new file mode 100644 index 0000000000000..def2c98d281c0 Binary files /dev/null and b/site/static/emojis/1f607.png differ diff --git a/site/static/emojis/1f608.png b/site/static/emojis/1f608.png new file mode 100644 index 0000000000000..3e1a54cd1085e Binary files /dev/null and b/site/static/emojis/1f608.png differ diff --git a/site/static/emojis/1f609.png b/site/static/emojis/1f609.png new file mode 100644 index 0000000000000..703a50e098636 Binary files /dev/null and b/site/static/emojis/1f609.png differ diff --git a/site/static/emojis/1f60a.png b/site/static/emojis/1f60a.png new file mode 100644 index 0000000000000..8a5b034e057c8 Binary files /dev/null and b/site/static/emojis/1f60a.png differ diff --git a/site/static/emojis/1f60b.png b/site/static/emojis/1f60b.png new file mode 100644 index 0000000000000..4a71524d15e7d Binary files /dev/null and b/site/static/emojis/1f60b.png differ diff --git a/site/static/emojis/1f60c.png b/site/static/emojis/1f60c.png new file mode 100644 index 0000000000000..4fb75cffec782 Binary files /dev/null and b/site/static/emojis/1f60c.png differ diff --git a/site/static/emojis/1f60d.png b/site/static/emojis/1f60d.png new file mode 100644 index 0000000000000..0d4f15ee1b4a6 Binary files /dev/null and b/site/static/emojis/1f60d.png differ diff --git a/site/static/emojis/1f60e.png b/site/static/emojis/1f60e.png new file mode 100644 index 0000000000000..1a0560df6d34b Binary files /dev/null and b/site/static/emojis/1f60e.png differ diff --git a/site/static/emojis/1f60f.png b/site/static/emojis/1f60f.png new file mode 100644 index 0000000000000..4fca129f12df1 Binary files /dev/null and b/site/static/emojis/1f60f.png differ diff --git a/site/static/emojis/1f610.png b/site/static/emojis/1f610.png new file mode 100644 index 0000000000000..17628f9534539 Binary files /dev/null and b/site/static/emojis/1f610.png differ diff --git a/site/static/emojis/1f611.png b/site/static/emojis/1f611.png new file mode 100644 index 0000000000000..fda6326aff6a6 Binary files /dev/null and b/site/static/emojis/1f611.png differ diff --git a/site/static/emojis/1f612.png b/site/static/emojis/1f612.png new file mode 100644 index 0000000000000..53c52ecd317df Binary files /dev/null and b/site/static/emojis/1f612.png differ diff --git a/site/static/emojis/1f613.png b/site/static/emojis/1f613.png new file mode 100644 index 0000000000000..325ce9e7ca339 Binary files /dev/null and b/site/static/emojis/1f613.png differ diff --git a/site/static/emojis/1f614.png b/site/static/emojis/1f614.png new file mode 100644 index 0000000000000..1357dd9c7a181 Binary files /dev/null and b/site/static/emojis/1f614.png differ diff --git a/site/static/emojis/1f615.png b/site/static/emojis/1f615.png new file mode 100644 index 0000000000000..02cd1fe2d319e Binary files /dev/null and b/site/static/emojis/1f615.png differ diff --git a/site/static/emojis/1f616.png b/site/static/emojis/1f616.png new file mode 100644 index 0000000000000..37221bd16cab5 Binary files /dev/null and b/site/static/emojis/1f616.png differ diff --git a/site/static/emojis/1f617.png b/site/static/emojis/1f617.png new file mode 100644 index 0000000000000..22c9bd93b5719 Binary files /dev/null and b/site/static/emojis/1f617.png differ diff --git a/site/static/emojis/1f618.png b/site/static/emojis/1f618.png new file mode 100644 index 0000000000000..7aa39d71dbca0 Binary files /dev/null and b/site/static/emojis/1f618.png differ diff --git a/site/static/emojis/1f619.png b/site/static/emojis/1f619.png new file mode 100644 index 0000000000000..011863813857e Binary files /dev/null and b/site/static/emojis/1f619.png differ diff --git a/site/static/emojis/1f61a.png b/site/static/emojis/1f61a.png new file mode 100644 index 0000000000000..3ee01547c3458 Binary files /dev/null and b/site/static/emojis/1f61a.png differ diff --git a/site/static/emojis/1f61b.png b/site/static/emojis/1f61b.png new file mode 100644 index 0000000000000..79806b1272434 Binary files /dev/null and b/site/static/emojis/1f61b.png differ diff --git a/site/static/emojis/1f61c.png b/site/static/emojis/1f61c.png new file mode 100644 index 0000000000000..8aeab47c625b3 Binary files /dev/null and b/site/static/emojis/1f61c.png differ diff --git a/site/static/emojis/1f61d.png b/site/static/emojis/1f61d.png new file mode 100644 index 0000000000000..abd9e150ceace Binary files /dev/null and b/site/static/emojis/1f61d.png differ diff --git a/site/static/emojis/1f61e.png b/site/static/emojis/1f61e.png new file mode 100644 index 0000000000000..f23431b81bdb2 Binary files /dev/null and b/site/static/emojis/1f61e.png differ diff --git a/site/static/emojis/1f61f.png b/site/static/emojis/1f61f.png new file mode 100644 index 0000000000000..b0f9051901a4f Binary files /dev/null and b/site/static/emojis/1f61f.png differ diff --git a/site/static/emojis/1f620.png b/site/static/emojis/1f620.png new file mode 100644 index 0000000000000..31ecddc81570f Binary files /dev/null and b/site/static/emojis/1f620.png differ diff --git a/site/static/emojis/1f621.png b/site/static/emojis/1f621.png new file mode 100644 index 0000000000000..3921022f590ca Binary files /dev/null and b/site/static/emojis/1f621.png differ diff --git a/site/static/emojis/1f622.png b/site/static/emojis/1f622.png new file mode 100644 index 0000000000000..4b8f0e943ddaa Binary files /dev/null and b/site/static/emojis/1f622.png differ diff --git a/site/static/emojis/1f623.png b/site/static/emojis/1f623.png new file mode 100644 index 0000000000000..007139dc3a1a7 Binary files /dev/null and b/site/static/emojis/1f623.png differ diff --git a/site/static/emojis/1f624.png b/site/static/emojis/1f624.png new file mode 100644 index 0000000000000..6847184123aa5 Binary files /dev/null and b/site/static/emojis/1f624.png differ diff --git a/site/static/emojis/1f625.png b/site/static/emojis/1f625.png new file mode 100644 index 0000000000000..c4c4a2a3675da Binary files /dev/null and b/site/static/emojis/1f625.png differ diff --git a/site/static/emojis/1f626.png b/site/static/emojis/1f626.png new file mode 100644 index 0000000000000..1e97bcc4ac181 Binary files /dev/null and b/site/static/emojis/1f626.png differ diff --git a/site/static/emojis/1f627.png b/site/static/emojis/1f627.png new file mode 100644 index 0000000000000..28ce280730510 Binary files /dev/null and b/site/static/emojis/1f627.png differ diff --git a/site/static/emojis/1f628.png b/site/static/emojis/1f628.png new file mode 100644 index 0000000000000..f32b0a4ef2bd0 Binary files /dev/null and b/site/static/emojis/1f628.png differ diff --git a/site/static/emojis/1f629.png b/site/static/emojis/1f629.png new file mode 100644 index 0000000000000..2ceecc05a8a5b Binary files /dev/null and b/site/static/emojis/1f629.png differ diff --git a/site/static/emojis/1f62a.png b/site/static/emojis/1f62a.png new file mode 100644 index 0000000000000..1a0d7d5767af0 Binary files /dev/null and b/site/static/emojis/1f62a.png differ diff --git a/site/static/emojis/1f62b.png b/site/static/emojis/1f62b.png new file mode 100644 index 0000000000000..db9edc1eb7fd1 Binary files /dev/null and b/site/static/emojis/1f62b.png differ diff --git a/site/static/emojis/1f62c.png b/site/static/emojis/1f62c.png new file mode 100644 index 0000000000000..24619b8a60b6d Binary files /dev/null and b/site/static/emojis/1f62c.png differ diff --git a/site/static/emojis/1f62d.png b/site/static/emojis/1f62d.png new file mode 100644 index 0000000000000..554edf044f483 Binary files /dev/null and b/site/static/emojis/1f62d.png differ diff --git a/site/static/emojis/1f62e-200d-1f4a8.png b/site/static/emojis/1f62e-200d-1f4a8.png new file mode 100644 index 0000000000000..37db70540a88f Binary files /dev/null and b/site/static/emojis/1f62e-200d-1f4a8.png differ diff --git a/site/static/emojis/1f62e.png b/site/static/emojis/1f62e.png new file mode 100644 index 0000000000000..45820be674069 Binary files /dev/null and b/site/static/emojis/1f62e.png differ diff --git a/site/static/emojis/1f62f.png b/site/static/emojis/1f62f.png new file mode 100644 index 0000000000000..11433a2c6486b Binary files /dev/null and b/site/static/emojis/1f62f.png differ diff --git a/site/static/emojis/1f630.png b/site/static/emojis/1f630.png new file mode 100644 index 0000000000000..248ec17673269 Binary files /dev/null and b/site/static/emojis/1f630.png differ diff --git a/site/static/emojis/1f631.png b/site/static/emojis/1f631.png new file mode 100644 index 0000000000000..fa3debccac1b8 Binary files /dev/null and b/site/static/emojis/1f631.png differ diff --git a/site/static/emojis/1f632.png b/site/static/emojis/1f632.png new file mode 100644 index 0000000000000..dd4fa0c0005ea Binary files /dev/null and b/site/static/emojis/1f632.png differ diff --git a/site/static/emojis/1f633.png b/site/static/emojis/1f633.png new file mode 100644 index 0000000000000..47093b1bfe8d3 Binary files /dev/null and b/site/static/emojis/1f633.png differ diff --git a/site/static/emojis/1f634.png b/site/static/emojis/1f634.png new file mode 100644 index 0000000000000..4c3806dea524e Binary files /dev/null and b/site/static/emojis/1f634.png differ diff --git a/site/static/emojis/1f635-200d-1f4ab.png b/site/static/emojis/1f635-200d-1f4ab.png new file mode 100644 index 0000000000000..f2ad9dc1f96b5 Binary files /dev/null and b/site/static/emojis/1f635-200d-1f4ab.png differ diff --git a/site/static/emojis/1f635.png b/site/static/emojis/1f635.png new file mode 100644 index 0000000000000..3db251c49c66e Binary files /dev/null and b/site/static/emojis/1f635.png differ diff --git a/site/static/emojis/1f636-200d-1f32b-fe0f.png b/site/static/emojis/1f636-200d-1f32b-fe0f.png new file mode 100644 index 0000000000000..74bf63d50a4d3 Binary files /dev/null and b/site/static/emojis/1f636-200d-1f32b-fe0f.png differ diff --git a/site/static/emojis/1f636.png b/site/static/emojis/1f636.png new file mode 100644 index 0000000000000..4d7d903a2b13c Binary files /dev/null and b/site/static/emojis/1f636.png differ diff --git a/site/static/emojis/1f637.png b/site/static/emojis/1f637.png new file mode 100644 index 0000000000000..5197ce37cd8c6 Binary files /dev/null and b/site/static/emojis/1f637.png differ diff --git a/site/static/emojis/1f638.png b/site/static/emojis/1f638.png new file mode 100644 index 0000000000000..538ff46e5b977 Binary files /dev/null and b/site/static/emojis/1f638.png differ diff --git a/site/static/emojis/1f639.png b/site/static/emojis/1f639.png new file mode 100644 index 0000000000000..7ff22eae37acb Binary files /dev/null and b/site/static/emojis/1f639.png differ diff --git a/site/static/emojis/1f63a.png b/site/static/emojis/1f63a.png new file mode 100644 index 0000000000000..3ca61cd602d04 Binary files /dev/null and b/site/static/emojis/1f63a.png differ diff --git a/site/static/emojis/1f63b.png b/site/static/emojis/1f63b.png new file mode 100644 index 0000000000000..13e14f016e1f6 Binary files /dev/null and b/site/static/emojis/1f63b.png differ diff --git a/site/static/emojis/1f63c.png b/site/static/emojis/1f63c.png new file mode 100644 index 0000000000000..9d4ceee4afe64 Binary files /dev/null and b/site/static/emojis/1f63c.png differ diff --git a/site/static/emojis/1f63d.png b/site/static/emojis/1f63d.png new file mode 100644 index 0000000000000..966fed00b5ed2 Binary files /dev/null and b/site/static/emojis/1f63d.png differ diff --git a/site/static/emojis/1f63e.png b/site/static/emojis/1f63e.png new file mode 100644 index 0000000000000..d702c14440994 Binary files /dev/null and b/site/static/emojis/1f63e.png differ diff --git a/site/static/emojis/1f63f.png b/site/static/emojis/1f63f.png new file mode 100644 index 0000000000000..84ade17f33caf Binary files /dev/null and b/site/static/emojis/1f63f.png differ diff --git a/site/static/emojis/1f640.png b/site/static/emojis/1f640.png new file mode 100644 index 0000000000000..410cf816c7a63 Binary files /dev/null and b/site/static/emojis/1f640.png differ diff --git a/site/static/emojis/1f641.png b/site/static/emojis/1f641.png new file mode 100644 index 0000000000000..68cf4d4a4f8da Binary files /dev/null and b/site/static/emojis/1f641.png differ diff --git a/site/static/emojis/1f642.png b/site/static/emojis/1f642.png new file mode 100644 index 0000000000000..d6ece8222873e Binary files /dev/null and b/site/static/emojis/1f642.png differ diff --git a/site/static/emojis/1f643.png b/site/static/emojis/1f643.png new file mode 100644 index 0000000000000..6c5f72b5ff5e8 Binary files /dev/null and b/site/static/emojis/1f643.png differ diff --git a/site/static/emojis/1f644.png b/site/static/emojis/1f644.png new file mode 100644 index 0000000000000..1bafe2a637587 Binary files /dev/null and b/site/static/emojis/1f644.png differ diff --git a/site/static/emojis/1f645-1f3fb-200d-2640-fe0f.png b/site/static/emojis/1f645-1f3fb-200d-2640-fe0f.png new file mode 100644 index 0000000000000..4b0d4a0c62abf Binary files /dev/null and b/site/static/emojis/1f645-1f3fb-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f645-1f3fb-200d-2642-fe0f.png b/site/static/emojis/1f645-1f3fb-200d-2642-fe0f.png new file mode 100644 index 0000000000000..afe0d607d1cb3 Binary files /dev/null and b/site/static/emojis/1f645-1f3fb-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f645-1f3fb.png b/site/static/emojis/1f645-1f3fb.png new file mode 100644 index 0000000000000..240633eef6896 Binary files /dev/null and b/site/static/emojis/1f645-1f3fb.png differ diff --git a/site/static/emojis/1f645-1f3fc-200d-2640-fe0f.png b/site/static/emojis/1f645-1f3fc-200d-2640-fe0f.png new file mode 100644 index 0000000000000..218e57ff69673 Binary files /dev/null and b/site/static/emojis/1f645-1f3fc-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f645-1f3fc-200d-2642-fe0f.png b/site/static/emojis/1f645-1f3fc-200d-2642-fe0f.png new file mode 100644 index 0000000000000..3d6161b286094 Binary files /dev/null and b/site/static/emojis/1f645-1f3fc-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f645-1f3fc.png b/site/static/emojis/1f645-1f3fc.png new file mode 100644 index 0000000000000..fc2b550d70e6c Binary files /dev/null and b/site/static/emojis/1f645-1f3fc.png differ diff --git a/site/static/emojis/1f645-1f3fd-200d-2640-fe0f.png b/site/static/emojis/1f645-1f3fd-200d-2640-fe0f.png new file mode 100644 index 0000000000000..9bd6857bfba73 Binary files /dev/null and b/site/static/emojis/1f645-1f3fd-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f645-1f3fd-200d-2642-fe0f.png b/site/static/emojis/1f645-1f3fd-200d-2642-fe0f.png new file mode 100644 index 0000000000000..8168441f3d3fd Binary files /dev/null and b/site/static/emojis/1f645-1f3fd-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f645-1f3fd.png b/site/static/emojis/1f645-1f3fd.png new file mode 100644 index 0000000000000..6daf870413f32 Binary files /dev/null and b/site/static/emojis/1f645-1f3fd.png differ diff --git a/site/static/emojis/1f645-1f3fe-200d-2640-fe0f.png b/site/static/emojis/1f645-1f3fe-200d-2640-fe0f.png new file mode 100644 index 0000000000000..da0411f8c2a6e Binary files /dev/null and b/site/static/emojis/1f645-1f3fe-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f645-1f3fe-200d-2642-fe0f.png b/site/static/emojis/1f645-1f3fe-200d-2642-fe0f.png new file mode 100644 index 0000000000000..efc545851aab1 Binary files /dev/null and b/site/static/emojis/1f645-1f3fe-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f645-1f3fe.png b/site/static/emojis/1f645-1f3fe.png new file mode 100644 index 0000000000000..7b0fc547fac1b Binary files /dev/null and b/site/static/emojis/1f645-1f3fe.png differ diff --git a/site/static/emojis/1f645-1f3ff-200d-2640-fe0f.png b/site/static/emojis/1f645-1f3ff-200d-2640-fe0f.png new file mode 100644 index 0000000000000..3ae6ff4e2f8e3 Binary files /dev/null and b/site/static/emojis/1f645-1f3ff-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f645-1f3ff-200d-2642-fe0f.png b/site/static/emojis/1f645-1f3ff-200d-2642-fe0f.png new file mode 100644 index 0000000000000..91768e526c696 Binary files /dev/null and b/site/static/emojis/1f645-1f3ff-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f645-1f3ff.png b/site/static/emojis/1f645-1f3ff.png new file mode 100644 index 0000000000000..6fd9efc5a5456 Binary files /dev/null and b/site/static/emojis/1f645-1f3ff.png differ diff --git a/site/static/emojis/1f645-200d-2640-fe0f.png b/site/static/emojis/1f645-200d-2640-fe0f.png new file mode 100644 index 0000000000000..a38f17ea8e49d Binary files /dev/null and b/site/static/emojis/1f645-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f645-200d-2642-fe0f.png b/site/static/emojis/1f645-200d-2642-fe0f.png new file mode 100644 index 0000000000000..0edacb01b016c Binary files /dev/null and b/site/static/emojis/1f645-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f645.png b/site/static/emojis/1f645.png new file mode 100644 index 0000000000000..fe42663a8bf1d Binary files /dev/null and b/site/static/emojis/1f645.png differ diff --git a/site/static/emojis/1f646-1f3fb-200d-2640-fe0f.png b/site/static/emojis/1f646-1f3fb-200d-2640-fe0f.png new file mode 100644 index 0000000000000..1376c0ec36b37 Binary files /dev/null and b/site/static/emojis/1f646-1f3fb-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f646-1f3fb-200d-2642-fe0f.png b/site/static/emojis/1f646-1f3fb-200d-2642-fe0f.png new file mode 100644 index 0000000000000..1bb39d024b799 Binary files /dev/null and b/site/static/emojis/1f646-1f3fb-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f646-1f3fb.png b/site/static/emojis/1f646-1f3fb.png new file mode 100644 index 0000000000000..334ad0555cacc Binary files /dev/null and b/site/static/emojis/1f646-1f3fb.png differ diff --git a/site/static/emojis/1f646-1f3fc-200d-2640-fe0f.png b/site/static/emojis/1f646-1f3fc-200d-2640-fe0f.png new file mode 100644 index 0000000000000..3f04847ff3ec7 Binary files /dev/null and b/site/static/emojis/1f646-1f3fc-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f646-1f3fc-200d-2642-fe0f.png b/site/static/emojis/1f646-1f3fc-200d-2642-fe0f.png new file mode 100644 index 0000000000000..fc62d9984f738 Binary files /dev/null and b/site/static/emojis/1f646-1f3fc-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f646-1f3fc.png b/site/static/emojis/1f646-1f3fc.png new file mode 100644 index 0000000000000..017a2e7fd0d81 Binary files /dev/null and b/site/static/emojis/1f646-1f3fc.png differ diff --git a/site/static/emojis/1f646-1f3fd-200d-2640-fe0f.png b/site/static/emojis/1f646-1f3fd-200d-2640-fe0f.png new file mode 100644 index 0000000000000..29d4d5b2608bf Binary files /dev/null and b/site/static/emojis/1f646-1f3fd-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f646-1f3fd-200d-2642-fe0f.png b/site/static/emojis/1f646-1f3fd-200d-2642-fe0f.png new file mode 100644 index 0000000000000..6d5ca67efb76c Binary files /dev/null and b/site/static/emojis/1f646-1f3fd-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f646-1f3fd.png b/site/static/emojis/1f646-1f3fd.png new file mode 100644 index 0000000000000..f7bdeaca232db Binary files /dev/null and b/site/static/emojis/1f646-1f3fd.png differ diff --git a/site/static/emojis/1f646-1f3fe-200d-2640-fe0f.png b/site/static/emojis/1f646-1f3fe-200d-2640-fe0f.png new file mode 100644 index 0000000000000..e4352cee82f63 Binary files /dev/null and b/site/static/emojis/1f646-1f3fe-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f646-1f3fe-200d-2642-fe0f.png b/site/static/emojis/1f646-1f3fe-200d-2642-fe0f.png new file mode 100644 index 0000000000000..0cd923a9bf7e0 Binary files /dev/null and b/site/static/emojis/1f646-1f3fe-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f646-1f3fe.png b/site/static/emojis/1f646-1f3fe.png new file mode 100644 index 0000000000000..7c92b35ecc3c5 Binary files /dev/null and b/site/static/emojis/1f646-1f3fe.png differ diff --git a/site/static/emojis/1f646-1f3ff-200d-2640-fe0f.png b/site/static/emojis/1f646-1f3ff-200d-2640-fe0f.png new file mode 100644 index 0000000000000..7bc47ebdc7877 Binary files /dev/null and b/site/static/emojis/1f646-1f3ff-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f646-1f3ff-200d-2642-fe0f.png b/site/static/emojis/1f646-1f3ff-200d-2642-fe0f.png new file mode 100644 index 0000000000000..4f885b074606f Binary files /dev/null and b/site/static/emojis/1f646-1f3ff-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f646-1f3ff.png b/site/static/emojis/1f646-1f3ff.png new file mode 100644 index 0000000000000..9193addc3a3d0 Binary files /dev/null and b/site/static/emojis/1f646-1f3ff.png differ diff --git a/site/static/emojis/1f646-200d-2640-fe0f.png b/site/static/emojis/1f646-200d-2640-fe0f.png new file mode 100644 index 0000000000000..5b18034ac1493 Binary files /dev/null and b/site/static/emojis/1f646-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f646-200d-2642-fe0f.png b/site/static/emojis/1f646-200d-2642-fe0f.png new file mode 100644 index 0000000000000..94d87d8c284d3 Binary files /dev/null and b/site/static/emojis/1f646-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f646.png b/site/static/emojis/1f646.png new file mode 100644 index 0000000000000..1ece1c7f28d3a Binary files /dev/null and b/site/static/emojis/1f646.png differ diff --git a/site/static/emojis/1f647-1f3fb-200d-2640-fe0f.png b/site/static/emojis/1f647-1f3fb-200d-2640-fe0f.png new file mode 100644 index 0000000000000..bc5c50a3c1d48 Binary files /dev/null and b/site/static/emojis/1f647-1f3fb-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f647-1f3fb-200d-2642-fe0f.png b/site/static/emojis/1f647-1f3fb-200d-2642-fe0f.png new file mode 100644 index 0000000000000..f42ce72a94758 Binary files /dev/null and b/site/static/emojis/1f647-1f3fb-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f647-1f3fb.png b/site/static/emojis/1f647-1f3fb.png new file mode 100644 index 0000000000000..8519432cf9df7 Binary files /dev/null and b/site/static/emojis/1f647-1f3fb.png differ diff --git a/site/static/emojis/1f647-1f3fc-200d-2640-fe0f.png b/site/static/emojis/1f647-1f3fc-200d-2640-fe0f.png new file mode 100644 index 0000000000000..d0461b3447695 Binary files /dev/null and b/site/static/emojis/1f647-1f3fc-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f647-1f3fc-200d-2642-fe0f.png b/site/static/emojis/1f647-1f3fc-200d-2642-fe0f.png new file mode 100644 index 0000000000000..50015401cbf44 Binary files /dev/null and b/site/static/emojis/1f647-1f3fc-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f647-1f3fc.png b/site/static/emojis/1f647-1f3fc.png new file mode 100644 index 0000000000000..5038aeaaf2262 Binary files /dev/null and b/site/static/emojis/1f647-1f3fc.png differ diff --git a/site/static/emojis/1f647-1f3fd-200d-2640-fe0f.png b/site/static/emojis/1f647-1f3fd-200d-2640-fe0f.png new file mode 100644 index 0000000000000..24b8cfb810daf Binary files /dev/null and b/site/static/emojis/1f647-1f3fd-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f647-1f3fd-200d-2642-fe0f.png b/site/static/emojis/1f647-1f3fd-200d-2642-fe0f.png new file mode 100644 index 0000000000000..eeebeda8400cf Binary files /dev/null and b/site/static/emojis/1f647-1f3fd-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f647-1f3fd.png b/site/static/emojis/1f647-1f3fd.png new file mode 100644 index 0000000000000..38389ed31d8c4 Binary files /dev/null and b/site/static/emojis/1f647-1f3fd.png differ diff --git a/site/static/emojis/1f647-1f3fe-200d-2640-fe0f.png b/site/static/emojis/1f647-1f3fe-200d-2640-fe0f.png new file mode 100644 index 0000000000000..21d7688242a49 Binary files /dev/null and b/site/static/emojis/1f647-1f3fe-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f647-1f3fe-200d-2642-fe0f.png b/site/static/emojis/1f647-1f3fe-200d-2642-fe0f.png new file mode 100644 index 0000000000000..90f1d16f6c402 Binary files /dev/null and b/site/static/emojis/1f647-1f3fe-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f647-1f3fe.png b/site/static/emojis/1f647-1f3fe.png new file mode 100644 index 0000000000000..9b5f7135b6ad7 Binary files /dev/null and b/site/static/emojis/1f647-1f3fe.png differ diff --git a/site/static/emojis/1f647-1f3ff-200d-2640-fe0f.png b/site/static/emojis/1f647-1f3ff-200d-2640-fe0f.png new file mode 100644 index 0000000000000..2c192cb641f42 Binary files /dev/null and b/site/static/emojis/1f647-1f3ff-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f647-1f3ff-200d-2642-fe0f.png b/site/static/emojis/1f647-1f3ff-200d-2642-fe0f.png new file mode 100644 index 0000000000000..f97b23935f30b Binary files /dev/null and b/site/static/emojis/1f647-1f3ff-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f647-1f3ff.png b/site/static/emojis/1f647-1f3ff.png new file mode 100644 index 0000000000000..561024107a9d3 Binary files /dev/null and b/site/static/emojis/1f647-1f3ff.png differ diff --git a/site/static/emojis/1f647-200d-2640-fe0f.png b/site/static/emojis/1f647-200d-2640-fe0f.png new file mode 100644 index 0000000000000..bee0cd77fa498 Binary files /dev/null and b/site/static/emojis/1f647-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f647-200d-2642-fe0f.png b/site/static/emojis/1f647-200d-2642-fe0f.png new file mode 100644 index 0000000000000..1c7a05baa5afc Binary files /dev/null and b/site/static/emojis/1f647-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f647.png b/site/static/emojis/1f647.png new file mode 100644 index 0000000000000..7f926955602da Binary files /dev/null and b/site/static/emojis/1f647.png differ diff --git a/site/static/emojis/1f648.png b/site/static/emojis/1f648.png new file mode 100644 index 0000000000000..d9866c9042692 Binary files /dev/null and b/site/static/emojis/1f648.png differ diff --git a/site/static/emojis/1f649.png b/site/static/emojis/1f649.png new file mode 100644 index 0000000000000..284cf9b4b5965 Binary files /dev/null and b/site/static/emojis/1f649.png differ diff --git a/site/static/emojis/1f64a.png b/site/static/emojis/1f64a.png new file mode 100644 index 0000000000000..ab35f405a983b Binary files /dev/null and b/site/static/emojis/1f64a.png differ diff --git a/site/static/emojis/1f64b-1f3fb-200d-2640-fe0f.png b/site/static/emojis/1f64b-1f3fb-200d-2640-fe0f.png new file mode 100644 index 0000000000000..bfadf8f909920 Binary files /dev/null and b/site/static/emojis/1f64b-1f3fb-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f64b-1f3fb-200d-2642-fe0f.png b/site/static/emojis/1f64b-1f3fb-200d-2642-fe0f.png new file mode 100644 index 0000000000000..c3eaf18d18c73 Binary files /dev/null and b/site/static/emojis/1f64b-1f3fb-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f64b-1f3fb.png b/site/static/emojis/1f64b-1f3fb.png new file mode 100644 index 0000000000000..97439b7bb58b9 Binary files /dev/null and b/site/static/emojis/1f64b-1f3fb.png differ diff --git a/site/static/emojis/1f64b-1f3fc-200d-2640-fe0f.png b/site/static/emojis/1f64b-1f3fc-200d-2640-fe0f.png new file mode 100644 index 0000000000000..c12537b10207b Binary files /dev/null and b/site/static/emojis/1f64b-1f3fc-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f64b-1f3fc-200d-2642-fe0f.png b/site/static/emojis/1f64b-1f3fc-200d-2642-fe0f.png new file mode 100644 index 0000000000000..dffc95b68559c Binary files /dev/null and b/site/static/emojis/1f64b-1f3fc-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f64b-1f3fc.png b/site/static/emojis/1f64b-1f3fc.png new file mode 100644 index 0000000000000..b2ec6e1f4a57b Binary files /dev/null and b/site/static/emojis/1f64b-1f3fc.png differ diff --git a/site/static/emojis/1f64b-1f3fd-200d-2640-fe0f.png b/site/static/emojis/1f64b-1f3fd-200d-2640-fe0f.png new file mode 100644 index 0000000000000..431daae49a8c4 Binary files /dev/null and b/site/static/emojis/1f64b-1f3fd-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f64b-1f3fd-200d-2642-fe0f.png b/site/static/emojis/1f64b-1f3fd-200d-2642-fe0f.png new file mode 100644 index 0000000000000..ff577874e7d66 Binary files /dev/null and b/site/static/emojis/1f64b-1f3fd-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f64b-1f3fd.png b/site/static/emojis/1f64b-1f3fd.png new file mode 100644 index 0000000000000..92c0e793b68d7 Binary files /dev/null and b/site/static/emojis/1f64b-1f3fd.png differ diff --git a/site/static/emojis/1f64b-1f3fe-200d-2640-fe0f.png b/site/static/emojis/1f64b-1f3fe-200d-2640-fe0f.png new file mode 100644 index 0000000000000..f21a1cbbd23bf Binary files /dev/null and b/site/static/emojis/1f64b-1f3fe-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f64b-1f3fe-200d-2642-fe0f.png b/site/static/emojis/1f64b-1f3fe-200d-2642-fe0f.png new file mode 100644 index 0000000000000..8423ab2f7d8a0 Binary files /dev/null and b/site/static/emojis/1f64b-1f3fe-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f64b-1f3fe.png b/site/static/emojis/1f64b-1f3fe.png new file mode 100644 index 0000000000000..59c34dba7bdac Binary files /dev/null and b/site/static/emojis/1f64b-1f3fe.png differ diff --git a/site/static/emojis/1f64b-1f3ff-200d-2640-fe0f.png b/site/static/emojis/1f64b-1f3ff-200d-2640-fe0f.png new file mode 100644 index 0000000000000..328e2c5adb5aa Binary files /dev/null and b/site/static/emojis/1f64b-1f3ff-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f64b-1f3ff-200d-2642-fe0f.png b/site/static/emojis/1f64b-1f3ff-200d-2642-fe0f.png new file mode 100644 index 0000000000000..be3fe243b6628 Binary files /dev/null and b/site/static/emojis/1f64b-1f3ff-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f64b-1f3ff.png b/site/static/emojis/1f64b-1f3ff.png new file mode 100644 index 0000000000000..113a5d95dbef8 Binary files /dev/null and b/site/static/emojis/1f64b-1f3ff.png differ diff --git a/site/static/emojis/1f64b-200d-2640-fe0f.png b/site/static/emojis/1f64b-200d-2640-fe0f.png new file mode 100644 index 0000000000000..d66bfa3f12e4f Binary files /dev/null and b/site/static/emojis/1f64b-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f64b-200d-2642-fe0f.png b/site/static/emojis/1f64b-200d-2642-fe0f.png new file mode 100644 index 0000000000000..a7ac68aeed0fb Binary files /dev/null and b/site/static/emojis/1f64b-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f64b.png b/site/static/emojis/1f64b.png new file mode 100644 index 0000000000000..ca3aef07e099b Binary files /dev/null and b/site/static/emojis/1f64b.png differ diff --git a/site/static/emojis/1f64c-1f3fb.png b/site/static/emojis/1f64c-1f3fb.png new file mode 100644 index 0000000000000..6933625595106 Binary files /dev/null and b/site/static/emojis/1f64c-1f3fb.png differ diff --git a/site/static/emojis/1f64c-1f3fc.png b/site/static/emojis/1f64c-1f3fc.png new file mode 100644 index 0000000000000..d1499a4f3a6a5 Binary files /dev/null and b/site/static/emojis/1f64c-1f3fc.png differ diff --git a/site/static/emojis/1f64c-1f3fd.png b/site/static/emojis/1f64c-1f3fd.png new file mode 100644 index 0000000000000..aff7790bcde7b Binary files /dev/null and b/site/static/emojis/1f64c-1f3fd.png differ diff --git a/site/static/emojis/1f64c-1f3fe.png b/site/static/emojis/1f64c-1f3fe.png new file mode 100644 index 0000000000000..1b91f8b02f847 Binary files /dev/null and b/site/static/emojis/1f64c-1f3fe.png differ diff --git a/site/static/emojis/1f64c-1f3ff.png b/site/static/emojis/1f64c-1f3ff.png new file mode 100644 index 0000000000000..bbec83c35a866 Binary files /dev/null and b/site/static/emojis/1f64c-1f3ff.png differ diff --git a/site/static/emojis/1f64c.png b/site/static/emojis/1f64c.png new file mode 100644 index 0000000000000..e634507a0b42e Binary files /dev/null and b/site/static/emojis/1f64c.png differ diff --git a/site/static/emojis/1f64d-1f3fb-200d-2640-fe0f.png b/site/static/emojis/1f64d-1f3fb-200d-2640-fe0f.png new file mode 100644 index 0000000000000..aae352d056c93 Binary files /dev/null and b/site/static/emojis/1f64d-1f3fb-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f64d-1f3fb-200d-2642-fe0f.png b/site/static/emojis/1f64d-1f3fb-200d-2642-fe0f.png new file mode 100644 index 0000000000000..418bca4b98456 Binary files /dev/null and b/site/static/emojis/1f64d-1f3fb-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f64d-1f3fb.png b/site/static/emojis/1f64d-1f3fb.png new file mode 100644 index 0000000000000..840ddde7d2909 Binary files /dev/null and b/site/static/emojis/1f64d-1f3fb.png differ diff --git a/site/static/emojis/1f64d-1f3fc-200d-2640-fe0f.png b/site/static/emojis/1f64d-1f3fc-200d-2640-fe0f.png new file mode 100644 index 0000000000000..1ddc7df17da76 Binary files /dev/null and b/site/static/emojis/1f64d-1f3fc-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f64d-1f3fc-200d-2642-fe0f.png b/site/static/emojis/1f64d-1f3fc-200d-2642-fe0f.png new file mode 100644 index 0000000000000..aa2ce5703ca92 Binary files /dev/null and b/site/static/emojis/1f64d-1f3fc-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f64d-1f3fc.png b/site/static/emojis/1f64d-1f3fc.png new file mode 100644 index 0000000000000..820ebabf805da Binary files /dev/null and b/site/static/emojis/1f64d-1f3fc.png differ diff --git a/site/static/emojis/1f64d-1f3fd-200d-2640-fe0f.png b/site/static/emojis/1f64d-1f3fd-200d-2640-fe0f.png new file mode 100644 index 0000000000000..611f5abc71b9d Binary files /dev/null and b/site/static/emojis/1f64d-1f3fd-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f64d-1f3fd-200d-2642-fe0f.png b/site/static/emojis/1f64d-1f3fd-200d-2642-fe0f.png new file mode 100644 index 0000000000000..6de21884062db Binary files /dev/null and b/site/static/emojis/1f64d-1f3fd-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f64d-1f3fd.png b/site/static/emojis/1f64d-1f3fd.png new file mode 100644 index 0000000000000..196cb444d11c6 Binary files /dev/null and b/site/static/emojis/1f64d-1f3fd.png differ diff --git a/site/static/emojis/1f64d-1f3fe-200d-2640-fe0f.png b/site/static/emojis/1f64d-1f3fe-200d-2640-fe0f.png new file mode 100644 index 0000000000000..f9be0f0f0271b Binary files /dev/null and b/site/static/emojis/1f64d-1f3fe-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f64d-1f3fe-200d-2642-fe0f.png b/site/static/emojis/1f64d-1f3fe-200d-2642-fe0f.png new file mode 100644 index 0000000000000..7e7117d633d02 Binary files /dev/null and b/site/static/emojis/1f64d-1f3fe-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f64d-1f3fe.png b/site/static/emojis/1f64d-1f3fe.png new file mode 100644 index 0000000000000..eb07daabbe8e2 Binary files /dev/null and b/site/static/emojis/1f64d-1f3fe.png differ diff --git a/site/static/emojis/1f64d-1f3ff-200d-2640-fe0f.png b/site/static/emojis/1f64d-1f3ff-200d-2640-fe0f.png new file mode 100644 index 0000000000000..a79fe542dc26b Binary files /dev/null and b/site/static/emojis/1f64d-1f3ff-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f64d-1f3ff-200d-2642-fe0f.png b/site/static/emojis/1f64d-1f3ff-200d-2642-fe0f.png new file mode 100644 index 0000000000000..b20da5f07d623 Binary files /dev/null and b/site/static/emojis/1f64d-1f3ff-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f64d-1f3ff.png b/site/static/emojis/1f64d-1f3ff.png new file mode 100644 index 0000000000000..d9ef12d0d1747 Binary files /dev/null and b/site/static/emojis/1f64d-1f3ff.png differ diff --git a/site/static/emojis/1f64d-200d-2640-fe0f.png b/site/static/emojis/1f64d-200d-2640-fe0f.png new file mode 100644 index 0000000000000..8ecf1966beea9 Binary files /dev/null and b/site/static/emojis/1f64d-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f64d-200d-2642-fe0f.png b/site/static/emojis/1f64d-200d-2642-fe0f.png new file mode 100644 index 0000000000000..f4cc4acc15688 Binary files /dev/null and b/site/static/emojis/1f64d-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f64d.png b/site/static/emojis/1f64d.png new file mode 100644 index 0000000000000..1d58cfe9291f8 Binary files /dev/null and b/site/static/emojis/1f64d.png differ diff --git a/site/static/emojis/1f64e-1f3fb-200d-2640-fe0f.png b/site/static/emojis/1f64e-1f3fb-200d-2640-fe0f.png new file mode 100644 index 0000000000000..86dd895a359b2 Binary files /dev/null and b/site/static/emojis/1f64e-1f3fb-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f64e-1f3fb-200d-2642-fe0f.png b/site/static/emojis/1f64e-1f3fb-200d-2642-fe0f.png new file mode 100644 index 0000000000000..f13a8093a977c Binary files /dev/null and b/site/static/emojis/1f64e-1f3fb-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f64e-1f3fb.png b/site/static/emojis/1f64e-1f3fb.png new file mode 100644 index 0000000000000..fb498d23d25b9 Binary files /dev/null and b/site/static/emojis/1f64e-1f3fb.png differ diff --git a/site/static/emojis/1f64e-1f3fc-200d-2640-fe0f.png b/site/static/emojis/1f64e-1f3fc-200d-2640-fe0f.png new file mode 100644 index 0000000000000..75f03ce985c0a Binary files /dev/null and b/site/static/emojis/1f64e-1f3fc-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f64e-1f3fc-200d-2642-fe0f.png b/site/static/emojis/1f64e-1f3fc-200d-2642-fe0f.png new file mode 100644 index 0000000000000..87b6e6ce872e5 Binary files /dev/null and b/site/static/emojis/1f64e-1f3fc-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f64e-1f3fc.png b/site/static/emojis/1f64e-1f3fc.png new file mode 100644 index 0000000000000..30189f4383201 Binary files /dev/null and b/site/static/emojis/1f64e-1f3fc.png differ diff --git a/site/static/emojis/1f64e-1f3fd-200d-2640-fe0f.png b/site/static/emojis/1f64e-1f3fd-200d-2640-fe0f.png new file mode 100644 index 0000000000000..3d1528deceb07 Binary files /dev/null and b/site/static/emojis/1f64e-1f3fd-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f64e-1f3fd-200d-2642-fe0f.png b/site/static/emojis/1f64e-1f3fd-200d-2642-fe0f.png new file mode 100644 index 0000000000000..ed75c900a30c4 Binary files /dev/null and b/site/static/emojis/1f64e-1f3fd-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f64e-1f3fd.png b/site/static/emojis/1f64e-1f3fd.png new file mode 100644 index 0000000000000..e515a7128359f Binary files /dev/null and b/site/static/emojis/1f64e-1f3fd.png differ diff --git a/site/static/emojis/1f64e-1f3fe-200d-2640-fe0f.png b/site/static/emojis/1f64e-1f3fe-200d-2640-fe0f.png new file mode 100644 index 0000000000000..a8b0388daa6f3 Binary files /dev/null and b/site/static/emojis/1f64e-1f3fe-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f64e-1f3fe-200d-2642-fe0f.png b/site/static/emojis/1f64e-1f3fe-200d-2642-fe0f.png new file mode 100644 index 0000000000000..75dfe960168c4 Binary files /dev/null and b/site/static/emojis/1f64e-1f3fe-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f64e-1f3fe.png b/site/static/emojis/1f64e-1f3fe.png new file mode 100644 index 0000000000000..a60b07cc801a4 Binary files /dev/null and b/site/static/emojis/1f64e-1f3fe.png differ diff --git a/site/static/emojis/1f64e-1f3ff-200d-2640-fe0f.png b/site/static/emojis/1f64e-1f3ff-200d-2640-fe0f.png new file mode 100644 index 0000000000000..c293681fb6ab3 Binary files /dev/null and b/site/static/emojis/1f64e-1f3ff-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f64e-1f3ff-200d-2642-fe0f.png b/site/static/emojis/1f64e-1f3ff-200d-2642-fe0f.png new file mode 100644 index 0000000000000..fd5365cad3f63 Binary files /dev/null and b/site/static/emojis/1f64e-1f3ff-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f64e-1f3ff.png b/site/static/emojis/1f64e-1f3ff.png new file mode 100644 index 0000000000000..1a746f3f77920 Binary files /dev/null and b/site/static/emojis/1f64e-1f3ff.png differ diff --git a/site/static/emojis/1f64e-200d-2640-fe0f.png b/site/static/emojis/1f64e-200d-2640-fe0f.png new file mode 100644 index 0000000000000..72da6530d09f2 Binary files /dev/null and b/site/static/emojis/1f64e-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f64e-200d-2642-fe0f.png b/site/static/emojis/1f64e-200d-2642-fe0f.png new file mode 100644 index 0000000000000..4c6b4298da1ea Binary files /dev/null and b/site/static/emojis/1f64e-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f64e.png b/site/static/emojis/1f64e.png new file mode 100644 index 0000000000000..92a455969cb2d Binary files /dev/null and b/site/static/emojis/1f64e.png differ diff --git a/site/static/emojis/1f64f-1f3fb.png b/site/static/emojis/1f64f-1f3fb.png new file mode 100644 index 0000000000000..25dfbd62cac7b Binary files /dev/null and b/site/static/emojis/1f64f-1f3fb.png differ diff --git a/site/static/emojis/1f64f-1f3fc.png b/site/static/emojis/1f64f-1f3fc.png new file mode 100644 index 0000000000000..c7025799ad74a Binary files /dev/null and b/site/static/emojis/1f64f-1f3fc.png differ diff --git a/site/static/emojis/1f64f-1f3fd.png b/site/static/emojis/1f64f-1f3fd.png new file mode 100644 index 0000000000000..4f8982c45982b Binary files /dev/null and b/site/static/emojis/1f64f-1f3fd.png differ diff --git a/site/static/emojis/1f64f-1f3fe.png b/site/static/emojis/1f64f-1f3fe.png new file mode 100644 index 0000000000000..ab440bb60b39d Binary files /dev/null and b/site/static/emojis/1f64f-1f3fe.png differ diff --git a/site/static/emojis/1f64f-1f3ff.png b/site/static/emojis/1f64f-1f3ff.png new file mode 100644 index 0000000000000..6274a14cc0b9b Binary files /dev/null and b/site/static/emojis/1f64f-1f3ff.png differ diff --git a/site/static/emojis/1f64f.png b/site/static/emojis/1f64f.png new file mode 100644 index 0000000000000..b18f35a7f6efb Binary files /dev/null and b/site/static/emojis/1f64f.png differ diff --git a/site/static/emojis/1f680.png b/site/static/emojis/1f680.png new file mode 100644 index 0000000000000..ee6a88ac73940 Binary files /dev/null and b/site/static/emojis/1f680.png differ diff --git a/site/static/emojis/1f681.png b/site/static/emojis/1f681.png new file mode 100644 index 0000000000000..10796dfb777ef Binary files /dev/null and b/site/static/emojis/1f681.png differ diff --git a/site/static/emojis/1f682.png b/site/static/emojis/1f682.png new file mode 100644 index 0000000000000..00d6b1c86c553 Binary files /dev/null and b/site/static/emojis/1f682.png differ diff --git a/site/static/emojis/1f683.png b/site/static/emojis/1f683.png new file mode 100644 index 0000000000000..d563d35b6452e Binary files /dev/null and b/site/static/emojis/1f683.png differ diff --git a/site/static/emojis/1f684.png b/site/static/emojis/1f684.png new file mode 100644 index 0000000000000..826875f7b41f5 Binary files /dev/null and b/site/static/emojis/1f684.png differ diff --git a/site/static/emojis/1f685.png b/site/static/emojis/1f685.png new file mode 100644 index 0000000000000..ae356c6d62ba4 Binary files /dev/null and b/site/static/emojis/1f685.png differ diff --git a/site/static/emojis/1f686.png b/site/static/emojis/1f686.png new file mode 100644 index 0000000000000..c74aa912a704b Binary files /dev/null and b/site/static/emojis/1f686.png differ diff --git a/site/static/emojis/1f687.png b/site/static/emojis/1f687.png new file mode 100644 index 0000000000000..d4614c14510df Binary files /dev/null and b/site/static/emojis/1f687.png differ diff --git a/site/static/emojis/1f688.png b/site/static/emojis/1f688.png new file mode 100644 index 0000000000000..26aa866540996 Binary files /dev/null and b/site/static/emojis/1f688.png differ diff --git a/site/static/emojis/1f689.png b/site/static/emojis/1f689.png new file mode 100644 index 0000000000000..596d8d614240f Binary files /dev/null and b/site/static/emojis/1f689.png differ diff --git a/site/static/emojis/1f68a.png b/site/static/emojis/1f68a.png new file mode 100644 index 0000000000000..9d51921680f90 Binary files /dev/null and b/site/static/emojis/1f68a.png differ diff --git a/site/static/emojis/1f68b.png b/site/static/emojis/1f68b.png new file mode 100644 index 0000000000000..f497e46674343 Binary files /dev/null and b/site/static/emojis/1f68b.png differ diff --git a/site/static/emojis/1f68c.png b/site/static/emojis/1f68c.png new file mode 100644 index 0000000000000..4a900b4da048c Binary files /dev/null and b/site/static/emojis/1f68c.png differ diff --git a/site/static/emojis/1f68d.png b/site/static/emojis/1f68d.png new file mode 100644 index 0000000000000..078be9ba71db0 Binary files /dev/null and b/site/static/emojis/1f68d.png differ diff --git a/site/static/emojis/1f68e.png b/site/static/emojis/1f68e.png new file mode 100644 index 0000000000000..cc5a24037f3c2 Binary files /dev/null and b/site/static/emojis/1f68e.png differ diff --git a/site/static/emojis/1f68f.png b/site/static/emojis/1f68f.png new file mode 100644 index 0000000000000..06a7892894f94 Binary files /dev/null and b/site/static/emojis/1f68f.png differ diff --git a/site/static/emojis/1f690.png b/site/static/emojis/1f690.png new file mode 100644 index 0000000000000..ee8318b525fa1 Binary files /dev/null and b/site/static/emojis/1f690.png differ diff --git a/site/static/emojis/1f691.png b/site/static/emojis/1f691.png new file mode 100644 index 0000000000000..bf6e87894936d Binary files /dev/null and b/site/static/emojis/1f691.png differ diff --git a/site/static/emojis/1f692.png b/site/static/emojis/1f692.png new file mode 100644 index 0000000000000..c8bef7b865dce Binary files /dev/null and b/site/static/emojis/1f692.png differ diff --git a/site/static/emojis/1f693.png b/site/static/emojis/1f693.png new file mode 100644 index 0000000000000..97428b4083d28 Binary files /dev/null and b/site/static/emojis/1f693.png differ diff --git a/site/static/emojis/1f694.png b/site/static/emojis/1f694.png new file mode 100644 index 0000000000000..53e8067028571 Binary files /dev/null and b/site/static/emojis/1f694.png differ diff --git a/site/static/emojis/1f695.png b/site/static/emojis/1f695.png new file mode 100644 index 0000000000000..118ac470c352e Binary files /dev/null and b/site/static/emojis/1f695.png differ diff --git a/site/static/emojis/1f696.png b/site/static/emojis/1f696.png new file mode 100644 index 0000000000000..116b2b4364ae2 Binary files /dev/null and b/site/static/emojis/1f696.png differ diff --git a/site/static/emojis/1f697.png b/site/static/emojis/1f697.png new file mode 100644 index 0000000000000..fb0f6c86b69ac Binary files /dev/null and b/site/static/emojis/1f697.png differ diff --git a/site/static/emojis/1f698.png b/site/static/emojis/1f698.png new file mode 100644 index 0000000000000..666ed7e01399a Binary files /dev/null and b/site/static/emojis/1f698.png differ diff --git a/site/static/emojis/1f699.png b/site/static/emojis/1f699.png new file mode 100644 index 0000000000000..4563409213798 Binary files /dev/null and b/site/static/emojis/1f699.png differ diff --git a/site/static/emojis/1f69a.png b/site/static/emojis/1f69a.png new file mode 100644 index 0000000000000..2fadb0a18628a Binary files /dev/null and b/site/static/emojis/1f69a.png differ diff --git a/site/static/emojis/1f69b.png b/site/static/emojis/1f69b.png new file mode 100644 index 0000000000000..883f792ec1890 Binary files /dev/null and b/site/static/emojis/1f69b.png differ diff --git a/site/static/emojis/1f69c.png b/site/static/emojis/1f69c.png new file mode 100644 index 0000000000000..715c1511d51b5 Binary files /dev/null and b/site/static/emojis/1f69c.png differ diff --git a/site/static/emojis/1f69d.png b/site/static/emojis/1f69d.png new file mode 100644 index 0000000000000..ce6a1c79b5a96 Binary files /dev/null and b/site/static/emojis/1f69d.png differ diff --git a/site/static/emojis/1f69e.png b/site/static/emojis/1f69e.png new file mode 100644 index 0000000000000..255b5fcb84b35 Binary files /dev/null and b/site/static/emojis/1f69e.png differ diff --git a/site/static/emojis/1f69f.png b/site/static/emojis/1f69f.png new file mode 100644 index 0000000000000..5615e3b760c84 Binary files /dev/null and b/site/static/emojis/1f69f.png differ diff --git a/site/static/emojis/1f6a0.png b/site/static/emojis/1f6a0.png new file mode 100644 index 0000000000000..b0b508ab6b92d Binary files /dev/null and b/site/static/emojis/1f6a0.png differ diff --git a/site/static/emojis/1f6a1.png b/site/static/emojis/1f6a1.png new file mode 100644 index 0000000000000..4c45163e0a713 Binary files /dev/null and b/site/static/emojis/1f6a1.png differ diff --git a/site/static/emojis/1f6a2.png b/site/static/emojis/1f6a2.png new file mode 100644 index 0000000000000..aba0f76e00bb7 Binary files /dev/null and b/site/static/emojis/1f6a2.png differ diff --git a/site/static/emojis/1f6a3-1f3fb-200d-2640-fe0f.png b/site/static/emojis/1f6a3-1f3fb-200d-2640-fe0f.png new file mode 100644 index 0000000000000..fde490bb6e1dd Binary files /dev/null and b/site/static/emojis/1f6a3-1f3fb-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f6a3-1f3fb-200d-2642-fe0f.png b/site/static/emojis/1f6a3-1f3fb-200d-2642-fe0f.png new file mode 100644 index 0000000000000..18b201b803f71 Binary files /dev/null and b/site/static/emojis/1f6a3-1f3fb-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f6a3-1f3fb.png b/site/static/emojis/1f6a3-1f3fb.png new file mode 100644 index 0000000000000..9bdd60106914f Binary files /dev/null and b/site/static/emojis/1f6a3-1f3fb.png differ diff --git a/site/static/emojis/1f6a3-1f3fc-200d-2640-fe0f.png b/site/static/emojis/1f6a3-1f3fc-200d-2640-fe0f.png new file mode 100644 index 0000000000000..16884b8eec89c Binary files /dev/null and b/site/static/emojis/1f6a3-1f3fc-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f6a3-1f3fc-200d-2642-fe0f.png b/site/static/emojis/1f6a3-1f3fc-200d-2642-fe0f.png new file mode 100644 index 0000000000000..8e9d27becc4cb Binary files /dev/null and b/site/static/emojis/1f6a3-1f3fc-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f6a3-1f3fc.png b/site/static/emojis/1f6a3-1f3fc.png new file mode 100644 index 0000000000000..ad8126e2e7ef8 Binary files /dev/null and b/site/static/emojis/1f6a3-1f3fc.png differ diff --git a/site/static/emojis/1f6a3-1f3fd-200d-2640-fe0f.png b/site/static/emojis/1f6a3-1f3fd-200d-2640-fe0f.png new file mode 100644 index 0000000000000..c58930f5904a8 Binary files /dev/null and b/site/static/emojis/1f6a3-1f3fd-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f6a3-1f3fd-200d-2642-fe0f.png b/site/static/emojis/1f6a3-1f3fd-200d-2642-fe0f.png new file mode 100644 index 0000000000000..e543a176de629 Binary files /dev/null and b/site/static/emojis/1f6a3-1f3fd-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f6a3-1f3fd.png b/site/static/emojis/1f6a3-1f3fd.png new file mode 100644 index 0000000000000..7cb95e5edaa9e Binary files /dev/null and b/site/static/emojis/1f6a3-1f3fd.png differ diff --git a/site/static/emojis/1f6a3-1f3fe-200d-2640-fe0f.png b/site/static/emojis/1f6a3-1f3fe-200d-2640-fe0f.png new file mode 100644 index 0000000000000..179b248bff552 Binary files /dev/null and b/site/static/emojis/1f6a3-1f3fe-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f6a3-1f3fe-200d-2642-fe0f.png b/site/static/emojis/1f6a3-1f3fe-200d-2642-fe0f.png new file mode 100644 index 0000000000000..fc992c215ec56 Binary files /dev/null and b/site/static/emojis/1f6a3-1f3fe-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f6a3-1f3fe.png b/site/static/emojis/1f6a3-1f3fe.png new file mode 100644 index 0000000000000..44d884e57d069 Binary files /dev/null and b/site/static/emojis/1f6a3-1f3fe.png differ diff --git a/site/static/emojis/1f6a3-1f3ff-200d-2640-fe0f.png b/site/static/emojis/1f6a3-1f3ff-200d-2640-fe0f.png new file mode 100644 index 0000000000000..3624440360bbc Binary files /dev/null and b/site/static/emojis/1f6a3-1f3ff-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f6a3-1f3ff-200d-2642-fe0f.png b/site/static/emojis/1f6a3-1f3ff-200d-2642-fe0f.png new file mode 100644 index 0000000000000..846573e3e21d6 Binary files /dev/null and b/site/static/emojis/1f6a3-1f3ff-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f6a3-1f3ff.png b/site/static/emojis/1f6a3-1f3ff.png new file mode 100644 index 0000000000000..270c275c45728 Binary files /dev/null and b/site/static/emojis/1f6a3-1f3ff.png differ diff --git a/site/static/emojis/1f6a3-200d-2640-fe0f.png b/site/static/emojis/1f6a3-200d-2640-fe0f.png new file mode 100644 index 0000000000000..21e1468e9d1bb Binary files /dev/null and b/site/static/emojis/1f6a3-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f6a3-200d-2642-fe0f.png b/site/static/emojis/1f6a3-200d-2642-fe0f.png new file mode 100644 index 0000000000000..34cc521527ef9 Binary files /dev/null and b/site/static/emojis/1f6a3-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f6a3.png b/site/static/emojis/1f6a3.png new file mode 100644 index 0000000000000..405d114bfd35d Binary files /dev/null and b/site/static/emojis/1f6a3.png differ diff --git a/site/static/emojis/1f6a4.png b/site/static/emojis/1f6a4.png new file mode 100644 index 0000000000000..2fea9d256f70d Binary files /dev/null and b/site/static/emojis/1f6a4.png differ diff --git a/site/static/emojis/1f6a5.png b/site/static/emojis/1f6a5.png new file mode 100644 index 0000000000000..82e222ae62c36 Binary files /dev/null and b/site/static/emojis/1f6a5.png differ diff --git a/site/static/emojis/1f6a6.png b/site/static/emojis/1f6a6.png new file mode 100644 index 0000000000000..0596ab3523556 Binary files /dev/null and b/site/static/emojis/1f6a6.png differ diff --git a/site/static/emojis/1f6a7.png b/site/static/emojis/1f6a7.png new file mode 100644 index 0000000000000..b4e63faff15a5 Binary files /dev/null and b/site/static/emojis/1f6a7.png differ diff --git a/site/static/emojis/1f6a8.png b/site/static/emojis/1f6a8.png new file mode 100644 index 0000000000000..170218b147721 Binary files /dev/null and b/site/static/emojis/1f6a8.png differ diff --git a/site/static/emojis/1f6a9.png b/site/static/emojis/1f6a9.png new file mode 100644 index 0000000000000..aa650d6dcbd95 Binary files /dev/null and b/site/static/emojis/1f6a9.png differ diff --git a/site/static/emojis/1f6aa.png b/site/static/emojis/1f6aa.png new file mode 100644 index 0000000000000..2ac4b18b0a954 Binary files /dev/null and b/site/static/emojis/1f6aa.png differ diff --git a/site/static/emojis/1f6ab.png b/site/static/emojis/1f6ab.png new file mode 100644 index 0000000000000..43aba4d3fded7 Binary files /dev/null and b/site/static/emojis/1f6ab.png differ diff --git a/site/static/emojis/1f6ac.png b/site/static/emojis/1f6ac.png new file mode 100644 index 0000000000000..ec1b357237648 Binary files /dev/null and b/site/static/emojis/1f6ac.png differ diff --git a/site/static/emojis/1f6ad.png b/site/static/emojis/1f6ad.png new file mode 100644 index 0000000000000..f1e1bc17c0d97 Binary files /dev/null and b/site/static/emojis/1f6ad.png differ diff --git a/site/static/emojis/1f6ae.png b/site/static/emojis/1f6ae.png new file mode 100644 index 0000000000000..5636443371688 Binary files /dev/null and b/site/static/emojis/1f6ae.png differ diff --git a/site/static/emojis/1f6af.png b/site/static/emojis/1f6af.png new file mode 100644 index 0000000000000..eb0b0ab56fb5d Binary files /dev/null and b/site/static/emojis/1f6af.png differ diff --git a/site/static/emojis/1f6b0.png b/site/static/emojis/1f6b0.png new file mode 100644 index 0000000000000..e50afb54b4844 Binary files /dev/null and b/site/static/emojis/1f6b0.png differ diff --git a/site/static/emojis/1f6b1.png b/site/static/emojis/1f6b1.png new file mode 100644 index 0000000000000..41ee54ab9e55d Binary files /dev/null and b/site/static/emojis/1f6b1.png differ diff --git a/site/static/emojis/1f6b2.png b/site/static/emojis/1f6b2.png new file mode 100644 index 0000000000000..3c3b5f88bc7b2 Binary files /dev/null and b/site/static/emojis/1f6b2.png differ diff --git a/site/static/emojis/1f6b3.png b/site/static/emojis/1f6b3.png new file mode 100644 index 0000000000000..9d911de7f8330 Binary files /dev/null and b/site/static/emojis/1f6b3.png differ diff --git a/site/static/emojis/1f6b4-1f3fb-200d-2640-fe0f.png b/site/static/emojis/1f6b4-1f3fb-200d-2640-fe0f.png new file mode 100644 index 0000000000000..df15a18afe9de Binary files /dev/null and b/site/static/emojis/1f6b4-1f3fb-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f6b4-1f3fb-200d-2642-fe0f.png b/site/static/emojis/1f6b4-1f3fb-200d-2642-fe0f.png new file mode 100644 index 0000000000000..cd2a021e340fe Binary files /dev/null and b/site/static/emojis/1f6b4-1f3fb-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f6b4-1f3fb.png b/site/static/emojis/1f6b4-1f3fb.png new file mode 100644 index 0000000000000..ed9418f8ea781 Binary files /dev/null and b/site/static/emojis/1f6b4-1f3fb.png differ diff --git a/site/static/emojis/1f6b4-1f3fc-200d-2640-fe0f.png b/site/static/emojis/1f6b4-1f3fc-200d-2640-fe0f.png new file mode 100644 index 0000000000000..ab2991777e74b Binary files /dev/null and b/site/static/emojis/1f6b4-1f3fc-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f6b4-1f3fc-200d-2642-fe0f.png b/site/static/emojis/1f6b4-1f3fc-200d-2642-fe0f.png new file mode 100644 index 0000000000000..626267467e84f Binary files /dev/null and b/site/static/emojis/1f6b4-1f3fc-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f6b4-1f3fc.png b/site/static/emojis/1f6b4-1f3fc.png new file mode 100644 index 0000000000000..227b23c301a7e Binary files /dev/null and b/site/static/emojis/1f6b4-1f3fc.png differ diff --git a/site/static/emojis/1f6b4-1f3fd-200d-2640-fe0f.png b/site/static/emojis/1f6b4-1f3fd-200d-2640-fe0f.png new file mode 100644 index 0000000000000..76f60cd6ff520 Binary files /dev/null and b/site/static/emojis/1f6b4-1f3fd-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f6b4-1f3fd-200d-2642-fe0f.png b/site/static/emojis/1f6b4-1f3fd-200d-2642-fe0f.png new file mode 100644 index 0000000000000..fa5a581e59ce3 Binary files /dev/null and b/site/static/emojis/1f6b4-1f3fd-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f6b4-1f3fd.png b/site/static/emojis/1f6b4-1f3fd.png new file mode 100644 index 0000000000000..5dd31d7f10360 Binary files /dev/null and b/site/static/emojis/1f6b4-1f3fd.png differ diff --git a/site/static/emojis/1f6b4-1f3fe-200d-2640-fe0f.png b/site/static/emojis/1f6b4-1f3fe-200d-2640-fe0f.png new file mode 100644 index 0000000000000..6df286ef52e6f Binary files /dev/null and b/site/static/emojis/1f6b4-1f3fe-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f6b4-1f3fe-200d-2642-fe0f.png b/site/static/emojis/1f6b4-1f3fe-200d-2642-fe0f.png new file mode 100644 index 0000000000000..a5f0d7353f01e Binary files /dev/null and b/site/static/emojis/1f6b4-1f3fe-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f6b4-1f3fe.png b/site/static/emojis/1f6b4-1f3fe.png new file mode 100644 index 0000000000000..542172dd065f9 Binary files /dev/null and b/site/static/emojis/1f6b4-1f3fe.png differ diff --git a/site/static/emojis/1f6b4-1f3ff-200d-2640-fe0f.png b/site/static/emojis/1f6b4-1f3ff-200d-2640-fe0f.png new file mode 100644 index 0000000000000..fdb0747c81133 Binary files /dev/null and b/site/static/emojis/1f6b4-1f3ff-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f6b4-1f3ff-200d-2642-fe0f.png b/site/static/emojis/1f6b4-1f3ff-200d-2642-fe0f.png new file mode 100644 index 0000000000000..f6824bd060856 Binary files /dev/null and b/site/static/emojis/1f6b4-1f3ff-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f6b4-1f3ff.png b/site/static/emojis/1f6b4-1f3ff.png new file mode 100644 index 0000000000000..154ced30da869 Binary files /dev/null and b/site/static/emojis/1f6b4-1f3ff.png differ diff --git a/site/static/emojis/1f6b4-200d-2640-fe0f.png b/site/static/emojis/1f6b4-200d-2640-fe0f.png new file mode 100644 index 0000000000000..bf9729e40c5fa Binary files /dev/null and b/site/static/emojis/1f6b4-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f6b4-200d-2642-fe0f.png b/site/static/emojis/1f6b4-200d-2642-fe0f.png new file mode 100644 index 0000000000000..4e20da34720b6 Binary files /dev/null and b/site/static/emojis/1f6b4-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f6b4.png b/site/static/emojis/1f6b4.png new file mode 100644 index 0000000000000..740460a5c4550 Binary files /dev/null and b/site/static/emojis/1f6b4.png differ diff --git a/site/static/emojis/1f6b5-1f3fb-200d-2640-fe0f.png b/site/static/emojis/1f6b5-1f3fb-200d-2640-fe0f.png new file mode 100644 index 0000000000000..acf76d55ab72f Binary files /dev/null and b/site/static/emojis/1f6b5-1f3fb-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f6b5-1f3fb-200d-2642-fe0f.png b/site/static/emojis/1f6b5-1f3fb-200d-2642-fe0f.png new file mode 100644 index 0000000000000..80193f2b1802a Binary files /dev/null and b/site/static/emojis/1f6b5-1f3fb-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f6b5-1f3fb.png b/site/static/emojis/1f6b5-1f3fb.png new file mode 100644 index 0000000000000..f11d9b0e9f261 Binary files /dev/null and b/site/static/emojis/1f6b5-1f3fb.png differ diff --git a/site/static/emojis/1f6b5-1f3fc-200d-2640-fe0f.png b/site/static/emojis/1f6b5-1f3fc-200d-2640-fe0f.png new file mode 100644 index 0000000000000..2015da4886a42 Binary files /dev/null and b/site/static/emojis/1f6b5-1f3fc-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f6b5-1f3fc-200d-2642-fe0f.png b/site/static/emojis/1f6b5-1f3fc-200d-2642-fe0f.png new file mode 100644 index 0000000000000..858838777c2f2 Binary files /dev/null and b/site/static/emojis/1f6b5-1f3fc-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f6b5-1f3fc.png b/site/static/emojis/1f6b5-1f3fc.png new file mode 100644 index 0000000000000..d64e9126c5f7c Binary files /dev/null and b/site/static/emojis/1f6b5-1f3fc.png differ diff --git a/site/static/emojis/1f6b5-1f3fd-200d-2640-fe0f.png b/site/static/emojis/1f6b5-1f3fd-200d-2640-fe0f.png new file mode 100644 index 0000000000000..781b6363f8fc4 Binary files /dev/null and b/site/static/emojis/1f6b5-1f3fd-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f6b5-1f3fd-200d-2642-fe0f.png b/site/static/emojis/1f6b5-1f3fd-200d-2642-fe0f.png new file mode 100644 index 0000000000000..0fa06e5e27853 Binary files /dev/null and b/site/static/emojis/1f6b5-1f3fd-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f6b5-1f3fd.png b/site/static/emojis/1f6b5-1f3fd.png new file mode 100644 index 0000000000000..cdbec9bce3967 Binary files /dev/null and b/site/static/emojis/1f6b5-1f3fd.png differ diff --git a/site/static/emojis/1f6b5-1f3fe-200d-2640-fe0f.png b/site/static/emojis/1f6b5-1f3fe-200d-2640-fe0f.png new file mode 100644 index 0000000000000..b016fd04f891a Binary files /dev/null and b/site/static/emojis/1f6b5-1f3fe-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f6b5-1f3fe-200d-2642-fe0f.png b/site/static/emojis/1f6b5-1f3fe-200d-2642-fe0f.png new file mode 100644 index 0000000000000..35783c0b1d94b Binary files /dev/null and b/site/static/emojis/1f6b5-1f3fe-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f6b5-1f3fe.png b/site/static/emojis/1f6b5-1f3fe.png new file mode 100644 index 0000000000000..b47ec8684395c Binary files /dev/null and b/site/static/emojis/1f6b5-1f3fe.png differ diff --git a/site/static/emojis/1f6b5-1f3ff-200d-2640-fe0f.png b/site/static/emojis/1f6b5-1f3ff-200d-2640-fe0f.png new file mode 100644 index 0000000000000..8d48bcbad7717 Binary files /dev/null and b/site/static/emojis/1f6b5-1f3ff-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f6b5-1f3ff-200d-2642-fe0f.png b/site/static/emojis/1f6b5-1f3ff-200d-2642-fe0f.png new file mode 100644 index 0000000000000..99cd3437b23c5 Binary files /dev/null and b/site/static/emojis/1f6b5-1f3ff-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f6b5-1f3ff.png b/site/static/emojis/1f6b5-1f3ff.png new file mode 100644 index 0000000000000..77b5a67ebb573 Binary files /dev/null and b/site/static/emojis/1f6b5-1f3ff.png differ diff --git a/site/static/emojis/1f6b5-200d-2640-fe0f.png b/site/static/emojis/1f6b5-200d-2640-fe0f.png new file mode 100644 index 0000000000000..442571a93ace1 Binary files /dev/null and b/site/static/emojis/1f6b5-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f6b5-200d-2642-fe0f.png b/site/static/emojis/1f6b5-200d-2642-fe0f.png new file mode 100644 index 0000000000000..1a65cdaecbfe0 Binary files /dev/null and b/site/static/emojis/1f6b5-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f6b5.png b/site/static/emojis/1f6b5.png new file mode 100644 index 0000000000000..a19fca05b936a Binary files /dev/null and b/site/static/emojis/1f6b5.png differ diff --git a/site/static/emojis/1f6b6-1f3fb-200d-2640-fe0f.png b/site/static/emojis/1f6b6-1f3fb-200d-2640-fe0f.png new file mode 100644 index 0000000000000..8adb675c408c5 Binary files /dev/null and b/site/static/emojis/1f6b6-1f3fb-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f6b6-1f3fb-200d-2642-fe0f.png b/site/static/emojis/1f6b6-1f3fb-200d-2642-fe0f.png new file mode 100644 index 0000000000000..21de68e56d82f Binary files /dev/null and b/site/static/emojis/1f6b6-1f3fb-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f6b6-1f3fb.png b/site/static/emojis/1f6b6-1f3fb.png new file mode 100644 index 0000000000000..dedfe0def169f Binary files /dev/null and b/site/static/emojis/1f6b6-1f3fb.png differ diff --git a/site/static/emojis/1f6b6-1f3fc-200d-2640-fe0f.png b/site/static/emojis/1f6b6-1f3fc-200d-2640-fe0f.png new file mode 100644 index 0000000000000..83393cbbb8281 Binary files /dev/null and b/site/static/emojis/1f6b6-1f3fc-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f6b6-1f3fc-200d-2642-fe0f.png b/site/static/emojis/1f6b6-1f3fc-200d-2642-fe0f.png new file mode 100644 index 0000000000000..ad530e7e56d75 Binary files /dev/null and b/site/static/emojis/1f6b6-1f3fc-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f6b6-1f3fc.png b/site/static/emojis/1f6b6-1f3fc.png new file mode 100644 index 0000000000000..7e9f7f2742bf4 Binary files /dev/null and b/site/static/emojis/1f6b6-1f3fc.png differ diff --git a/site/static/emojis/1f6b6-1f3fd-200d-2640-fe0f.png b/site/static/emojis/1f6b6-1f3fd-200d-2640-fe0f.png new file mode 100644 index 0000000000000..a02b5596e6375 Binary files /dev/null and b/site/static/emojis/1f6b6-1f3fd-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f6b6-1f3fd-200d-2642-fe0f.png b/site/static/emojis/1f6b6-1f3fd-200d-2642-fe0f.png new file mode 100644 index 0000000000000..4ec1ab50c9bb3 Binary files /dev/null and b/site/static/emojis/1f6b6-1f3fd-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f6b6-1f3fd.png b/site/static/emojis/1f6b6-1f3fd.png new file mode 100644 index 0000000000000..e4cef4018c448 Binary files /dev/null and b/site/static/emojis/1f6b6-1f3fd.png differ diff --git a/site/static/emojis/1f6b6-1f3fe-200d-2640-fe0f.png b/site/static/emojis/1f6b6-1f3fe-200d-2640-fe0f.png new file mode 100644 index 0000000000000..1a7393e143acc Binary files /dev/null and b/site/static/emojis/1f6b6-1f3fe-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f6b6-1f3fe-200d-2642-fe0f.png b/site/static/emojis/1f6b6-1f3fe-200d-2642-fe0f.png new file mode 100644 index 0000000000000..8d60431ecd95b Binary files /dev/null and b/site/static/emojis/1f6b6-1f3fe-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f6b6-1f3fe.png b/site/static/emojis/1f6b6-1f3fe.png new file mode 100644 index 0000000000000..1713d959fb954 Binary files /dev/null and b/site/static/emojis/1f6b6-1f3fe.png differ diff --git a/site/static/emojis/1f6b6-1f3ff-200d-2640-fe0f.png b/site/static/emojis/1f6b6-1f3ff-200d-2640-fe0f.png new file mode 100644 index 0000000000000..4c15c76936ca2 Binary files /dev/null and b/site/static/emojis/1f6b6-1f3ff-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f6b6-1f3ff-200d-2642-fe0f.png b/site/static/emojis/1f6b6-1f3ff-200d-2642-fe0f.png new file mode 100644 index 0000000000000..4bc174b72465a Binary files /dev/null and b/site/static/emojis/1f6b6-1f3ff-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f6b6-1f3ff.png b/site/static/emojis/1f6b6-1f3ff.png new file mode 100644 index 0000000000000..f3719b6d06c0d Binary files /dev/null and b/site/static/emojis/1f6b6-1f3ff.png differ diff --git a/site/static/emojis/1f6b6-200d-2640-fe0f.png b/site/static/emojis/1f6b6-200d-2640-fe0f.png new file mode 100644 index 0000000000000..33f0cf7414f03 Binary files /dev/null and b/site/static/emojis/1f6b6-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f6b6-200d-2642-fe0f.png b/site/static/emojis/1f6b6-200d-2642-fe0f.png new file mode 100644 index 0000000000000..59d7673e2b083 Binary files /dev/null and b/site/static/emojis/1f6b6-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f6b6.png b/site/static/emojis/1f6b6.png new file mode 100644 index 0000000000000..a45b3db78f134 Binary files /dev/null and b/site/static/emojis/1f6b6.png differ diff --git a/site/static/emojis/1f6b7.png b/site/static/emojis/1f6b7.png new file mode 100644 index 0000000000000..92bfa62a9982d Binary files /dev/null and b/site/static/emojis/1f6b7.png differ diff --git a/site/static/emojis/1f6b8.png b/site/static/emojis/1f6b8.png new file mode 100644 index 0000000000000..72ff572c64155 Binary files /dev/null and b/site/static/emojis/1f6b8.png differ diff --git a/site/static/emojis/1f6b9.png b/site/static/emojis/1f6b9.png new file mode 100644 index 0000000000000..ea42e7ff64919 Binary files /dev/null and b/site/static/emojis/1f6b9.png differ diff --git a/site/static/emojis/1f6ba.png b/site/static/emojis/1f6ba.png new file mode 100644 index 0000000000000..636d05b632003 Binary files /dev/null and b/site/static/emojis/1f6ba.png differ diff --git a/site/static/emojis/1f6bb.png b/site/static/emojis/1f6bb.png new file mode 100644 index 0000000000000..7bb19365e90b6 Binary files /dev/null and b/site/static/emojis/1f6bb.png differ diff --git a/site/static/emojis/1f6bc.png b/site/static/emojis/1f6bc.png new file mode 100644 index 0000000000000..4195611226294 Binary files /dev/null and b/site/static/emojis/1f6bc.png differ diff --git a/site/static/emojis/1f6bd.png b/site/static/emojis/1f6bd.png new file mode 100644 index 0000000000000..a85e96567c4bd Binary files /dev/null and b/site/static/emojis/1f6bd.png differ diff --git a/site/static/emojis/1f6be.png b/site/static/emojis/1f6be.png new file mode 100644 index 0000000000000..9583065733812 Binary files /dev/null and b/site/static/emojis/1f6be.png differ diff --git a/site/static/emojis/1f6bf.png b/site/static/emojis/1f6bf.png new file mode 100644 index 0000000000000..59619c4bba449 Binary files /dev/null and b/site/static/emojis/1f6bf.png differ diff --git a/site/static/emojis/1f6c0-1f3fb.png b/site/static/emojis/1f6c0-1f3fb.png new file mode 100644 index 0000000000000..88d871a4f4431 Binary files /dev/null and b/site/static/emojis/1f6c0-1f3fb.png differ diff --git a/site/static/emojis/1f6c0-1f3fc.png b/site/static/emojis/1f6c0-1f3fc.png new file mode 100644 index 0000000000000..9f43d609db592 Binary files /dev/null and b/site/static/emojis/1f6c0-1f3fc.png differ diff --git a/site/static/emojis/1f6c0-1f3fd.png b/site/static/emojis/1f6c0-1f3fd.png new file mode 100644 index 0000000000000..437bfe94b0efe Binary files /dev/null and b/site/static/emojis/1f6c0-1f3fd.png differ diff --git a/site/static/emojis/1f6c0-1f3fe.png b/site/static/emojis/1f6c0-1f3fe.png new file mode 100644 index 0000000000000..1ded3eccaac61 Binary files /dev/null and b/site/static/emojis/1f6c0-1f3fe.png differ diff --git a/site/static/emojis/1f6c0-1f3ff.png b/site/static/emojis/1f6c0-1f3ff.png new file mode 100644 index 0000000000000..4e030ad13d554 Binary files /dev/null and b/site/static/emojis/1f6c0-1f3ff.png differ diff --git a/site/static/emojis/1f6c0.png b/site/static/emojis/1f6c0.png new file mode 100644 index 0000000000000..476a0c174b1ac Binary files /dev/null and b/site/static/emojis/1f6c0.png differ diff --git a/site/static/emojis/1f6c1.png b/site/static/emojis/1f6c1.png new file mode 100644 index 0000000000000..cac11d9aa10da Binary files /dev/null and b/site/static/emojis/1f6c1.png differ diff --git a/site/static/emojis/1f6c2.png b/site/static/emojis/1f6c2.png new file mode 100644 index 0000000000000..f3ded0a810d8a Binary files /dev/null and b/site/static/emojis/1f6c2.png differ diff --git a/site/static/emojis/1f6c3.png b/site/static/emojis/1f6c3.png new file mode 100644 index 0000000000000..b065c8d0da9e4 Binary files /dev/null and b/site/static/emojis/1f6c3.png differ diff --git a/site/static/emojis/1f6c4.png b/site/static/emojis/1f6c4.png new file mode 100644 index 0000000000000..6c15f41ed7c27 Binary files /dev/null and b/site/static/emojis/1f6c4.png differ diff --git a/site/static/emojis/1f6c5.png b/site/static/emojis/1f6c5.png new file mode 100644 index 0000000000000..755c5ca8e377b Binary files /dev/null and b/site/static/emojis/1f6c5.png differ diff --git a/site/static/emojis/1f6cb.png b/site/static/emojis/1f6cb.png new file mode 100644 index 0000000000000..2634ec310dbbf Binary files /dev/null and b/site/static/emojis/1f6cb.png differ diff --git a/site/static/emojis/1f6cc-1f3fb.png b/site/static/emojis/1f6cc-1f3fb.png new file mode 100644 index 0000000000000..1f9e71fc43117 Binary files /dev/null and b/site/static/emojis/1f6cc-1f3fb.png differ diff --git a/site/static/emojis/1f6cc-1f3fc.png b/site/static/emojis/1f6cc-1f3fc.png new file mode 100644 index 0000000000000..bf38c8114a292 Binary files /dev/null and b/site/static/emojis/1f6cc-1f3fc.png differ diff --git a/site/static/emojis/1f6cc-1f3fd.png b/site/static/emojis/1f6cc-1f3fd.png new file mode 100644 index 0000000000000..c1e9c14341a76 Binary files /dev/null and b/site/static/emojis/1f6cc-1f3fd.png differ diff --git a/site/static/emojis/1f6cc-1f3fe.png b/site/static/emojis/1f6cc-1f3fe.png new file mode 100644 index 0000000000000..8764e991d0139 Binary files /dev/null and b/site/static/emojis/1f6cc-1f3fe.png differ diff --git a/site/static/emojis/1f6cc-1f3ff.png b/site/static/emojis/1f6cc-1f3ff.png new file mode 100644 index 0000000000000..3e02dc6ddb431 Binary files /dev/null and b/site/static/emojis/1f6cc-1f3ff.png differ diff --git a/site/static/emojis/1f6cc.png b/site/static/emojis/1f6cc.png new file mode 100644 index 0000000000000..432262ecafb66 Binary files /dev/null and b/site/static/emojis/1f6cc.png differ diff --git a/site/static/emojis/1f6cd.png b/site/static/emojis/1f6cd.png new file mode 100644 index 0000000000000..6fd9e6bbe44ca Binary files /dev/null and b/site/static/emojis/1f6cd.png differ diff --git a/site/static/emojis/1f6ce.png b/site/static/emojis/1f6ce.png new file mode 100644 index 0000000000000..82d49dab57f5c Binary files /dev/null and b/site/static/emojis/1f6ce.png differ diff --git a/site/static/emojis/1f6cf.png b/site/static/emojis/1f6cf.png new file mode 100644 index 0000000000000..5b2a2b641f18c Binary files /dev/null and b/site/static/emojis/1f6cf.png differ diff --git a/site/static/emojis/1f6d0.png b/site/static/emojis/1f6d0.png new file mode 100644 index 0000000000000..c064314c8b185 Binary files /dev/null and b/site/static/emojis/1f6d0.png differ diff --git a/site/static/emojis/1f6d1.png b/site/static/emojis/1f6d1.png new file mode 100644 index 0000000000000..583f00dfd63c8 Binary files /dev/null and b/site/static/emojis/1f6d1.png differ diff --git a/site/static/emojis/1f6d2.png b/site/static/emojis/1f6d2.png new file mode 100644 index 0000000000000..1ca32e8330469 Binary files /dev/null and b/site/static/emojis/1f6d2.png differ diff --git a/site/static/emojis/1f6d5.png b/site/static/emojis/1f6d5.png new file mode 100644 index 0000000000000..2c20004e8adfe Binary files /dev/null and b/site/static/emojis/1f6d5.png differ diff --git a/site/static/emojis/1f6d6.png b/site/static/emojis/1f6d6.png new file mode 100644 index 0000000000000..16e300625eb7c Binary files /dev/null and b/site/static/emojis/1f6d6.png differ diff --git a/site/static/emojis/1f6d7.png b/site/static/emojis/1f6d7.png new file mode 100644 index 0000000000000..4670711dd63f6 Binary files /dev/null and b/site/static/emojis/1f6d7.png differ diff --git a/site/static/emojis/1f6dd.png b/site/static/emojis/1f6dd.png new file mode 100644 index 0000000000000..a74dd95ae4133 Binary files /dev/null and b/site/static/emojis/1f6dd.png differ diff --git a/site/static/emojis/1f6de.png b/site/static/emojis/1f6de.png new file mode 100644 index 0000000000000..13e845b4a733a Binary files /dev/null and b/site/static/emojis/1f6de.png differ diff --git a/site/static/emojis/1f6df.png b/site/static/emojis/1f6df.png new file mode 100644 index 0000000000000..6bab85229c2cf Binary files /dev/null and b/site/static/emojis/1f6df.png differ diff --git a/site/static/emojis/1f6e0.png b/site/static/emojis/1f6e0.png new file mode 100644 index 0000000000000..6b64d3a11cacb Binary files /dev/null and b/site/static/emojis/1f6e0.png differ diff --git a/site/static/emojis/1f6e1.png b/site/static/emojis/1f6e1.png new file mode 100644 index 0000000000000..b29d246639cf0 Binary files /dev/null and b/site/static/emojis/1f6e1.png differ diff --git a/site/static/emojis/1f6e2.png b/site/static/emojis/1f6e2.png new file mode 100644 index 0000000000000..32b10f1aa3df8 Binary files /dev/null and b/site/static/emojis/1f6e2.png differ diff --git a/site/static/emojis/1f6e3.png b/site/static/emojis/1f6e3.png new file mode 100644 index 0000000000000..50d3dca2b1f9b Binary files /dev/null and b/site/static/emojis/1f6e3.png differ diff --git a/site/static/emojis/1f6e4.png b/site/static/emojis/1f6e4.png new file mode 100644 index 0000000000000..fa1547075c49d Binary files /dev/null and b/site/static/emojis/1f6e4.png differ diff --git a/site/static/emojis/1f6e5.png b/site/static/emojis/1f6e5.png new file mode 100644 index 0000000000000..c573cb3d6c435 Binary files /dev/null and b/site/static/emojis/1f6e5.png differ diff --git a/site/static/emojis/1f6e9.png b/site/static/emojis/1f6e9.png new file mode 100644 index 0000000000000..ee9cfe1837966 Binary files /dev/null and b/site/static/emojis/1f6e9.png differ diff --git a/site/static/emojis/1f6eb.png b/site/static/emojis/1f6eb.png new file mode 100644 index 0000000000000..34531e823cdee Binary files /dev/null and b/site/static/emojis/1f6eb.png differ diff --git a/site/static/emojis/1f6ec.png b/site/static/emojis/1f6ec.png new file mode 100644 index 0000000000000..f44f5c295e798 Binary files /dev/null and b/site/static/emojis/1f6ec.png differ diff --git a/site/static/emojis/1f6f0.png b/site/static/emojis/1f6f0.png new file mode 100644 index 0000000000000..d834f7b8988dd Binary files /dev/null and b/site/static/emojis/1f6f0.png differ diff --git a/site/static/emojis/1f6f3.png b/site/static/emojis/1f6f3.png new file mode 100644 index 0000000000000..8f0be1dedd5d3 Binary files /dev/null and b/site/static/emojis/1f6f3.png differ diff --git a/site/static/emojis/1f6f4.png b/site/static/emojis/1f6f4.png new file mode 100644 index 0000000000000..bbd247acbaf1f Binary files /dev/null and b/site/static/emojis/1f6f4.png differ diff --git a/site/static/emojis/1f6f5.png b/site/static/emojis/1f6f5.png new file mode 100644 index 0000000000000..436efa3629faa Binary files /dev/null and b/site/static/emojis/1f6f5.png differ diff --git a/site/static/emojis/1f6f6.png b/site/static/emojis/1f6f6.png new file mode 100644 index 0000000000000..99b6c1bbca529 Binary files /dev/null and b/site/static/emojis/1f6f6.png differ diff --git a/site/static/emojis/1f6f7.png b/site/static/emojis/1f6f7.png new file mode 100644 index 0000000000000..e0f5eb7ee9ab2 Binary files /dev/null and b/site/static/emojis/1f6f7.png differ diff --git a/site/static/emojis/1f6f8.png b/site/static/emojis/1f6f8.png new file mode 100644 index 0000000000000..ae7b217a2fa40 Binary files /dev/null and b/site/static/emojis/1f6f8.png differ diff --git a/site/static/emojis/1f6f9.png b/site/static/emojis/1f6f9.png new file mode 100644 index 0000000000000..142b14d8d749d Binary files /dev/null and b/site/static/emojis/1f6f9.png differ diff --git a/site/static/emojis/1f6fa.png b/site/static/emojis/1f6fa.png new file mode 100644 index 0000000000000..a0157fb73562e Binary files /dev/null and b/site/static/emojis/1f6fa.png differ diff --git a/site/static/emojis/1f6fb.png b/site/static/emojis/1f6fb.png new file mode 100644 index 0000000000000..2bc271a7fd5ff Binary files /dev/null and b/site/static/emojis/1f6fb.png differ diff --git a/site/static/emojis/1f6fc.png b/site/static/emojis/1f6fc.png new file mode 100644 index 0000000000000..ba95b2eafa391 Binary files /dev/null and b/site/static/emojis/1f6fc.png differ diff --git a/site/static/emojis/1f7e0.png b/site/static/emojis/1f7e0.png new file mode 100644 index 0000000000000..006dfd73c181e Binary files /dev/null and b/site/static/emojis/1f7e0.png differ diff --git a/site/static/emojis/1f7e1.png b/site/static/emojis/1f7e1.png new file mode 100644 index 0000000000000..16b1609ced254 Binary files /dev/null and b/site/static/emojis/1f7e1.png differ diff --git a/site/static/emojis/1f7e2.png b/site/static/emojis/1f7e2.png new file mode 100644 index 0000000000000..8b267199d7c02 Binary files /dev/null and b/site/static/emojis/1f7e2.png differ diff --git a/site/static/emojis/1f7e3.png b/site/static/emojis/1f7e3.png new file mode 100644 index 0000000000000..194709defa0ee Binary files /dev/null and b/site/static/emojis/1f7e3.png differ diff --git a/site/static/emojis/1f7e4.png b/site/static/emojis/1f7e4.png new file mode 100644 index 0000000000000..57d9f46b04b2c Binary files /dev/null and b/site/static/emojis/1f7e4.png differ diff --git a/site/static/emojis/1f7e5.png b/site/static/emojis/1f7e5.png new file mode 100644 index 0000000000000..efd984d1b4bae Binary files /dev/null and b/site/static/emojis/1f7e5.png differ diff --git a/site/static/emojis/1f7e6.png b/site/static/emojis/1f7e6.png new file mode 100644 index 0000000000000..11304dd310255 Binary files /dev/null and b/site/static/emojis/1f7e6.png differ diff --git a/site/static/emojis/1f7e7.png b/site/static/emojis/1f7e7.png new file mode 100644 index 0000000000000..5d987f7b4de38 Binary files /dev/null and b/site/static/emojis/1f7e7.png differ diff --git a/site/static/emojis/1f7e8.png b/site/static/emojis/1f7e8.png new file mode 100644 index 0000000000000..a55b13e71767c Binary files /dev/null and b/site/static/emojis/1f7e8.png differ diff --git a/site/static/emojis/1f7e9.png b/site/static/emojis/1f7e9.png new file mode 100644 index 0000000000000..87fca3dd4b9b3 Binary files /dev/null and b/site/static/emojis/1f7e9.png differ diff --git a/site/static/emojis/1f7ea.png b/site/static/emojis/1f7ea.png new file mode 100644 index 0000000000000..2d15d4790715e Binary files /dev/null and b/site/static/emojis/1f7ea.png differ diff --git a/site/static/emojis/1f7eb.png b/site/static/emojis/1f7eb.png new file mode 100644 index 0000000000000..859afd69aedbe Binary files /dev/null and b/site/static/emojis/1f7eb.png differ diff --git a/site/static/emojis/1f7f0.png b/site/static/emojis/1f7f0.png new file mode 100644 index 0000000000000..cc01767c2ea71 Binary files /dev/null and b/site/static/emojis/1f7f0.png differ diff --git a/site/static/emojis/1f90c-1f3fb.png b/site/static/emojis/1f90c-1f3fb.png new file mode 100644 index 0000000000000..1efddf99b9c95 Binary files /dev/null and b/site/static/emojis/1f90c-1f3fb.png differ diff --git a/site/static/emojis/1f90c-1f3fc.png b/site/static/emojis/1f90c-1f3fc.png new file mode 100644 index 0000000000000..884ed0dacf0a3 Binary files /dev/null and b/site/static/emojis/1f90c-1f3fc.png differ diff --git a/site/static/emojis/1f90c-1f3fd.png b/site/static/emojis/1f90c-1f3fd.png new file mode 100644 index 0000000000000..00e0258211440 Binary files /dev/null and b/site/static/emojis/1f90c-1f3fd.png differ diff --git a/site/static/emojis/1f90c-1f3fe.png b/site/static/emojis/1f90c-1f3fe.png new file mode 100644 index 0000000000000..83de986a93f09 Binary files /dev/null and b/site/static/emojis/1f90c-1f3fe.png differ diff --git a/site/static/emojis/1f90c-1f3ff.png b/site/static/emojis/1f90c-1f3ff.png new file mode 100644 index 0000000000000..fb4a3faa21487 Binary files /dev/null and b/site/static/emojis/1f90c-1f3ff.png differ diff --git a/site/static/emojis/1f90c.png b/site/static/emojis/1f90c.png new file mode 100644 index 0000000000000..0fe8b356e2704 Binary files /dev/null and b/site/static/emojis/1f90c.png differ diff --git a/site/static/emojis/1f90d.png b/site/static/emojis/1f90d.png new file mode 100644 index 0000000000000..38b3ed8eb403b Binary files /dev/null and b/site/static/emojis/1f90d.png differ diff --git a/site/static/emojis/1f90e.png b/site/static/emojis/1f90e.png new file mode 100644 index 0000000000000..f33e827de9949 Binary files /dev/null and b/site/static/emojis/1f90e.png differ diff --git a/site/static/emojis/1f90f-1f3fb.png b/site/static/emojis/1f90f-1f3fb.png new file mode 100644 index 0000000000000..23eb251ded272 Binary files /dev/null and b/site/static/emojis/1f90f-1f3fb.png differ diff --git a/site/static/emojis/1f90f-1f3fc.png b/site/static/emojis/1f90f-1f3fc.png new file mode 100644 index 0000000000000..bb45b10f51936 Binary files /dev/null and b/site/static/emojis/1f90f-1f3fc.png differ diff --git a/site/static/emojis/1f90f-1f3fd.png b/site/static/emojis/1f90f-1f3fd.png new file mode 100644 index 0000000000000..f733bfbaa533b Binary files /dev/null and b/site/static/emojis/1f90f-1f3fd.png differ diff --git a/site/static/emojis/1f90f-1f3fe.png b/site/static/emojis/1f90f-1f3fe.png new file mode 100644 index 0000000000000..156da313b37bc Binary files /dev/null and b/site/static/emojis/1f90f-1f3fe.png differ diff --git a/site/static/emojis/1f90f-1f3ff.png b/site/static/emojis/1f90f-1f3ff.png new file mode 100644 index 0000000000000..883f5c79f8e3b Binary files /dev/null and b/site/static/emojis/1f90f-1f3ff.png differ diff --git a/site/static/emojis/1f90f.png b/site/static/emojis/1f90f.png new file mode 100644 index 0000000000000..a463f0d583101 Binary files /dev/null and b/site/static/emojis/1f90f.png differ diff --git a/site/static/emojis/1f910.png b/site/static/emojis/1f910.png new file mode 100644 index 0000000000000..8badd1278faef Binary files /dev/null and b/site/static/emojis/1f910.png differ diff --git a/site/static/emojis/1f911.png b/site/static/emojis/1f911.png new file mode 100644 index 0000000000000..e392e769dda1e Binary files /dev/null and b/site/static/emojis/1f911.png differ diff --git a/site/static/emojis/1f912.png b/site/static/emojis/1f912.png new file mode 100644 index 0000000000000..79d49eb0a641e Binary files /dev/null and b/site/static/emojis/1f912.png differ diff --git a/site/static/emojis/1f913.png b/site/static/emojis/1f913.png new file mode 100644 index 0000000000000..2e231e4e365e3 Binary files /dev/null and b/site/static/emojis/1f913.png differ diff --git a/site/static/emojis/1f914.png b/site/static/emojis/1f914.png new file mode 100644 index 0000000000000..354f5a14e28b1 Binary files /dev/null and b/site/static/emojis/1f914.png differ diff --git a/site/static/emojis/1f915.png b/site/static/emojis/1f915.png new file mode 100644 index 0000000000000..c8ff29266551e Binary files /dev/null and b/site/static/emojis/1f915.png differ diff --git a/site/static/emojis/1f916.png b/site/static/emojis/1f916.png new file mode 100644 index 0000000000000..3be87d30c7630 Binary files /dev/null and b/site/static/emojis/1f916.png differ diff --git a/site/static/emojis/1f917.png b/site/static/emojis/1f917.png new file mode 100644 index 0000000000000..6d0f049fac033 Binary files /dev/null and b/site/static/emojis/1f917.png differ diff --git a/site/static/emojis/1f918-1f3fb.png b/site/static/emojis/1f918-1f3fb.png new file mode 100644 index 0000000000000..e29d0ef48c8b5 Binary files /dev/null and b/site/static/emojis/1f918-1f3fb.png differ diff --git a/site/static/emojis/1f918-1f3fc.png b/site/static/emojis/1f918-1f3fc.png new file mode 100644 index 0000000000000..1e4ffa69931eb Binary files /dev/null and b/site/static/emojis/1f918-1f3fc.png differ diff --git a/site/static/emojis/1f918-1f3fd.png b/site/static/emojis/1f918-1f3fd.png new file mode 100644 index 0000000000000..e672efd740729 Binary files /dev/null and b/site/static/emojis/1f918-1f3fd.png differ diff --git a/site/static/emojis/1f918-1f3fe.png b/site/static/emojis/1f918-1f3fe.png new file mode 100644 index 0000000000000..9203c6e77147a Binary files /dev/null and b/site/static/emojis/1f918-1f3fe.png differ diff --git a/site/static/emojis/1f918-1f3ff.png b/site/static/emojis/1f918-1f3ff.png new file mode 100644 index 0000000000000..a0803dbff43f3 Binary files /dev/null and b/site/static/emojis/1f918-1f3ff.png differ diff --git a/site/static/emojis/1f918.png b/site/static/emojis/1f918.png new file mode 100644 index 0000000000000..47144764c718b Binary files /dev/null and b/site/static/emojis/1f918.png differ diff --git a/site/static/emojis/1f919-1f3fb.png b/site/static/emojis/1f919-1f3fb.png new file mode 100644 index 0000000000000..2c7675b58c5ff Binary files /dev/null and b/site/static/emojis/1f919-1f3fb.png differ diff --git a/site/static/emojis/1f919-1f3fc.png b/site/static/emojis/1f919-1f3fc.png new file mode 100644 index 0000000000000..1389cf46ca200 Binary files /dev/null and b/site/static/emojis/1f919-1f3fc.png differ diff --git a/site/static/emojis/1f919-1f3fd.png b/site/static/emojis/1f919-1f3fd.png new file mode 100644 index 0000000000000..7a20f3039dfaa Binary files /dev/null and b/site/static/emojis/1f919-1f3fd.png differ diff --git a/site/static/emojis/1f919-1f3fe.png b/site/static/emojis/1f919-1f3fe.png new file mode 100644 index 0000000000000..eac1f18e77570 Binary files /dev/null and b/site/static/emojis/1f919-1f3fe.png differ diff --git a/site/static/emojis/1f919-1f3ff.png b/site/static/emojis/1f919-1f3ff.png new file mode 100644 index 0000000000000..7b82fed4604c0 Binary files /dev/null and b/site/static/emojis/1f919-1f3ff.png differ diff --git a/site/static/emojis/1f919.png b/site/static/emojis/1f919.png new file mode 100644 index 0000000000000..6a4dcb42deddf Binary files /dev/null and b/site/static/emojis/1f919.png differ diff --git a/site/static/emojis/1f91a-1f3fb.png b/site/static/emojis/1f91a-1f3fb.png new file mode 100644 index 0000000000000..e23d29d97c22f Binary files /dev/null and b/site/static/emojis/1f91a-1f3fb.png differ diff --git a/site/static/emojis/1f91a-1f3fc.png b/site/static/emojis/1f91a-1f3fc.png new file mode 100644 index 0000000000000..18afbc05ec8ea Binary files /dev/null and b/site/static/emojis/1f91a-1f3fc.png differ diff --git a/site/static/emojis/1f91a-1f3fd.png b/site/static/emojis/1f91a-1f3fd.png new file mode 100644 index 0000000000000..bce5db45dc2e1 Binary files /dev/null and b/site/static/emojis/1f91a-1f3fd.png differ diff --git a/site/static/emojis/1f91a-1f3fe.png b/site/static/emojis/1f91a-1f3fe.png new file mode 100644 index 0000000000000..b5c4c4aebedc5 Binary files /dev/null and b/site/static/emojis/1f91a-1f3fe.png differ diff --git a/site/static/emojis/1f91a-1f3ff.png b/site/static/emojis/1f91a-1f3ff.png new file mode 100644 index 0000000000000..d1fe817445b9b Binary files /dev/null and b/site/static/emojis/1f91a-1f3ff.png differ diff --git a/site/static/emojis/1f91a.png b/site/static/emojis/1f91a.png new file mode 100644 index 0000000000000..6de21fb3f442a Binary files /dev/null and b/site/static/emojis/1f91a.png differ diff --git a/site/static/emojis/1f91b-1f3fb.png b/site/static/emojis/1f91b-1f3fb.png new file mode 100644 index 0000000000000..ad304c95dbc18 Binary files /dev/null and b/site/static/emojis/1f91b-1f3fb.png differ diff --git a/site/static/emojis/1f91b-1f3fc.png b/site/static/emojis/1f91b-1f3fc.png new file mode 100644 index 0000000000000..54c768aff741b Binary files /dev/null and b/site/static/emojis/1f91b-1f3fc.png differ diff --git a/site/static/emojis/1f91b-1f3fd.png b/site/static/emojis/1f91b-1f3fd.png new file mode 100644 index 0000000000000..0abece218b47f Binary files /dev/null and b/site/static/emojis/1f91b-1f3fd.png differ diff --git a/site/static/emojis/1f91b-1f3fe.png b/site/static/emojis/1f91b-1f3fe.png new file mode 100644 index 0000000000000..b24da132a9f1c Binary files /dev/null and b/site/static/emojis/1f91b-1f3fe.png differ diff --git a/site/static/emojis/1f91b-1f3ff.png b/site/static/emojis/1f91b-1f3ff.png new file mode 100644 index 0000000000000..465964a9d5ab6 Binary files /dev/null and b/site/static/emojis/1f91b-1f3ff.png differ diff --git a/site/static/emojis/1f91b.png b/site/static/emojis/1f91b.png new file mode 100644 index 0000000000000..0f44a9f4e802a Binary files /dev/null and b/site/static/emojis/1f91b.png differ diff --git a/site/static/emojis/1f91c-1f3fb.png b/site/static/emojis/1f91c-1f3fb.png new file mode 100644 index 0000000000000..ac7cb248de8c5 Binary files /dev/null and b/site/static/emojis/1f91c-1f3fb.png differ diff --git a/site/static/emojis/1f91c-1f3fc.png b/site/static/emojis/1f91c-1f3fc.png new file mode 100644 index 0000000000000..6227854be5246 Binary files /dev/null and b/site/static/emojis/1f91c-1f3fc.png differ diff --git a/site/static/emojis/1f91c-1f3fd.png b/site/static/emojis/1f91c-1f3fd.png new file mode 100644 index 0000000000000..d3c6ac0d0d6bb Binary files /dev/null and b/site/static/emojis/1f91c-1f3fd.png differ diff --git a/site/static/emojis/1f91c-1f3fe.png b/site/static/emojis/1f91c-1f3fe.png new file mode 100644 index 0000000000000..84f3b032b360e Binary files /dev/null and b/site/static/emojis/1f91c-1f3fe.png differ diff --git a/site/static/emojis/1f91c-1f3ff.png b/site/static/emojis/1f91c-1f3ff.png new file mode 100644 index 0000000000000..e8d3ee01d4f55 Binary files /dev/null and b/site/static/emojis/1f91c-1f3ff.png differ diff --git a/site/static/emojis/1f91c.png b/site/static/emojis/1f91c.png new file mode 100644 index 0000000000000..13ac5dd272c62 Binary files /dev/null and b/site/static/emojis/1f91c.png differ diff --git a/site/static/emojis/1f91d-1f3fb.png b/site/static/emojis/1f91d-1f3fb.png new file mode 100644 index 0000000000000..0f3d86ba4ec8a Binary files /dev/null and b/site/static/emojis/1f91d-1f3fb.png differ diff --git a/site/static/emojis/1f91d-1f3fc.png b/site/static/emojis/1f91d-1f3fc.png new file mode 100644 index 0000000000000..ef404f8d7150b Binary files /dev/null and b/site/static/emojis/1f91d-1f3fc.png differ diff --git a/site/static/emojis/1f91d-1f3fd.png b/site/static/emojis/1f91d-1f3fd.png new file mode 100644 index 0000000000000..ea4b53b28d2ea Binary files /dev/null and b/site/static/emojis/1f91d-1f3fd.png differ diff --git a/site/static/emojis/1f91d-1f3fe.png b/site/static/emojis/1f91d-1f3fe.png new file mode 100644 index 0000000000000..5e8363b6ea1be Binary files /dev/null and b/site/static/emojis/1f91d-1f3fe.png differ diff --git a/site/static/emojis/1f91d-1f3ff.png b/site/static/emojis/1f91d-1f3ff.png new file mode 100644 index 0000000000000..9e1eafb6eb09a Binary files /dev/null and b/site/static/emojis/1f91d-1f3ff.png differ diff --git a/site/static/emojis/1f91d.png b/site/static/emojis/1f91d.png new file mode 100644 index 0000000000000..c1cc9d069d405 Binary files /dev/null and b/site/static/emojis/1f91d.png differ diff --git a/site/static/emojis/1f91e-1f3fb.png b/site/static/emojis/1f91e-1f3fb.png new file mode 100644 index 0000000000000..e29a32222f538 Binary files /dev/null and b/site/static/emojis/1f91e-1f3fb.png differ diff --git a/site/static/emojis/1f91e-1f3fc.png b/site/static/emojis/1f91e-1f3fc.png new file mode 100644 index 0000000000000..17c89bdd22961 Binary files /dev/null and b/site/static/emojis/1f91e-1f3fc.png differ diff --git a/site/static/emojis/1f91e-1f3fd.png b/site/static/emojis/1f91e-1f3fd.png new file mode 100644 index 0000000000000..0f279d866052d Binary files /dev/null and b/site/static/emojis/1f91e-1f3fd.png differ diff --git a/site/static/emojis/1f91e-1f3fe.png b/site/static/emojis/1f91e-1f3fe.png new file mode 100644 index 0000000000000..3a01379cb09e6 Binary files /dev/null and b/site/static/emojis/1f91e-1f3fe.png differ diff --git a/site/static/emojis/1f91e-1f3ff.png b/site/static/emojis/1f91e-1f3ff.png new file mode 100644 index 0000000000000..282f833165f68 Binary files /dev/null and b/site/static/emojis/1f91e-1f3ff.png differ diff --git a/site/static/emojis/1f91e.png b/site/static/emojis/1f91e.png new file mode 100644 index 0000000000000..94d8e3a6823c0 Binary files /dev/null and b/site/static/emojis/1f91e.png differ diff --git a/site/static/emojis/1f91f-1f3fb.png b/site/static/emojis/1f91f-1f3fb.png new file mode 100644 index 0000000000000..050f9e1a851ac Binary files /dev/null and b/site/static/emojis/1f91f-1f3fb.png differ diff --git a/site/static/emojis/1f91f-1f3fc.png b/site/static/emojis/1f91f-1f3fc.png new file mode 100644 index 0000000000000..e1af8d68aa0cb Binary files /dev/null and b/site/static/emojis/1f91f-1f3fc.png differ diff --git a/site/static/emojis/1f91f-1f3fd.png b/site/static/emojis/1f91f-1f3fd.png new file mode 100644 index 0000000000000..f8b4ec3eb582f Binary files /dev/null and b/site/static/emojis/1f91f-1f3fd.png differ diff --git a/site/static/emojis/1f91f-1f3fe.png b/site/static/emojis/1f91f-1f3fe.png new file mode 100644 index 0000000000000..abd0c9887330c Binary files /dev/null and b/site/static/emojis/1f91f-1f3fe.png differ diff --git a/site/static/emojis/1f91f-1f3ff.png b/site/static/emojis/1f91f-1f3ff.png new file mode 100644 index 0000000000000..fd5e2f43150bc Binary files /dev/null and b/site/static/emojis/1f91f-1f3ff.png differ diff --git a/site/static/emojis/1f91f.png b/site/static/emojis/1f91f.png new file mode 100644 index 0000000000000..c9dd359430ddd Binary files /dev/null and b/site/static/emojis/1f91f.png differ diff --git a/site/static/emojis/1f920.png b/site/static/emojis/1f920.png new file mode 100644 index 0000000000000..179af9fc12a91 Binary files /dev/null and b/site/static/emojis/1f920.png differ diff --git a/site/static/emojis/1f921.png b/site/static/emojis/1f921.png new file mode 100644 index 0000000000000..befcd928f3bfb Binary files /dev/null and b/site/static/emojis/1f921.png differ diff --git a/site/static/emojis/1f922.png b/site/static/emojis/1f922.png new file mode 100644 index 0000000000000..726e07a71017f Binary files /dev/null and b/site/static/emojis/1f922.png differ diff --git a/site/static/emojis/1f923.png b/site/static/emojis/1f923.png new file mode 100644 index 0000000000000..06419921d4e57 Binary files /dev/null and b/site/static/emojis/1f923.png differ diff --git a/site/static/emojis/1f924.png b/site/static/emojis/1f924.png new file mode 100644 index 0000000000000..47733cd9f294f Binary files /dev/null and b/site/static/emojis/1f924.png differ diff --git a/site/static/emojis/1f925.png b/site/static/emojis/1f925.png new file mode 100644 index 0000000000000..98fc0890126dc Binary files /dev/null and b/site/static/emojis/1f925.png differ diff --git a/site/static/emojis/1f926-1f3fb-200d-2640-fe0f.png b/site/static/emojis/1f926-1f3fb-200d-2640-fe0f.png new file mode 100644 index 0000000000000..ff6832f23e7d5 Binary files /dev/null and b/site/static/emojis/1f926-1f3fb-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f926-1f3fb-200d-2642-fe0f.png b/site/static/emojis/1f926-1f3fb-200d-2642-fe0f.png new file mode 100644 index 0000000000000..9a880d0691bb1 Binary files /dev/null and b/site/static/emojis/1f926-1f3fb-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f926-1f3fb.png b/site/static/emojis/1f926-1f3fb.png new file mode 100644 index 0000000000000..1d4cc4a41a563 Binary files /dev/null and b/site/static/emojis/1f926-1f3fb.png differ diff --git a/site/static/emojis/1f926-1f3fc-200d-2640-fe0f.png b/site/static/emojis/1f926-1f3fc-200d-2640-fe0f.png new file mode 100644 index 0000000000000..fc54044bc9396 Binary files /dev/null and b/site/static/emojis/1f926-1f3fc-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f926-1f3fc-200d-2642-fe0f.png b/site/static/emojis/1f926-1f3fc-200d-2642-fe0f.png new file mode 100644 index 0000000000000..bc32acf9a1426 Binary files /dev/null and b/site/static/emojis/1f926-1f3fc-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f926-1f3fc.png b/site/static/emojis/1f926-1f3fc.png new file mode 100644 index 0000000000000..2628d2c6b505c Binary files /dev/null and b/site/static/emojis/1f926-1f3fc.png differ diff --git a/site/static/emojis/1f926-1f3fd-200d-2640-fe0f.png b/site/static/emojis/1f926-1f3fd-200d-2640-fe0f.png new file mode 100644 index 0000000000000..dd51cfd963676 Binary files /dev/null and b/site/static/emojis/1f926-1f3fd-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f926-1f3fd-200d-2642-fe0f.png b/site/static/emojis/1f926-1f3fd-200d-2642-fe0f.png new file mode 100644 index 0000000000000..8b4e34a454652 Binary files /dev/null and b/site/static/emojis/1f926-1f3fd-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f926-1f3fd.png b/site/static/emojis/1f926-1f3fd.png new file mode 100644 index 0000000000000..4ca0440921fc7 Binary files /dev/null and b/site/static/emojis/1f926-1f3fd.png differ diff --git a/site/static/emojis/1f926-1f3fe-200d-2640-fe0f.png b/site/static/emojis/1f926-1f3fe-200d-2640-fe0f.png new file mode 100644 index 0000000000000..756403023f9c4 Binary files /dev/null and b/site/static/emojis/1f926-1f3fe-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f926-1f3fe-200d-2642-fe0f.png b/site/static/emojis/1f926-1f3fe-200d-2642-fe0f.png new file mode 100644 index 0000000000000..ed371a16824ee Binary files /dev/null and b/site/static/emojis/1f926-1f3fe-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f926-1f3fe.png b/site/static/emojis/1f926-1f3fe.png new file mode 100644 index 0000000000000..c3c67ec5fb95e Binary files /dev/null and b/site/static/emojis/1f926-1f3fe.png differ diff --git a/site/static/emojis/1f926-1f3ff-200d-2640-fe0f.png b/site/static/emojis/1f926-1f3ff-200d-2640-fe0f.png new file mode 100644 index 0000000000000..622d19c8e8776 Binary files /dev/null and b/site/static/emojis/1f926-1f3ff-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f926-1f3ff-200d-2642-fe0f.png b/site/static/emojis/1f926-1f3ff-200d-2642-fe0f.png new file mode 100644 index 0000000000000..4ff960412db84 Binary files /dev/null and b/site/static/emojis/1f926-1f3ff-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f926-1f3ff.png b/site/static/emojis/1f926-1f3ff.png new file mode 100644 index 0000000000000..8cb2827b70528 Binary files /dev/null and b/site/static/emojis/1f926-1f3ff.png differ diff --git a/site/static/emojis/1f926-200d-2640-fe0f.png b/site/static/emojis/1f926-200d-2640-fe0f.png new file mode 100644 index 0000000000000..bd2226b024e44 Binary files /dev/null and b/site/static/emojis/1f926-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f926-200d-2642-fe0f.png b/site/static/emojis/1f926-200d-2642-fe0f.png new file mode 100644 index 0000000000000..1ca028b734bd4 Binary files /dev/null and b/site/static/emojis/1f926-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f926.png b/site/static/emojis/1f926.png new file mode 100644 index 0000000000000..0e5111fa633ca Binary files /dev/null and b/site/static/emojis/1f926.png differ diff --git a/site/static/emojis/1f927.png b/site/static/emojis/1f927.png new file mode 100644 index 0000000000000..c5b524ec6c176 Binary files /dev/null and b/site/static/emojis/1f927.png differ diff --git a/site/static/emojis/1f928.png b/site/static/emojis/1f928.png new file mode 100644 index 0000000000000..db22dd7d2f330 Binary files /dev/null and b/site/static/emojis/1f928.png differ diff --git a/site/static/emojis/1f929.png b/site/static/emojis/1f929.png new file mode 100644 index 0000000000000..dc94d7d914901 Binary files /dev/null and b/site/static/emojis/1f929.png differ diff --git a/site/static/emojis/1f92a.png b/site/static/emojis/1f92a.png new file mode 100644 index 0000000000000..bf2d10381a9d5 Binary files /dev/null and b/site/static/emojis/1f92a.png differ diff --git a/site/static/emojis/1f92b.png b/site/static/emojis/1f92b.png new file mode 100644 index 0000000000000..3808dd3553a4e Binary files /dev/null and b/site/static/emojis/1f92b.png differ diff --git a/site/static/emojis/1f92c.png b/site/static/emojis/1f92c.png new file mode 100644 index 0000000000000..5cde0c98da18a Binary files /dev/null and b/site/static/emojis/1f92c.png differ diff --git a/site/static/emojis/1f92d.png b/site/static/emojis/1f92d.png new file mode 100644 index 0000000000000..6cc00cc7937b0 Binary files /dev/null and b/site/static/emojis/1f92d.png differ diff --git a/site/static/emojis/1f92e.png b/site/static/emojis/1f92e.png new file mode 100644 index 0000000000000..47ddebaa9b457 Binary files /dev/null and b/site/static/emojis/1f92e.png differ diff --git a/site/static/emojis/1f92f.png b/site/static/emojis/1f92f.png new file mode 100644 index 0000000000000..a6ea47ee3f6c4 Binary files /dev/null and b/site/static/emojis/1f92f.png differ diff --git a/site/static/emojis/1f930-1f3fb.png b/site/static/emojis/1f930-1f3fb.png new file mode 100644 index 0000000000000..6caaf2e865966 Binary files /dev/null and b/site/static/emojis/1f930-1f3fb.png differ diff --git a/site/static/emojis/1f930-1f3fc.png b/site/static/emojis/1f930-1f3fc.png new file mode 100644 index 0000000000000..31a45c3ca477e Binary files /dev/null and b/site/static/emojis/1f930-1f3fc.png differ diff --git a/site/static/emojis/1f930-1f3fd.png b/site/static/emojis/1f930-1f3fd.png new file mode 100644 index 0000000000000..93f4a2a5a996a Binary files /dev/null and b/site/static/emojis/1f930-1f3fd.png differ diff --git a/site/static/emojis/1f930-1f3fe.png b/site/static/emojis/1f930-1f3fe.png new file mode 100644 index 0000000000000..11fc34f553ebc Binary files /dev/null and b/site/static/emojis/1f930-1f3fe.png differ diff --git a/site/static/emojis/1f930-1f3ff.png b/site/static/emojis/1f930-1f3ff.png new file mode 100644 index 0000000000000..42cd09c285e53 Binary files /dev/null and b/site/static/emojis/1f930-1f3ff.png differ diff --git a/site/static/emojis/1f930.png b/site/static/emojis/1f930.png new file mode 100644 index 0000000000000..685a2e7ec5077 Binary files /dev/null and b/site/static/emojis/1f930.png differ diff --git a/site/static/emojis/1f931-1f3fb.png b/site/static/emojis/1f931-1f3fb.png new file mode 100644 index 0000000000000..b129c3fdabbcf Binary files /dev/null and b/site/static/emojis/1f931-1f3fb.png differ diff --git a/site/static/emojis/1f931-1f3fc.png b/site/static/emojis/1f931-1f3fc.png new file mode 100644 index 0000000000000..8bdeb62553932 Binary files /dev/null and b/site/static/emojis/1f931-1f3fc.png differ diff --git a/site/static/emojis/1f931-1f3fd.png b/site/static/emojis/1f931-1f3fd.png new file mode 100644 index 0000000000000..c721900959a21 Binary files /dev/null and b/site/static/emojis/1f931-1f3fd.png differ diff --git a/site/static/emojis/1f931-1f3fe.png b/site/static/emojis/1f931-1f3fe.png new file mode 100644 index 0000000000000..ec6060b74bfe2 Binary files /dev/null and b/site/static/emojis/1f931-1f3fe.png differ diff --git a/site/static/emojis/1f931-1f3ff.png b/site/static/emojis/1f931-1f3ff.png new file mode 100644 index 0000000000000..eed8063463e5f Binary files /dev/null and b/site/static/emojis/1f931-1f3ff.png differ diff --git a/site/static/emojis/1f931.png b/site/static/emojis/1f931.png new file mode 100644 index 0000000000000..dba766f9a0478 Binary files /dev/null and b/site/static/emojis/1f931.png differ diff --git a/site/static/emojis/1f932-1f3fb.png b/site/static/emojis/1f932-1f3fb.png new file mode 100644 index 0000000000000..535047e4aca13 Binary files /dev/null and b/site/static/emojis/1f932-1f3fb.png differ diff --git a/site/static/emojis/1f932-1f3fc.png b/site/static/emojis/1f932-1f3fc.png new file mode 100644 index 0000000000000..205f7b7fb07f3 Binary files /dev/null and b/site/static/emojis/1f932-1f3fc.png differ diff --git a/site/static/emojis/1f932-1f3fd.png b/site/static/emojis/1f932-1f3fd.png new file mode 100644 index 0000000000000..92fbfe3b253e9 Binary files /dev/null and b/site/static/emojis/1f932-1f3fd.png differ diff --git a/site/static/emojis/1f932-1f3fe.png b/site/static/emojis/1f932-1f3fe.png new file mode 100644 index 0000000000000..5b363bfa9c906 Binary files /dev/null and b/site/static/emojis/1f932-1f3fe.png differ diff --git a/site/static/emojis/1f932-1f3ff.png b/site/static/emojis/1f932-1f3ff.png new file mode 100644 index 0000000000000..7cc2755df5793 Binary files /dev/null and b/site/static/emojis/1f932-1f3ff.png differ diff --git a/site/static/emojis/1f932.png b/site/static/emojis/1f932.png new file mode 100644 index 0000000000000..711417518980e Binary files /dev/null and b/site/static/emojis/1f932.png differ diff --git a/site/static/emojis/1f933-1f3fb.png b/site/static/emojis/1f933-1f3fb.png new file mode 100644 index 0000000000000..b117100ef6f92 Binary files /dev/null and b/site/static/emojis/1f933-1f3fb.png differ diff --git a/site/static/emojis/1f933-1f3fc.png b/site/static/emojis/1f933-1f3fc.png new file mode 100644 index 0000000000000..4b9373c58402e Binary files /dev/null and b/site/static/emojis/1f933-1f3fc.png differ diff --git a/site/static/emojis/1f933-1f3fd.png b/site/static/emojis/1f933-1f3fd.png new file mode 100644 index 0000000000000..929b6b942a32a Binary files /dev/null and b/site/static/emojis/1f933-1f3fd.png differ diff --git a/site/static/emojis/1f933-1f3fe.png b/site/static/emojis/1f933-1f3fe.png new file mode 100644 index 0000000000000..1308327dd8348 Binary files /dev/null and b/site/static/emojis/1f933-1f3fe.png differ diff --git a/site/static/emojis/1f933-1f3ff.png b/site/static/emojis/1f933-1f3ff.png new file mode 100644 index 0000000000000..549c6e4e9ceb9 Binary files /dev/null and b/site/static/emojis/1f933-1f3ff.png differ diff --git a/site/static/emojis/1f933.png b/site/static/emojis/1f933.png new file mode 100644 index 0000000000000..f5eb251cbf4f3 Binary files /dev/null and b/site/static/emojis/1f933.png differ diff --git a/site/static/emojis/1f934-1f3fb.png b/site/static/emojis/1f934-1f3fb.png new file mode 100644 index 0000000000000..ebc44218ad616 Binary files /dev/null and b/site/static/emojis/1f934-1f3fb.png differ diff --git a/site/static/emojis/1f934-1f3fc.png b/site/static/emojis/1f934-1f3fc.png new file mode 100644 index 0000000000000..fe8fe2230b6e5 Binary files /dev/null and b/site/static/emojis/1f934-1f3fc.png differ diff --git a/site/static/emojis/1f934-1f3fd.png b/site/static/emojis/1f934-1f3fd.png new file mode 100644 index 0000000000000..d2c58410be23c Binary files /dev/null and b/site/static/emojis/1f934-1f3fd.png differ diff --git a/site/static/emojis/1f934-1f3fe.png b/site/static/emojis/1f934-1f3fe.png new file mode 100644 index 0000000000000..9079fe487642b Binary files /dev/null and b/site/static/emojis/1f934-1f3fe.png differ diff --git a/site/static/emojis/1f934-1f3ff.png b/site/static/emojis/1f934-1f3ff.png new file mode 100644 index 0000000000000..1a781d825acaf Binary files /dev/null and b/site/static/emojis/1f934-1f3ff.png differ diff --git a/site/static/emojis/1f934.png b/site/static/emojis/1f934.png new file mode 100644 index 0000000000000..9527136fa7f96 Binary files /dev/null and b/site/static/emojis/1f934.png differ diff --git a/site/static/emojis/1f935-1f3fb-200d-2640-fe0f.png b/site/static/emojis/1f935-1f3fb-200d-2640-fe0f.png new file mode 100644 index 0000000000000..981df10b9eb53 Binary files /dev/null and b/site/static/emojis/1f935-1f3fb-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f935-1f3fb-200d-2642-fe0f.png b/site/static/emojis/1f935-1f3fb-200d-2642-fe0f.png new file mode 100644 index 0000000000000..22f79e5263ffc Binary files /dev/null and b/site/static/emojis/1f935-1f3fb-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f935-1f3fb.png b/site/static/emojis/1f935-1f3fb.png new file mode 100644 index 0000000000000..fb2c50915604d Binary files /dev/null and b/site/static/emojis/1f935-1f3fb.png differ diff --git a/site/static/emojis/1f935-1f3fc-200d-2640-fe0f.png b/site/static/emojis/1f935-1f3fc-200d-2640-fe0f.png new file mode 100644 index 0000000000000..5f7d09f6a9daa Binary files /dev/null and b/site/static/emojis/1f935-1f3fc-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f935-1f3fc-200d-2642-fe0f.png b/site/static/emojis/1f935-1f3fc-200d-2642-fe0f.png new file mode 100644 index 0000000000000..3f636db81d357 Binary files /dev/null and b/site/static/emojis/1f935-1f3fc-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f935-1f3fc.png b/site/static/emojis/1f935-1f3fc.png new file mode 100644 index 0000000000000..03f5023e4e69e Binary files /dev/null and b/site/static/emojis/1f935-1f3fc.png differ diff --git a/site/static/emojis/1f935-1f3fd-200d-2640-fe0f.png b/site/static/emojis/1f935-1f3fd-200d-2640-fe0f.png new file mode 100644 index 0000000000000..6a7726db161cd Binary files /dev/null and b/site/static/emojis/1f935-1f3fd-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f935-1f3fd-200d-2642-fe0f.png b/site/static/emojis/1f935-1f3fd-200d-2642-fe0f.png new file mode 100644 index 0000000000000..a631877785a9d Binary files /dev/null and b/site/static/emojis/1f935-1f3fd-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f935-1f3fd.png b/site/static/emojis/1f935-1f3fd.png new file mode 100644 index 0000000000000..a3675888b528d Binary files /dev/null and b/site/static/emojis/1f935-1f3fd.png differ diff --git a/site/static/emojis/1f935-1f3fe-200d-2640-fe0f.png b/site/static/emojis/1f935-1f3fe-200d-2640-fe0f.png new file mode 100644 index 0000000000000..95a815eab43cc Binary files /dev/null and b/site/static/emojis/1f935-1f3fe-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f935-1f3fe-200d-2642-fe0f.png b/site/static/emojis/1f935-1f3fe-200d-2642-fe0f.png new file mode 100644 index 0000000000000..2d3166fe0cbef Binary files /dev/null and b/site/static/emojis/1f935-1f3fe-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f935-1f3fe.png b/site/static/emojis/1f935-1f3fe.png new file mode 100644 index 0000000000000..5133d6d9d1c5b Binary files /dev/null and b/site/static/emojis/1f935-1f3fe.png differ diff --git a/site/static/emojis/1f935-1f3ff-200d-2640-fe0f.png b/site/static/emojis/1f935-1f3ff-200d-2640-fe0f.png new file mode 100644 index 0000000000000..693097e5c015f Binary files /dev/null and b/site/static/emojis/1f935-1f3ff-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f935-1f3ff-200d-2642-fe0f.png b/site/static/emojis/1f935-1f3ff-200d-2642-fe0f.png new file mode 100644 index 0000000000000..340d98fc1891b Binary files /dev/null and b/site/static/emojis/1f935-1f3ff-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f935-1f3ff.png b/site/static/emojis/1f935-1f3ff.png new file mode 100644 index 0000000000000..17ff9f3f75f4f Binary files /dev/null and b/site/static/emojis/1f935-1f3ff.png differ diff --git a/site/static/emojis/1f935-200d-2640-fe0f.png b/site/static/emojis/1f935-200d-2640-fe0f.png new file mode 100644 index 0000000000000..fad0f83bcea66 Binary files /dev/null and b/site/static/emojis/1f935-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f935-200d-2642-fe0f.png b/site/static/emojis/1f935-200d-2642-fe0f.png new file mode 100644 index 0000000000000..f5e421bd3a81c Binary files /dev/null and b/site/static/emojis/1f935-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f935.png b/site/static/emojis/1f935.png new file mode 100644 index 0000000000000..cc67ef424686d Binary files /dev/null and b/site/static/emojis/1f935.png differ diff --git a/site/static/emojis/1f936-1f3fb.png b/site/static/emojis/1f936-1f3fb.png new file mode 100644 index 0000000000000..6d3c340692069 Binary files /dev/null and b/site/static/emojis/1f936-1f3fb.png differ diff --git a/site/static/emojis/1f936-1f3fc.png b/site/static/emojis/1f936-1f3fc.png new file mode 100644 index 0000000000000..52c9ba810d3b3 Binary files /dev/null and b/site/static/emojis/1f936-1f3fc.png differ diff --git a/site/static/emojis/1f936-1f3fd.png b/site/static/emojis/1f936-1f3fd.png new file mode 100644 index 0000000000000..9651385708daf Binary files /dev/null and b/site/static/emojis/1f936-1f3fd.png differ diff --git a/site/static/emojis/1f936-1f3fe.png b/site/static/emojis/1f936-1f3fe.png new file mode 100644 index 0000000000000..3ec0c5686e2e6 Binary files /dev/null and b/site/static/emojis/1f936-1f3fe.png differ diff --git a/site/static/emojis/1f936-1f3ff.png b/site/static/emojis/1f936-1f3ff.png new file mode 100644 index 0000000000000..f86966be832c9 Binary files /dev/null and b/site/static/emojis/1f936-1f3ff.png differ diff --git a/site/static/emojis/1f936.png b/site/static/emojis/1f936.png new file mode 100644 index 0000000000000..56dc794884bbb Binary files /dev/null and b/site/static/emojis/1f936.png differ diff --git a/site/static/emojis/1f937-1f3fb-200d-2640-fe0f.png b/site/static/emojis/1f937-1f3fb-200d-2640-fe0f.png new file mode 100644 index 0000000000000..35d2519be0aaf Binary files /dev/null and b/site/static/emojis/1f937-1f3fb-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f937-1f3fb-200d-2642-fe0f.png b/site/static/emojis/1f937-1f3fb-200d-2642-fe0f.png new file mode 100644 index 0000000000000..6f4807fb97289 Binary files /dev/null and b/site/static/emojis/1f937-1f3fb-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f937-1f3fb.png b/site/static/emojis/1f937-1f3fb.png new file mode 100644 index 0000000000000..8f8b579da179d Binary files /dev/null and b/site/static/emojis/1f937-1f3fb.png differ diff --git a/site/static/emojis/1f937-1f3fc-200d-2640-fe0f.png b/site/static/emojis/1f937-1f3fc-200d-2640-fe0f.png new file mode 100644 index 0000000000000..d0f463f708996 Binary files /dev/null and b/site/static/emojis/1f937-1f3fc-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f937-1f3fc-200d-2642-fe0f.png b/site/static/emojis/1f937-1f3fc-200d-2642-fe0f.png new file mode 100644 index 0000000000000..c882436eba111 Binary files /dev/null and b/site/static/emojis/1f937-1f3fc-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f937-1f3fc.png b/site/static/emojis/1f937-1f3fc.png new file mode 100644 index 0000000000000..622a19295bc40 Binary files /dev/null and b/site/static/emojis/1f937-1f3fc.png differ diff --git a/site/static/emojis/1f937-1f3fd-200d-2640-fe0f.png b/site/static/emojis/1f937-1f3fd-200d-2640-fe0f.png new file mode 100644 index 0000000000000..d839134f897ef Binary files /dev/null and b/site/static/emojis/1f937-1f3fd-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f937-1f3fd-200d-2642-fe0f.png b/site/static/emojis/1f937-1f3fd-200d-2642-fe0f.png new file mode 100644 index 0000000000000..b73d2c5e05fb3 Binary files /dev/null and b/site/static/emojis/1f937-1f3fd-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f937-1f3fd.png b/site/static/emojis/1f937-1f3fd.png new file mode 100644 index 0000000000000..eed23a44b7024 Binary files /dev/null and b/site/static/emojis/1f937-1f3fd.png differ diff --git a/site/static/emojis/1f937-1f3fe-200d-2640-fe0f.png b/site/static/emojis/1f937-1f3fe-200d-2640-fe0f.png new file mode 100644 index 0000000000000..b773e32d4c92a Binary files /dev/null and b/site/static/emojis/1f937-1f3fe-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f937-1f3fe-200d-2642-fe0f.png b/site/static/emojis/1f937-1f3fe-200d-2642-fe0f.png new file mode 100644 index 0000000000000..48b8959adca07 Binary files /dev/null and b/site/static/emojis/1f937-1f3fe-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f937-1f3fe.png b/site/static/emojis/1f937-1f3fe.png new file mode 100644 index 0000000000000..5490832285614 Binary files /dev/null and b/site/static/emojis/1f937-1f3fe.png differ diff --git a/site/static/emojis/1f937-1f3ff-200d-2640-fe0f.png b/site/static/emojis/1f937-1f3ff-200d-2640-fe0f.png new file mode 100644 index 0000000000000..4b1468dac2a8f Binary files /dev/null and b/site/static/emojis/1f937-1f3ff-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f937-1f3ff-200d-2642-fe0f.png b/site/static/emojis/1f937-1f3ff-200d-2642-fe0f.png new file mode 100644 index 0000000000000..e9df52e5cb40f Binary files /dev/null and b/site/static/emojis/1f937-1f3ff-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f937-1f3ff.png b/site/static/emojis/1f937-1f3ff.png new file mode 100644 index 0000000000000..4fd0d85d9c946 Binary files /dev/null and b/site/static/emojis/1f937-1f3ff.png differ diff --git a/site/static/emojis/1f937-200d-2640-fe0f.png b/site/static/emojis/1f937-200d-2640-fe0f.png new file mode 100644 index 0000000000000..00f36c6b2b30b Binary files /dev/null and b/site/static/emojis/1f937-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f937-200d-2642-fe0f.png b/site/static/emojis/1f937-200d-2642-fe0f.png new file mode 100644 index 0000000000000..4e4c51d0154d5 Binary files /dev/null and b/site/static/emojis/1f937-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f937.png b/site/static/emojis/1f937.png new file mode 100644 index 0000000000000..92b5575c35264 Binary files /dev/null and b/site/static/emojis/1f937.png differ diff --git a/site/static/emojis/1f938-1f3fb-200d-2640-fe0f.png b/site/static/emojis/1f938-1f3fb-200d-2640-fe0f.png new file mode 100644 index 0000000000000..734e052c7433a Binary files /dev/null and b/site/static/emojis/1f938-1f3fb-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f938-1f3fb-200d-2642-fe0f.png b/site/static/emojis/1f938-1f3fb-200d-2642-fe0f.png new file mode 100644 index 0000000000000..d1ac33c3e78bc Binary files /dev/null and b/site/static/emojis/1f938-1f3fb-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f938-1f3fb.png b/site/static/emojis/1f938-1f3fb.png new file mode 100644 index 0000000000000..e993855704802 Binary files /dev/null and b/site/static/emojis/1f938-1f3fb.png differ diff --git a/site/static/emojis/1f938-1f3fc-200d-2640-fe0f.png b/site/static/emojis/1f938-1f3fc-200d-2640-fe0f.png new file mode 100644 index 0000000000000..9dd74e26a6cb0 Binary files /dev/null and b/site/static/emojis/1f938-1f3fc-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f938-1f3fc-200d-2642-fe0f.png b/site/static/emojis/1f938-1f3fc-200d-2642-fe0f.png new file mode 100644 index 0000000000000..ccfa25496cb2d Binary files /dev/null and b/site/static/emojis/1f938-1f3fc-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f938-1f3fc.png b/site/static/emojis/1f938-1f3fc.png new file mode 100644 index 0000000000000..a44b98416e8e1 Binary files /dev/null and b/site/static/emojis/1f938-1f3fc.png differ diff --git a/site/static/emojis/1f938-1f3fd-200d-2640-fe0f.png b/site/static/emojis/1f938-1f3fd-200d-2640-fe0f.png new file mode 100644 index 0000000000000..71061064d56d6 Binary files /dev/null and b/site/static/emojis/1f938-1f3fd-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f938-1f3fd-200d-2642-fe0f.png b/site/static/emojis/1f938-1f3fd-200d-2642-fe0f.png new file mode 100644 index 0000000000000..006782472b045 Binary files /dev/null and b/site/static/emojis/1f938-1f3fd-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f938-1f3fd.png b/site/static/emojis/1f938-1f3fd.png new file mode 100644 index 0000000000000..c2cb4e7918021 Binary files /dev/null and b/site/static/emojis/1f938-1f3fd.png differ diff --git a/site/static/emojis/1f938-1f3fe-200d-2640-fe0f.png b/site/static/emojis/1f938-1f3fe-200d-2640-fe0f.png new file mode 100644 index 0000000000000..b727f95c9c126 Binary files /dev/null and b/site/static/emojis/1f938-1f3fe-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f938-1f3fe-200d-2642-fe0f.png b/site/static/emojis/1f938-1f3fe-200d-2642-fe0f.png new file mode 100644 index 0000000000000..34c246667a329 Binary files /dev/null and b/site/static/emojis/1f938-1f3fe-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f938-1f3fe.png b/site/static/emojis/1f938-1f3fe.png new file mode 100644 index 0000000000000..6c02fd65d14a5 Binary files /dev/null and b/site/static/emojis/1f938-1f3fe.png differ diff --git a/site/static/emojis/1f938-1f3ff-200d-2640-fe0f.png b/site/static/emojis/1f938-1f3ff-200d-2640-fe0f.png new file mode 100644 index 0000000000000..4b1bf03787354 Binary files /dev/null and b/site/static/emojis/1f938-1f3ff-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f938-1f3ff-200d-2642-fe0f.png b/site/static/emojis/1f938-1f3ff-200d-2642-fe0f.png new file mode 100644 index 0000000000000..fe77b725e497a Binary files /dev/null and b/site/static/emojis/1f938-1f3ff-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f938-1f3ff.png b/site/static/emojis/1f938-1f3ff.png new file mode 100644 index 0000000000000..8c5919fd80f08 Binary files /dev/null and b/site/static/emojis/1f938-1f3ff.png differ diff --git a/site/static/emojis/1f938-200d-2640-fe0f.png b/site/static/emojis/1f938-200d-2640-fe0f.png new file mode 100644 index 0000000000000..dfe3070597bb8 Binary files /dev/null and b/site/static/emojis/1f938-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f938-200d-2642-fe0f.png b/site/static/emojis/1f938-200d-2642-fe0f.png new file mode 100644 index 0000000000000..e783fe7489622 Binary files /dev/null and b/site/static/emojis/1f938-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f938.png b/site/static/emojis/1f938.png new file mode 100644 index 0000000000000..00dc8f42144b7 Binary files /dev/null and b/site/static/emojis/1f938.png differ diff --git a/site/static/emojis/1f939-1f3fb-200d-2640-fe0f.png b/site/static/emojis/1f939-1f3fb-200d-2640-fe0f.png new file mode 100644 index 0000000000000..8840e5587f029 Binary files /dev/null and b/site/static/emojis/1f939-1f3fb-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f939-1f3fb-200d-2642-fe0f.png b/site/static/emojis/1f939-1f3fb-200d-2642-fe0f.png new file mode 100644 index 0000000000000..d4c8c6cdf9533 Binary files /dev/null and b/site/static/emojis/1f939-1f3fb-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f939-1f3fb.png b/site/static/emojis/1f939-1f3fb.png new file mode 100644 index 0000000000000..253b8b880cefd Binary files /dev/null and b/site/static/emojis/1f939-1f3fb.png differ diff --git a/site/static/emojis/1f939-1f3fc-200d-2640-fe0f.png b/site/static/emojis/1f939-1f3fc-200d-2640-fe0f.png new file mode 100644 index 0000000000000..22770625fbf3d Binary files /dev/null and b/site/static/emojis/1f939-1f3fc-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f939-1f3fc-200d-2642-fe0f.png b/site/static/emojis/1f939-1f3fc-200d-2642-fe0f.png new file mode 100644 index 0000000000000..f075c7d1c86cd Binary files /dev/null and b/site/static/emojis/1f939-1f3fc-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f939-1f3fc.png b/site/static/emojis/1f939-1f3fc.png new file mode 100644 index 0000000000000..1056ad88eda55 Binary files /dev/null and b/site/static/emojis/1f939-1f3fc.png differ diff --git a/site/static/emojis/1f939-1f3fd-200d-2640-fe0f.png b/site/static/emojis/1f939-1f3fd-200d-2640-fe0f.png new file mode 100644 index 0000000000000..21b04a87ef013 Binary files /dev/null and b/site/static/emojis/1f939-1f3fd-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f939-1f3fd-200d-2642-fe0f.png b/site/static/emojis/1f939-1f3fd-200d-2642-fe0f.png new file mode 100644 index 0000000000000..95bc0a860124b Binary files /dev/null and b/site/static/emojis/1f939-1f3fd-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f939-1f3fd.png b/site/static/emojis/1f939-1f3fd.png new file mode 100644 index 0000000000000..1498c77f4fa98 Binary files /dev/null and b/site/static/emojis/1f939-1f3fd.png differ diff --git a/site/static/emojis/1f939-1f3fe-200d-2640-fe0f.png b/site/static/emojis/1f939-1f3fe-200d-2640-fe0f.png new file mode 100644 index 0000000000000..aa8e325bd62b3 Binary files /dev/null and b/site/static/emojis/1f939-1f3fe-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f939-1f3fe-200d-2642-fe0f.png b/site/static/emojis/1f939-1f3fe-200d-2642-fe0f.png new file mode 100644 index 0000000000000..c038dd8bff299 Binary files /dev/null and b/site/static/emojis/1f939-1f3fe-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f939-1f3fe.png b/site/static/emojis/1f939-1f3fe.png new file mode 100644 index 0000000000000..618dc1697bbcd Binary files /dev/null and b/site/static/emojis/1f939-1f3fe.png differ diff --git a/site/static/emojis/1f939-1f3ff-200d-2640-fe0f.png b/site/static/emojis/1f939-1f3ff-200d-2640-fe0f.png new file mode 100644 index 0000000000000..461600ba195da Binary files /dev/null and b/site/static/emojis/1f939-1f3ff-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f939-1f3ff-200d-2642-fe0f.png b/site/static/emojis/1f939-1f3ff-200d-2642-fe0f.png new file mode 100644 index 0000000000000..ae2401b480cc1 Binary files /dev/null and b/site/static/emojis/1f939-1f3ff-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f939-1f3ff.png b/site/static/emojis/1f939-1f3ff.png new file mode 100644 index 0000000000000..02222272ad403 Binary files /dev/null and b/site/static/emojis/1f939-1f3ff.png differ diff --git a/site/static/emojis/1f939-200d-2640-fe0f.png b/site/static/emojis/1f939-200d-2640-fe0f.png new file mode 100644 index 0000000000000..482bf46dece0d Binary files /dev/null and b/site/static/emojis/1f939-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f939-200d-2642-fe0f.png b/site/static/emojis/1f939-200d-2642-fe0f.png new file mode 100644 index 0000000000000..555d35ccd939b Binary files /dev/null and b/site/static/emojis/1f939-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f939.png b/site/static/emojis/1f939.png new file mode 100644 index 0000000000000..04e2c586eee7f Binary files /dev/null and b/site/static/emojis/1f939.png differ diff --git a/site/static/emojis/1f93a.png b/site/static/emojis/1f93a.png new file mode 100644 index 0000000000000..0781fdab5001b Binary files /dev/null and b/site/static/emojis/1f93a.png differ diff --git a/site/static/emojis/1f93c-200d-2640-fe0f.png b/site/static/emojis/1f93c-200d-2640-fe0f.png new file mode 100644 index 0000000000000..8f51f00fc2112 Binary files /dev/null and b/site/static/emojis/1f93c-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f93c-200d-2642-fe0f.png b/site/static/emojis/1f93c-200d-2642-fe0f.png new file mode 100644 index 0000000000000..259c87e7c196a Binary files /dev/null and b/site/static/emojis/1f93c-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f93c.png b/site/static/emojis/1f93c.png new file mode 100644 index 0000000000000..3d50b96c0ddbb Binary files /dev/null and b/site/static/emojis/1f93c.png differ diff --git a/site/static/emojis/1f93d-1f3fb-200d-2640-fe0f.png b/site/static/emojis/1f93d-1f3fb-200d-2640-fe0f.png new file mode 100644 index 0000000000000..3633cb03dc8ec Binary files /dev/null and b/site/static/emojis/1f93d-1f3fb-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f93d-1f3fb-200d-2642-fe0f.png b/site/static/emojis/1f93d-1f3fb-200d-2642-fe0f.png new file mode 100644 index 0000000000000..8a61156f8ec30 Binary files /dev/null and b/site/static/emojis/1f93d-1f3fb-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f93d-1f3fb.png b/site/static/emojis/1f93d-1f3fb.png new file mode 100644 index 0000000000000..5a2a755ef7914 Binary files /dev/null and b/site/static/emojis/1f93d-1f3fb.png differ diff --git a/site/static/emojis/1f93d-1f3fc-200d-2640-fe0f.png b/site/static/emojis/1f93d-1f3fc-200d-2640-fe0f.png new file mode 100644 index 0000000000000..1b7ec16a5e562 Binary files /dev/null and b/site/static/emojis/1f93d-1f3fc-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f93d-1f3fc-200d-2642-fe0f.png b/site/static/emojis/1f93d-1f3fc-200d-2642-fe0f.png new file mode 100644 index 0000000000000..501bd5783f3ef Binary files /dev/null and b/site/static/emojis/1f93d-1f3fc-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f93d-1f3fc.png b/site/static/emojis/1f93d-1f3fc.png new file mode 100644 index 0000000000000..8f3ac54526e8e Binary files /dev/null and b/site/static/emojis/1f93d-1f3fc.png differ diff --git a/site/static/emojis/1f93d-1f3fd-200d-2640-fe0f.png b/site/static/emojis/1f93d-1f3fd-200d-2640-fe0f.png new file mode 100644 index 0000000000000..b905b42090907 Binary files /dev/null and b/site/static/emojis/1f93d-1f3fd-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f93d-1f3fd-200d-2642-fe0f.png b/site/static/emojis/1f93d-1f3fd-200d-2642-fe0f.png new file mode 100644 index 0000000000000..db5c1f7925266 Binary files /dev/null and b/site/static/emojis/1f93d-1f3fd-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f93d-1f3fd.png b/site/static/emojis/1f93d-1f3fd.png new file mode 100644 index 0000000000000..9b533b2b1353d Binary files /dev/null and b/site/static/emojis/1f93d-1f3fd.png differ diff --git a/site/static/emojis/1f93d-1f3fe-200d-2640-fe0f.png b/site/static/emojis/1f93d-1f3fe-200d-2640-fe0f.png new file mode 100644 index 0000000000000..94d2f5741454d Binary files /dev/null and b/site/static/emojis/1f93d-1f3fe-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f93d-1f3fe-200d-2642-fe0f.png b/site/static/emojis/1f93d-1f3fe-200d-2642-fe0f.png new file mode 100644 index 0000000000000..0325893b3d153 Binary files /dev/null and b/site/static/emojis/1f93d-1f3fe-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f93d-1f3fe.png b/site/static/emojis/1f93d-1f3fe.png new file mode 100644 index 0000000000000..41a3d6071f66d Binary files /dev/null and b/site/static/emojis/1f93d-1f3fe.png differ diff --git a/site/static/emojis/1f93d-1f3ff-200d-2640-fe0f.png b/site/static/emojis/1f93d-1f3ff-200d-2640-fe0f.png new file mode 100644 index 0000000000000..fb287729a0f34 Binary files /dev/null and b/site/static/emojis/1f93d-1f3ff-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f93d-1f3ff-200d-2642-fe0f.png b/site/static/emojis/1f93d-1f3ff-200d-2642-fe0f.png new file mode 100644 index 0000000000000..b4e89e7530c58 Binary files /dev/null and b/site/static/emojis/1f93d-1f3ff-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f93d-1f3ff.png b/site/static/emojis/1f93d-1f3ff.png new file mode 100644 index 0000000000000..5e1d803049be9 Binary files /dev/null and b/site/static/emojis/1f93d-1f3ff.png differ diff --git a/site/static/emojis/1f93d-200d-2640-fe0f.png b/site/static/emojis/1f93d-200d-2640-fe0f.png new file mode 100644 index 0000000000000..db9a6451a4a92 Binary files /dev/null and b/site/static/emojis/1f93d-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f93d-200d-2642-fe0f.png b/site/static/emojis/1f93d-200d-2642-fe0f.png new file mode 100644 index 0000000000000..b0c8a9e3646a4 Binary files /dev/null and b/site/static/emojis/1f93d-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f93d.png b/site/static/emojis/1f93d.png new file mode 100644 index 0000000000000..86dfb8be12736 Binary files /dev/null and b/site/static/emojis/1f93d.png differ diff --git a/site/static/emojis/1f93e-1f3fb-200d-2640-fe0f.png b/site/static/emojis/1f93e-1f3fb-200d-2640-fe0f.png new file mode 100644 index 0000000000000..e08716d150094 Binary files /dev/null and b/site/static/emojis/1f93e-1f3fb-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f93e-1f3fb-200d-2642-fe0f.png b/site/static/emojis/1f93e-1f3fb-200d-2642-fe0f.png new file mode 100644 index 0000000000000..00466fd8dbd70 Binary files /dev/null and b/site/static/emojis/1f93e-1f3fb-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f93e-1f3fb.png b/site/static/emojis/1f93e-1f3fb.png new file mode 100644 index 0000000000000..b4705b5f6909a Binary files /dev/null and b/site/static/emojis/1f93e-1f3fb.png differ diff --git a/site/static/emojis/1f93e-1f3fc-200d-2640-fe0f.png b/site/static/emojis/1f93e-1f3fc-200d-2640-fe0f.png new file mode 100644 index 0000000000000..a1d7c67c33693 Binary files /dev/null and b/site/static/emojis/1f93e-1f3fc-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f93e-1f3fc-200d-2642-fe0f.png b/site/static/emojis/1f93e-1f3fc-200d-2642-fe0f.png new file mode 100644 index 0000000000000..bb1ad889fd6a8 Binary files /dev/null and b/site/static/emojis/1f93e-1f3fc-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f93e-1f3fc.png b/site/static/emojis/1f93e-1f3fc.png new file mode 100644 index 0000000000000..a2297db9662ab Binary files /dev/null and b/site/static/emojis/1f93e-1f3fc.png differ diff --git a/site/static/emojis/1f93e-1f3fd-200d-2640-fe0f.png b/site/static/emojis/1f93e-1f3fd-200d-2640-fe0f.png new file mode 100644 index 0000000000000..3340792ec2095 Binary files /dev/null and b/site/static/emojis/1f93e-1f3fd-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f93e-1f3fd-200d-2642-fe0f.png b/site/static/emojis/1f93e-1f3fd-200d-2642-fe0f.png new file mode 100644 index 0000000000000..f3f33a03dc6e1 Binary files /dev/null and b/site/static/emojis/1f93e-1f3fd-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f93e-1f3fd.png b/site/static/emojis/1f93e-1f3fd.png new file mode 100644 index 0000000000000..6e83120bd797c Binary files /dev/null and b/site/static/emojis/1f93e-1f3fd.png differ diff --git a/site/static/emojis/1f93e-1f3fe-200d-2640-fe0f.png b/site/static/emojis/1f93e-1f3fe-200d-2640-fe0f.png new file mode 100644 index 0000000000000..33ce2ea00c7a8 Binary files /dev/null and b/site/static/emojis/1f93e-1f3fe-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f93e-1f3fe-200d-2642-fe0f.png b/site/static/emojis/1f93e-1f3fe-200d-2642-fe0f.png new file mode 100644 index 0000000000000..bd4593bba3d13 Binary files /dev/null and b/site/static/emojis/1f93e-1f3fe-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f93e-1f3fe.png b/site/static/emojis/1f93e-1f3fe.png new file mode 100644 index 0000000000000..e9e6d6a78790e Binary files /dev/null and b/site/static/emojis/1f93e-1f3fe.png differ diff --git a/site/static/emojis/1f93e-1f3ff-200d-2640-fe0f.png b/site/static/emojis/1f93e-1f3ff-200d-2640-fe0f.png new file mode 100644 index 0000000000000..ee6a7a8efab0d Binary files /dev/null and b/site/static/emojis/1f93e-1f3ff-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f93e-1f3ff-200d-2642-fe0f.png b/site/static/emojis/1f93e-1f3ff-200d-2642-fe0f.png new file mode 100644 index 0000000000000..b7042235b0ec4 Binary files /dev/null and b/site/static/emojis/1f93e-1f3ff-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f93e-1f3ff.png b/site/static/emojis/1f93e-1f3ff.png new file mode 100644 index 0000000000000..f723f73a47976 Binary files /dev/null and b/site/static/emojis/1f93e-1f3ff.png differ diff --git a/site/static/emojis/1f93e-200d-2640-fe0f.png b/site/static/emojis/1f93e-200d-2640-fe0f.png new file mode 100644 index 0000000000000..daacbb25136b7 Binary files /dev/null and b/site/static/emojis/1f93e-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f93e-200d-2642-fe0f.png b/site/static/emojis/1f93e-200d-2642-fe0f.png new file mode 100644 index 0000000000000..a87ffc0128deb Binary files /dev/null and b/site/static/emojis/1f93e-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f93e.png b/site/static/emojis/1f93e.png new file mode 100644 index 0000000000000..f5db924d0b598 Binary files /dev/null and b/site/static/emojis/1f93e.png differ diff --git a/site/static/emojis/1f93f.png b/site/static/emojis/1f93f.png new file mode 100644 index 0000000000000..8bf1de49a7772 Binary files /dev/null and b/site/static/emojis/1f93f.png differ diff --git a/site/static/emojis/1f940.png b/site/static/emojis/1f940.png new file mode 100644 index 0000000000000..9390ebfcbcf29 Binary files /dev/null and b/site/static/emojis/1f940.png differ diff --git a/site/static/emojis/1f941.png b/site/static/emojis/1f941.png new file mode 100644 index 0000000000000..19c427bdfd6a4 Binary files /dev/null and b/site/static/emojis/1f941.png differ diff --git a/site/static/emojis/1f942.png b/site/static/emojis/1f942.png new file mode 100644 index 0000000000000..4801c68fd6e97 Binary files /dev/null and b/site/static/emojis/1f942.png differ diff --git a/site/static/emojis/1f943.png b/site/static/emojis/1f943.png new file mode 100644 index 0000000000000..a495095feb3e6 Binary files /dev/null and b/site/static/emojis/1f943.png differ diff --git a/site/static/emojis/1f944.png b/site/static/emojis/1f944.png new file mode 100644 index 0000000000000..1c418ebd9fc83 Binary files /dev/null and b/site/static/emojis/1f944.png differ diff --git a/site/static/emojis/1f945.png b/site/static/emojis/1f945.png new file mode 100644 index 0000000000000..fb5aeffcfa189 Binary files /dev/null and b/site/static/emojis/1f945.png differ diff --git a/site/static/emojis/1f947.png b/site/static/emojis/1f947.png new file mode 100644 index 0000000000000..7f1df40486123 Binary files /dev/null and b/site/static/emojis/1f947.png differ diff --git a/site/static/emojis/1f948.png b/site/static/emojis/1f948.png new file mode 100644 index 0000000000000..d451fd52d13e6 Binary files /dev/null and b/site/static/emojis/1f948.png differ diff --git a/site/static/emojis/1f949.png b/site/static/emojis/1f949.png new file mode 100644 index 0000000000000..f5c87e3cb0cd2 Binary files /dev/null and b/site/static/emojis/1f949.png differ diff --git a/site/static/emojis/1f94a.png b/site/static/emojis/1f94a.png new file mode 100644 index 0000000000000..4f5f0333bd1c7 Binary files /dev/null and b/site/static/emojis/1f94a.png differ diff --git a/site/static/emojis/1f94b.png b/site/static/emojis/1f94b.png new file mode 100644 index 0000000000000..30fee1e368892 Binary files /dev/null and b/site/static/emojis/1f94b.png differ diff --git a/site/static/emojis/1f94c.png b/site/static/emojis/1f94c.png new file mode 100644 index 0000000000000..65228c2db8c95 Binary files /dev/null and b/site/static/emojis/1f94c.png differ diff --git a/site/static/emojis/1f94d.png b/site/static/emojis/1f94d.png new file mode 100644 index 0000000000000..8202c8b34b0bd Binary files /dev/null and b/site/static/emojis/1f94d.png differ diff --git a/site/static/emojis/1f94e.png b/site/static/emojis/1f94e.png new file mode 100644 index 0000000000000..b78c695486a73 Binary files /dev/null and b/site/static/emojis/1f94e.png differ diff --git a/site/static/emojis/1f94f.png b/site/static/emojis/1f94f.png new file mode 100644 index 0000000000000..ef34259ead12a Binary files /dev/null and b/site/static/emojis/1f94f.png differ diff --git a/site/static/emojis/1f950.png b/site/static/emojis/1f950.png new file mode 100644 index 0000000000000..3788e1bd4310a Binary files /dev/null and b/site/static/emojis/1f950.png differ diff --git a/site/static/emojis/1f951.png b/site/static/emojis/1f951.png new file mode 100644 index 0000000000000..2af5fc6bdf523 Binary files /dev/null and b/site/static/emojis/1f951.png differ diff --git a/site/static/emojis/1f952.png b/site/static/emojis/1f952.png new file mode 100644 index 0000000000000..1bac31e5cd653 Binary files /dev/null and b/site/static/emojis/1f952.png differ diff --git a/site/static/emojis/1f953.png b/site/static/emojis/1f953.png new file mode 100644 index 0000000000000..6b2418e79ab48 Binary files /dev/null and b/site/static/emojis/1f953.png differ diff --git a/site/static/emojis/1f954.png b/site/static/emojis/1f954.png new file mode 100644 index 0000000000000..bf3d9b9c47924 Binary files /dev/null and b/site/static/emojis/1f954.png differ diff --git a/site/static/emojis/1f955.png b/site/static/emojis/1f955.png new file mode 100644 index 0000000000000..831d63911c841 Binary files /dev/null and b/site/static/emojis/1f955.png differ diff --git a/site/static/emojis/1f956.png b/site/static/emojis/1f956.png new file mode 100644 index 0000000000000..0b9cc251bc32d Binary files /dev/null and b/site/static/emojis/1f956.png differ diff --git a/site/static/emojis/1f957.png b/site/static/emojis/1f957.png new file mode 100644 index 0000000000000..f255f4d6eca5a Binary files /dev/null and b/site/static/emojis/1f957.png differ diff --git a/site/static/emojis/1f958.png b/site/static/emojis/1f958.png new file mode 100644 index 0000000000000..39b64e069e8cd Binary files /dev/null and b/site/static/emojis/1f958.png differ diff --git a/site/static/emojis/1f959.png b/site/static/emojis/1f959.png new file mode 100644 index 0000000000000..f3377b938221c Binary files /dev/null and b/site/static/emojis/1f959.png differ diff --git a/site/static/emojis/1f95a.png b/site/static/emojis/1f95a.png new file mode 100644 index 0000000000000..6d03b79044469 Binary files /dev/null and b/site/static/emojis/1f95a.png differ diff --git a/site/static/emojis/1f95b.png b/site/static/emojis/1f95b.png new file mode 100644 index 0000000000000..234419e003979 Binary files /dev/null and b/site/static/emojis/1f95b.png differ diff --git a/site/static/emojis/1f95c.png b/site/static/emojis/1f95c.png new file mode 100644 index 0000000000000..e8f17a1a9718e Binary files /dev/null and b/site/static/emojis/1f95c.png differ diff --git a/site/static/emojis/1f95d.png b/site/static/emojis/1f95d.png new file mode 100644 index 0000000000000..3ba423b22f6dd Binary files /dev/null and b/site/static/emojis/1f95d.png differ diff --git a/site/static/emojis/1f95e.png b/site/static/emojis/1f95e.png new file mode 100644 index 0000000000000..6bcded7237fa7 Binary files /dev/null and b/site/static/emojis/1f95e.png differ diff --git a/site/static/emojis/1f95f.png b/site/static/emojis/1f95f.png new file mode 100644 index 0000000000000..82136b8ef46af Binary files /dev/null and b/site/static/emojis/1f95f.png differ diff --git a/site/static/emojis/1f960.png b/site/static/emojis/1f960.png new file mode 100644 index 0000000000000..a1e8958af75b0 Binary files /dev/null and b/site/static/emojis/1f960.png differ diff --git a/site/static/emojis/1f961.png b/site/static/emojis/1f961.png new file mode 100644 index 0000000000000..20d855496983d Binary files /dev/null and b/site/static/emojis/1f961.png differ diff --git a/site/static/emojis/1f962.png b/site/static/emojis/1f962.png new file mode 100644 index 0000000000000..8284c128febb6 Binary files /dev/null and b/site/static/emojis/1f962.png differ diff --git a/site/static/emojis/1f963.png b/site/static/emojis/1f963.png new file mode 100644 index 0000000000000..2905488376d13 Binary files /dev/null and b/site/static/emojis/1f963.png differ diff --git a/site/static/emojis/1f964.png b/site/static/emojis/1f964.png new file mode 100644 index 0000000000000..f65704ebfda16 Binary files /dev/null and b/site/static/emojis/1f964.png differ diff --git a/site/static/emojis/1f965.png b/site/static/emojis/1f965.png new file mode 100644 index 0000000000000..e92e8d403d02c Binary files /dev/null and b/site/static/emojis/1f965.png differ diff --git a/site/static/emojis/1f966.png b/site/static/emojis/1f966.png new file mode 100644 index 0000000000000..24b0d3d5276e9 Binary files /dev/null and b/site/static/emojis/1f966.png differ diff --git a/site/static/emojis/1f967.png b/site/static/emojis/1f967.png new file mode 100644 index 0000000000000..1d17609efb628 Binary files /dev/null and b/site/static/emojis/1f967.png differ diff --git a/site/static/emojis/1f968.png b/site/static/emojis/1f968.png new file mode 100644 index 0000000000000..94fac17b41261 Binary files /dev/null and b/site/static/emojis/1f968.png differ diff --git a/site/static/emojis/1f969.png b/site/static/emojis/1f969.png new file mode 100644 index 0000000000000..5eab36462155a Binary files /dev/null and b/site/static/emojis/1f969.png differ diff --git a/site/static/emojis/1f96a.png b/site/static/emojis/1f96a.png new file mode 100644 index 0000000000000..a0a6a6da27f82 Binary files /dev/null and b/site/static/emojis/1f96a.png differ diff --git a/site/static/emojis/1f96b.png b/site/static/emojis/1f96b.png new file mode 100644 index 0000000000000..01d7649d2d6fa Binary files /dev/null and b/site/static/emojis/1f96b.png differ diff --git a/site/static/emojis/1f96c.png b/site/static/emojis/1f96c.png new file mode 100644 index 0000000000000..8487529df17dc Binary files /dev/null and b/site/static/emojis/1f96c.png differ diff --git a/site/static/emojis/1f96d.png b/site/static/emojis/1f96d.png new file mode 100644 index 0000000000000..57e84dea3c5ed Binary files /dev/null and b/site/static/emojis/1f96d.png differ diff --git a/site/static/emojis/1f96e.png b/site/static/emojis/1f96e.png new file mode 100644 index 0000000000000..991c3b4f1cacb Binary files /dev/null and b/site/static/emojis/1f96e.png differ diff --git a/site/static/emojis/1f96f.png b/site/static/emojis/1f96f.png new file mode 100644 index 0000000000000..99312be2fe89a Binary files /dev/null and b/site/static/emojis/1f96f.png differ diff --git a/site/static/emojis/1f970.png b/site/static/emojis/1f970.png new file mode 100644 index 0000000000000..0c9466ce77140 Binary files /dev/null and b/site/static/emojis/1f970.png differ diff --git a/site/static/emojis/1f971.png b/site/static/emojis/1f971.png new file mode 100644 index 0000000000000..8c12578bf680e Binary files /dev/null and b/site/static/emojis/1f971.png differ diff --git a/site/static/emojis/1f972.png b/site/static/emojis/1f972.png new file mode 100644 index 0000000000000..c799f4bbfa12c Binary files /dev/null and b/site/static/emojis/1f972.png differ diff --git a/site/static/emojis/1f973.png b/site/static/emojis/1f973.png new file mode 100644 index 0000000000000..cf02521cccc06 Binary files /dev/null and b/site/static/emojis/1f973.png differ diff --git a/site/static/emojis/1f974.png b/site/static/emojis/1f974.png new file mode 100644 index 0000000000000..3c4a112bec673 Binary files /dev/null and b/site/static/emojis/1f974.png differ diff --git a/site/static/emojis/1f975.png b/site/static/emojis/1f975.png new file mode 100644 index 0000000000000..2ed695a3621f0 Binary files /dev/null and b/site/static/emojis/1f975.png differ diff --git a/site/static/emojis/1f976.png b/site/static/emojis/1f976.png new file mode 100644 index 0000000000000..6d14820c56f93 Binary files /dev/null and b/site/static/emojis/1f976.png differ diff --git a/site/static/emojis/1f977-1f3fb.png b/site/static/emojis/1f977-1f3fb.png new file mode 100644 index 0000000000000..1382f448f32b2 Binary files /dev/null and b/site/static/emojis/1f977-1f3fb.png differ diff --git a/site/static/emojis/1f977-1f3fc.png b/site/static/emojis/1f977-1f3fc.png new file mode 100644 index 0000000000000..f61b5a5ecc251 Binary files /dev/null and b/site/static/emojis/1f977-1f3fc.png differ diff --git a/site/static/emojis/1f977-1f3fd.png b/site/static/emojis/1f977-1f3fd.png new file mode 100644 index 0000000000000..b1a6a3a2214c5 Binary files /dev/null and b/site/static/emojis/1f977-1f3fd.png differ diff --git a/site/static/emojis/1f977-1f3fe.png b/site/static/emojis/1f977-1f3fe.png new file mode 100644 index 0000000000000..820a3ee6cefc3 Binary files /dev/null and b/site/static/emojis/1f977-1f3fe.png differ diff --git a/site/static/emojis/1f977-1f3ff.png b/site/static/emojis/1f977-1f3ff.png new file mode 100644 index 0000000000000..c67b540ab2646 Binary files /dev/null and b/site/static/emojis/1f977-1f3ff.png differ diff --git a/site/static/emojis/1f977.png b/site/static/emojis/1f977.png new file mode 100644 index 0000000000000..63f3e16bb235f Binary files /dev/null and b/site/static/emojis/1f977.png differ diff --git a/site/static/emojis/1f978.png b/site/static/emojis/1f978.png new file mode 100644 index 0000000000000..390b7e4e165ec Binary files /dev/null and b/site/static/emojis/1f978.png differ diff --git a/site/static/emojis/1f979.png b/site/static/emojis/1f979.png new file mode 100644 index 0000000000000..8410ca8588b10 Binary files /dev/null and b/site/static/emojis/1f979.png differ diff --git a/site/static/emojis/1f97a.png b/site/static/emojis/1f97a.png new file mode 100644 index 0000000000000..e3c26b3dc1c76 Binary files /dev/null and b/site/static/emojis/1f97a.png differ diff --git a/site/static/emojis/1f97b.png b/site/static/emojis/1f97b.png new file mode 100644 index 0000000000000..37e499fb768ec Binary files /dev/null and b/site/static/emojis/1f97b.png differ diff --git a/site/static/emojis/1f97c.png b/site/static/emojis/1f97c.png new file mode 100644 index 0000000000000..b6ed6b935f64f Binary files /dev/null and b/site/static/emojis/1f97c.png differ diff --git a/site/static/emojis/1f97d.png b/site/static/emojis/1f97d.png new file mode 100644 index 0000000000000..b4d3c40abc75f Binary files /dev/null and b/site/static/emojis/1f97d.png differ diff --git a/site/static/emojis/1f97e.png b/site/static/emojis/1f97e.png new file mode 100644 index 0000000000000..1e97c61b01baf Binary files /dev/null and b/site/static/emojis/1f97e.png differ diff --git a/site/static/emojis/1f97f.png b/site/static/emojis/1f97f.png new file mode 100644 index 0000000000000..fded27f57422b Binary files /dev/null and b/site/static/emojis/1f97f.png differ diff --git a/site/static/emojis/1f980.png b/site/static/emojis/1f980.png new file mode 100644 index 0000000000000..915354ca2f584 Binary files /dev/null and b/site/static/emojis/1f980.png differ diff --git a/site/static/emojis/1f981.png b/site/static/emojis/1f981.png new file mode 100644 index 0000000000000..07ca6147bd76b Binary files /dev/null and b/site/static/emojis/1f981.png differ diff --git a/site/static/emojis/1f982.png b/site/static/emojis/1f982.png new file mode 100644 index 0000000000000..767cf550d0cf3 Binary files /dev/null and b/site/static/emojis/1f982.png differ diff --git a/site/static/emojis/1f983.png b/site/static/emojis/1f983.png new file mode 100644 index 0000000000000..2113718e6bc3f Binary files /dev/null and b/site/static/emojis/1f983.png differ diff --git a/site/static/emojis/1f984.png b/site/static/emojis/1f984.png new file mode 100644 index 0000000000000..0e3279c7bd90d Binary files /dev/null and b/site/static/emojis/1f984.png differ diff --git a/site/static/emojis/1f985.png b/site/static/emojis/1f985.png new file mode 100644 index 0000000000000..c8869604fb377 Binary files /dev/null and b/site/static/emojis/1f985.png differ diff --git a/site/static/emojis/1f986.png b/site/static/emojis/1f986.png new file mode 100644 index 0000000000000..d4e995eedc754 Binary files /dev/null and b/site/static/emojis/1f986.png differ diff --git a/site/static/emojis/1f987.png b/site/static/emojis/1f987.png new file mode 100644 index 0000000000000..e0375fb6604d9 Binary files /dev/null and b/site/static/emojis/1f987.png differ diff --git a/site/static/emojis/1f988.png b/site/static/emojis/1f988.png new file mode 100644 index 0000000000000..88ccc81e3010b Binary files /dev/null and b/site/static/emojis/1f988.png differ diff --git a/site/static/emojis/1f989.png b/site/static/emojis/1f989.png new file mode 100644 index 0000000000000..6bc9c7af427ee Binary files /dev/null and b/site/static/emojis/1f989.png differ diff --git a/site/static/emojis/1f98a.png b/site/static/emojis/1f98a.png new file mode 100644 index 0000000000000..7f6e50a802828 Binary files /dev/null and b/site/static/emojis/1f98a.png differ diff --git a/site/static/emojis/1f98b.png b/site/static/emojis/1f98b.png new file mode 100644 index 0000000000000..3d17d9810714f Binary files /dev/null and b/site/static/emojis/1f98b.png differ diff --git a/site/static/emojis/1f98c.png b/site/static/emojis/1f98c.png new file mode 100644 index 0000000000000..06b32f6f4b81e Binary files /dev/null and b/site/static/emojis/1f98c.png differ diff --git a/site/static/emojis/1f98d.png b/site/static/emojis/1f98d.png new file mode 100644 index 0000000000000..bd02ff4d3671e Binary files /dev/null and b/site/static/emojis/1f98d.png differ diff --git a/site/static/emojis/1f98e.png b/site/static/emojis/1f98e.png new file mode 100644 index 0000000000000..dc7b02827262c Binary files /dev/null and b/site/static/emojis/1f98e.png differ diff --git a/site/static/emojis/1f98f.png b/site/static/emojis/1f98f.png new file mode 100644 index 0000000000000..9b43bbf25b270 Binary files /dev/null and b/site/static/emojis/1f98f.png differ diff --git a/site/static/emojis/1f990.png b/site/static/emojis/1f990.png new file mode 100644 index 0000000000000..f48ec33e62a4b Binary files /dev/null and b/site/static/emojis/1f990.png differ diff --git a/site/static/emojis/1f991.png b/site/static/emojis/1f991.png new file mode 100644 index 0000000000000..8e1aa1e27a5a2 Binary files /dev/null and b/site/static/emojis/1f991.png differ diff --git a/site/static/emojis/1f992.png b/site/static/emojis/1f992.png new file mode 100644 index 0000000000000..731f72fac9e5b Binary files /dev/null and b/site/static/emojis/1f992.png differ diff --git a/site/static/emojis/1f993.png b/site/static/emojis/1f993.png new file mode 100644 index 0000000000000..4c080f3006fbd Binary files /dev/null and b/site/static/emojis/1f993.png differ diff --git a/site/static/emojis/1f994.png b/site/static/emojis/1f994.png new file mode 100644 index 0000000000000..489827231b0f2 Binary files /dev/null and b/site/static/emojis/1f994.png differ diff --git a/site/static/emojis/1f995.png b/site/static/emojis/1f995.png new file mode 100644 index 0000000000000..b58a3179e3110 Binary files /dev/null and b/site/static/emojis/1f995.png differ diff --git a/site/static/emojis/1f996.png b/site/static/emojis/1f996.png new file mode 100644 index 0000000000000..ed7927dd3fbb0 Binary files /dev/null and b/site/static/emojis/1f996.png differ diff --git a/site/static/emojis/1f997.png b/site/static/emojis/1f997.png new file mode 100644 index 0000000000000..481034afa2fbc Binary files /dev/null and b/site/static/emojis/1f997.png differ diff --git a/site/static/emojis/1f998.png b/site/static/emojis/1f998.png new file mode 100644 index 0000000000000..c14c89466d9e2 Binary files /dev/null and b/site/static/emojis/1f998.png differ diff --git a/site/static/emojis/1f999.png b/site/static/emojis/1f999.png new file mode 100644 index 0000000000000..d43ae19ae10a7 Binary files /dev/null and b/site/static/emojis/1f999.png differ diff --git a/site/static/emojis/1f99a.png b/site/static/emojis/1f99a.png new file mode 100644 index 0000000000000..59602cdcf0eef Binary files /dev/null and b/site/static/emojis/1f99a.png differ diff --git a/site/static/emojis/1f99b.png b/site/static/emojis/1f99b.png new file mode 100644 index 0000000000000..747f4136f4ca9 Binary files /dev/null and b/site/static/emojis/1f99b.png differ diff --git a/site/static/emojis/1f99c.png b/site/static/emojis/1f99c.png new file mode 100644 index 0000000000000..4630636a20c54 Binary files /dev/null and b/site/static/emojis/1f99c.png differ diff --git a/site/static/emojis/1f99d.png b/site/static/emojis/1f99d.png new file mode 100644 index 0000000000000..759c064422ebf Binary files /dev/null and b/site/static/emojis/1f99d.png differ diff --git a/site/static/emojis/1f99e.png b/site/static/emojis/1f99e.png new file mode 100644 index 0000000000000..5312cade843a9 Binary files /dev/null and b/site/static/emojis/1f99e.png differ diff --git a/site/static/emojis/1f99f.png b/site/static/emojis/1f99f.png new file mode 100644 index 0000000000000..fe18c2a6ec80a Binary files /dev/null and b/site/static/emojis/1f99f.png differ diff --git a/site/static/emojis/1f9a0.png b/site/static/emojis/1f9a0.png new file mode 100644 index 0000000000000..bdd887e1d5331 Binary files /dev/null and b/site/static/emojis/1f9a0.png differ diff --git a/site/static/emojis/1f9a1.png b/site/static/emojis/1f9a1.png new file mode 100644 index 0000000000000..858196e8f60a7 Binary files /dev/null and b/site/static/emojis/1f9a1.png differ diff --git a/site/static/emojis/1f9a2.png b/site/static/emojis/1f9a2.png new file mode 100644 index 0000000000000..58af7f508688b Binary files /dev/null and b/site/static/emojis/1f9a2.png differ diff --git a/site/static/emojis/1f9a3.png b/site/static/emojis/1f9a3.png new file mode 100644 index 0000000000000..94c8998c79bf3 Binary files /dev/null and b/site/static/emojis/1f9a3.png differ diff --git a/site/static/emojis/1f9a4.png b/site/static/emojis/1f9a4.png new file mode 100644 index 0000000000000..160cc563da7e4 Binary files /dev/null and b/site/static/emojis/1f9a4.png differ diff --git a/site/static/emojis/1f9a5.png b/site/static/emojis/1f9a5.png new file mode 100644 index 0000000000000..2bb0545286202 Binary files /dev/null and b/site/static/emojis/1f9a5.png differ diff --git a/site/static/emojis/1f9a6.png b/site/static/emojis/1f9a6.png new file mode 100644 index 0000000000000..fb3e07085f76b Binary files /dev/null and b/site/static/emojis/1f9a6.png differ diff --git a/site/static/emojis/1f9a7.png b/site/static/emojis/1f9a7.png new file mode 100644 index 0000000000000..17d26498bbbb1 Binary files /dev/null and b/site/static/emojis/1f9a7.png differ diff --git a/site/static/emojis/1f9a8.png b/site/static/emojis/1f9a8.png new file mode 100644 index 0000000000000..d342d560c8570 Binary files /dev/null and b/site/static/emojis/1f9a8.png differ diff --git a/site/static/emojis/1f9a9.png b/site/static/emojis/1f9a9.png new file mode 100644 index 0000000000000..0ee76f3240500 Binary files /dev/null and b/site/static/emojis/1f9a9.png differ diff --git a/site/static/emojis/1f9aa.png b/site/static/emojis/1f9aa.png new file mode 100644 index 0000000000000..5649bbfad47f3 Binary files /dev/null and b/site/static/emojis/1f9aa.png differ diff --git a/site/static/emojis/1f9ab.png b/site/static/emojis/1f9ab.png new file mode 100644 index 0000000000000..11839911b1666 Binary files /dev/null and b/site/static/emojis/1f9ab.png differ diff --git a/site/static/emojis/1f9ac.png b/site/static/emojis/1f9ac.png new file mode 100644 index 0000000000000..744a814ec6eb1 Binary files /dev/null and b/site/static/emojis/1f9ac.png differ diff --git a/site/static/emojis/1f9ad.png b/site/static/emojis/1f9ad.png new file mode 100644 index 0000000000000..1dc20feef0bbd Binary files /dev/null and b/site/static/emojis/1f9ad.png differ diff --git a/site/static/emojis/1f9ae.png b/site/static/emojis/1f9ae.png new file mode 100644 index 0000000000000..0bf6ca9eb67cd Binary files /dev/null and b/site/static/emojis/1f9ae.png differ diff --git a/site/static/emojis/1f9af.png b/site/static/emojis/1f9af.png new file mode 100644 index 0000000000000..d09b2846c7f39 Binary files /dev/null and b/site/static/emojis/1f9af.png differ diff --git a/site/static/emojis/1f9b0.png b/site/static/emojis/1f9b0.png new file mode 100644 index 0000000000000..ae61441680cb6 Binary files /dev/null and b/site/static/emojis/1f9b0.png differ diff --git a/site/static/emojis/1f9b1.png b/site/static/emojis/1f9b1.png new file mode 100644 index 0000000000000..8b79646863198 Binary files /dev/null and b/site/static/emojis/1f9b1.png differ diff --git a/site/static/emojis/1f9b2.png b/site/static/emojis/1f9b2.png new file mode 100644 index 0000000000000..34022c6b980ca Binary files /dev/null and b/site/static/emojis/1f9b2.png differ diff --git a/site/static/emojis/1f9b3.png b/site/static/emojis/1f9b3.png new file mode 100644 index 0000000000000..e062ea9d5259f Binary files /dev/null and b/site/static/emojis/1f9b3.png differ diff --git a/site/static/emojis/1f9b4.png b/site/static/emojis/1f9b4.png new file mode 100644 index 0000000000000..92062ac853695 Binary files /dev/null and b/site/static/emojis/1f9b4.png differ diff --git a/site/static/emojis/1f9b5-1f3fb.png b/site/static/emojis/1f9b5-1f3fb.png new file mode 100644 index 0000000000000..3dd05b71fe5a2 Binary files /dev/null and b/site/static/emojis/1f9b5-1f3fb.png differ diff --git a/site/static/emojis/1f9b5-1f3fc.png b/site/static/emojis/1f9b5-1f3fc.png new file mode 100644 index 0000000000000..3678ebea22ec1 Binary files /dev/null and b/site/static/emojis/1f9b5-1f3fc.png differ diff --git a/site/static/emojis/1f9b5-1f3fd.png b/site/static/emojis/1f9b5-1f3fd.png new file mode 100644 index 0000000000000..7a8be7e7ca00f Binary files /dev/null and b/site/static/emojis/1f9b5-1f3fd.png differ diff --git a/site/static/emojis/1f9b5-1f3fe.png b/site/static/emojis/1f9b5-1f3fe.png new file mode 100644 index 0000000000000..7488b0c298f76 Binary files /dev/null and b/site/static/emojis/1f9b5-1f3fe.png differ diff --git a/site/static/emojis/1f9b5-1f3ff.png b/site/static/emojis/1f9b5-1f3ff.png new file mode 100644 index 0000000000000..498f404c67f19 Binary files /dev/null and b/site/static/emojis/1f9b5-1f3ff.png differ diff --git a/site/static/emojis/1f9b5.png b/site/static/emojis/1f9b5.png new file mode 100644 index 0000000000000..b0087b49269ff Binary files /dev/null and b/site/static/emojis/1f9b5.png differ diff --git a/site/static/emojis/1f9b6-1f3fb.png b/site/static/emojis/1f9b6-1f3fb.png new file mode 100644 index 0000000000000..628899a81ccaf Binary files /dev/null and b/site/static/emojis/1f9b6-1f3fb.png differ diff --git a/site/static/emojis/1f9b6-1f3fc.png b/site/static/emojis/1f9b6-1f3fc.png new file mode 100644 index 0000000000000..fc3afc3a82011 Binary files /dev/null and b/site/static/emojis/1f9b6-1f3fc.png differ diff --git a/site/static/emojis/1f9b6-1f3fd.png b/site/static/emojis/1f9b6-1f3fd.png new file mode 100644 index 0000000000000..195ae0d0e8362 Binary files /dev/null and b/site/static/emojis/1f9b6-1f3fd.png differ diff --git a/site/static/emojis/1f9b6-1f3fe.png b/site/static/emojis/1f9b6-1f3fe.png new file mode 100644 index 0000000000000..cabdb40e08591 Binary files /dev/null and b/site/static/emojis/1f9b6-1f3fe.png differ diff --git a/site/static/emojis/1f9b6-1f3ff.png b/site/static/emojis/1f9b6-1f3ff.png new file mode 100644 index 0000000000000..47fcee6b93de0 Binary files /dev/null and b/site/static/emojis/1f9b6-1f3ff.png differ diff --git a/site/static/emojis/1f9b6.png b/site/static/emojis/1f9b6.png new file mode 100644 index 0000000000000..ed57c2bd9c066 Binary files /dev/null and b/site/static/emojis/1f9b6.png differ diff --git a/site/static/emojis/1f9b7.png b/site/static/emojis/1f9b7.png new file mode 100644 index 0000000000000..f5d32ea7137c8 Binary files /dev/null and b/site/static/emojis/1f9b7.png differ diff --git a/site/static/emojis/1f9b8-1f3fb-200d-2640-fe0f.png b/site/static/emojis/1f9b8-1f3fb-200d-2640-fe0f.png new file mode 100644 index 0000000000000..7caf678b32604 Binary files /dev/null and b/site/static/emojis/1f9b8-1f3fb-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f9b8-1f3fb-200d-2642-fe0f.png b/site/static/emojis/1f9b8-1f3fb-200d-2642-fe0f.png new file mode 100644 index 0000000000000..d5354946f14bb Binary files /dev/null and b/site/static/emojis/1f9b8-1f3fb-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f9b8-1f3fb.png b/site/static/emojis/1f9b8-1f3fb.png new file mode 100644 index 0000000000000..c9928c9e29539 Binary files /dev/null and b/site/static/emojis/1f9b8-1f3fb.png differ diff --git a/site/static/emojis/1f9b8-1f3fc-200d-2640-fe0f.png b/site/static/emojis/1f9b8-1f3fc-200d-2640-fe0f.png new file mode 100644 index 0000000000000..835b3120565ba Binary files /dev/null and b/site/static/emojis/1f9b8-1f3fc-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f9b8-1f3fc-200d-2642-fe0f.png b/site/static/emojis/1f9b8-1f3fc-200d-2642-fe0f.png new file mode 100644 index 0000000000000..9afb6294cf67c Binary files /dev/null and b/site/static/emojis/1f9b8-1f3fc-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f9b8-1f3fc.png b/site/static/emojis/1f9b8-1f3fc.png new file mode 100644 index 0000000000000..4db64c4f109b2 Binary files /dev/null and b/site/static/emojis/1f9b8-1f3fc.png differ diff --git a/site/static/emojis/1f9b8-1f3fd-200d-2640-fe0f.png b/site/static/emojis/1f9b8-1f3fd-200d-2640-fe0f.png new file mode 100644 index 0000000000000..510ef57152301 Binary files /dev/null and b/site/static/emojis/1f9b8-1f3fd-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f9b8-1f3fd-200d-2642-fe0f.png b/site/static/emojis/1f9b8-1f3fd-200d-2642-fe0f.png new file mode 100644 index 0000000000000..a5917aadc92e3 Binary files /dev/null and b/site/static/emojis/1f9b8-1f3fd-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f9b8-1f3fd.png b/site/static/emojis/1f9b8-1f3fd.png new file mode 100644 index 0000000000000..55dad3c658c63 Binary files /dev/null and b/site/static/emojis/1f9b8-1f3fd.png differ diff --git a/site/static/emojis/1f9b8-1f3fe-200d-2640-fe0f.png b/site/static/emojis/1f9b8-1f3fe-200d-2640-fe0f.png new file mode 100644 index 0000000000000..ba21b3c465f6c Binary files /dev/null and b/site/static/emojis/1f9b8-1f3fe-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f9b8-1f3fe-200d-2642-fe0f.png b/site/static/emojis/1f9b8-1f3fe-200d-2642-fe0f.png new file mode 100644 index 0000000000000..75fa8b4fc9367 Binary files /dev/null and b/site/static/emojis/1f9b8-1f3fe-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f9b8-1f3fe.png b/site/static/emojis/1f9b8-1f3fe.png new file mode 100644 index 0000000000000..01e4f882e9b5b Binary files /dev/null and b/site/static/emojis/1f9b8-1f3fe.png differ diff --git a/site/static/emojis/1f9b8-1f3ff-200d-2640-fe0f.png b/site/static/emojis/1f9b8-1f3ff-200d-2640-fe0f.png new file mode 100644 index 0000000000000..9a2cbb400bcb3 Binary files /dev/null and b/site/static/emojis/1f9b8-1f3ff-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f9b8-1f3ff-200d-2642-fe0f.png b/site/static/emojis/1f9b8-1f3ff-200d-2642-fe0f.png new file mode 100644 index 0000000000000..fc34c480bccd2 Binary files /dev/null and b/site/static/emojis/1f9b8-1f3ff-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f9b8-1f3ff.png b/site/static/emojis/1f9b8-1f3ff.png new file mode 100644 index 0000000000000..698ee383c0f4c Binary files /dev/null and b/site/static/emojis/1f9b8-1f3ff.png differ diff --git a/site/static/emojis/1f9b8-200d-2640-fe0f.png b/site/static/emojis/1f9b8-200d-2640-fe0f.png new file mode 100644 index 0000000000000..5f91609e83a4b Binary files /dev/null and b/site/static/emojis/1f9b8-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f9b8-200d-2642-fe0f.png b/site/static/emojis/1f9b8-200d-2642-fe0f.png new file mode 100644 index 0000000000000..5d825059fc7c6 Binary files /dev/null and b/site/static/emojis/1f9b8-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f9b8.png b/site/static/emojis/1f9b8.png new file mode 100644 index 0000000000000..d79cfc97d87e4 Binary files /dev/null and b/site/static/emojis/1f9b8.png differ diff --git a/site/static/emojis/1f9b9-1f3fb-200d-2640-fe0f.png b/site/static/emojis/1f9b9-1f3fb-200d-2640-fe0f.png new file mode 100644 index 0000000000000..21759f8a77580 Binary files /dev/null and b/site/static/emojis/1f9b9-1f3fb-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f9b9-1f3fb-200d-2642-fe0f.png b/site/static/emojis/1f9b9-1f3fb-200d-2642-fe0f.png new file mode 100644 index 0000000000000..e1553453f0803 Binary files /dev/null and b/site/static/emojis/1f9b9-1f3fb-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f9b9-1f3fb.png b/site/static/emojis/1f9b9-1f3fb.png new file mode 100644 index 0000000000000..f2ca77d3e69ac Binary files /dev/null and b/site/static/emojis/1f9b9-1f3fb.png differ diff --git a/site/static/emojis/1f9b9-1f3fc-200d-2640-fe0f.png b/site/static/emojis/1f9b9-1f3fc-200d-2640-fe0f.png new file mode 100644 index 0000000000000..2baaab958be2b Binary files /dev/null and b/site/static/emojis/1f9b9-1f3fc-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f9b9-1f3fc-200d-2642-fe0f.png b/site/static/emojis/1f9b9-1f3fc-200d-2642-fe0f.png new file mode 100644 index 0000000000000..11c63297c0294 Binary files /dev/null and b/site/static/emojis/1f9b9-1f3fc-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f9b9-1f3fc.png b/site/static/emojis/1f9b9-1f3fc.png new file mode 100644 index 0000000000000..a96d25be0fa7e Binary files /dev/null and b/site/static/emojis/1f9b9-1f3fc.png differ diff --git a/site/static/emojis/1f9b9-1f3fd-200d-2640-fe0f.png b/site/static/emojis/1f9b9-1f3fd-200d-2640-fe0f.png new file mode 100644 index 0000000000000..50b0ff7364a55 Binary files /dev/null and b/site/static/emojis/1f9b9-1f3fd-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f9b9-1f3fd-200d-2642-fe0f.png b/site/static/emojis/1f9b9-1f3fd-200d-2642-fe0f.png new file mode 100644 index 0000000000000..3bf15398a2c8b Binary files /dev/null and b/site/static/emojis/1f9b9-1f3fd-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f9b9-1f3fd.png b/site/static/emojis/1f9b9-1f3fd.png new file mode 100644 index 0000000000000..d8f77eaf9b0a5 Binary files /dev/null and b/site/static/emojis/1f9b9-1f3fd.png differ diff --git a/site/static/emojis/1f9b9-1f3fe-200d-2640-fe0f.png b/site/static/emojis/1f9b9-1f3fe-200d-2640-fe0f.png new file mode 100644 index 0000000000000..80bd13c9be466 Binary files /dev/null and b/site/static/emojis/1f9b9-1f3fe-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f9b9-1f3fe-200d-2642-fe0f.png b/site/static/emojis/1f9b9-1f3fe-200d-2642-fe0f.png new file mode 100644 index 0000000000000..08803cba0f183 Binary files /dev/null and b/site/static/emojis/1f9b9-1f3fe-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f9b9-1f3fe.png b/site/static/emojis/1f9b9-1f3fe.png new file mode 100644 index 0000000000000..3a6cbde1e7e48 Binary files /dev/null and b/site/static/emojis/1f9b9-1f3fe.png differ diff --git a/site/static/emojis/1f9b9-1f3ff-200d-2640-fe0f.png b/site/static/emojis/1f9b9-1f3ff-200d-2640-fe0f.png new file mode 100644 index 0000000000000..bbdcd028e8658 Binary files /dev/null and b/site/static/emojis/1f9b9-1f3ff-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f9b9-1f3ff-200d-2642-fe0f.png b/site/static/emojis/1f9b9-1f3ff-200d-2642-fe0f.png new file mode 100644 index 0000000000000..0f0b10435c8b5 Binary files /dev/null and b/site/static/emojis/1f9b9-1f3ff-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f9b9-1f3ff.png b/site/static/emojis/1f9b9-1f3ff.png new file mode 100644 index 0000000000000..1397c3f592fed Binary files /dev/null and b/site/static/emojis/1f9b9-1f3ff.png differ diff --git a/site/static/emojis/1f9b9-200d-2640-fe0f.png b/site/static/emojis/1f9b9-200d-2640-fe0f.png new file mode 100644 index 0000000000000..e28243484de27 Binary files /dev/null and b/site/static/emojis/1f9b9-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f9b9-200d-2642-fe0f.png b/site/static/emojis/1f9b9-200d-2642-fe0f.png new file mode 100644 index 0000000000000..7b58aaba6dcd4 Binary files /dev/null and b/site/static/emojis/1f9b9-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f9b9.png b/site/static/emojis/1f9b9.png new file mode 100644 index 0000000000000..f86bd6bd8c53d Binary files /dev/null and b/site/static/emojis/1f9b9.png differ diff --git a/site/static/emojis/1f9ba.png b/site/static/emojis/1f9ba.png new file mode 100644 index 0000000000000..f1b86e164d6ad Binary files /dev/null and b/site/static/emojis/1f9ba.png differ diff --git a/site/static/emojis/1f9bb-1f3fb.png b/site/static/emojis/1f9bb-1f3fb.png new file mode 100644 index 0000000000000..a2bcf4355b179 Binary files /dev/null and b/site/static/emojis/1f9bb-1f3fb.png differ diff --git a/site/static/emojis/1f9bb-1f3fc.png b/site/static/emojis/1f9bb-1f3fc.png new file mode 100644 index 0000000000000..0b9053353431e Binary files /dev/null and b/site/static/emojis/1f9bb-1f3fc.png differ diff --git a/site/static/emojis/1f9bb-1f3fd.png b/site/static/emojis/1f9bb-1f3fd.png new file mode 100644 index 0000000000000..ba898631dfbba Binary files /dev/null and b/site/static/emojis/1f9bb-1f3fd.png differ diff --git a/site/static/emojis/1f9bb-1f3fe.png b/site/static/emojis/1f9bb-1f3fe.png new file mode 100644 index 0000000000000..b019addc1e847 Binary files /dev/null and b/site/static/emojis/1f9bb-1f3fe.png differ diff --git a/site/static/emojis/1f9bb-1f3ff.png b/site/static/emojis/1f9bb-1f3ff.png new file mode 100644 index 0000000000000..8a37cc0f60474 Binary files /dev/null and b/site/static/emojis/1f9bb-1f3ff.png differ diff --git a/site/static/emojis/1f9bb.png b/site/static/emojis/1f9bb.png new file mode 100644 index 0000000000000..492632f175d2f Binary files /dev/null and b/site/static/emojis/1f9bb.png differ diff --git a/site/static/emojis/1f9bc.png b/site/static/emojis/1f9bc.png new file mode 100644 index 0000000000000..eea4289378abd Binary files /dev/null and b/site/static/emojis/1f9bc.png differ diff --git a/site/static/emojis/1f9bd.png b/site/static/emojis/1f9bd.png new file mode 100644 index 0000000000000..c56f257680e16 Binary files /dev/null and b/site/static/emojis/1f9bd.png differ diff --git a/site/static/emojis/1f9be.png b/site/static/emojis/1f9be.png new file mode 100644 index 0000000000000..d758cf5bb70ba Binary files /dev/null and b/site/static/emojis/1f9be.png differ diff --git a/site/static/emojis/1f9bf.png b/site/static/emojis/1f9bf.png new file mode 100644 index 0000000000000..9c0fed3c903f5 Binary files /dev/null and b/site/static/emojis/1f9bf.png differ diff --git a/site/static/emojis/1f9c0.png b/site/static/emojis/1f9c0.png new file mode 100644 index 0000000000000..4f88fa06df403 Binary files /dev/null and b/site/static/emojis/1f9c0.png differ diff --git a/site/static/emojis/1f9c1.png b/site/static/emojis/1f9c1.png new file mode 100644 index 0000000000000..39ad36c04304a Binary files /dev/null and b/site/static/emojis/1f9c1.png differ diff --git a/site/static/emojis/1f9c2.png b/site/static/emojis/1f9c2.png new file mode 100644 index 0000000000000..053367714a2b9 Binary files /dev/null and b/site/static/emojis/1f9c2.png differ diff --git a/site/static/emojis/1f9c3.png b/site/static/emojis/1f9c3.png new file mode 100644 index 0000000000000..fce80c8232ddd Binary files /dev/null and b/site/static/emojis/1f9c3.png differ diff --git a/site/static/emojis/1f9c4.png b/site/static/emojis/1f9c4.png new file mode 100644 index 0000000000000..65c307104e659 Binary files /dev/null and b/site/static/emojis/1f9c4.png differ diff --git a/site/static/emojis/1f9c5.png b/site/static/emojis/1f9c5.png new file mode 100644 index 0000000000000..73e1fea8efaef Binary files /dev/null and b/site/static/emojis/1f9c5.png differ diff --git a/site/static/emojis/1f9c6.png b/site/static/emojis/1f9c6.png new file mode 100644 index 0000000000000..98fafac5d4508 Binary files /dev/null and b/site/static/emojis/1f9c6.png differ diff --git a/site/static/emojis/1f9c7.png b/site/static/emojis/1f9c7.png new file mode 100644 index 0000000000000..8696bf4b90486 Binary files /dev/null and b/site/static/emojis/1f9c7.png differ diff --git a/site/static/emojis/1f9c8.png b/site/static/emojis/1f9c8.png new file mode 100644 index 0000000000000..a5d5528001678 Binary files /dev/null and b/site/static/emojis/1f9c8.png differ diff --git a/site/static/emojis/1f9c9.png b/site/static/emojis/1f9c9.png new file mode 100644 index 0000000000000..9523074ce096a Binary files /dev/null and b/site/static/emojis/1f9c9.png differ diff --git a/site/static/emojis/1f9ca.png b/site/static/emojis/1f9ca.png new file mode 100644 index 0000000000000..57b37162bbb4d Binary files /dev/null and b/site/static/emojis/1f9ca.png differ diff --git a/site/static/emojis/1f9cb.png b/site/static/emojis/1f9cb.png new file mode 100644 index 0000000000000..3fbdf464077ca Binary files /dev/null and b/site/static/emojis/1f9cb.png differ diff --git a/site/static/emojis/1f9cc.png b/site/static/emojis/1f9cc.png new file mode 100644 index 0000000000000..86a1a90f56347 Binary files /dev/null and b/site/static/emojis/1f9cc.png differ diff --git a/site/static/emojis/1f9cd-1f3fb-200d-2640-fe0f.png b/site/static/emojis/1f9cd-1f3fb-200d-2640-fe0f.png new file mode 100644 index 0000000000000..03a420f91d366 Binary files /dev/null and b/site/static/emojis/1f9cd-1f3fb-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f9cd-1f3fb-200d-2642-fe0f.png b/site/static/emojis/1f9cd-1f3fb-200d-2642-fe0f.png new file mode 100644 index 0000000000000..d1fe8a515422c Binary files /dev/null and b/site/static/emojis/1f9cd-1f3fb-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f9cd-1f3fb.png b/site/static/emojis/1f9cd-1f3fb.png new file mode 100644 index 0000000000000..ef9ca45c9b408 Binary files /dev/null and b/site/static/emojis/1f9cd-1f3fb.png differ diff --git a/site/static/emojis/1f9cd-1f3fc-200d-2640-fe0f.png b/site/static/emojis/1f9cd-1f3fc-200d-2640-fe0f.png new file mode 100644 index 0000000000000..d9cc52106519c Binary files /dev/null and b/site/static/emojis/1f9cd-1f3fc-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f9cd-1f3fc-200d-2642-fe0f.png b/site/static/emojis/1f9cd-1f3fc-200d-2642-fe0f.png new file mode 100644 index 0000000000000..d01f6d3ed7330 Binary files /dev/null and b/site/static/emojis/1f9cd-1f3fc-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f9cd-1f3fc.png b/site/static/emojis/1f9cd-1f3fc.png new file mode 100644 index 0000000000000..bc4fa44c30274 Binary files /dev/null and b/site/static/emojis/1f9cd-1f3fc.png differ diff --git a/site/static/emojis/1f9cd-1f3fd-200d-2640-fe0f.png b/site/static/emojis/1f9cd-1f3fd-200d-2640-fe0f.png new file mode 100644 index 0000000000000..8019d6c65144c Binary files /dev/null and b/site/static/emojis/1f9cd-1f3fd-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f9cd-1f3fd-200d-2642-fe0f.png b/site/static/emojis/1f9cd-1f3fd-200d-2642-fe0f.png new file mode 100644 index 0000000000000..16c5908cda094 Binary files /dev/null and b/site/static/emojis/1f9cd-1f3fd-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f9cd-1f3fd.png b/site/static/emojis/1f9cd-1f3fd.png new file mode 100644 index 0000000000000..6ec42816a070d Binary files /dev/null and b/site/static/emojis/1f9cd-1f3fd.png differ diff --git a/site/static/emojis/1f9cd-1f3fe-200d-2640-fe0f.png b/site/static/emojis/1f9cd-1f3fe-200d-2640-fe0f.png new file mode 100644 index 0000000000000..334f947251948 Binary files /dev/null and b/site/static/emojis/1f9cd-1f3fe-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f9cd-1f3fe-200d-2642-fe0f.png b/site/static/emojis/1f9cd-1f3fe-200d-2642-fe0f.png new file mode 100644 index 0000000000000..3ba70f7fbe0c3 Binary files /dev/null and b/site/static/emojis/1f9cd-1f3fe-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f9cd-1f3fe.png b/site/static/emojis/1f9cd-1f3fe.png new file mode 100644 index 0000000000000..24a5bc2094a4a Binary files /dev/null and b/site/static/emojis/1f9cd-1f3fe.png differ diff --git a/site/static/emojis/1f9cd-1f3ff-200d-2640-fe0f.png b/site/static/emojis/1f9cd-1f3ff-200d-2640-fe0f.png new file mode 100644 index 0000000000000..15b740272d1c6 Binary files /dev/null and b/site/static/emojis/1f9cd-1f3ff-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f9cd-1f3ff-200d-2642-fe0f.png b/site/static/emojis/1f9cd-1f3ff-200d-2642-fe0f.png new file mode 100644 index 0000000000000..0c68629a7a67e Binary files /dev/null and b/site/static/emojis/1f9cd-1f3ff-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f9cd-1f3ff.png b/site/static/emojis/1f9cd-1f3ff.png new file mode 100644 index 0000000000000..62f92a01a0e12 Binary files /dev/null and b/site/static/emojis/1f9cd-1f3ff.png differ diff --git a/site/static/emojis/1f9cd-200d-2640-fe0f.png b/site/static/emojis/1f9cd-200d-2640-fe0f.png new file mode 100644 index 0000000000000..fb6bbc852e6e4 Binary files /dev/null and b/site/static/emojis/1f9cd-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f9cd-200d-2642-fe0f.png b/site/static/emojis/1f9cd-200d-2642-fe0f.png new file mode 100644 index 0000000000000..af90767fed7c1 Binary files /dev/null and b/site/static/emojis/1f9cd-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f9cd.png b/site/static/emojis/1f9cd.png new file mode 100644 index 0000000000000..092bc94cfa261 Binary files /dev/null and b/site/static/emojis/1f9cd.png differ diff --git a/site/static/emojis/1f9ce-1f3fb-200d-2640-fe0f.png b/site/static/emojis/1f9ce-1f3fb-200d-2640-fe0f.png new file mode 100644 index 0000000000000..84b1932a222dd Binary files /dev/null and b/site/static/emojis/1f9ce-1f3fb-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f9ce-1f3fb-200d-2642-fe0f.png b/site/static/emojis/1f9ce-1f3fb-200d-2642-fe0f.png new file mode 100644 index 0000000000000..88ac6639ffad8 Binary files /dev/null and b/site/static/emojis/1f9ce-1f3fb-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f9ce-1f3fb.png b/site/static/emojis/1f9ce-1f3fb.png new file mode 100644 index 0000000000000..e0709b9cc72ed Binary files /dev/null and b/site/static/emojis/1f9ce-1f3fb.png differ diff --git a/site/static/emojis/1f9ce-1f3fc-200d-2640-fe0f.png b/site/static/emojis/1f9ce-1f3fc-200d-2640-fe0f.png new file mode 100644 index 0000000000000..f9703876f85b0 Binary files /dev/null and b/site/static/emojis/1f9ce-1f3fc-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f9ce-1f3fc-200d-2642-fe0f.png b/site/static/emojis/1f9ce-1f3fc-200d-2642-fe0f.png new file mode 100644 index 0000000000000..c13fba6b9be9f Binary files /dev/null and b/site/static/emojis/1f9ce-1f3fc-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f9ce-1f3fc.png b/site/static/emojis/1f9ce-1f3fc.png new file mode 100644 index 0000000000000..a009cd3d02c1c Binary files /dev/null and b/site/static/emojis/1f9ce-1f3fc.png differ diff --git a/site/static/emojis/1f9ce-1f3fd-200d-2640-fe0f.png b/site/static/emojis/1f9ce-1f3fd-200d-2640-fe0f.png new file mode 100644 index 0000000000000..fff814de355a1 Binary files /dev/null and b/site/static/emojis/1f9ce-1f3fd-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f9ce-1f3fd-200d-2642-fe0f.png b/site/static/emojis/1f9ce-1f3fd-200d-2642-fe0f.png new file mode 100644 index 0000000000000..1e94283e0bb30 Binary files /dev/null and b/site/static/emojis/1f9ce-1f3fd-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f9ce-1f3fd.png b/site/static/emojis/1f9ce-1f3fd.png new file mode 100644 index 0000000000000..bee23dd367511 Binary files /dev/null and b/site/static/emojis/1f9ce-1f3fd.png differ diff --git a/site/static/emojis/1f9ce-1f3fe-200d-2640-fe0f.png b/site/static/emojis/1f9ce-1f3fe-200d-2640-fe0f.png new file mode 100644 index 0000000000000..ea9b468cd55fb Binary files /dev/null and b/site/static/emojis/1f9ce-1f3fe-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f9ce-1f3fe-200d-2642-fe0f.png b/site/static/emojis/1f9ce-1f3fe-200d-2642-fe0f.png new file mode 100644 index 0000000000000..37167a9517c72 Binary files /dev/null and b/site/static/emojis/1f9ce-1f3fe-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f9ce-1f3fe.png b/site/static/emojis/1f9ce-1f3fe.png new file mode 100644 index 0000000000000..38d173fbaee4a Binary files /dev/null and b/site/static/emojis/1f9ce-1f3fe.png differ diff --git a/site/static/emojis/1f9ce-1f3ff-200d-2640-fe0f.png b/site/static/emojis/1f9ce-1f3ff-200d-2640-fe0f.png new file mode 100644 index 0000000000000..a08af4741e074 Binary files /dev/null and b/site/static/emojis/1f9ce-1f3ff-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f9ce-1f3ff-200d-2642-fe0f.png b/site/static/emojis/1f9ce-1f3ff-200d-2642-fe0f.png new file mode 100644 index 0000000000000..e0b00f3c7f2d0 Binary files /dev/null and b/site/static/emojis/1f9ce-1f3ff-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f9ce-1f3ff.png b/site/static/emojis/1f9ce-1f3ff.png new file mode 100644 index 0000000000000..903927bf3e404 Binary files /dev/null and b/site/static/emojis/1f9ce-1f3ff.png differ diff --git a/site/static/emojis/1f9ce-200d-2640-fe0f.png b/site/static/emojis/1f9ce-200d-2640-fe0f.png new file mode 100644 index 0000000000000..3fc023d8c8dd8 Binary files /dev/null and b/site/static/emojis/1f9ce-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f9ce-200d-2642-fe0f.png b/site/static/emojis/1f9ce-200d-2642-fe0f.png new file mode 100644 index 0000000000000..3fffc15dd70b4 Binary files /dev/null and b/site/static/emojis/1f9ce-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f9ce.png b/site/static/emojis/1f9ce.png new file mode 100644 index 0000000000000..d59df78e5a426 Binary files /dev/null and b/site/static/emojis/1f9ce.png differ diff --git a/site/static/emojis/1f9cf-1f3fb-200d-2640-fe0f.png b/site/static/emojis/1f9cf-1f3fb-200d-2640-fe0f.png new file mode 100644 index 0000000000000..add2f37e13c15 Binary files /dev/null and b/site/static/emojis/1f9cf-1f3fb-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f9cf-1f3fb-200d-2642-fe0f.png b/site/static/emojis/1f9cf-1f3fb-200d-2642-fe0f.png new file mode 100644 index 0000000000000..49c176d765408 Binary files /dev/null and b/site/static/emojis/1f9cf-1f3fb-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f9cf-1f3fb.png b/site/static/emojis/1f9cf-1f3fb.png new file mode 100644 index 0000000000000..e323f4d6020c9 Binary files /dev/null and b/site/static/emojis/1f9cf-1f3fb.png differ diff --git a/site/static/emojis/1f9cf-1f3fc-200d-2640-fe0f.png b/site/static/emojis/1f9cf-1f3fc-200d-2640-fe0f.png new file mode 100644 index 0000000000000..04e20bfabcd10 Binary files /dev/null and b/site/static/emojis/1f9cf-1f3fc-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f9cf-1f3fc-200d-2642-fe0f.png b/site/static/emojis/1f9cf-1f3fc-200d-2642-fe0f.png new file mode 100644 index 0000000000000..597c758ad8c11 Binary files /dev/null and b/site/static/emojis/1f9cf-1f3fc-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f9cf-1f3fc.png b/site/static/emojis/1f9cf-1f3fc.png new file mode 100644 index 0000000000000..6c520175a12d6 Binary files /dev/null and b/site/static/emojis/1f9cf-1f3fc.png differ diff --git a/site/static/emojis/1f9cf-1f3fd-200d-2640-fe0f.png b/site/static/emojis/1f9cf-1f3fd-200d-2640-fe0f.png new file mode 100644 index 0000000000000..189eadc66599d Binary files /dev/null and b/site/static/emojis/1f9cf-1f3fd-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f9cf-1f3fd-200d-2642-fe0f.png b/site/static/emojis/1f9cf-1f3fd-200d-2642-fe0f.png new file mode 100644 index 0000000000000..9201ed2c38ad5 Binary files /dev/null and b/site/static/emojis/1f9cf-1f3fd-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f9cf-1f3fd.png b/site/static/emojis/1f9cf-1f3fd.png new file mode 100644 index 0000000000000..6819537224462 Binary files /dev/null and b/site/static/emojis/1f9cf-1f3fd.png differ diff --git a/site/static/emojis/1f9cf-1f3fe-200d-2640-fe0f.png b/site/static/emojis/1f9cf-1f3fe-200d-2640-fe0f.png new file mode 100644 index 0000000000000..6ad5401b20aec Binary files /dev/null and b/site/static/emojis/1f9cf-1f3fe-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f9cf-1f3fe-200d-2642-fe0f.png b/site/static/emojis/1f9cf-1f3fe-200d-2642-fe0f.png new file mode 100644 index 0000000000000..ef77e24e5c5c1 Binary files /dev/null and b/site/static/emojis/1f9cf-1f3fe-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f9cf-1f3fe.png b/site/static/emojis/1f9cf-1f3fe.png new file mode 100644 index 0000000000000..b9f5a2e2b3458 Binary files /dev/null and b/site/static/emojis/1f9cf-1f3fe.png differ diff --git a/site/static/emojis/1f9cf-1f3ff-200d-2640-fe0f.png b/site/static/emojis/1f9cf-1f3ff-200d-2640-fe0f.png new file mode 100644 index 0000000000000..7402f46bbf345 Binary files /dev/null and b/site/static/emojis/1f9cf-1f3ff-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f9cf-1f3ff-200d-2642-fe0f.png b/site/static/emojis/1f9cf-1f3ff-200d-2642-fe0f.png new file mode 100644 index 0000000000000..c603479f2c085 Binary files /dev/null and b/site/static/emojis/1f9cf-1f3ff-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f9cf-1f3ff.png b/site/static/emojis/1f9cf-1f3ff.png new file mode 100644 index 0000000000000..9e0b55eee1054 Binary files /dev/null and b/site/static/emojis/1f9cf-1f3ff.png differ diff --git a/site/static/emojis/1f9cf-200d-2640-fe0f.png b/site/static/emojis/1f9cf-200d-2640-fe0f.png new file mode 100644 index 0000000000000..36c5770c17f0e Binary files /dev/null and b/site/static/emojis/1f9cf-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f9cf-200d-2642-fe0f.png b/site/static/emojis/1f9cf-200d-2642-fe0f.png new file mode 100644 index 0000000000000..86d326cc5f945 Binary files /dev/null and b/site/static/emojis/1f9cf-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f9cf.png b/site/static/emojis/1f9cf.png new file mode 100644 index 0000000000000..0af9d1827da67 Binary files /dev/null and b/site/static/emojis/1f9cf.png differ diff --git a/site/static/emojis/1f9d0.png b/site/static/emojis/1f9d0.png new file mode 100644 index 0000000000000..33b85f47a0622 Binary files /dev/null and b/site/static/emojis/1f9d0.png differ diff --git a/site/static/emojis/1f9d1-1f3fb-200d-1f33e.png b/site/static/emojis/1f9d1-1f3fb-200d-1f33e.png new file mode 100644 index 0000000000000..e5a3b549bdd98 Binary files /dev/null and b/site/static/emojis/1f9d1-1f3fb-200d-1f33e.png differ diff --git a/site/static/emojis/1f9d1-1f3fb-200d-1f373.png b/site/static/emojis/1f9d1-1f3fb-200d-1f373.png new file mode 100644 index 0000000000000..eb9beba629d04 Binary files /dev/null and b/site/static/emojis/1f9d1-1f3fb-200d-1f373.png differ diff --git a/site/static/emojis/1f9d1-1f3fb-200d-1f37c.png b/site/static/emojis/1f9d1-1f3fb-200d-1f37c.png new file mode 100644 index 0000000000000..4932c45b65550 Binary files /dev/null and b/site/static/emojis/1f9d1-1f3fb-200d-1f37c.png differ diff --git a/site/static/emojis/1f9d1-1f3fb-200d-1f384.png b/site/static/emojis/1f9d1-1f3fb-200d-1f384.png new file mode 100644 index 0000000000000..172f05ce7b6e2 Binary files /dev/null and b/site/static/emojis/1f9d1-1f3fb-200d-1f384.png differ diff --git a/site/static/emojis/1f9d1-1f3fb-200d-1f393.png b/site/static/emojis/1f9d1-1f3fb-200d-1f393.png new file mode 100644 index 0000000000000..04a6808924484 Binary files /dev/null and b/site/static/emojis/1f9d1-1f3fb-200d-1f393.png differ diff --git a/site/static/emojis/1f9d1-1f3fb-200d-1f3a4.png b/site/static/emojis/1f9d1-1f3fb-200d-1f3a4.png new file mode 100644 index 0000000000000..0c7b34b6a2ef1 Binary files /dev/null and b/site/static/emojis/1f9d1-1f3fb-200d-1f3a4.png differ diff --git a/site/static/emojis/1f9d1-1f3fb-200d-1f3a8.png b/site/static/emojis/1f9d1-1f3fb-200d-1f3a8.png new file mode 100644 index 0000000000000..477eb7b768712 Binary files /dev/null and b/site/static/emojis/1f9d1-1f3fb-200d-1f3a8.png differ diff --git a/site/static/emojis/1f9d1-1f3fb-200d-1f3eb.png b/site/static/emojis/1f9d1-1f3fb-200d-1f3eb.png new file mode 100644 index 0000000000000..f4af417b4a062 Binary files /dev/null and b/site/static/emojis/1f9d1-1f3fb-200d-1f3eb.png differ diff --git a/site/static/emojis/1f9d1-1f3fb-200d-1f3ed.png b/site/static/emojis/1f9d1-1f3fb-200d-1f3ed.png new file mode 100644 index 0000000000000..cd118e602fa71 Binary files /dev/null and b/site/static/emojis/1f9d1-1f3fb-200d-1f3ed.png differ diff --git a/site/static/emojis/1f9d1-1f3fb-200d-1f4bb.png b/site/static/emojis/1f9d1-1f3fb-200d-1f4bb.png new file mode 100644 index 0000000000000..dd92bca709b32 Binary files /dev/null and b/site/static/emojis/1f9d1-1f3fb-200d-1f4bb.png differ diff --git a/site/static/emojis/1f9d1-1f3fb-200d-1f4bc.png b/site/static/emojis/1f9d1-1f3fb-200d-1f4bc.png new file mode 100644 index 0000000000000..b579f983e742b Binary files /dev/null and b/site/static/emojis/1f9d1-1f3fb-200d-1f4bc.png differ diff --git a/site/static/emojis/1f9d1-1f3fb-200d-1f527.png b/site/static/emojis/1f9d1-1f3fb-200d-1f527.png new file mode 100644 index 0000000000000..98b9e863b14ce Binary files /dev/null and b/site/static/emojis/1f9d1-1f3fb-200d-1f527.png differ diff --git a/site/static/emojis/1f9d1-1f3fb-200d-1f52c.png b/site/static/emojis/1f9d1-1f3fb-200d-1f52c.png new file mode 100644 index 0000000000000..c1124158a7c10 Binary files /dev/null and b/site/static/emojis/1f9d1-1f3fb-200d-1f52c.png differ diff --git a/site/static/emojis/1f9d1-1f3fb-200d-1f680.png b/site/static/emojis/1f9d1-1f3fb-200d-1f680.png new file mode 100644 index 0000000000000..78c64474ab296 Binary files /dev/null and b/site/static/emojis/1f9d1-1f3fb-200d-1f680.png differ diff --git a/site/static/emojis/1f9d1-1f3fb-200d-1f692.png b/site/static/emojis/1f9d1-1f3fb-200d-1f692.png new file mode 100644 index 0000000000000..dde98a30dd7a7 Binary files /dev/null and b/site/static/emojis/1f9d1-1f3fb-200d-1f692.png differ diff --git a/site/static/emojis/1f9d1-1f3fb-200d-1f91d-200d-1f9d1-1f3fb.png b/site/static/emojis/1f9d1-1f3fb-200d-1f91d-200d-1f9d1-1f3fb.png new file mode 100644 index 0000000000000..68770f73c8125 Binary files /dev/null and b/site/static/emojis/1f9d1-1f3fb-200d-1f91d-200d-1f9d1-1f3fb.png differ diff --git a/site/static/emojis/1f9d1-1f3fb-200d-1f91d-200d-1f9d1-1f3fc.png b/site/static/emojis/1f9d1-1f3fb-200d-1f91d-200d-1f9d1-1f3fc.png new file mode 100644 index 0000000000000..634f7a4466037 Binary files /dev/null and b/site/static/emojis/1f9d1-1f3fb-200d-1f91d-200d-1f9d1-1f3fc.png differ diff --git a/site/static/emojis/1f9d1-1f3fb-200d-1f91d-200d-1f9d1-1f3fd.png b/site/static/emojis/1f9d1-1f3fb-200d-1f91d-200d-1f9d1-1f3fd.png new file mode 100644 index 0000000000000..50859462f4828 Binary files /dev/null and b/site/static/emojis/1f9d1-1f3fb-200d-1f91d-200d-1f9d1-1f3fd.png differ diff --git a/site/static/emojis/1f9d1-1f3fb-200d-1f91d-200d-1f9d1-1f3fe.png b/site/static/emojis/1f9d1-1f3fb-200d-1f91d-200d-1f9d1-1f3fe.png new file mode 100644 index 0000000000000..b231dd826d5f5 Binary files /dev/null and b/site/static/emojis/1f9d1-1f3fb-200d-1f91d-200d-1f9d1-1f3fe.png differ diff --git a/site/static/emojis/1f9d1-1f3fb-200d-1f91d-200d-1f9d1-1f3ff.png b/site/static/emojis/1f9d1-1f3fb-200d-1f91d-200d-1f9d1-1f3ff.png new file mode 100644 index 0000000000000..9e3ed2aeb25b2 Binary files /dev/null and b/site/static/emojis/1f9d1-1f3fb-200d-1f91d-200d-1f9d1-1f3ff.png differ diff --git a/site/static/emojis/1f9d1-1f3fb-200d-1f9af.png b/site/static/emojis/1f9d1-1f3fb-200d-1f9af.png new file mode 100644 index 0000000000000..503ee1560521a Binary files /dev/null and b/site/static/emojis/1f9d1-1f3fb-200d-1f9af.png differ diff --git a/site/static/emojis/1f9d1-1f3fb-200d-1f9b0.png b/site/static/emojis/1f9d1-1f3fb-200d-1f9b0.png new file mode 100644 index 0000000000000..ced2e66c4819a Binary files /dev/null and b/site/static/emojis/1f9d1-1f3fb-200d-1f9b0.png differ diff --git a/site/static/emojis/1f9d1-1f3fb-200d-1f9b1.png b/site/static/emojis/1f9d1-1f3fb-200d-1f9b1.png new file mode 100644 index 0000000000000..2b50eecf35dcc Binary files /dev/null and b/site/static/emojis/1f9d1-1f3fb-200d-1f9b1.png differ diff --git a/site/static/emojis/1f9d1-1f3fb-200d-1f9b2.png b/site/static/emojis/1f9d1-1f3fb-200d-1f9b2.png new file mode 100644 index 0000000000000..88e6ecb323bec Binary files /dev/null and b/site/static/emojis/1f9d1-1f3fb-200d-1f9b2.png differ diff --git a/site/static/emojis/1f9d1-1f3fb-200d-1f9b3.png b/site/static/emojis/1f9d1-1f3fb-200d-1f9b3.png new file mode 100644 index 0000000000000..1e07f773a05c4 Binary files /dev/null and b/site/static/emojis/1f9d1-1f3fb-200d-1f9b3.png differ diff --git a/site/static/emojis/1f9d1-1f3fb-200d-1f9bc.png b/site/static/emojis/1f9d1-1f3fb-200d-1f9bc.png new file mode 100644 index 0000000000000..503975f062cb9 Binary files /dev/null and b/site/static/emojis/1f9d1-1f3fb-200d-1f9bc.png differ diff --git a/site/static/emojis/1f9d1-1f3fb-200d-1f9bd.png b/site/static/emojis/1f9d1-1f3fb-200d-1f9bd.png new file mode 100644 index 0000000000000..33b5c740c9fee Binary files /dev/null and b/site/static/emojis/1f9d1-1f3fb-200d-1f9bd.png differ diff --git a/site/static/emojis/1f9d1-1f3fb-200d-2695-fe0f.png b/site/static/emojis/1f9d1-1f3fb-200d-2695-fe0f.png new file mode 100644 index 0000000000000..11ed16166b49c Binary files /dev/null and b/site/static/emojis/1f9d1-1f3fb-200d-2695-fe0f.png differ diff --git a/site/static/emojis/1f9d1-1f3fb-200d-2696-fe0f.png b/site/static/emojis/1f9d1-1f3fb-200d-2696-fe0f.png new file mode 100644 index 0000000000000..7831dd8e1503e Binary files /dev/null and b/site/static/emojis/1f9d1-1f3fb-200d-2696-fe0f.png differ diff --git a/site/static/emojis/1f9d1-1f3fb-200d-2708-fe0f.png b/site/static/emojis/1f9d1-1f3fb-200d-2708-fe0f.png new file mode 100644 index 0000000000000..ad7873dabe2e3 Binary files /dev/null and b/site/static/emojis/1f9d1-1f3fb-200d-2708-fe0f.png differ diff --git a/site/static/emojis/1f9d1-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3fc.png b/site/static/emojis/1f9d1-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3fc.png new file mode 100644 index 0000000000000..24471dfbf450b Binary files /dev/null and b/site/static/emojis/1f9d1-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3fc.png differ diff --git a/site/static/emojis/1f9d1-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3fd.png b/site/static/emojis/1f9d1-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3fd.png new file mode 100644 index 0000000000000..69cb7fdab5808 Binary files /dev/null and b/site/static/emojis/1f9d1-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3fd.png differ diff --git a/site/static/emojis/1f9d1-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3fe.png b/site/static/emojis/1f9d1-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3fe.png new file mode 100644 index 0000000000000..4aaa6add7e2a1 Binary files /dev/null and b/site/static/emojis/1f9d1-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3fe.png differ diff --git a/site/static/emojis/1f9d1-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3ff.png b/site/static/emojis/1f9d1-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3ff.png new file mode 100644 index 0000000000000..347575b4eea86 Binary files /dev/null and b/site/static/emojis/1f9d1-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3ff.png differ diff --git a/site/static/emojis/1f9d1-1f3fb-200d-2764-fe0f-200d-1f9d1-1f3fc.png b/site/static/emojis/1f9d1-1f3fb-200d-2764-fe0f-200d-1f9d1-1f3fc.png new file mode 100644 index 0000000000000..0ce8aca1fcc91 Binary files /dev/null and b/site/static/emojis/1f9d1-1f3fb-200d-2764-fe0f-200d-1f9d1-1f3fc.png differ diff --git a/site/static/emojis/1f9d1-1f3fb-200d-2764-fe0f-200d-1f9d1-1f3fd.png b/site/static/emojis/1f9d1-1f3fb-200d-2764-fe0f-200d-1f9d1-1f3fd.png new file mode 100644 index 0000000000000..33ecddcd697ee Binary files /dev/null and b/site/static/emojis/1f9d1-1f3fb-200d-2764-fe0f-200d-1f9d1-1f3fd.png differ diff --git a/site/static/emojis/1f9d1-1f3fb-200d-2764-fe0f-200d-1f9d1-1f3fe.png b/site/static/emojis/1f9d1-1f3fb-200d-2764-fe0f-200d-1f9d1-1f3fe.png new file mode 100644 index 0000000000000..ae01e0416eab3 Binary files /dev/null and b/site/static/emojis/1f9d1-1f3fb-200d-2764-fe0f-200d-1f9d1-1f3fe.png differ diff --git a/site/static/emojis/1f9d1-1f3fb-200d-2764-fe0f-200d-1f9d1-1f3ff.png b/site/static/emojis/1f9d1-1f3fb-200d-2764-fe0f-200d-1f9d1-1f3ff.png new file mode 100644 index 0000000000000..22ff8e141d856 Binary files /dev/null and b/site/static/emojis/1f9d1-1f3fb-200d-2764-fe0f-200d-1f9d1-1f3ff.png differ diff --git a/site/static/emojis/1f9d1-1f3fb.png b/site/static/emojis/1f9d1-1f3fb.png new file mode 100644 index 0000000000000..31093adbc466c Binary files /dev/null and b/site/static/emojis/1f9d1-1f3fb.png differ diff --git a/site/static/emojis/1f9d1-1f3fc-200d-1f33e.png b/site/static/emojis/1f9d1-1f3fc-200d-1f33e.png new file mode 100644 index 0000000000000..905e04f98f4af Binary files /dev/null and b/site/static/emojis/1f9d1-1f3fc-200d-1f33e.png differ diff --git a/site/static/emojis/1f9d1-1f3fc-200d-1f373.png b/site/static/emojis/1f9d1-1f3fc-200d-1f373.png new file mode 100644 index 0000000000000..d6042efa39109 Binary files /dev/null and b/site/static/emojis/1f9d1-1f3fc-200d-1f373.png differ diff --git a/site/static/emojis/1f9d1-1f3fc-200d-1f37c.png b/site/static/emojis/1f9d1-1f3fc-200d-1f37c.png new file mode 100644 index 0000000000000..46af1cc5f4df9 Binary files /dev/null and b/site/static/emojis/1f9d1-1f3fc-200d-1f37c.png differ diff --git a/site/static/emojis/1f9d1-1f3fc-200d-1f384.png b/site/static/emojis/1f9d1-1f3fc-200d-1f384.png new file mode 100644 index 0000000000000..a25be0e159f72 Binary files /dev/null and b/site/static/emojis/1f9d1-1f3fc-200d-1f384.png differ diff --git a/site/static/emojis/1f9d1-1f3fc-200d-1f393.png b/site/static/emojis/1f9d1-1f3fc-200d-1f393.png new file mode 100644 index 0000000000000..f1052bb5858fd Binary files /dev/null and b/site/static/emojis/1f9d1-1f3fc-200d-1f393.png differ diff --git a/site/static/emojis/1f9d1-1f3fc-200d-1f3a4.png b/site/static/emojis/1f9d1-1f3fc-200d-1f3a4.png new file mode 100644 index 0000000000000..03f3eec5d6b0c Binary files /dev/null and b/site/static/emojis/1f9d1-1f3fc-200d-1f3a4.png differ diff --git a/site/static/emojis/1f9d1-1f3fc-200d-1f3a8.png b/site/static/emojis/1f9d1-1f3fc-200d-1f3a8.png new file mode 100644 index 0000000000000..37811e394ec2e Binary files /dev/null and b/site/static/emojis/1f9d1-1f3fc-200d-1f3a8.png differ diff --git a/site/static/emojis/1f9d1-1f3fc-200d-1f3eb.png b/site/static/emojis/1f9d1-1f3fc-200d-1f3eb.png new file mode 100644 index 0000000000000..b43288fa3c497 Binary files /dev/null and b/site/static/emojis/1f9d1-1f3fc-200d-1f3eb.png differ diff --git a/site/static/emojis/1f9d1-1f3fc-200d-1f3ed.png b/site/static/emojis/1f9d1-1f3fc-200d-1f3ed.png new file mode 100644 index 0000000000000..c13227b4deb7d Binary files /dev/null and b/site/static/emojis/1f9d1-1f3fc-200d-1f3ed.png differ diff --git a/site/static/emojis/1f9d1-1f3fc-200d-1f4bb.png b/site/static/emojis/1f9d1-1f3fc-200d-1f4bb.png new file mode 100644 index 0000000000000..17a367469837b Binary files /dev/null and b/site/static/emojis/1f9d1-1f3fc-200d-1f4bb.png differ diff --git a/site/static/emojis/1f9d1-1f3fc-200d-1f4bc.png b/site/static/emojis/1f9d1-1f3fc-200d-1f4bc.png new file mode 100644 index 0000000000000..8451d350461d7 Binary files /dev/null and b/site/static/emojis/1f9d1-1f3fc-200d-1f4bc.png differ diff --git a/site/static/emojis/1f9d1-1f3fc-200d-1f527.png b/site/static/emojis/1f9d1-1f3fc-200d-1f527.png new file mode 100644 index 0000000000000..63d8a78a93d30 Binary files /dev/null and b/site/static/emojis/1f9d1-1f3fc-200d-1f527.png differ diff --git a/site/static/emojis/1f9d1-1f3fc-200d-1f52c.png b/site/static/emojis/1f9d1-1f3fc-200d-1f52c.png new file mode 100644 index 0000000000000..4c6a6f2669de0 Binary files /dev/null and b/site/static/emojis/1f9d1-1f3fc-200d-1f52c.png differ diff --git a/site/static/emojis/1f9d1-1f3fc-200d-1f680.png b/site/static/emojis/1f9d1-1f3fc-200d-1f680.png new file mode 100644 index 0000000000000..162c4d9a48f4d Binary files /dev/null and b/site/static/emojis/1f9d1-1f3fc-200d-1f680.png differ diff --git a/site/static/emojis/1f9d1-1f3fc-200d-1f692.png b/site/static/emojis/1f9d1-1f3fc-200d-1f692.png new file mode 100644 index 0000000000000..fc28a8c1692c2 Binary files /dev/null and b/site/static/emojis/1f9d1-1f3fc-200d-1f692.png differ diff --git a/site/static/emojis/1f9d1-1f3fc-200d-1f91d-200d-1f9d1-1f3fb.png b/site/static/emojis/1f9d1-1f3fc-200d-1f91d-200d-1f9d1-1f3fb.png new file mode 100644 index 0000000000000..ee80b1d08356b Binary files /dev/null and b/site/static/emojis/1f9d1-1f3fc-200d-1f91d-200d-1f9d1-1f3fb.png differ diff --git a/site/static/emojis/1f9d1-1f3fc-200d-1f91d-200d-1f9d1-1f3fc.png b/site/static/emojis/1f9d1-1f3fc-200d-1f91d-200d-1f9d1-1f3fc.png new file mode 100644 index 0000000000000..b3d999a8c477d Binary files /dev/null and b/site/static/emojis/1f9d1-1f3fc-200d-1f91d-200d-1f9d1-1f3fc.png differ diff --git a/site/static/emojis/1f9d1-1f3fc-200d-1f91d-200d-1f9d1-1f3fd.png b/site/static/emojis/1f9d1-1f3fc-200d-1f91d-200d-1f9d1-1f3fd.png new file mode 100644 index 0000000000000..c2573b70952cd Binary files /dev/null and b/site/static/emojis/1f9d1-1f3fc-200d-1f91d-200d-1f9d1-1f3fd.png differ diff --git a/site/static/emojis/1f9d1-1f3fc-200d-1f91d-200d-1f9d1-1f3fe.png b/site/static/emojis/1f9d1-1f3fc-200d-1f91d-200d-1f9d1-1f3fe.png new file mode 100644 index 0000000000000..d641e2375f47e Binary files /dev/null and b/site/static/emojis/1f9d1-1f3fc-200d-1f91d-200d-1f9d1-1f3fe.png differ diff --git a/site/static/emojis/1f9d1-1f3fc-200d-1f91d-200d-1f9d1-1f3ff.png b/site/static/emojis/1f9d1-1f3fc-200d-1f91d-200d-1f9d1-1f3ff.png new file mode 100644 index 0000000000000..2a29c96ef41c3 Binary files /dev/null and b/site/static/emojis/1f9d1-1f3fc-200d-1f91d-200d-1f9d1-1f3ff.png differ diff --git a/site/static/emojis/1f9d1-1f3fc-200d-1f9af.png b/site/static/emojis/1f9d1-1f3fc-200d-1f9af.png new file mode 100644 index 0000000000000..870d4453e5d91 Binary files /dev/null and b/site/static/emojis/1f9d1-1f3fc-200d-1f9af.png differ diff --git a/site/static/emojis/1f9d1-1f3fc-200d-1f9b0.png b/site/static/emojis/1f9d1-1f3fc-200d-1f9b0.png new file mode 100644 index 0000000000000..0a951625f380d Binary files /dev/null and b/site/static/emojis/1f9d1-1f3fc-200d-1f9b0.png differ diff --git a/site/static/emojis/1f9d1-1f3fc-200d-1f9b1.png b/site/static/emojis/1f9d1-1f3fc-200d-1f9b1.png new file mode 100644 index 0000000000000..d1cea53bb0f3c Binary files /dev/null and b/site/static/emojis/1f9d1-1f3fc-200d-1f9b1.png differ diff --git a/site/static/emojis/1f9d1-1f3fc-200d-1f9b2.png b/site/static/emojis/1f9d1-1f3fc-200d-1f9b2.png new file mode 100644 index 0000000000000..1065c6bf4b1e3 Binary files /dev/null and b/site/static/emojis/1f9d1-1f3fc-200d-1f9b2.png differ diff --git a/site/static/emojis/1f9d1-1f3fc-200d-1f9b3.png b/site/static/emojis/1f9d1-1f3fc-200d-1f9b3.png new file mode 100644 index 0000000000000..4c2b85a3fcc7f Binary files /dev/null and b/site/static/emojis/1f9d1-1f3fc-200d-1f9b3.png differ diff --git a/site/static/emojis/1f9d1-1f3fc-200d-1f9bc.png b/site/static/emojis/1f9d1-1f3fc-200d-1f9bc.png new file mode 100644 index 0000000000000..31a737e825a99 Binary files /dev/null and b/site/static/emojis/1f9d1-1f3fc-200d-1f9bc.png differ diff --git a/site/static/emojis/1f9d1-1f3fc-200d-1f9bd.png b/site/static/emojis/1f9d1-1f3fc-200d-1f9bd.png new file mode 100644 index 0000000000000..18255458fb51c Binary files /dev/null and b/site/static/emojis/1f9d1-1f3fc-200d-1f9bd.png differ diff --git a/site/static/emojis/1f9d1-1f3fc-200d-2695-fe0f.png b/site/static/emojis/1f9d1-1f3fc-200d-2695-fe0f.png new file mode 100644 index 0000000000000..722e6e6b20907 Binary files /dev/null and b/site/static/emojis/1f9d1-1f3fc-200d-2695-fe0f.png differ diff --git a/site/static/emojis/1f9d1-1f3fc-200d-2696-fe0f.png b/site/static/emojis/1f9d1-1f3fc-200d-2696-fe0f.png new file mode 100644 index 0000000000000..21ec0e9c5bfd5 Binary files /dev/null and b/site/static/emojis/1f9d1-1f3fc-200d-2696-fe0f.png differ diff --git a/site/static/emojis/1f9d1-1f3fc-200d-2708-fe0f.png b/site/static/emojis/1f9d1-1f3fc-200d-2708-fe0f.png new file mode 100644 index 0000000000000..1e1a9ffeea64f Binary files /dev/null and b/site/static/emojis/1f9d1-1f3fc-200d-2708-fe0f.png differ diff --git a/site/static/emojis/1f9d1-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3fb.png b/site/static/emojis/1f9d1-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3fb.png new file mode 100644 index 0000000000000..5ddf4016f7d2a Binary files /dev/null and b/site/static/emojis/1f9d1-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3fb.png differ diff --git a/site/static/emojis/1f9d1-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3fd.png b/site/static/emojis/1f9d1-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3fd.png new file mode 100644 index 0000000000000..a38e6a28c3849 Binary files /dev/null and b/site/static/emojis/1f9d1-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3fd.png differ diff --git a/site/static/emojis/1f9d1-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3fe.png b/site/static/emojis/1f9d1-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3fe.png new file mode 100644 index 0000000000000..9908e3b8939a4 Binary files /dev/null and b/site/static/emojis/1f9d1-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3fe.png differ diff --git a/site/static/emojis/1f9d1-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3ff.png b/site/static/emojis/1f9d1-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3ff.png new file mode 100644 index 0000000000000..b4f5862b11f01 Binary files /dev/null and b/site/static/emojis/1f9d1-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3ff.png differ diff --git a/site/static/emojis/1f9d1-1f3fc-200d-2764-fe0f-200d-1f9d1-1f3fb.png b/site/static/emojis/1f9d1-1f3fc-200d-2764-fe0f-200d-1f9d1-1f3fb.png new file mode 100644 index 0000000000000..e20d7ad764fcb Binary files /dev/null and b/site/static/emojis/1f9d1-1f3fc-200d-2764-fe0f-200d-1f9d1-1f3fb.png differ diff --git a/site/static/emojis/1f9d1-1f3fc-200d-2764-fe0f-200d-1f9d1-1f3fd.png b/site/static/emojis/1f9d1-1f3fc-200d-2764-fe0f-200d-1f9d1-1f3fd.png new file mode 100644 index 0000000000000..49a1b8d104584 Binary files /dev/null and b/site/static/emojis/1f9d1-1f3fc-200d-2764-fe0f-200d-1f9d1-1f3fd.png differ diff --git a/site/static/emojis/1f9d1-1f3fc-200d-2764-fe0f-200d-1f9d1-1f3fe.png b/site/static/emojis/1f9d1-1f3fc-200d-2764-fe0f-200d-1f9d1-1f3fe.png new file mode 100644 index 0000000000000..12a7abc495ef3 Binary files /dev/null and b/site/static/emojis/1f9d1-1f3fc-200d-2764-fe0f-200d-1f9d1-1f3fe.png differ diff --git a/site/static/emojis/1f9d1-1f3fc-200d-2764-fe0f-200d-1f9d1-1f3ff.png b/site/static/emojis/1f9d1-1f3fc-200d-2764-fe0f-200d-1f9d1-1f3ff.png new file mode 100644 index 0000000000000..66e9e117b25a2 Binary files /dev/null and b/site/static/emojis/1f9d1-1f3fc-200d-2764-fe0f-200d-1f9d1-1f3ff.png differ diff --git a/site/static/emojis/1f9d1-1f3fc.png b/site/static/emojis/1f9d1-1f3fc.png new file mode 100644 index 0000000000000..d3451581d13ea Binary files /dev/null and b/site/static/emojis/1f9d1-1f3fc.png differ diff --git a/site/static/emojis/1f9d1-1f3fd-200d-1f33e.png b/site/static/emojis/1f9d1-1f3fd-200d-1f33e.png new file mode 100644 index 0000000000000..444160826b0d1 Binary files /dev/null and b/site/static/emojis/1f9d1-1f3fd-200d-1f33e.png differ diff --git a/site/static/emojis/1f9d1-1f3fd-200d-1f373.png b/site/static/emojis/1f9d1-1f3fd-200d-1f373.png new file mode 100644 index 0000000000000..5fb0463a0ff84 Binary files /dev/null and b/site/static/emojis/1f9d1-1f3fd-200d-1f373.png differ diff --git a/site/static/emojis/1f9d1-1f3fd-200d-1f37c.png b/site/static/emojis/1f9d1-1f3fd-200d-1f37c.png new file mode 100644 index 0000000000000..478a66ddc3d98 Binary files /dev/null and b/site/static/emojis/1f9d1-1f3fd-200d-1f37c.png differ diff --git a/site/static/emojis/1f9d1-1f3fd-200d-1f384.png b/site/static/emojis/1f9d1-1f3fd-200d-1f384.png new file mode 100644 index 0000000000000..9c7db219b5eed Binary files /dev/null and b/site/static/emojis/1f9d1-1f3fd-200d-1f384.png differ diff --git a/site/static/emojis/1f9d1-1f3fd-200d-1f393.png b/site/static/emojis/1f9d1-1f3fd-200d-1f393.png new file mode 100644 index 0000000000000..d7414dd375dc3 Binary files /dev/null and b/site/static/emojis/1f9d1-1f3fd-200d-1f393.png differ diff --git a/site/static/emojis/1f9d1-1f3fd-200d-1f3a4.png b/site/static/emojis/1f9d1-1f3fd-200d-1f3a4.png new file mode 100644 index 0000000000000..d0f9741456892 Binary files /dev/null and b/site/static/emojis/1f9d1-1f3fd-200d-1f3a4.png differ diff --git a/site/static/emojis/1f9d1-1f3fd-200d-1f3a8.png b/site/static/emojis/1f9d1-1f3fd-200d-1f3a8.png new file mode 100644 index 0000000000000..e8ef80d7f5835 Binary files /dev/null and b/site/static/emojis/1f9d1-1f3fd-200d-1f3a8.png differ diff --git a/site/static/emojis/1f9d1-1f3fd-200d-1f3eb.png b/site/static/emojis/1f9d1-1f3fd-200d-1f3eb.png new file mode 100644 index 0000000000000..027833aa9c988 Binary files /dev/null and b/site/static/emojis/1f9d1-1f3fd-200d-1f3eb.png differ diff --git a/site/static/emojis/1f9d1-1f3fd-200d-1f3ed.png b/site/static/emojis/1f9d1-1f3fd-200d-1f3ed.png new file mode 100644 index 0000000000000..010030d665864 Binary files /dev/null and b/site/static/emojis/1f9d1-1f3fd-200d-1f3ed.png differ diff --git a/site/static/emojis/1f9d1-1f3fd-200d-1f4bb.png b/site/static/emojis/1f9d1-1f3fd-200d-1f4bb.png new file mode 100644 index 0000000000000..0852cc01d35f6 Binary files /dev/null and b/site/static/emojis/1f9d1-1f3fd-200d-1f4bb.png differ diff --git a/site/static/emojis/1f9d1-1f3fd-200d-1f4bc.png b/site/static/emojis/1f9d1-1f3fd-200d-1f4bc.png new file mode 100644 index 0000000000000..95f6a939acecc Binary files /dev/null and b/site/static/emojis/1f9d1-1f3fd-200d-1f4bc.png differ diff --git a/site/static/emojis/1f9d1-1f3fd-200d-1f527.png b/site/static/emojis/1f9d1-1f3fd-200d-1f527.png new file mode 100644 index 0000000000000..ca32388149f58 Binary files /dev/null and b/site/static/emojis/1f9d1-1f3fd-200d-1f527.png differ diff --git a/site/static/emojis/1f9d1-1f3fd-200d-1f52c.png b/site/static/emojis/1f9d1-1f3fd-200d-1f52c.png new file mode 100644 index 0000000000000..5ae8cccb5d74f Binary files /dev/null and b/site/static/emojis/1f9d1-1f3fd-200d-1f52c.png differ diff --git a/site/static/emojis/1f9d1-1f3fd-200d-1f680.png b/site/static/emojis/1f9d1-1f3fd-200d-1f680.png new file mode 100644 index 0000000000000..d50c65013980d Binary files /dev/null and b/site/static/emojis/1f9d1-1f3fd-200d-1f680.png differ diff --git a/site/static/emojis/1f9d1-1f3fd-200d-1f692.png b/site/static/emojis/1f9d1-1f3fd-200d-1f692.png new file mode 100644 index 0000000000000..79f3dbaa0e486 Binary files /dev/null and b/site/static/emojis/1f9d1-1f3fd-200d-1f692.png differ diff --git a/site/static/emojis/1f9d1-1f3fd-200d-1f91d-200d-1f9d1-1f3fb.png b/site/static/emojis/1f9d1-1f3fd-200d-1f91d-200d-1f9d1-1f3fb.png new file mode 100644 index 0000000000000..5b2f725e1dd0d Binary files /dev/null and b/site/static/emojis/1f9d1-1f3fd-200d-1f91d-200d-1f9d1-1f3fb.png differ diff --git a/site/static/emojis/1f9d1-1f3fd-200d-1f91d-200d-1f9d1-1f3fc.png b/site/static/emojis/1f9d1-1f3fd-200d-1f91d-200d-1f9d1-1f3fc.png new file mode 100644 index 0000000000000..229c18d1c5d34 Binary files /dev/null and b/site/static/emojis/1f9d1-1f3fd-200d-1f91d-200d-1f9d1-1f3fc.png differ diff --git a/site/static/emojis/1f9d1-1f3fd-200d-1f91d-200d-1f9d1-1f3fd.png b/site/static/emojis/1f9d1-1f3fd-200d-1f91d-200d-1f9d1-1f3fd.png new file mode 100644 index 0000000000000..c6fcaea042d0b Binary files /dev/null and b/site/static/emojis/1f9d1-1f3fd-200d-1f91d-200d-1f9d1-1f3fd.png differ diff --git a/site/static/emojis/1f9d1-1f3fd-200d-1f91d-200d-1f9d1-1f3fe.png b/site/static/emojis/1f9d1-1f3fd-200d-1f91d-200d-1f9d1-1f3fe.png new file mode 100644 index 0000000000000..ac99a2c1fb04c Binary files /dev/null and b/site/static/emojis/1f9d1-1f3fd-200d-1f91d-200d-1f9d1-1f3fe.png differ diff --git a/site/static/emojis/1f9d1-1f3fd-200d-1f91d-200d-1f9d1-1f3ff.png b/site/static/emojis/1f9d1-1f3fd-200d-1f91d-200d-1f9d1-1f3ff.png new file mode 100644 index 0000000000000..2f80d05c55ac5 Binary files /dev/null and b/site/static/emojis/1f9d1-1f3fd-200d-1f91d-200d-1f9d1-1f3ff.png differ diff --git a/site/static/emojis/1f9d1-1f3fd-200d-1f9af.png b/site/static/emojis/1f9d1-1f3fd-200d-1f9af.png new file mode 100644 index 0000000000000..260507ef51c7d Binary files /dev/null and b/site/static/emojis/1f9d1-1f3fd-200d-1f9af.png differ diff --git a/site/static/emojis/1f9d1-1f3fd-200d-1f9b0.png b/site/static/emojis/1f9d1-1f3fd-200d-1f9b0.png new file mode 100644 index 0000000000000..f11dff11902f5 Binary files /dev/null and b/site/static/emojis/1f9d1-1f3fd-200d-1f9b0.png differ diff --git a/site/static/emojis/1f9d1-1f3fd-200d-1f9b1.png b/site/static/emojis/1f9d1-1f3fd-200d-1f9b1.png new file mode 100644 index 0000000000000..37587d5ffd331 Binary files /dev/null and b/site/static/emojis/1f9d1-1f3fd-200d-1f9b1.png differ diff --git a/site/static/emojis/1f9d1-1f3fd-200d-1f9b2.png b/site/static/emojis/1f9d1-1f3fd-200d-1f9b2.png new file mode 100644 index 0000000000000..609b41b7b2920 Binary files /dev/null and b/site/static/emojis/1f9d1-1f3fd-200d-1f9b2.png differ diff --git a/site/static/emojis/1f9d1-1f3fd-200d-1f9b3.png b/site/static/emojis/1f9d1-1f3fd-200d-1f9b3.png new file mode 100644 index 0000000000000..36b16487e21a1 Binary files /dev/null and b/site/static/emojis/1f9d1-1f3fd-200d-1f9b3.png differ diff --git a/site/static/emojis/1f9d1-1f3fd-200d-1f9bc.png b/site/static/emojis/1f9d1-1f3fd-200d-1f9bc.png new file mode 100644 index 0000000000000..93d2a824bb8fe Binary files /dev/null and b/site/static/emojis/1f9d1-1f3fd-200d-1f9bc.png differ diff --git a/site/static/emojis/1f9d1-1f3fd-200d-1f9bd.png b/site/static/emojis/1f9d1-1f3fd-200d-1f9bd.png new file mode 100644 index 0000000000000..f5b5e63864eac Binary files /dev/null and b/site/static/emojis/1f9d1-1f3fd-200d-1f9bd.png differ diff --git a/site/static/emojis/1f9d1-1f3fd-200d-2695-fe0f.png b/site/static/emojis/1f9d1-1f3fd-200d-2695-fe0f.png new file mode 100644 index 0000000000000..ef513a7eae791 Binary files /dev/null and b/site/static/emojis/1f9d1-1f3fd-200d-2695-fe0f.png differ diff --git a/site/static/emojis/1f9d1-1f3fd-200d-2696-fe0f.png b/site/static/emojis/1f9d1-1f3fd-200d-2696-fe0f.png new file mode 100644 index 0000000000000..e708c2eac2019 Binary files /dev/null and b/site/static/emojis/1f9d1-1f3fd-200d-2696-fe0f.png differ diff --git a/site/static/emojis/1f9d1-1f3fd-200d-2708-fe0f.png b/site/static/emojis/1f9d1-1f3fd-200d-2708-fe0f.png new file mode 100644 index 0000000000000..99c6821d34a88 Binary files /dev/null and b/site/static/emojis/1f9d1-1f3fd-200d-2708-fe0f.png differ diff --git a/site/static/emojis/1f9d1-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3fb.png b/site/static/emojis/1f9d1-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3fb.png new file mode 100644 index 0000000000000..34379c5b55434 Binary files /dev/null and b/site/static/emojis/1f9d1-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3fb.png differ diff --git a/site/static/emojis/1f9d1-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3fc.png b/site/static/emojis/1f9d1-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3fc.png new file mode 100644 index 0000000000000..e3d1daff2f43f Binary files /dev/null and b/site/static/emojis/1f9d1-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3fc.png differ diff --git a/site/static/emojis/1f9d1-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3fe.png b/site/static/emojis/1f9d1-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3fe.png new file mode 100644 index 0000000000000..6ff7a617395ac Binary files /dev/null and b/site/static/emojis/1f9d1-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3fe.png differ diff --git a/site/static/emojis/1f9d1-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3ff.png b/site/static/emojis/1f9d1-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3ff.png new file mode 100644 index 0000000000000..4f75a98d3c2e7 Binary files /dev/null and b/site/static/emojis/1f9d1-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3ff.png differ diff --git a/site/static/emojis/1f9d1-1f3fd-200d-2764-fe0f-200d-1f9d1-1f3fb.png b/site/static/emojis/1f9d1-1f3fd-200d-2764-fe0f-200d-1f9d1-1f3fb.png new file mode 100644 index 0000000000000..3267a3e3c6de4 Binary files /dev/null and b/site/static/emojis/1f9d1-1f3fd-200d-2764-fe0f-200d-1f9d1-1f3fb.png differ diff --git a/site/static/emojis/1f9d1-1f3fd-200d-2764-fe0f-200d-1f9d1-1f3fc.png b/site/static/emojis/1f9d1-1f3fd-200d-2764-fe0f-200d-1f9d1-1f3fc.png new file mode 100644 index 0000000000000..328e976a1252c Binary files /dev/null and b/site/static/emojis/1f9d1-1f3fd-200d-2764-fe0f-200d-1f9d1-1f3fc.png differ diff --git a/site/static/emojis/1f9d1-1f3fd-200d-2764-fe0f-200d-1f9d1-1f3fe.png b/site/static/emojis/1f9d1-1f3fd-200d-2764-fe0f-200d-1f9d1-1f3fe.png new file mode 100644 index 0000000000000..8e18df2441909 Binary files /dev/null and b/site/static/emojis/1f9d1-1f3fd-200d-2764-fe0f-200d-1f9d1-1f3fe.png differ diff --git a/site/static/emojis/1f9d1-1f3fd-200d-2764-fe0f-200d-1f9d1-1f3ff.png b/site/static/emojis/1f9d1-1f3fd-200d-2764-fe0f-200d-1f9d1-1f3ff.png new file mode 100644 index 0000000000000..c0e4c46d88544 Binary files /dev/null and b/site/static/emojis/1f9d1-1f3fd-200d-2764-fe0f-200d-1f9d1-1f3ff.png differ diff --git a/site/static/emojis/1f9d1-1f3fd.png b/site/static/emojis/1f9d1-1f3fd.png new file mode 100644 index 0000000000000..3c51e01439d2c Binary files /dev/null and b/site/static/emojis/1f9d1-1f3fd.png differ diff --git a/site/static/emojis/1f9d1-1f3fe-200d-1f33e.png b/site/static/emojis/1f9d1-1f3fe-200d-1f33e.png new file mode 100644 index 0000000000000..ce18ce0c803e2 Binary files /dev/null and b/site/static/emojis/1f9d1-1f3fe-200d-1f33e.png differ diff --git a/site/static/emojis/1f9d1-1f3fe-200d-1f373.png b/site/static/emojis/1f9d1-1f3fe-200d-1f373.png new file mode 100644 index 0000000000000..f92bb8033f4e8 Binary files /dev/null and b/site/static/emojis/1f9d1-1f3fe-200d-1f373.png differ diff --git a/site/static/emojis/1f9d1-1f3fe-200d-1f37c.png b/site/static/emojis/1f9d1-1f3fe-200d-1f37c.png new file mode 100644 index 0000000000000..f6e6621922720 Binary files /dev/null and b/site/static/emojis/1f9d1-1f3fe-200d-1f37c.png differ diff --git a/site/static/emojis/1f9d1-1f3fe-200d-1f384.png b/site/static/emojis/1f9d1-1f3fe-200d-1f384.png new file mode 100644 index 0000000000000..d7480e725432d Binary files /dev/null and b/site/static/emojis/1f9d1-1f3fe-200d-1f384.png differ diff --git a/site/static/emojis/1f9d1-1f3fe-200d-1f393.png b/site/static/emojis/1f9d1-1f3fe-200d-1f393.png new file mode 100644 index 0000000000000..c7393d59b247d Binary files /dev/null and b/site/static/emojis/1f9d1-1f3fe-200d-1f393.png differ diff --git a/site/static/emojis/1f9d1-1f3fe-200d-1f3a4.png b/site/static/emojis/1f9d1-1f3fe-200d-1f3a4.png new file mode 100644 index 0000000000000..5b5ffcae3d8e8 Binary files /dev/null and b/site/static/emojis/1f9d1-1f3fe-200d-1f3a4.png differ diff --git a/site/static/emojis/1f9d1-1f3fe-200d-1f3a8.png b/site/static/emojis/1f9d1-1f3fe-200d-1f3a8.png new file mode 100644 index 0000000000000..f3501b34d81d0 Binary files /dev/null and b/site/static/emojis/1f9d1-1f3fe-200d-1f3a8.png differ diff --git a/site/static/emojis/1f9d1-1f3fe-200d-1f3eb.png b/site/static/emojis/1f9d1-1f3fe-200d-1f3eb.png new file mode 100644 index 0000000000000..6767d97ff79ef Binary files /dev/null and b/site/static/emojis/1f9d1-1f3fe-200d-1f3eb.png differ diff --git a/site/static/emojis/1f9d1-1f3fe-200d-1f3ed.png b/site/static/emojis/1f9d1-1f3fe-200d-1f3ed.png new file mode 100644 index 0000000000000..1e83f20f0337d Binary files /dev/null and b/site/static/emojis/1f9d1-1f3fe-200d-1f3ed.png differ diff --git a/site/static/emojis/1f9d1-1f3fe-200d-1f4bb.png b/site/static/emojis/1f9d1-1f3fe-200d-1f4bb.png new file mode 100644 index 0000000000000..6f851f76f1e5d Binary files /dev/null and b/site/static/emojis/1f9d1-1f3fe-200d-1f4bb.png differ diff --git a/site/static/emojis/1f9d1-1f3fe-200d-1f4bc.png b/site/static/emojis/1f9d1-1f3fe-200d-1f4bc.png new file mode 100644 index 0000000000000..1da65d87d99a5 Binary files /dev/null and b/site/static/emojis/1f9d1-1f3fe-200d-1f4bc.png differ diff --git a/site/static/emojis/1f9d1-1f3fe-200d-1f527.png b/site/static/emojis/1f9d1-1f3fe-200d-1f527.png new file mode 100644 index 0000000000000..688a909eb8638 Binary files /dev/null and b/site/static/emojis/1f9d1-1f3fe-200d-1f527.png differ diff --git a/site/static/emojis/1f9d1-1f3fe-200d-1f52c.png b/site/static/emojis/1f9d1-1f3fe-200d-1f52c.png new file mode 100644 index 0000000000000..4a78ea9b2d7bd Binary files /dev/null and b/site/static/emojis/1f9d1-1f3fe-200d-1f52c.png differ diff --git a/site/static/emojis/1f9d1-1f3fe-200d-1f680.png b/site/static/emojis/1f9d1-1f3fe-200d-1f680.png new file mode 100644 index 0000000000000..092fc992c8935 Binary files /dev/null and b/site/static/emojis/1f9d1-1f3fe-200d-1f680.png differ diff --git a/site/static/emojis/1f9d1-1f3fe-200d-1f692.png b/site/static/emojis/1f9d1-1f3fe-200d-1f692.png new file mode 100644 index 0000000000000..cb0e4b2bea5be Binary files /dev/null and b/site/static/emojis/1f9d1-1f3fe-200d-1f692.png differ diff --git a/site/static/emojis/1f9d1-1f3fe-200d-1f91d-200d-1f9d1-1f3fb.png b/site/static/emojis/1f9d1-1f3fe-200d-1f91d-200d-1f9d1-1f3fb.png new file mode 100644 index 0000000000000..dd29f84c4b852 Binary files /dev/null and b/site/static/emojis/1f9d1-1f3fe-200d-1f91d-200d-1f9d1-1f3fb.png differ diff --git a/site/static/emojis/1f9d1-1f3fe-200d-1f91d-200d-1f9d1-1f3fc.png b/site/static/emojis/1f9d1-1f3fe-200d-1f91d-200d-1f9d1-1f3fc.png new file mode 100644 index 0000000000000..b538426680a53 Binary files /dev/null and b/site/static/emojis/1f9d1-1f3fe-200d-1f91d-200d-1f9d1-1f3fc.png differ diff --git a/site/static/emojis/1f9d1-1f3fe-200d-1f91d-200d-1f9d1-1f3fd.png b/site/static/emojis/1f9d1-1f3fe-200d-1f91d-200d-1f9d1-1f3fd.png new file mode 100644 index 0000000000000..794b1aab4dd29 Binary files /dev/null and b/site/static/emojis/1f9d1-1f3fe-200d-1f91d-200d-1f9d1-1f3fd.png differ diff --git a/site/static/emojis/1f9d1-1f3fe-200d-1f91d-200d-1f9d1-1f3fe.png b/site/static/emojis/1f9d1-1f3fe-200d-1f91d-200d-1f9d1-1f3fe.png new file mode 100644 index 0000000000000..bdab9fc73008b Binary files /dev/null and b/site/static/emojis/1f9d1-1f3fe-200d-1f91d-200d-1f9d1-1f3fe.png differ diff --git a/site/static/emojis/1f9d1-1f3fe-200d-1f91d-200d-1f9d1-1f3ff.png b/site/static/emojis/1f9d1-1f3fe-200d-1f91d-200d-1f9d1-1f3ff.png new file mode 100644 index 0000000000000..eae74722705c0 Binary files /dev/null and b/site/static/emojis/1f9d1-1f3fe-200d-1f91d-200d-1f9d1-1f3ff.png differ diff --git a/site/static/emojis/1f9d1-1f3fe-200d-1f9af.png b/site/static/emojis/1f9d1-1f3fe-200d-1f9af.png new file mode 100644 index 0000000000000..b383c54427707 Binary files /dev/null and b/site/static/emojis/1f9d1-1f3fe-200d-1f9af.png differ diff --git a/site/static/emojis/1f9d1-1f3fe-200d-1f9b0.png b/site/static/emojis/1f9d1-1f3fe-200d-1f9b0.png new file mode 100644 index 0000000000000..7781c29ecb8f4 Binary files /dev/null and b/site/static/emojis/1f9d1-1f3fe-200d-1f9b0.png differ diff --git a/site/static/emojis/1f9d1-1f3fe-200d-1f9b1.png b/site/static/emojis/1f9d1-1f3fe-200d-1f9b1.png new file mode 100644 index 0000000000000..7de0d4e436077 Binary files /dev/null and b/site/static/emojis/1f9d1-1f3fe-200d-1f9b1.png differ diff --git a/site/static/emojis/1f9d1-1f3fe-200d-1f9b2.png b/site/static/emojis/1f9d1-1f3fe-200d-1f9b2.png new file mode 100644 index 0000000000000..25c78ed087c3c Binary files /dev/null and b/site/static/emojis/1f9d1-1f3fe-200d-1f9b2.png differ diff --git a/site/static/emojis/1f9d1-1f3fe-200d-1f9b3.png b/site/static/emojis/1f9d1-1f3fe-200d-1f9b3.png new file mode 100644 index 0000000000000..2fb82858f15ff Binary files /dev/null and b/site/static/emojis/1f9d1-1f3fe-200d-1f9b3.png differ diff --git a/site/static/emojis/1f9d1-1f3fe-200d-1f9bc.png b/site/static/emojis/1f9d1-1f3fe-200d-1f9bc.png new file mode 100644 index 0000000000000..51a7fcba73a2f Binary files /dev/null and b/site/static/emojis/1f9d1-1f3fe-200d-1f9bc.png differ diff --git a/site/static/emojis/1f9d1-1f3fe-200d-1f9bd.png b/site/static/emojis/1f9d1-1f3fe-200d-1f9bd.png new file mode 100644 index 0000000000000..72f5aa062ead9 Binary files /dev/null and b/site/static/emojis/1f9d1-1f3fe-200d-1f9bd.png differ diff --git a/site/static/emojis/1f9d1-1f3fe-200d-2695-fe0f.png b/site/static/emojis/1f9d1-1f3fe-200d-2695-fe0f.png new file mode 100644 index 0000000000000..d54a125058199 Binary files /dev/null and b/site/static/emojis/1f9d1-1f3fe-200d-2695-fe0f.png differ diff --git a/site/static/emojis/1f9d1-1f3fe-200d-2696-fe0f.png b/site/static/emojis/1f9d1-1f3fe-200d-2696-fe0f.png new file mode 100644 index 0000000000000..05b2b8ee13514 Binary files /dev/null and b/site/static/emojis/1f9d1-1f3fe-200d-2696-fe0f.png differ diff --git a/site/static/emojis/1f9d1-1f3fe-200d-2708-fe0f.png b/site/static/emojis/1f9d1-1f3fe-200d-2708-fe0f.png new file mode 100644 index 0000000000000..97da172e2d7d8 Binary files /dev/null and b/site/static/emojis/1f9d1-1f3fe-200d-2708-fe0f.png differ diff --git a/site/static/emojis/1f9d1-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3fb.png b/site/static/emojis/1f9d1-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3fb.png new file mode 100644 index 0000000000000..c35b92e85aab7 Binary files /dev/null and b/site/static/emojis/1f9d1-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3fb.png differ diff --git a/site/static/emojis/1f9d1-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3fc.png b/site/static/emojis/1f9d1-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3fc.png new file mode 100644 index 0000000000000..ddec3e7cf4aa3 Binary files /dev/null and b/site/static/emojis/1f9d1-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3fc.png differ diff --git a/site/static/emojis/1f9d1-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3fd.png b/site/static/emojis/1f9d1-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3fd.png new file mode 100644 index 0000000000000..465f60dd8ad9c Binary files /dev/null and b/site/static/emojis/1f9d1-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3fd.png differ diff --git a/site/static/emojis/1f9d1-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3ff.png b/site/static/emojis/1f9d1-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3ff.png new file mode 100644 index 0000000000000..376180f70d1a2 Binary files /dev/null and b/site/static/emojis/1f9d1-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3ff.png differ diff --git a/site/static/emojis/1f9d1-1f3fe-200d-2764-fe0f-200d-1f9d1-1f3fb.png b/site/static/emojis/1f9d1-1f3fe-200d-2764-fe0f-200d-1f9d1-1f3fb.png new file mode 100644 index 0000000000000..8d4e9808af340 Binary files /dev/null and b/site/static/emojis/1f9d1-1f3fe-200d-2764-fe0f-200d-1f9d1-1f3fb.png differ diff --git a/site/static/emojis/1f9d1-1f3fe-200d-2764-fe0f-200d-1f9d1-1f3fc.png b/site/static/emojis/1f9d1-1f3fe-200d-2764-fe0f-200d-1f9d1-1f3fc.png new file mode 100644 index 0000000000000..3926831f610e7 Binary files /dev/null and b/site/static/emojis/1f9d1-1f3fe-200d-2764-fe0f-200d-1f9d1-1f3fc.png differ diff --git a/site/static/emojis/1f9d1-1f3fe-200d-2764-fe0f-200d-1f9d1-1f3fd.png b/site/static/emojis/1f9d1-1f3fe-200d-2764-fe0f-200d-1f9d1-1f3fd.png new file mode 100644 index 0000000000000..4d9e7c989b535 Binary files /dev/null and b/site/static/emojis/1f9d1-1f3fe-200d-2764-fe0f-200d-1f9d1-1f3fd.png differ diff --git a/site/static/emojis/1f9d1-1f3fe-200d-2764-fe0f-200d-1f9d1-1f3ff.png b/site/static/emojis/1f9d1-1f3fe-200d-2764-fe0f-200d-1f9d1-1f3ff.png new file mode 100644 index 0000000000000..ce3d818725f54 Binary files /dev/null and b/site/static/emojis/1f9d1-1f3fe-200d-2764-fe0f-200d-1f9d1-1f3ff.png differ diff --git a/site/static/emojis/1f9d1-1f3fe.png b/site/static/emojis/1f9d1-1f3fe.png new file mode 100644 index 0000000000000..f3f7e0c4a6b40 Binary files /dev/null and b/site/static/emojis/1f9d1-1f3fe.png differ diff --git a/site/static/emojis/1f9d1-1f3ff-200d-1f33e.png b/site/static/emojis/1f9d1-1f3ff-200d-1f33e.png new file mode 100644 index 0000000000000..7ee88d8fe7a26 Binary files /dev/null and b/site/static/emojis/1f9d1-1f3ff-200d-1f33e.png differ diff --git a/site/static/emojis/1f9d1-1f3ff-200d-1f373.png b/site/static/emojis/1f9d1-1f3ff-200d-1f373.png new file mode 100644 index 0000000000000..1060299cccaf8 Binary files /dev/null and b/site/static/emojis/1f9d1-1f3ff-200d-1f373.png differ diff --git a/site/static/emojis/1f9d1-1f3ff-200d-1f37c.png b/site/static/emojis/1f9d1-1f3ff-200d-1f37c.png new file mode 100644 index 0000000000000..03ccea351b4fa Binary files /dev/null and b/site/static/emojis/1f9d1-1f3ff-200d-1f37c.png differ diff --git a/site/static/emojis/1f9d1-1f3ff-200d-1f384.png b/site/static/emojis/1f9d1-1f3ff-200d-1f384.png new file mode 100644 index 0000000000000..a3d6e659dda3e Binary files /dev/null and b/site/static/emojis/1f9d1-1f3ff-200d-1f384.png differ diff --git a/site/static/emojis/1f9d1-1f3ff-200d-1f393.png b/site/static/emojis/1f9d1-1f3ff-200d-1f393.png new file mode 100644 index 0000000000000..c906f18e888a9 Binary files /dev/null and b/site/static/emojis/1f9d1-1f3ff-200d-1f393.png differ diff --git a/site/static/emojis/1f9d1-1f3ff-200d-1f3a4.png b/site/static/emojis/1f9d1-1f3ff-200d-1f3a4.png new file mode 100644 index 0000000000000..6ab09a25f7d72 Binary files /dev/null and b/site/static/emojis/1f9d1-1f3ff-200d-1f3a4.png differ diff --git a/site/static/emojis/1f9d1-1f3ff-200d-1f3a8.png b/site/static/emojis/1f9d1-1f3ff-200d-1f3a8.png new file mode 100644 index 0000000000000..0388084caa526 Binary files /dev/null and b/site/static/emojis/1f9d1-1f3ff-200d-1f3a8.png differ diff --git a/site/static/emojis/1f9d1-1f3ff-200d-1f3eb.png b/site/static/emojis/1f9d1-1f3ff-200d-1f3eb.png new file mode 100644 index 0000000000000..13df8d2cdedfb Binary files /dev/null and b/site/static/emojis/1f9d1-1f3ff-200d-1f3eb.png differ diff --git a/site/static/emojis/1f9d1-1f3ff-200d-1f3ed.png b/site/static/emojis/1f9d1-1f3ff-200d-1f3ed.png new file mode 100644 index 0000000000000..d4b3ee56e4bac Binary files /dev/null and b/site/static/emojis/1f9d1-1f3ff-200d-1f3ed.png differ diff --git a/site/static/emojis/1f9d1-1f3ff-200d-1f4bb.png b/site/static/emojis/1f9d1-1f3ff-200d-1f4bb.png new file mode 100644 index 0000000000000..de2819894bed2 Binary files /dev/null and b/site/static/emojis/1f9d1-1f3ff-200d-1f4bb.png differ diff --git a/site/static/emojis/1f9d1-1f3ff-200d-1f4bc.png b/site/static/emojis/1f9d1-1f3ff-200d-1f4bc.png new file mode 100644 index 0000000000000..73a8e53a20c3b Binary files /dev/null and b/site/static/emojis/1f9d1-1f3ff-200d-1f4bc.png differ diff --git a/site/static/emojis/1f9d1-1f3ff-200d-1f527.png b/site/static/emojis/1f9d1-1f3ff-200d-1f527.png new file mode 100644 index 0000000000000..5d098b9841cb2 Binary files /dev/null and b/site/static/emojis/1f9d1-1f3ff-200d-1f527.png differ diff --git a/site/static/emojis/1f9d1-1f3ff-200d-1f52c.png b/site/static/emojis/1f9d1-1f3ff-200d-1f52c.png new file mode 100644 index 0000000000000..db4b9d41c864d Binary files /dev/null and b/site/static/emojis/1f9d1-1f3ff-200d-1f52c.png differ diff --git a/site/static/emojis/1f9d1-1f3ff-200d-1f680.png b/site/static/emojis/1f9d1-1f3ff-200d-1f680.png new file mode 100644 index 0000000000000..846be56c12cca Binary files /dev/null and b/site/static/emojis/1f9d1-1f3ff-200d-1f680.png differ diff --git a/site/static/emojis/1f9d1-1f3ff-200d-1f692.png b/site/static/emojis/1f9d1-1f3ff-200d-1f692.png new file mode 100644 index 0000000000000..82e051a7a0e25 Binary files /dev/null and b/site/static/emojis/1f9d1-1f3ff-200d-1f692.png differ diff --git a/site/static/emojis/1f9d1-1f3ff-200d-1f91d-200d-1f9d1-1f3fb.png b/site/static/emojis/1f9d1-1f3ff-200d-1f91d-200d-1f9d1-1f3fb.png new file mode 100644 index 0000000000000..476f100c7dbcd Binary files /dev/null and b/site/static/emojis/1f9d1-1f3ff-200d-1f91d-200d-1f9d1-1f3fb.png differ diff --git a/site/static/emojis/1f9d1-1f3ff-200d-1f91d-200d-1f9d1-1f3fc.png b/site/static/emojis/1f9d1-1f3ff-200d-1f91d-200d-1f9d1-1f3fc.png new file mode 100644 index 0000000000000..887480f09908c Binary files /dev/null and b/site/static/emojis/1f9d1-1f3ff-200d-1f91d-200d-1f9d1-1f3fc.png differ diff --git a/site/static/emojis/1f9d1-1f3ff-200d-1f91d-200d-1f9d1-1f3fd.png b/site/static/emojis/1f9d1-1f3ff-200d-1f91d-200d-1f9d1-1f3fd.png new file mode 100644 index 0000000000000..dbafdf9d3d6e8 Binary files /dev/null and b/site/static/emojis/1f9d1-1f3ff-200d-1f91d-200d-1f9d1-1f3fd.png differ diff --git a/site/static/emojis/1f9d1-1f3ff-200d-1f91d-200d-1f9d1-1f3fe.png b/site/static/emojis/1f9d1-1f3ff-200d-1f91d-200d-1f9d1-1f3fe.png new file mode 100644 index 0000000000000..6e80a36548aac Binary files /dev/null and b/site/static/emojis/1f9d1-1f3ff-200d-1f91d-200d-1f9d1-1f3fe.png differ diff --git a/site/static/emojis/1f9d1-1f3ff-200d-1f91d-200d-1f9d1-1f3ff.png b/site/static/emojis/1f9d1-1f3ff-200d-1f91d-200d-1f9d1-1f3ff.png new file mode 100644 index 0000000000000..c0350e92e8e1f Binary files /dev/null and b/site/static/emojis/1f9d1-1f3ff-200d-1f91d-200d-1f9d1-1f3ff.png differ diff --git a/site/static/emojis/1f9d1-1f3ff-200d-1f9af.png b/site/static/emojis/1f9d1-1f3ff-200d-1f9af.png new file mode 100644 index 0000000000000..f2fcce1e25b17 Binary files /dev/null and b/site/static/emojis/1f9d1-1f3ff-200d-1f9af.png differ diff --git a/site/static/emojis/1f9d1-1f3ff-200d-1f9b0.png b/site/static/emojis/1f9d1-1f3ff-200d-1f9b0.png new file mode 100644 index 0000000000000..81a7caa55102a Binary files /dev/null and b/site/static/emojis/1f9d1-1f3ff-200d-1f9b0.png differ diff --git a/site/static/emojis/1f9d1-1f3ff-200d-1f9b1.png b/site/static/emojis/1f9d1-1f3ff-200d-1f9b1.png new file mode 100644 index 0000000000000..1cb908c735956 Binary files /dev/null and b/site/static/emojis/1f9d1-1f3ff-200d-1f9b1.png differ diff --git a/site/static/emojis/1f9d1-1f3ff-200d-1f9b2.png b/site/static/emojis/1f9d1-1f3ff-200d-1f9b2.png new file mode 100644 index 0000000000000..6a5e8b0494d93 Binary files /dev/null and b/site/static/emojis/1f9d1-1f3ff-200d-1f9b2.png differ diff --git a/site/static/emojis/1f9d1-1f3ff-200d-1f9b3.png b/site/static/emojis/1f9d1-1f3ff-200d-1f9b3.png new file mode 100644 index 0000000000000..a4772fea5accb Binary files /dev/null and b/site/static/emojis/1f9d1-1f3ff-200d-1f9b3.png differ diff --git a/site/static/emojis/1f9d1-1f3ff-200d-1f9bc.png b/site/static/emojis/1f9d1-1f3ff-200d-1f9bc.png new file mode 100644 index 0000000000000..fc99dd988a36e Binary files /dev/null and b/site/static/emojis/1f9d1-1f3ff-200d-1f9bc.png differ diff --git a/site/static/emojis/1f9d1-1f3ff-200d-1f9bd.png b/site/static/emojis/1f9d1-1f3ff-200d-1f9bd.png new file mode 100644 index 0000000000000..6c8e92b295b99 Binary files /dev/null and b/site/static/emojis/1f9d1-1f3ff-200d-1f9bd.png differ diff --git a/site/static/emojis/1f9d1-1f3ff-200d-2695-fe0f.png b/site/static/emojis/1f9d1-1f3ff-200d-2695-fe0f.png new file mode 100644 index 0000000000000..8f95ec023c8eb Binary files /dev/null and b/site/static/emojis/1f9d1-1f3ff-200d-2695-fe0f.png differ diff --git a/site/static/emojis/1f9d1-1f3ff-200d-2696-fe0f.png b/site/static/emojis/1f9d1-1f3ff-200d-2696-fe0f.png new file mode 100644 index 0000000000000..1b2c484452398 Binary files /dev/null and b/site/static/emojis/1f9d1-1f3ff-200d-2696-fe0f.png differ diff --git a/site/static/emojis/1f9d1-1f3ff-200d-2708-fe0f.png b/site/static/emojis/1f9d1-1f3ff-200d-2708-fe0f.png new file mode 100644 index 0000000000000..a504160f7ca14 Binary files /dev/null and b/site/static/emojis/1f9d1-1f3ff-200d-2708-fe0f.png differ diff --git a/site/static/emojis/1f9d1-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3fb.png b/site/static/emojis/1f9d1-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3fb.png new file mode 100644 index 0000000000000..14ced38a1f4a5 Binary files /dev/null and b/site/static/emojis/1f9d1-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3fb.png differ diff --git a/site/static/emojis/1f9d1-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3fc.png b/site/static/emojis/1f9d1-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3fc.png new file mode 100644 index 0000000000000..dc796c6d7b545 Binary files /dev/null and b/site/static/emojis/1f9d1-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3fc.png differ diff --git a/site/static/emojis/1f9d1-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3fd.png b/site/static/emojis/1f9d1-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3fd.png new file mode 100644 index 0000000000000..3403518fd8dea Binary files /dev/null and b/site/static/emojis/1f9d1-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3fd.png differ diff --git a/site/static/emojis/1f9d1-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3fe.png b/site/static/emojis/1f9d1-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3fe.png new file mode 100644 index 0000000000000..60702d908d26b Binary files /dev/null and b/site/static/emojis/1f9d1-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3fe.png differ diff --git a/site/static/emojis/1f9d1-1f3ff-200d-2764-fe0f-200d-1f9d1-1f3fb.png b/site/static/emojis/1f9d1-1f3ff-200d-2764-fe0f-200d-1f9d1-1f3fb.png new file mode 100644 index 0000000000000..a470e99e2a0da Binary files /dev/null and b/site/static/emojis/1f9d1-1f3ff-200d-2764-fe0f-200d-1f9d1-1f3fb.png differ diff --git a/site/static/emojis/1f9d1-1f3ff-200d-2764-fe0f-200d-1f9d1-1f3fc.png b/site/static/emojis/1f9d1-1f3ff-200d-2764-fe0f-200d-1f9d1-1f3fc.png new file mode 100644 index 0000000000000..b2e7f1652cba2 Binary files /dev/null and b/site/static/emojis/1f9d1-1f3ff-200d-2764-fe0f-200d-1f9d1-1f3fc.png differ diff --git a/site/static/emojis/1f9d1-1f3ff-200d-2764-fe0f-200d-1f9d1-1f3fd.png b/site/static/emojis/1f9d1-1f3ff-200d-2764-fe0f-200d-1f9d1-1f3fd.png new file mode 100644 index 0000000000000..01644ff1f32d4 Binary files /dev/null and b/site/static/emojis/1f9d1-1f3ff-200d-2764-fe0f-200d-1f9d1-1f3fd.png differ diff --git a/site/static/emojis/1f9d1-1f3ff-200d-2764-fe0f-200d-1f9d1-1f3fe.png b/site/static/emojis/1f9d1-1f3ff-200d-2764-fe0f-200d-1f9d1-1f3fe.png new file mode 100644 index 0000000000000..0fd86e7846c54 Binary files /dev/null and b/site/static/emojis/1f9d1-1f3ff-200d-2764-fe0f-200d-1f9d1-1f3fe.png differ diff --git a/site/static/emojis/1f9d1-1f3ff.png b/site/static/emojis/1f9d1-1f3ff.png new file mode 100644 index 0000000000000..dac06fdee0c7f Binary files /dev/null and b/site/static/emojis/1f9d1-1f3ff.png differ diff --git a/site/static/emojis/1f9d1-200d-1f33e.png b/site/static/emojis/1f9d1-200d-1f33e.png new file mode 100644 index 0000000000000..62757b900b2a5 Binary files /dev/null and b/site/static/emojis/1f9d1-200d-1f33e.png differ diff --git a/site/static/emojis/1f9d1-200d-1f373.png b/site/static/emojis/1f9d1-200d-1f373.png new file mode 100644 index 0000000000000..4d6f90161d579 Binary files /dev/null and b/site/static/emojis/1f9d1-200d-1f373.png differ diff --git a/site/static/emojis/1f9d1-200d-1f37c.png b/site/static/emojis/1f9d1-200d-1f37c.png new file mode 100644 index 0000000000000..4e67b21b906da Binary files /dev/null and b/site/static/emojis/1f9d1-200d-1f37c.png differ diff --git a/site/static/emojis/1f9d1-200d-1f384.png b/site/static/emojis/1f9d1-200d-1f384.png new file mode 100644 index 0000000000000..1c723c878f9d8 Binary files /dev/null and b/site/static/emojis/1f9d1-200d-1f384.png differ diff --git a/site/static/emojis/1f9d1-200d-1f393.png b/site/static/emojis/1f9d1-200d-1f393.png new file mode 100644 index 0000000000000..4b6421a8b2974 Binary files /dev/null and b/site/static/emojis/1f9d1-200d-1f393.png differ diff --git a/site/static/emojis/1f9d1-200d-1f3a4.png b/site/static/emojis/1f9d1-200d-1f3a4.png new file mode 100644 index 0000000000000..b4b56c95b7c2d Binary files /dev/null and b/site/static/emojis/1f9d1-200d-1f3a4.png differ diff --git a/site/static/emojis/1f9d1-200d-1f3a8.png b/site/static/emojis/1f9d1-200d-1f3a8.png new file mode 100644 index 0000000000000..890cc7f17275c Binary files /dev/null and b/site/static/emojis/1f9d1-200d-1f3a8.png differ diff --git a/site/static/emojis/1f9d1-200d-1f3eb.png b/site/static/emojis/1f9d1-200d-1f3eb.png new file mode 100644 index 0000000000000..e0dc2f5979d54 Binary files /dev/null and b/site/static/emojis/1f9d1-200d-1f3eb.png differ diff --git a/site/static/emojis/1f9d1-200d-1f3ed.png b/site/static/emojis/1f9d1-200d-1f3ed.png new file mode 100644 index 0000000000000..1a7e218139f3d Binary files /dev/null and b/site/static/emojis/1f9d1-200d-1f3ed.png differ diff --git a/site/static/emojis/1f9d1-200d-1f4bb.png b/site/static/emojis/1f9d1-200d-1f4bb.png new file mode 100644 index 0000000000000..6dfefc0fdf39f Binary files /dev/null and b/site/static/emojis/1f9d1-200d-1f4bb.png differ diff --git a/site/static/emojis/1f9d1-200d-1f4bc.png b/site/static/emojis/1f9d1-200d-1f4bc.png new file mode 100644 index 0000000000000..15706836392b3 Binary files /dev/null and b/site/static/emojis/1f9d1-200d-1f4bc.png differ diff --git a/site/static/emojis/1f9d1-200d-1f527.png b/site/static/emojis/1f9d1-200d-1f527.png new file mode 100644 index 0000000000000..bdaf652be20fb Binary files /dev/null and b/site/static/emojis/1f9d1-200d-1f527.png differ diff --git a/site/static/emojis/1f9d1-200d-1f52c.png b/site/static/emojis/1f9d1-200d-1f52c.png new file mode 100644 index 0000000000000..9d71dc21020a7 Binary files /dev/null and b/site/static/emojis/1f9d1-200d-1f52c.png differ diff --git a/site/static/emojis/1f9d1-200d-1f680.png b/site/static/emojis/1f9d1-200d-1f680.png new file mode 100644 index 0000000000000..e9221ddb4df11 Binary files /dev/null and b/site/static/emojis/1f9d1-200d-1f680.png differ diff --git a/site/static/emojis/1f9d1-200d-1f692.png b/site/static/emojis/1f9d1-200d-1f692.png new file mode 100644 index 0000000000000..c84c8137685e4 Binary files /dev/null and b/site/static/emojis/1f9d1-200d-1f692.png differ diff --git a/site/static/emojis/1f9d1-200d-1f91d-200d-1f9d1.png b/site/static/emojis/1f9d1-200d-1f91d-200d-1f9d1.png new file mode 100644 index 0000000000000..38916c55b13c7 Binary files /dev/null and b/site/static/emojis/1f9d1-200d-1f91d-200d-1f9d1.png differ diff --git a/site/static/emojis/1f9d1-200d-1f9af.png b/site/static/emojis/1f9d1-200d-1f9af.png new file mode 100644 index 0000000000000..e160612831817 Binary files /dev/null and b/site/static/emojis/1f9d1-200d-1f9af.png differ diff --git a/site/static/emojis/1f9d1-200d-1f9b0.png b/site/static/emojis/1f9d1-200d-1f9b0.png new file mode 100644 index 0000000000000..363fd9c8ab966 Binary files /dev/null and b/site/static/emojis/1f9d1-200d-1f9b0.png differ diff --git a/site/static/emojis/1f9d1-200d-1f9b1.png b/site/static/emojis/1f9d1-200d-1f9b1.png new file mode 100644 index 0000000000000..8c809f1436375 Binary files /dev/null and b/site/static/emojis/1f9d1-200d-1f9b1.png differ diff --git a/site/static/emojis/1f9d1-200d-1f9b2.png b/site/static/emojis/1f9d1-200d-1f9b2.png new file mode 100644 index 0000000000000..e939a1115ba95 Binary files /dev/null and b/site/static/emojis/1f9d1-200d-1f9b2.png differ diff --git a/site/static/emojis/1f9d1-200d-1f9b3.png b/site/static/emojis/1f9d1-200d-1f9b3.png new file mode 100644 index 0000000000000..241b5446cdd26 Binary files /dev/null and b/site/static/emojis/1f9d1-200d-1f9b3.png differ diff --git a/site/static/emojis/1f9d1-200d-1f9bc.png b/site/static/emojis/1f9d1-200d-1f9bc.png new file mode 100644 index 0000000000000..a372a8e3d5bff Binary files /dev/null and b/site/static/emojis/1f9d1-200d-1f9bc.png differ diff --git a/site/static/emojis/1f9d1-200d-1f9bd.png b/site/static/emojis/1f9d1-200d-1f9bd.png new file mode 100644 index 0000000000000..3fdadab5e9473 Binary files /dev/null and b/site/static/emojis/1f9d1-200d-1f9bd.png differ diff --git a/site/static/emojis/1f9d1-200d-2695-fe0f.png b/site/static/emojis/1f9d1-200d-2695-fe0f.png new file mode 100644 index 0000000000000..354e2124a00a7 Binary files /dev/null and b/site/static/emojis/1f9d1-200d-2695-fe0f.png differ diff --git a/site/static/emojis/1f9d1-200d-2696-fe0f.png b/site/static/emojis/1f9d1-200d-2696-fe0f.png new file mode 100644 index 0000000000000..8d9409d37e830 Binary files /dev/null and b/site/static/emojis/1f9d1-200d-2696-fe0f.png differ diff --git a/site/static/emojis/1f9d1-200d-2708-fe0f.png b/site/static/emojis/1f9d1-200d-2708-fe0f.png new file mode 100644 index 0000000000000..78c4b3738a148 Binary files /dev/null and b/site/static/emojis/1f9d1-200d-2708-fe0f.png differ diff --git a/site/static/emojis/1f9d1.png b/site/static/emojis/1f9d1.png new file mode 100644 index 0000000000000..13ad8a69b9235 Binary files /dev/null and b/site/static/emojis/1f9d1.png differ diff --git a/site/static/emojis/1f9d2-1f3fb.png b/site/static/emojis/1f9d2-1f3fb.png new file mode 100644 index 0000000000000..3176891d09d04 Binary files /dev/null and b/site/static/emojis/1f9d2-1f3fb.png differ diff --git a/site/static/emojis/1f9d2-1f3fc.png b/site/static/emojis/1f9d2-1f3fc.png new file mode 100644 index 0000000000000..85c9853939eda Binary files /dev/null and b/site/static/emojis/1f9d2-1f3fc.png differ diff --git a/site/static/emojis/1f9d2-1f3fd.png b/site/static/emojis/1f9d2-1f3fd.png new file mode 100644 index 0000000000000..5eedce05af29e Binary files /dev/null and b/site/static/emojis/1f9d2-1f3fd.png differ diff --git a/site/static/emojis/1f9d2-1f3fe.png b/site/static/emojis/1f9d2-1f3fe.png new file mode 100644 index 0000000000000..0931b2dbcac37 Binary files /dev/null and b/site/static/emojis/1f9d2-1f3fe.png differ diff --git a/site/static/emojis/1f9d2-1f3ff.png b/site/static/emojis/1f9d2-1f3ff.png new file mode 100644 index 0000000000000..c02a87e427743 Binary files /dev/null and b/site/static/emojis/1f9d2-1f3ff.png differ diff --git a/site/static/emojis/1f9d2.png b/site/static/emojis/1f9d2.png new file mode 100644 index 0000000000000..d64876b9b06fc Binary files /dev/null and b/site/static/emojis/1f9d2.png differ diff --git a/site/static/emojis/1f9d3-1f3fb.png b/site/static/emojis/1f9d3-1f3fb.png new file mode 100644 index 0000000000000..0d031a08182fc Binary files /dev/null and b/site/static/emojis/1f9d3-1f3fb.png differ diff --git a/site/static/emojis/1f9d3-1f3fc.png b/site/static/emojis/1f9d3-1f3fc.png new file mode 100644 index 0000000000000..c2213380b5aaf Binary files /dev/null and b/site/static/emojis/1f9d3-1f3fc.png differ diff --git a/site/static/emojis/1f9d3-1f3fd.png b/site/static/emojis/1f9d3-1f3fd.png new file mode 100644 index 0000000000000..0c56feac0f612 Binary files /dev/null and b/site/static/emojis/1f9d3-1f3fd.png differ diff --git a/site/static/emojis/1f9d3-1f3fe.png b/site/static/emojis/1f9d3-1f3fe.png new file mode 100644 index 0000000000000..c98423b5ce7a7 Binary files /dev/null and b/site/static/emojis/1f9d3-1f3fe.png differ diff --git a/site/static/emojis/1f9d3-1f3ff.png b/site/static/emojis/1f9d3-1f3ff.png new file mode 100644 index 0000000000000..de458e297f2f9 Binary files /dev/null and b/site/static/emojis/1f9d3-1f3ff.png differ diff --git a/site/static/emojis/1f9d3.png b/site/static/emojis/1f9d3.png new file mode 100644 index 0000000000000..627b9e7fac783 Binary files /dev/null and b/site/static/emojis/1f9d3.png differ diff --git a/site/static/emojis/1f9d4-1f3fb-200d-2640-fe0f.png b/site/static/emojis/1f9d4-1f3fb-200d-2640-fe0f.png new file mode 100644 index 0000000000000..d5ae81abe28b3 Binary files /dev/null and b/site/static/emojis/1f9d4-1f3fb-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f9d4-1f3fb-200d-2642-fe0f.png b/site/static/emojis/1f9d4-1f3fb-200d-2642-fe0f.png new file mode 100644 index 0000000000000..8e23bc93eaaeb Binary files /dev/null and b/site/static/emojis/1f9d4-1f3fb-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f9d4-1f3fb.png b/site/static/emojis/1f9d4-1f3fb.png new file mode 100644 index 0000000000000..454efbfea29a1 Binary files /dev/null and b/site/static/emojis/1f9d4-1f3fb.png differ diff --git a/site/static/emojis/1f9d4-1f3fc-200d-2640-fe0f.png b/site/static/emojis/1f9d4-1f3fc-200d-2640-fe0f.png new file mode 100644 index 0000000000000..c39f5cf001416 Binary files /dev/null and b/site/static/emojis/1f9d4-1f3fc-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f9d4-1f3fc-200d-2642-fe0f.png b/site/static/emojis/1f9d4-1f3fc-200d-2642-fe0f.png new file mode 100644 index 0000000000000..2d2c904ca4501 Binary files /dev/null and b/site/static/emojis/1f9d4-1f3fc-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f9d4-1f3fc.png b/site/static/emojis/1f9d4-1f3fc.png new file mode 100644 index 0000000000000..0930537c4e624 Binary files /dev/null and b/site/static/emojis/1f9d4-1f3fc.png differ diff --git a/site/static/emojis/1f9d4-1f3fd-200d-2640-fe0f.png b/site/static/emojis/1f9d4-1f3fd-200d-2640-fe0f.png new file mode 100644 index 0000000000000..a26157d65a714 Binary files /dev/null and b/site/static/emojis/1f9d4-1f3fd-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f9d4-1f3fd-200d-2642-fe0f.png b/site/static/emojis/1f9d4-1f3fd-200d-2642-fe0f.png new file mode 100644 index 0000000000000..714fa370758f8 Binary files /dev/null and b/site/static/emojis/1f9d4-1f3fd-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f9d4-1f3fd.png b/site/static/emojis/1f9d4-1f3fd.png new file mode 100644 index 0000000000000..1eaf4e67ee971 Binary files /dev/null and b/site/static/emojis/1f9d4-1f3fd.png differ diff --git a/site/static/emojis/1f9d4-1f3fe-200d-2640-fe0f.png b/site/static/emojis/1f9d4-1f3fe-200d-2640-fe0f.png new file mode 100644 index 0000000000000..574a2aa6d354f Binary files /dev/null and b/site/static/emojis/1f9d4-1f3fe-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f9d4-1f3fe-200d-2642-fe0f.png b/site/static/emojis/1f9d4-1f3fe-200d-2642-fe0f.png new file mode 100644 index 0000000000000..4fcd67ee865c4 Binary files /dev/null and b/site/static/emojis/1f9d4-1f3fe-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f9d4-1f3fe.png b/site/static/emojis/1f9d4-1f3fe.png new file mode 100644 index 0000000000000..0587ba6ac272f Binary files /dev/null and b/site/static/emojis/1f9d4-1f3fe.png differ diff --git a/site/static/emojis/1f9d4-1f3ff-200d-2640-fe0f.png b/site/static/emojis/1f9d4-1f3ff-200d-2640-fe0f.png new file mode 100644 index 0000000000000..38e64542f39b0 Binary files /dev/null and b/site/static/emojis/1f9d4-1f3ff-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f9d4-1f3ff-200d-2642-fe0f.png b/site/static/emojis/1f9d4-1f3ff-200d-2642-fe0f.png new file mode 100644 index 0000000000000..16810f8a501cf Binary files /dev/null and b/site/static/emojis/1f9d4-1f3ff-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f9d4-1f3ff.png b/site/static/emojis/1f9d4-1f3ff.png new file mode 100644 index 0000000000000..92b8857f57d88 Binary files /dev/null and b/site/static/emojis/1f9d4-1f3ff.png differ diff --git a/site/static/emojis/1f9d4-200d-2640-fe0f.png b/site/static/emojis/1f9d4-200d-2640-fe0f.png new file mode 100644 index 0000000000000..78c10b31d59b4 Binary files /dev/null and b/site/static/emojis/1f9d4-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f9d4-200d-2642-fe0f.png b/site/static/emojis/1f9d4-200d-2642-fe0f.png new file mode 100644 index 0000000000000..c764ff644b5b0 Binary files /dev/null and b/site/static/emojis/1f9d4-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f9d4.png b/site/static/emojis/1f9d4.png new file mode 100644 index 0000000000000..44e8c0d6c01f4 Binary files /dev/null and b/site/static/emojis/1f9d4.png differ diff --git a/site/static/emojis/1f9d5-1f3fb.png b/site/static/emojis/1f9d5-1f3fb.png new file mode 100644 index 0000000000000..1d643e0c3b339 Binary files /dev/null and b/site/static/emojis/1f9d5-1f3fb.png differ diff --git a/site/static/emojis/1f9d5-1f3fc.png b/site/static/emojis/1f9d5-1f3fc.png new file mode 100644 index 0000000000000..852b0a92b31f0 Binary files /dev/null and b/site/static/emojis/1f9d5-1f3fc.png differ diff --git a/site/static/emojis/1f9d5-1f3fd.png b/site/static/emojis/1f9d5-1f3fd.png new file mode 100644 index 0000000000000..b48e2fc6a600e Binary files /dev/null and b/site/static/emojis/1f9d5-1f3fd.png differ diff --git a/site/static/emojis/1f9d5-1f3fe.png b/site/static/emojis/1f9d5-1f3fe.png new file mode 100644 index 0000000000000..3c9d4ff33797b Binary files /dev/null and b/site/static/emojis/1f9d5-1f3fe.png differ diff --git a/site/static/emojis/1f9d5-1f3ff.png b/site/static/emojis/1f9d5-1f3ff.png new file mode 100644 index 0000000000000..36415f4ccf937 Binary files /dev/null and b/site/static/emojis/1f9d5-1f3ff.png differ diff --git a/site/static/emojis/1f9d5.png b/site/static/emojis/1f9d5.png new file mode 100644 index 0000000000000..b39adcda35c6f Binary files /dev/null and b/site/static/emojis/1f9d5.png differ diff --git a/site/static/emojis/1f9d6-1f3fb-200d-2640-fe0f.png b/site/static/emojis/1f9d6-1f3fb-200d-2640-fe0f.png new file mode 100644 index 0000000000000..1ac4aaf56c4a4 Binary files /dev/null and b/site/static/emojis/1f9d6-1f3fb-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f9d6-1f3fb-200d-2642-fe0f.png b/site/static/emojis/1f9d6-1f3fb-200d-2642-fe0f.png new file mode 100644 index 0000000000000..c7651ed3e8107 Binary files /dev/null and b/site/static/emojis/1f9d6-1f3fb-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f9d6-1f3fb.png b/site/static/emojis/1f9d6-1f3fb.png new file mode 100644 index 0000000000000..01e7bad7405fc Binary files /dev/null and b/site/static/emojis/1f9d6-1f3fb.png differ diff --git a/site/static/emojis/1f9d6-1f3fc-200d-2640-fe0f.png b/site/static/emojis/1f9d6-1f3fc-200d-2640-fe0f.png new file mode 100644 index 0000000000000..33b55698a37a4 Binary files /dev/null and b/site/static/emojis/1f9d6-1f3fc-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f9d6-1f3fc-200d-2642-fe0f.png b/site/static/emojis/1f9d6-1f3fc-200d-2642-fe0f.png new file mode 100644 index 0000000000000..bb99429b95186 Binary files /dev/null and b/site/static/emojis/1f9d6-1f3fc-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f9d6-1f3fc.png b/site/static/emojis/1f9d6-1f3fc.png new file mode 100644 index 0000000000000..190adb4568648 Binary files /dev/null and b/site/static/emojis/1f9d6-1f3fc.png differ diff --git a/site/static/emojis/1f9d6-1f3fd-200d-2640-fe0f.png b/site/static/emojis/1f9d6-1f3fd-200d-2640-fe0f.png new file mode 100644 index 0000000000000..44314fb495ac9 Binary files /dev/null and b/site/static/emojis/1f9d6-1f3fd-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f9d6-1f3fd-200d-2642-fe0f.png b/site/static/emojis/1f9d6-1f3fd-200d-2642-fe0f.png new file mode 100644 index 0000000000000..79c0bc65ed2c1 Binary files /dev/null and b/site/static/emojis/1f9d6-1f3fd-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f9d6-1f3fd.png b/site/static/emojis/1f9d6-1f3fd.png new file mode 100644 index 0000000000000..bb170269ea59e Binary files /dev/null and b/site/static/emojis/1f9d6-1f3fd.png differ diff --git a/site/static/emojis/1f9d6-1f3fe-200d-2640-fe0f.png b/site/static/emojis/1f9d6-1f3fe-200d-2640-fe0f.png new file mode 100644 index 0000000000000..4b4add48ccaed Binary files /dev/null and b/site/static/emojis/1f9d6-1f3fe-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f9d6-1f3fe-200d-2642-fe0f.png b/site/static/emojis/1f9d6-1f3fe-200d-2642-fe0f.png new file mode 100644 index 0000000000000..1d1672d71fdf5 Binary files /dev/null and b/site/static/emojis/1f9d6-1f3fe-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f9d6-1f3fe.png b/site/static/emojis/1f9d6-1f3fe.png new file mode 100644 index 0000000000000..3e065c0af8aa3 Binary files /dev/null and b/site/static/emojis/1f9d6-1f3fe.png differ diff --git a/site/static/emojis/1f9d6-1f3ff-200d-2640-fe0f.png b/site/static/emojis/1f9d6-1f3ff-200d-2640-fe0f.png new file mode 100644 index 0000000000000..77414996715a6 Binary files /dev/null and b/site/static/emojis/1f9d6-1f3ff-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f9d6-1f3ff-200d-2642-fe0f.png b/site/static/emojis/1f9d6-1f3ff-200d-2642-fe0f.png new file mode 100644 index 0000000000000..ed8c3944c6547 Binary files /dev/null and b/site/static/emojis/1f9d6-1f3ff-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f9d6-1f3ff.png b/site/static/emojis/1f9d6-1f3ff.png new file mode 100644 index 0000000000000..d846549152dd9 Binary files /dev/null and b/site/static/emojis/1f9d6-1f3ff.png differ diff --git a/site/static/emojis/1f9d6-200d-2640-fe0f.png b/site/static/emojis/1f9d6-200d-2640-fe0f.png new file mode 100644 index 0000000000000..3fa739ab64db8 Binary files /dev/null and b/site/static/emojis/1f9d6-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f9d6-200d-2642-fe0f.png b/site/static/emojis/1f9d6-200d-2642-fe0f.png new file mode 100644 index 0000000000000..a9a4c5ea92543 Binary files /dev/null and b/site/static/emojis/1f9d6-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f9d6.png b/site/static/emojis/1f9d6.png new file mode 100644 index 0000000000000..3a2ec06ddf601 Binary files /dev/null and b/site/static/emojis/1f9d6.png differ diff --git a/site/static/emojis/1f9d7-1f3fb-200d-2640-fe0f.png b/site/static/emojis/1f9d7-1f3fb-200d-2640-fe0f.png new file mode 100644 index 0000000000000..fecf90a7871a6 Binary files /dev/null and b/site/static/emojis/1f9d7-1f3fb-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f9d7-1f3fb-200d-2642-fe0f.png b/site/static/emojis/1f9d7-1f3fb-200d-2642-fe0f.png new file mode 100644 index 0000000000000..c19285100ba46 Binary files /dev/null and b/site/static/emojis/1f9d7-1f3fb-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f9d7-1f3fb.png b/site/static/emojis/1f9d7-1f3fb.png new file mode 100644 index 0000000000000..ff9d0fbbe859b Binary files /dev/null and b/site/static/emojis/1f9d7-1f3fb.png differ diff --git a/site/static/emojis/1f9d7-1f3fc-200d-2640-fe0f.png b/site/static/emojis/1f9d7-1f3fc-200d-2640-fe0f.png new file mode 100644 index 0000000000000..215e18e2d4589 Binary files /dev/null and b/site/static/emojis/1f9d7-1f3fc-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f9d7-1f3fc-200d-2642-fe0f.png b/site/static/emojis/1f9d7-1f3fc-200d-2642-fe0f.png new file mode 100644 index 0000000000000..9e8196c2878a3 Binary files /dev/null and b/site/static/emojis/1f9d7-1f3fc-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f9d7-1f3fc.png b/site/static/emojis/1f9d7-1f3fc.png new file mode 100644 index 0000000000000..31bf0347f7060 Binary files /dev/null and b/site/static/emojis/1f9d7-1f3fc.png differ diff --git a/site/static/emojis/1f9d7-1f3fd-200d-2640-fe0f.png b/site/static/emojis/1f9d7-1f3fd-200d-2640-fe0f.png new file mode 100644 index 0000000000000..7d9396ce124b8 Binary files /dev/null and b/site/static/emojis/1f9d7-1f3fd-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f9d7-1f3fd-200d-2642-fe0f.png b/site/static/emojis/1f9d7-1f3fd-200d-2642-fe0f.png new file mode 100644 index 0000000000000..a0255f24b08d3 Binary files /dev/null and b/site/static/emojis/1f9d7-1f3fd-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f9d7-1f3fd.png b/site/static/emojis/1f9d7-1f3fd.png new file mode 100644 index 0000000000000..67efea29f351b Binary files /dev/null and b/site/static/emojis/1f9d7-1f3fd.png differ diff --git a/site/static/emojis/1f9d7-1f3fe-200d-2640-fe0f.png b/site/static/emojis/1f9d7-1f3fe-200d-2640-fe0f.png new file mode 100644 index 0000000000000..5408afcd71d7b Binary files /dev/null and b/site/static/emojis/1f9d7-1f3fe-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f9d7-1f3fe-200d-2642-fe0f.png b/site/static/emojis/1f9d7-1f3fe-200d-2642-fe0f.png new file mode 100644 index 0000000000000..ed01df66b1199 Binary files /dev/null and b/site/static/emojis/1f9d7-1f3fe-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f9d7-1f3fe.png b/site/static/emojis/1f9d7-1f3fe.png new file mode 100644 index 0000000000000..79708dd24c2a0 Binary files /dev/null and b/site/static/emojis/1f9d7-1f3fe.png differ diff --git a/site/static/emojis/1f9d7-1f3ff-200d-2640-fe0f.png b/site/static/emojis/1f9d7-1f3ff-200d-2640-fe0f.png new file mode 100644 index 0000000000000..ab88bd1d31e62 Binary files /dev/null and b/site/static/emojis/1f9d7-1f3ff-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f9d7-1f3ff-200d-2642-fe0f.png b/site/static/emojis/1f9d7-1f3ff-200d-2642-fe0f.png new file mode 100644 index 0000000000000..480fcf1ef2936 Binary files /dev/null and b/site/static/emojis/1f9d7-1f3ff-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f9d7-1f3ff.png b/site/static/emojis/1f9d7-1f3ff.png new file mode 100644 index 0000000000000..c61785e2a06f7 Binary files /dev/null and b/site/static/emojis/1f9d7-1f3ff.png differ diff --git a/site/static/emojis/1f9d7-200d-2640-fe0f.png b/site/static/emojis/1f9d7-200d-2640-fe0f.png new file mode 100644 index 0000000000000..b336b14d56e1d Binary files /dev/null and b/site/static/emojis/1f9d7-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f9d7-200d-2642-fe0f.png b/site/static/emojis/1f9d7-200d-2642-fe0f.png new file mode 100644 index 0000000000000..6ad10ec4c2a57 Binary files /dev/null and b/site/static/emojis/1f9d7-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f9d7.png b/site/static/emojis/1f9d7.png new file mode 100644 index 0000000000000..1303a54aaf8bb Binary files /dev/null and b/site/static/emojis/1f9d7.png differ diff --git a/site/static/emojis/1f9d8-1f3fb-200d-2640-fe0f.png b/site/static/emojis/1f9d8-1f3fb-200d-2640-fe0f.png new file mode 100644 index 0000000000000..996741f9e3246 Binary files /dev/null and b/site/static/emojis/1f9d8-1f3fb-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f9d8-1f3fb-200d-2642-fe0f.png b/site/static/emojis/1f9d8-1f3fb-200d-2642-fe0f.png new file mode 100644 index 0000000000000..002357d71a713 Binary files /dev/null and b/site/static/emojis/1f9d8-1f3fb-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f9d8-1f3fb.png b/site/static/emojis/1f9d8-1f3fb.png new file mode 100644 index 0000000000000..fea8e8ba70221 Binary files /dev/null and b/site/static/emojis/1f9d8-1f3fb.png differ diff --git a/site/static/emojis/1f9d8-1f3fc-200d-2640-fe0f.png b/site/static/emojis/1f9d8-1f3fc-200d-2640-fe0f.png new file mode 100644 index 0000000000000..dfa69c8ab6757 Binary files /dev/null and b/site/static/emojis/1f9d8-1f3fc-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f9d8-1f3fc-200d-2642-fe0f.png b/site/static/emojis/1f9d8-1f3fc-200d-2642-fe0f.png new file mode 100644 index 0000000000000..e1606adc4ca74 Binary files /dev/null and b/site/static/emojis/1f9d8-1f3fc-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f9d8-1f3fc.png b/site/static/emojis/1f9d8-1f3fc.png new file mode 100644 index 0000000000000..074040204164a Binary files /dev/null and b/site/static/emojis/1f9d8-1f3fc.png differ diff --git a/site/static/emojis/1f9d8-1f3fd-200d-2640-fe0f.png b/site/static/emojis/1f9d8-1f3fd-200d-2640-fe0f.png new file mode 100644 index 0000000000000..95dbb2d16d836 Binary files /dev/null and b/site/static/emojis/1f9d8-1f3fd-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f9d8-1f3fd-200d-2642-fe0f.png b/site/static/emojis/1f9d8-1f3fd-200d-2642-fe0f.png new file mode 100644 index 0000000000000..9cc179ecdb565 Binary files /dev/null and b/site/static/emojis/1f9d8-1f3fd-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f9d8-1f3fd.png b/site/static/emojis/1f9d8-1f3fd.png new file mode 100644 index 0000000000000..35f2252ba4234 Binary files /dev/null and b/site/static/emojis/1f9d8-1f3fd.png differ diff --git a/site/static/emojis/1f9d8-1f3fe-200d-2640-fe0f.png b/site/static/emojis/1f9d8-1f3fe-200d-2640-fe0f.png new file mode 100644 index 0000000000000..ff022df7face8 Binary files /dev/null and b/site/static/emojis/1f9d8-1f3fe-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f9d8-1f3fe-200d-2642-fe0f.png b/site/static/emojis/1f9d8-1f3fe-200d-2642-fe0f.png new file mode 100644 index 0000000000000..9460caacb9ffa Binary files /dev/null and b/site/static/emojis/1f9d8-1f3fe-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f9d8-1f3fe.png b/site/static/emojis/1f9d8-1f3fe.png new file mode 100644 index 0000000000000..facdd8e06e1f3 Binary files /dev/null and b/site/static/emojis/1f9d8-1f3fe.png differ diff --git a/site/static/emojis/1f9d8-1f3ff-200d-2640-fe0f.png b/site/static/emojis/1f9d8-1f3ff-200d-2640-fe0f.png new file mode 100644 index 0000000000000..714c8f1893fc4 Binary files /dev/null and b/site/static/emojis/1f9d8-1f3ff-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f9d8-1f3ff-200d-2642-fe0f.png b/site/static/emojis/1f9d8-1f3ff-200d-2642-fe0f.png new file mode 100644 index 0000000000000..005bab6b5ae70 Binary files /dev/null and b/site/static/emojis/1f9d8-1f3ff-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f9d8-1f3ff.png b/site/static/emojis/1f9d8-1f3ff.png new file mode 100644 index 0000000000000..6781bf78ddf71 Binary files /dev/null and b/site/static/emojis/1f9d8-1f3ff.png differ diff --git a/site/static/emojis/1f9d8-200d-2640-fe0f.png b/site/static/emojis/1f9d8-200d-2640-fe0f.png new file mode 100644 index 0000000000000..d9189351d8436 Binary files /dev/null and b/site/static/emojis/1f9d8-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f9d8-200d-2642-fe0f.png b/site/static/emojis/1f9d8-200d-2642-fe0f.png new file mode 100644 index 0000000000000..0840aa1b534ab Binary files /dev/null and b/site/static/emojis/1f9d8-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f9d8.png b/site/static/emojis/1f9d8.png new file mode 100644 index 0000000000000..64cd7e2eb871c Binary files /dev/null and b/site/static/emojis/1f9d8.png differ diff --git a/site/static/emojis/1f9d9-1f3fb-200d-2640-fe0f.png b/site/static/emojis/1f9d9-1f3fb-200d-2640-fe0f.png new file mode 100644 index 0000000000000..a90901839e869 Binary files /dev/null and b/site/static/emojis/1f9d9-1f3fb-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f9d9-1f3fb-200d-2642-fe0f.png b/site/static/emojis/1f9d9-1f3fb-200d-2642-fe0f.png new file mode 100644 index 0000000000000..9bf271911c838 Binary files /dev/null and b/site/static/emojis/1f9d9-1f3fb-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f9d9-1f3fb.png b/site/static/emojis/1f9d9-1f3fb.png new file mode 100644 index 0000000000000..90d1a887de8d7 Binary files /dev/null and b/site/static/emojis/1f9d9-1f3fb.png differ diff --git a/site/static/emojis/1f9d9-1f3fc-200d-2640-fe0f.png b/site/static/emojis/1f9d9-1f3fc-200d-2640-fe0f.png new file mode 100644 index 0000000000000..53e07504dd9dd Binary files /dev/null and b/site/static/emojis/1f9d9-1f3fc-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f9d9-1f3fc-200d-2642-fe0f.png b/site/static/emojis/1f9d9-1f3fc-200d-2642-fe0f.png new file mode 100644 index 0000000000000..4c787f5bea1de Binary files /dev/null and b/site/static/emojis/1f9d9-1f3fc-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f9d9-1f3fc.png b/site/static/emojis/1f9d9-1f3fc.png new file mode 100644 index 0000000000000..00e895ef0f09c Binary files /dev/null and b/site/static/emojis/1f9d9-1f3fc.png differ diff --git a/site/static/emojis/1f9d9-1f3fd-200d-2640-fe0f.png b/site/static/emojis/1f9d9-1f3fd-200d-2640-fe0f.png new file mode 100644 index 0000000000000..2a7dcc21f2e3d Binary files /dev/null and b/site/static/emojis/1f9d9-1f3fd-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f9d9-1f3fd-200d-2642-fe0f.png b/site/static/emojis/1f9d9-1f3fd-200d-2642-fe0f.png new file mode 100644 index 0000000000000..96d8c88219c71 Binary files /dev/null and b/site/static/emojis/1f9d9-1f3fd-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f9d9-1f3fd.png b/site/static/emojis/1f9d9-1f3fd.png new file mode 100644 index 0000000000000..b233884387d1c Binary files /dev/null and b/site/static/emojis/1f9d9-1f3fd.png differ diff --git a/site/static/emojis/1f9d9-1f3fe-200d-2640-fe0f.png b/site/static/emojis/1f9d9-1f3fe-200d-2640-fe0f.png new file mode 100644 index 0000000000000..e640bf2c5b2f9 Binary files /dev/null and b/site/static/emojis/1f9d9-1f3fe-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f9d9-1f3fe-200d-2642-fe0f.png b/site/static/emojis/1f9d9-1f3fe-200d-2642-fe0f.png new file mode 100644 index 0000000000000..2b66defd30b0a Binary files /dev/null and b/site/static/emojis/1f9d9-1f3fe-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f9d9-1f3fe.png b/site/static/emojis/1f9d9-1f3fe.png new file mode 100644 index 0000000000000..f9c021873a359 Binary files /dev/null and b/site/static/emojis/1f9d9-1f3fe.png differ diff --git a/site/static/emojis/1f9d9-1f3ff-200d-2640-fe0f.png b/site/static/emojis/1f9d9-1f3ff-200d-2640-fe0f.png new file mode 100644 index 0000000000000..84fc554366514 Binary files /dev/null and b/site/static/emojis/1f9d9-1f3ff-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f9d9-1f3ff-200d-2642-fe0f.png b/site/static/emojis/1f9d9-1f3ff-200d-2642-fe0f.png new file mode 100644 index 0000000000000..3de49207214ad Binary files /dev/null and b/site/static/emojis/1f9d9-1f3ff-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f9d9-1f3ff.png b/site/static/emojis/1f9d9-1f3ff.png new file mode 100644 index 0000000000000..8abf6646a49db Binary files /dev/null and b/site/static/emojis/1f9d9-1f3ff.png differ diff --git a/site/static/emojis/1f9d9-200d-2640-fe0f.png b/site/static/emojis/1f9d9-200d-2640-fe0f.png new file mode 100644 index 0000000000000..747397c39ad4a Binary files /dev/null and b/site/static/emojis/1f9d9-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f9d9-200d-2642-fe0f.png b/site/static/emojis/1f9d9-200d-2642-fe0f.png new file mode 100644 index 0000000000000..d12c1e60521be Binary files /dev/null and b/site/static/emojis/1f9d9-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f9d9.png b/site/static/emojis/1f9d9.png new file mode 100644 index 0000000000000..4dd9aa577a155 Binary files /dev/null and b/site/static/emojis/1f9d9.png differ diff --git a/site/static/emojis/1f9da-1f3fb-200d-2640-fe0f.png b/site/static/emojis/1f9da-1f3fb-200d-2640-fe0f.png new file mode 100644 index 0000000000000..3ebb1908913d8 Binary files /dev/null and b/site/static/emojis/1f9da-1f3fb-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f9da-1f3fb-200d-2642-fe0f.png b/site/static/emojis/1f9da-1f3fb-200d-2642-fe0f.png new file mode 100644 index 0000000000000..4aef2a3eb7d53 Binary files /dev/null and b/site/static/emojis/1f9da-1f3fb-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f9da-1f3fb.png b/site/static/emojis/1f9da-1f3fb.png new file mode 100644 index 0000000000000..71865d80d2c5e Binary files /dev/null and b/site/static/emojis/1f9da-1f3fb.png differ diff --git a/site/static/emojis/1f9da-1f3fc-200d-2640-fe0f.png b/site/static/emojis/1f9da-1f3fc-200d-2640-fe0f.png new file mode 100644 index 0000000000000..3a3a4a4ec19cb Binary files /dev/null and b/site/static/emojis/1f9da-1f3fc-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f9da-1f3fc-200d-2642-fe0f.png b/site/static/emojis/1f9da-1f3fc-200d-2642-fe0f.png new file mode 100644 index 0000000000000..2f3566584c926 Binary files /dev/null and b/site/static/emojis/1f9da-1f3fc-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f9da-1f3fc.png b/site/static/emojis/1f9da-1f3fc.png new file mode 100644 index 0000000000000..696a9bfd9b065 Binary files /dev/null and b/site/static/emojis/1f9da-1f3fc.png differ diff --git a/site/static/emojis/1f9da-1f3fd-200d-2640-fe0f.png b/site/static/emojis/1f9da-1f3fd-200d-2640-fe0f.png new file mode 100644 index 0000000000000..be21165139de6 Binary files /dev/null and b/site/static/emojis/1f9da-1f3fd-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f9da-1f3fd-200d-2642-fe0f.png b/site/static/emojis/1f9da-1f3fd-200d-2642-fe0f.png new file mode 100644 index 0000000000000..fa1b8242c7bd9 Binary files /dev/null and b/site/static/emojis/1f9da-1f3fd-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f9da-1f3fd.png b/site/static/emojis/1f9da-1f3fd.png new file mode 100644 index 0000000000000..a6c48dd4acec0 Binary files /dev/null and b/site/static/emojis/1f9da-1f3fd.png differ diff --git a/site/static/emojis/1f9da-1f3fe-200d-2640-fe0f.png b/site/static/emojis/1f9da-1f3fe-200d-2640-fe0f.png new file mode 100644 index 0000000000000..6469a079f114b Binary files /dev/null and b/site/static/emojis/1f9da-1f3fe-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f9da-1f3fe-200d-2642-fe0f.png b/site/static/emojis/1f9da-1f3fe-200d-2642-fe0f.png new file mode 100644 index 0000000000000..e0990049f1d29 Binary files /dev/null and b/site/static/emojis/1f9da-1f3fe-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f9da-1f3fe.png b/site/static/emojis/1f9da-1f3fe.png new file mode 100644 index 0000000000000..05e51d2d79a1f Binary files /dev/null and b/site/static/emojis/1f9da-1f3fe.png differ diff --git a/site/static/emojis/1f9da-1f3ff-200d-2640-fe0f.png b/site/static/emojis/1f9da-1f3ff-200d-2640-fe0f.png new file mode 100644 index 0000000000000..47181d6fc32b7 Binary files /dev/null and b/site/static/emojis/1f9da-1f3ff-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f9da-1f3ff-200d-2642-fe0f.png b/site/static/emojis/1f9da-1f3ff-200d-2642-fe0f.png new file mode 100644 index 0000000000000..5fa6356ac588d Binary files /dev/null and b/site/static/emojis/1f9da-1f3ff-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f9da-1f3ff.png b/site/static/emojis/1f9da-1f3ff.png new file mode 100644 index 0000000000000..b2a3b83da08fb Binary files /dev/null and b/site/static/emojis/1f9da-1f3ff.png differ diff --git a/site/static/emojis/1f9da-200d-2640-fe0f.png b/site/static/emojis/1f9da-200d-2640-fe0f.png new file mode 100644 index 0000000000000..b4a1e9a4f9502 Binary files /dev/null and b/site/static/emojis/1f9da-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f9da-200d-2642-fe0f.png b/site/static/emojis/1f9da-200d-2642-fe0f.png new file mode 100644 index 0000000000000..9f79ec16355c1 Binary files /dev/null and b/site/static/emojis/1f9da-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f9da.png b/site/static/emojis/1f9da.png new file mode 100644 index 0000000000000..2922c2e4cf541 Binary files /dev/null and b/site/static/emojis/1f9da.png differ diff --git a/site/static/emojis/1f9db-1f3fb-200d-2640-fe0f.png b/site/static/emojis/1f9db-1f3fb-200d-2640-fe0f.png new file mode 100644 index 0000000000000..3a43c52fe4968 Binary files /dev/null and b/site/static/emojis/1f9db-1f3fb-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f9db-1f3fb-200d-2642-fe0f.png b/site/static/emojis/1f9db-1f3fb-200d-2642-fe0f.png new file mode 100644 index 0000000000000..76fe5ede4e201 Binary files /dev/null and b/site/static/emojis/1f9db-1f3fb-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f9db-1f3fb.png b/site/static/emojis/1f9db-1f3fb.png new file mode 100644 index 0000000000000..e9d81f660d8aa Binary files /dev/null and b/site/static/emojis/1f9db-1f3fb.png differ diff --git a/site/static/emojis/1f9db-1f3fc-200d-2640-fe0f.png b/site/static/emojis/1f9db-1f3fc-200d-2640-fe0f.png new file mode 100644 index 0000000000000..f958045cd700b Binary files /dev/null and b/site/static/emojis/1f9db-1f3fc-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f9db-1f3fc-200d-2642-fe0f.png b/site/static/emojis/1f9db-1f3fc-200d-2642-fe0f.png new file mode 100644 index 0000000000000..08af30c85d729 Binary files /dev/null and b/site/static/emojis/1f9db-1f3fc-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f9db-1f3fc.png b/site/static/emojis/1f9db-1f3fc.png new file mode 100644 index 0000000000000..c3bdf523608c0 Binary files /dev/null and b/site/static/emojis/1f9db-1f3fc.png differ diff --git a/site/static/emojis/1f9db-1f3fd-200d-2640-fe0f.png b/site/static/emojis/1f9db-1f3fd-200d-2640-fe0f.png new file mode 100644 index 0000000000000..7a1bea782fd19 Binary files /dev/null and b/site/static/emojis/1f9db-1f3fd-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f9db-1f3fd-200d-2642-fe0f.png b/site/static/emojis/1f9db-1f3fd-200d-2642-fe0f.png new file mode 100644 index 0000000000000..fad2b7f9efb62 Binary files /dev/null and b/site/static/emojis/1f9db-1f3fd-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f9db-1f3fd.png b/site/static/emojis/1f9db-1f3fd.png new file mode 100644 index 0000000000000..1cdbc1e63edb2 Binary files /dev/null and b/site/static/emojis/1f9db-1f3fd.png differ diff --git a/site/static/emojis/1f9db-1f3fe-200d-2640-fe0f.png b/site/static/emojis/1f9db-1f3fe-200d-2640-fe0f.png new file mode 100644 index 0000000000000..51d63cd18ec0d Binary files /dev/null and b/site/static/emojis/1f9db-1f3fe-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f9db-1f3fe-200d-2642-fe0f.png b/site/static/emojis/1f9db-1f3fe-200d-2642-fe0f.png new file mode 100644 index 0000000000000..755de90ce1f77 Binary files /dev/null and b/site/static/emojis/1f9db-1f3fe-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f9db-1f3fe.png b/site/static/emojis/1f9db-1f3fe.png new file mode 100644 index 0000000000000..8c7f62beb8eea Binary files /dev/null and b/site/static/emojis/1f9db-1f3fe.png differ diff --git a/site/static/emojis/1f9db-1f3ff-200d-2640-fe0f.png b/site/static/emojis/1f9db-1f3ff-200d-2640-fe0f.png new file mode 100644 index 0000000000000..3fc9f4dfcc7d9 Binary files /dev/null and b/site/static/emojis/1f9db-1f3ff-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f9db-1f3ff-200d-2642-fe0f.png b/site/static/emojis/1f9db-1f3ff-200d-2642-fe0f.png new file mode 100644 index 0000000000000..39424839cd4cd Binary files /dev/null and b/site/static/emojis/1f9db-1f3ff-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f9db-1f3ff.png b/site/static/emojis/1f9db-1f3ff.png new file mode 100644 index 0000000000000..a04d300a7556a Binary files /dev/null and b/site/static/emojis/1f9db-1f3ff.png differ diff --git a/site/static/emojis/1f9db-200d-2640-fe0f.png b/site/static/emojis/1f9db-200d-2640-fe0f.png new file mode 100644 index 0000000000000..8d43714750d6b Binary files /dev/null and b/site/static/emojis/1f9db-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f9db-200d-2642-fe0f.png b/site/static/emojis/1f9db-200d-2642-fe0f.png new file mode 100644 index 0000000000000..c1a60bc419326 Binary files /dev/null and b/site/static/emojis/1f9db-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f9db.png b/site/static/emojis/1f9db.png new file mode 100644 index 0000000000000..f9153f654a750 Binary files /dev/null and b/site/static/emojis/1f9db.png differ diff --git a/site/static/emojis/1f9dc-1f3fb-200d-2640-fe0f.png b/site/static/emojis/1f9dc-1f3fb-200d-2640-fe0f.png new file mode 100644 index 0000000000000..249ce2ba67cbc Binary files /dev/null and b/site/static/emojis/1f9dc-1f3fb-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f9dc-1f3fb-200d-2642-fe0f.png b/site/static/emojis/1f9dc-1f3fb-200d-2642-fe0f.png new file mode 100644 index 0000000000000..8f32dd45e8a24 Binary files /dev/null and b/site/static/emojis/1f9dc-1f3fb-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f9dc-1f3fb.png b/site/static/emojis/1f9dc-1f3fb.png new file mode 100644 index 0000000000000..2d1664f6d072e Binary files /dev/null and b/site/static/emojis/1f9dc-1f3fb.png differ diff --git a/site/static/emojis/1f9dc-1f3fc-200d-2640-fe0f.png b/site/static/emojis/1f9dc-1f3fc-200d-2640-fe0f.png new file mode 100644 index 0000000000000..8bf8de385aa52 Binary files /dev/null and b/site/static/emojis/1f9dc-1f3fc-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f9dc-1f3fc-200d-2642-fe0f.png b/site/static/emojis/1f9dc-1f3fc-200d-2642-fe0f.png new file mode 100644 index 0000000000000..14e0c8955ca74 Binary files /dev/null and b/site/static/emojis/1f9dc-1f3fc-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f9dc-1f3fc.png b/site/static/emojis/1f9dc-1f3fc.png new file mode 100644 index 0000000000000..0cf2d6b73a36e Binary files /dev/null and b/site/static/emojis/1f9dc-1f3fc.png differ diff --git a/site/static/emojis/1f9dc-1f3fd-200d-2640-fe0f.png b/site/static/emojis/1f9dc-1f3fd-200d-2640-fe0f.png new file mode 100644 index 0000000000000..c7278e3d3d114 Binary files /dev/null and b/site/static/emojis/1f9dc-1f3fd-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f9dc-1f3fd-200d-2642-fe0f.png b/site/static/emojis/1f9dc-1f3fd-200d-2642-fe0f.png new file mode 100644 index 0000000000000..d2dd2bb0478f3 Binary files /dev/null and b/site/static/emojis/1f9dc-1f3fd-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f9dc-1f3fd.png b/site/static/emojis/1f9dc-1f3fd.png new file mode 100644 index 0000000000000..463649c3ebb38 Binary files /dev/null and b/site/static/emojis/1f9dc-1f3fd.png differ diff --git a/site/static/emojis/1f9dc-1f3fe-200d-2640-fe0f.png b/site/static/emojis/1f9dc-1f3fe-200d-2640-fe0f.png new file mode 100644 index 0000000000000..f702433ea4f79 Binary files /dev/null and b/site/static/emojis/1f9dc-1f3fe-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f9dc-1f3fe-200d-2642-fe0f.png b/site/static/emojis/1f9dc-1f3fe-200d-2642-fe0f.png new file mode 100644 index 0000000000000..fa34d60d7ea45 Binary files /dev/null and b/site/static/emojis/1f9dc-1f3fe-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f9dc-1f3fe.png b/site/static/emojis/1f9dc-1f3fe.png new file mode 100644 index 0000000000000..12010a147d332 Binary files /dev/null and b/site/static/emojis/1f9dc-1f3fe.png differ diff --git a/site/static/emojis/1f9dc-1f3ff-200d-2640-fe0f.png b/site/static/emojis/1f9dc-1f3ff-200d-2640-fe0f.png new file mode 100644 index 0000000000000..7a67a9391a502 Binary files /dev/null and b/site/static/emojis/1f9dc-1f3ff-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f9dc-1f3ff-200d-2642-fe0f.png b/site/static/emojis/1f9dc-1f3ff-200d-2642-fe0f.png new file mode 100644 index 0000000000000..1f179ea14573c Binary files /dev/null and b/site/static/emojis/1f9dc-1f3ff-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f9dc-1f3ff.png b/site/static/emojis/1f9dc-1f3ff.png new file mode 100644 index 0000000000000..c2aa65ca26ccf Binary files /dev/null and b/site/static/emojis/1f9dc-1f3ff.png differ diff --git a/site/static/emojis/1f9dc-200d-2640-fe0f.png b/site/static/emojis/1f9dc-200d-2640-fe0f.png new file mode 100644 index 0000000000000..566588215cee8 Binary files /dev/null and b/site/static/emojis/1f9dc-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f9dc-200d-2642-fe0f.png b/site/static/emojis/1f9dc-200d-2642-fe0f.png new file mode 100644 index 0000000000000..c80e8cc2d79d2 Binary files /dev/null and b/site/static/emojis/1f9dc-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f9dc.png b/site/static/emojis/1f9dc.png new file mode 100644 index 0000000000000..ec922212345c4 Binary files /dev/null and b/site/static/emojis/1f9dc.png differ diff --git a/site/static/emojis/1f9dd-1f3fb-200d-2640-fe0f.png b/site/static/emojis/1f9dd-1f3fb-200d-2640-fe0f.png new file mode 100644 index 0000000000000..bd6d562bc4667 Binary files /dev/null and b/site/static/emojis/1f9dd-1f3fb-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f9dd-1f3fb-200d-2642-fe0f.png b/site/static/emojis/1f9dd-1f3fb-200d-2642-fe0f.png new file mode 100644 index 0000000000000..ac432895118bb Binary files /dev/null and b/site/static/emojis/1f9dd-1f3fb-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f9dd-1f3fb.png b/site/static/emojis/1f9dd-1f3fb.png new file mode 100644 index 0000000000000..0e6c18962f62c Binary files /dev/null and b/site/static/emojis/1f9dd-1f3fb.png differ diff --git a/site/static/emojis/1f9dd-1f3fc-200d-2640-fe0f.png b/site/static/emojis/1f9dd-1f3fc-200d-2640-fe0f.png new file mode 100644 index 0000000000000..c88fe43de884c Binary files /dev/null and b/site/static/emojis/1f9dd-1f3fc-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f9dd-1f3fc-200d-2642-fe0f.png b/site/static/emojis/1f9dd-1f3fc-200d-2642-fe0f.png new file mode 100644 index 0000000000000..1c9b4b55a2a5a Binary files /dev/null and b/site/static/emojis/1f9dd-1f3fc-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f9dd-1f3fc.png b/site/static/emojis/1f9dd-1f3fc.png new file mode 100644 index 0000000000000..c5d5474092ae3 Binary files /dev/null and b/site/static/emojis/1f9dd-1f3fc.png differ diff --git a/site/static/emojis/1f9dd-1f3fd-200d-2640-fe0f.png b/site/static/emojis/1f9dd-1f3fd-200d-2640-fe0f.png new file mode 100644 index 0000000000000..73b25fb960d75 Binary files /dev/null and b/site/static/emojis/1f9dd-1f3fd-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f9dd-1f3fd-200d-2642-fe0f.png b/site/static/emojis/1f9dd-1f3fd-200d-2642-fe0f.png new file mode 100644 index 0000000000000..d368a17828526 Binary files /dev/null and b/site/static/emojis/1f9dd-1f3fd-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f9dd-1f3fd.png b/site/static/emojis/1f9dd-1f3fd.png new file mode 100644 index 0000000000000..1a9ca7f33ee32 Binary files /dev/null and b/site/static/emojis/1f9dd-1f3fd.png differ diff --git a/site/static/emojis/1f9dd-1f3fe-200d-2640-fe0f.png b/site/static/emojis/1f9dd-1f3fe-200d-2640-fe0f.png new file mode 100644 index 0000000000000..f89356ef0f212 Binary files /dev/null and b/site/static/emojis/1f9dd-1f3fe-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f9dd-1f3fe-200d-2642-fe0f.png b/site/static/emojis/1f9dd-1f3fe-200d-2642-fe0f.png new file mode 100644 index 0000000000000..6d1e04557120f Binary files /dev/null and b/site/static/emojis/1f9dd-1f3fe-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f9dd-1f3fe.png b/site/static/emojis/1f9dd-1f3fe.png new file mode 100644 index 0000000000000..dd598986ac3b9 Binary files /dev/null and b/site/static/emojis/1f9dd-1f3fe.png differ diff --git a/site/static/emojis/1f9dd-1f3ff-200d-2640-fe0f.png b/site/static/emojis/1f9dd-1f3ff-200d-2640-fe0f.png new file mode 100644 index 0000000000000..0aa3e71dabde1 Binary files /dev/null and b/site/static/emojis/1f9dd-1f3ff-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f9dd-1f3ff-200d-2642-fe0f.png b/site/static/emojis/1f9dd-1f3ff-200d-2642-fe0f.png new file mode 100644 index 0000000000000..de1e6d07997b4 Binary files /dev/null and b/site/static/emojis/1f9dd-1f3ff-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f9dd-1f3ff.png b/site/static/emojis/1f9dd-1f3ff.png new file mode 100644 index 0000000000000..d8dc2f0d6e6d1 Binary files /dev/null and b/site/static/emojis/1f9dd-1f3ff.png differ diff --git a/site/static/emojis/1f9dd-200d-2640-fe0f.png b/site/static/emojis/1f9dd-200d-2640-fe0f.png new file mode 100644 index 0000000000000..84e8ab03a2b78 Binary files /dev/null and b/site/static/emojis/1f9dd-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f9dd-200d-2642-fe0f.png b/site/static/emojis/1f9dd-200d-2642-fe0f.png new file mode 100644 index 0000000000000..f838ee82bbe60 Binary files /dev/null and b/site/static/emojis/1f9dd-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f9dd.png b/site/static/emojis/1f9dd.png new file mode 100644 index 0000000000000..c830d709e6981 Binary files /dev/null and b/site/static/emojis/1f9dd.png differ diff --git a/site/static/emojis/1f9de-200d-2640-fe0f.png b/site/static/emojis/1f9de-200d-2640-fe0f.png new file mode 100644 index 0000000000000..d1a5608de922d Binary files /dev/null and b/site/static/emojis/1f9de-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f9de-200d-2642-fe0f.png b/site/static/emojis/1f9de-200d-2642-fe0f.png new file mode 100644 index 0000000000000..0e30daa256a19 Binary files /dev/null and b/site/static/emojis/1f9de-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f9de.png b/site/static/emojis/1f9de.png new file mode 100644 index 0000000000000..34942f18070f4 Binary files /dev/null and b/site/static/emojis/1f9de.png differ diff --git a/site/static/emojis/1f9df-200d-2640-fe0f.png b/site/static/emojis/1f9df-200d-2640-fe0f.png new file mode 100644 index 0000000000000..cdaa255dc5199 Binary files /dev/null and b/site/static/emojis/1f9df-200d-2640-fe0f.png differ diff --git a/site/static/emojis/1f9df-200d-2642-fe0f.png b/site/static/emojis/1f9df-200d-2642-fe0f.png new file mode 100644 index 0000000000000..6065e11af6379 Binary files /dev/null and b/site/static/emojis/1f9df-200d-2642-fe0f.png differ diff --git a/site/static/emojis/1f9df.png b/site/static/emojis/1f9df.png new file mode 100644 index 0000000000000..fda1ab48b54a3 Binary files /dev/null and b/site/static/emojis/1f9df.png differ diff --git a/site/static/emojis/1f9e0.png b/site/static/emojis/1f9e0.png new file mode 100644 index 0000000000000..dd5cd23be820a Binary files /dev/null and b/site/static/emojis/1f9e0.png differ diff --git a/site/static/emojis/1f9e1.png b/site/static/emojis/1f9e1.png new file mode 100644 index 0000000000000..a3ba1c2735d3a Binary files /dev/null and b/site/static/emojis/1f9e1.png differ diff --git a/site/static/emojis/1f9e2.png b/site/static/emojis/1f9e2.png new file mode 100644 index 0000000000000..1441df8c83894 Binary files /dev/null and b/site/static/emojis/1f9e2.png differ diff --git a/site/static/emojis/1f9e3.png b/site/static/emojis/1f9e3.png new file mode 100644 index 0000000000000..0faf6627c9c97 Binary files /dev/null and b/site/static/emojis/1f9e3.png differ diff --git a/site/static/emojis/1f9e4.png b/site/static/emojis/1f9e4.png new file mode 100644 index 0000000000000..ba0a2af68ba9d Binary files /dev/null and b/site/static/emojis/1f9e4.png differ diff --git a/site/static/emojis/1f9e5.png b/site/static/emojis/1f9e5.png new file mode 100644 index 0000000000000..4219af9b0c106 Binary files /dev/null and b/site/static/emojis/1f9e5.png differ diff --git a/site/static/emojis/1f9e6.png b/site/static/emojis/1f9e6.png new file mode 100644 index 0000000000000..924c9530983d8 Binary files /dev/null and b/site/static/emojis/1f9e6.png differ diff --git a/site/static/emojis/1f9e7.png b/site/static/emojis/1f9e7.png new file mode 100644 index 0000000000000..8b7941d1b59fe Binary files /dev/null and b/site/static/emojis/1f9e7.png differ diff --git a/site/static/emojis/1f9e8.png b/site/static/emojis/1f9e8.png new file mode 100644 index 0000000000000..6dc6b7e04c57d Binary files /dev/null and b/site/static/emojis/1f9e8.png differ diff --git a/site/static/emojis/1f9e9.png b/site/static/emojis/1f9e9.png new file mode 100644 index 0000000000000..9a3e7fa3bc9ce Binary files /dev/null and b/site/static/emojis/1f9e9.png differ diff --git a/site/static/emojis/1f9ea.png b/site/static/emojis/1f9ea.png new file mode 100644 index 0000000000000..d083b76ff6793 Binary files /dev/null and b/site/static/emojis/1f9ea.png differ diff --git a/site/static/emojis/1f9eb.png b/site/static/emojis/1f9eb.png new file mode 100644 index 0000000000000..f48fdb32d6ce0 Binary files /dev/null and b/site/static/emojis/1f9eb.png differ diff --git a/site/static/emojis/1f9ec.png b/site/static/emojis/1f9ec.png new file mode 100644 index 0000000000000..1fa93207d632b Binary files /dev/null and b/site/static/emojis/1f9ec.png differ diff --git a/site/static/emojis/1f9ed.png b/site/static/emojis/1f9ed.png new file mode 100644 index 0000000000000..ff199d4822b23 Binary files /dev/null and b/site/static/emojis/1f9ed.png differ diff --git a/site/static/emojis/1f9ee.png b/site/static/emojis/1f9ee.png new file mode 100644 index 0000000000000..e56e558529728 Binary files /dev/null and b/site/static/emojis/1f9ee.png differ diff --git a/site/static/emojis/1f9ef.png b/site/static/emojis/1f9ef.png new file mode 100644 index 0000000000000..f05d9276a18b8 Binary files /dev/null and b/site/static/emojis/1f9ef.png differ diff --git a/site/static/emojis/1f9f0.png b/site/static/emojis/1f9f0.png new file mode 100644 index 0000000000000..f66bd60df4782 Binary files /dev/null and b/site/static/emojis/1f9f0.png differ diff --git a/site/static/emojis/1f9f1.png b/site/static/emojis/1f9f1.png new file mode 100644 index 0000000000000..764830aeddfdd Binary files /dev/null and b/site/static/emojis/1f9f1.png differ diff --git a/site/static/emojis/1f9f2.png b/site/static/emojis/1f9f2.png new file mode 100644 index 0000000000000..f6366085d340a Binary files /dev/null and b/site/static/emojis/1f9f2.png differ diff --git a/site/static/emojis/1f9f3.png b/site/static/emojis/1f9f3.png new file mode 100644 index 0000000000000..f907616056c84 Binary files /dev/null and b/site/static/emojis/1f9f3.png differ diff --git a/site/static/emojis/1f9f4.png b/site/static/emojis/1f9f4.png new file mode 100644 index 0000000000000..2fb947682a1c8 Binary files /dev/null and b/site/static/emojis/1f9f4.png differ diff --git a/site/static/emojis/1f9f5.png b/site/static/emojis/1f9f5.png new file mode 100644 index 0000000000000..0e26993b84935 Binary files /dev/null and b/site/static/emojis/1f9f5.png differ diff --git a/site/static/emojis/1f9f6.png b/site/static/emojis/1f9f6.png new file mode 100644 index 0000000000000..005e38061f984 Binary files /dev/null and b/site/static/emojis/1f9f6.png differ diff --git a/site/static/emojis/1f9f7.png b/site/static/emojis/1f9f7.png new file mode 100644 index 0000000000000..b15166e2ab557 Binary files /dev/null and b/site/static/emojis/1f9f7.png differ diff --git a/site/static/emojis/1f9f8.png b/site/static/emojis/1f9f8.png new file mode 100644 index 0000000000000..4ba5b7bb59627 Binary files /dev/null and b/site/static/emojis/1f9f8.png differ diff --git a/site/static/emojis/1f9f9.png b/site/static/emojis/1f9f9.png new file mode 100644 index 0000000000000..13176f55f1a69 Binary files /dev/null and b/site/static/emojis/1f9f9.png differ diff --git a/site/static/emojis/1f9fa.png b/site/static/emojis/1f9fa.png new file mode 100644 index 0000000000000..696476ff6deab Binary files /dev/null and b/site/static/emojis/1f9fa.png differ diff --git a/site/static/emojis/1f9fb.png b/site/static/emojis/1f9fb.png new file mode 100644 index 0000000000000..1a12083201021 Binary files /dev/null and b/site/static/emojis/1f9fb.png differ diff --git a/site/static/emojis/1f9fc.png b/site/static/emojis/1f9fc.png new file mode 100644 index 0000000000000..3432ebceb1648 Binary files /dev/null and b/site/static/emojis/1f9fc.png differ diff --git a/site/static/emojis/1f9fd.png b/site/static/emojis/1f9fd.png new file mode 100644 index 0000000000000..8f810b2395d94 Binary files /dev/null and b/site/static/emojis/1f9fd.png differ diff --git a/site/static/emojis/1f9fe.png b/site/static/emojis/1f9fe.png new file mode 100644 index 0000000000000..15408be776a76 Binary files /dev/null and b/site/static/emojis/1f9fe.png differ diff --git a/site/static/emojis/1f9ff.png b/site/static/emojis/1f9ff.png new file mode 100644 index 0000000000000..a5e55b990fc65 Binary files /dev/null and b/site/static/emojis/1f9ff.png differ diff --git a/site/static/emojis/1fa70.png b/site/static/emojis/1fa70.png new file mode 100644 index 0000000000000..4d57413ddb35b Binary files /dev/null and b/site/static/emojis/1fa70.png differ diff --git a/site/static/emojis/1fa71.png b/site/static/emojis/1fa71.png new file mode 100644 index 0000000000000..af41879e3d1f1 Binary files /dev/null and b/site/static/emojis/1fa71.png differ diff --git a/site/static/emojis/1fa72.png b/site/static/emojis/1fa72.png new file mode 100644 index 0000000000000..0a360084769d5 Binary files /dev/null and b/site/static/emojis/1fa72.png differ diff --git a/site/static/emojis/1fa73.png b/site/static/emojis/1fa73.png new file mode 100644 index 0000000000000..f1adff3ee6c19 Binary files /dev/null and b/site/static/emojis/1fa73.png differ diff --git a/site/static/emojis/1fa74.png b/site/static/emojis/1fa74.png new file mode 100644 index 0000000000000..f7b078b069f89 Binary files /dev/null and b/site/static/emojis/1fa74.png differ diff --git a/site/static/emojis/1fa78.png b/site/static/emojis/1fa78.png new file mode 100644 index 0000000000000..62aaa0f4cd8dd Binary files /dev/null and b/site/static/emojis/1fa78.png differ diff --git a/site/static/emojis/1fa79.png b/site/static/emojis/1fa79.png new file mode 100644 index 0000000000000..edb23981a4a93 Binary files /dev/null and b/site/static/emojis/1fa79.png differ diff --git a/site/static/emojis/1fa7a.png b/site/static/emojis/1fa7a.png new file mode 100644 index 0000000000000..edb930715cd74 Binary files /dev/null and b/site/static/emojis/1fa7a.png differ diff --git a/site/static/emojis/1fa7b.png b/site/static/emojis/1fa7b.png new file mode 100644 index 0000000000000..f25e24dcbecd7 Binary files /dev/null and b/site/static/emojis/1fa7b.png differ diff --git a/site/static/emojis/1fa7c.png b/site/static/emojis/1fa7c.png new file mode 100644 index 0000000000000..2c6fb77e12247 Binary files /dev/null and b/site/static/emojis/1fa7c.png differ diff --git a/site/static/emojis/1fa80.png b/site/static/emojis/1fa80.png new file mode 100644 index 0000000000000..5ae5a9d03a319 Binary files /dev/null and b/site/static/emojis/1fa80.png differ diff --git a/site/static/emojis/1fa81.png b/site/static/emojis/1fa81.png new file mode 100644 index 0000000000000..07bcb5503f1e3 Binary files /dev/null and b/site/static/emojis/1fa81.png differ diff --git a/site/static/emojis/1fa82.png b/site/static/emojis/1fa82.png new file mode 100644 index 0000000000000..246aab9b1b62b Binary files /dev/null and b/site/static/emojis/1fa82.png differ diff --git a/site/static/emojis/1fa83.png b/site/static/emojis/1fa83.png new file mode 100644 index 0000000000000..8cbd6b7cfff25 Binary files /dev/null and b/site/static/emojis/1fa83.png differ diff --git a/site/static/emojis/1fa84.png b/site/static/emojis/1fa84.png new file mode 100644 index 0000000000000..73649cbd14534 Binary files /dev/null and b/site/static/emojis/1fa84.png differ diff --git a/site/static/emojis/1fa85.png b/site/static/emojis/1fa85.png new file mode 100644 index 0000000000000..e97835b0c99e9 Binary files /dev/null and b/site/static/emojis/1fa85.png differ diff --git a/site/static/emojis/1fa86.png b/site/static/emojis/1fa86.png new file mode 100644 index 0000000000000..5181a4ef2be76 Binary files /dev/null and b/site/static/emojis/1fa86.png differ diff --git a/site/static/emojis/1fa90.png b/site/static/emojis/1fa90.png new file mode 100644 index 0000000000000..e0f5af293425f Binary files /dev/null and b/site/static/emojis/1fa90.png differ diff --git a/site/static/emojis/1fa91.png b/site/static/emojis/1fa91.png new file mode 100644 index 0000000000000..2ffe0ada06bc0 Binary files /dev/null and b/site/static/emojis/1fa91.png differ diff --git a/site/static/emojis/1fa92.png b/site/static/emojis/1fa92.png new file mode 100644 index 0000000000000..02ec9122050ab Binary files /dev/null and b/site/static/emojis/1fa92.png differ diff --git a/site/static/emojis/1fa93.png b/site/static/emojis/1fa93.png new file mode 100644 index 0000000000000..eb96121dd6cda Binary files /dev/null and b/site/static/emojis/1fa93.png differ diff --git a/site/static/emojis/1fa94.png b/site/static/emojis/1fa94.png new file mode 100644 index 0000000000000..161befbaf5fa1 Binary files /dev/null and b/site/static/emojis/1fa94.png differ diff --git a/site/static/emojis/1fa95.png b/site/static/emojis/1fa95.png new file mode 100644 index 0000000000000..f5eb90921e4ee Binary files /dev/null and b/site/static/emojis/1fa95.png differ diff --git a/site/static/emojis/1fa96.png b/site/static/emojis/1fa96.png new file mode 100644 index 0000000000000..47d54a833e4a6 Binary files /dev/null and b/site/static/emojis/1fa96.png differ diff --git a/site/static/emojis/1fa97.png b/site/static/emojis/1fa97.png new file mode 100644 index 0000000000000..d198407df7e28 Binary files /dev/null and b/site/static/emojis/1fa97.png differ diff --git a/site/static/emojis/1fa98.png b/site/static/emojis/1fa98.png new file mode 100644 index 0000000000000..9e25d364188ce Binary files /dev/null and b/site/static/emojis/1fa98.png differ diff --git a/site/static/emojis/1fa99.png b/site/static/emojis/1fa99.png new file mode 100644 index 0000000000000..8df742e5d733e Binary files /dev/null and b/site/static/emojis/1fa99.png differ diff --git a/site/static/emojis/1fa9a.png b/site/static/emojis/1fa9a.png new file mode 100644 index 0000000000000..6c2b2e9e17d2b Binary files /dev/null and b/site/static/emojis/1fa9a.png differ diff --git a/site/static/emojis/1fa9b.png b/site/static/emojis/1fa9b.png new file mode 100644 index 0000000000000..215ebb527345b Binary files /dev/null and b/site/static/emojis/1fa9b.png differ diff --git a/site/static/emojis/1fa9c.png b/site/static/emojis/1fa9c.png new file mode 100644 index 0000000000000..7486beece7ee5 Binary files /dev/null and b/site/static/emojis/1fa9c.png differ diff --git a/site/static/emojis/1fa9d.png b/site/static/emojis/1fa9d.png new file mode 100644 index 0000000000000..67499210a6389 Binary files /dev/null and b/site/static/emojis/1fa9d.png differ diff --git a/site/static/emojis/1fa9e.png b/site/static/emojis/1fa9e.png new file mode 100644 index 0000000000000..843365b96f9a5 Binary files /dev/null and b/site/static/emojis/1fa9e.png differ diff --git a/site/static/emojis/1fa9f.png b/site/static/emojis/1fa9f.png new file mode 100644 index 0000000000000..41627f39dd085 Binary files /dev/null and b/site/static/emojis/1fa9f.png differ diff --git a/site/static/emojis/1faa0.png b/site/static/emojis/1faa0.png new file mode 100644 index 0000000000000..51a1058063bc7 Binary files /dev/null and b/site/static/emojis/1faa0.png differ diff --git a/site/static/emojis/1faa1.png b/site/static/emojis/1faa1.png new file mode 100644 index 0000000000000..92f82ce01d7a6 Binary files /dev/null and b/site/static/emojis/1faa1.png differ diff --git a/site/static/emojis/1faa2.png b/site/static/emojis/1faa2.png new file mode 100644 index 0000000000000..beaedaf0cbfbc Binary files /dev/null and b/site/static/emojis/1faa2.png differ diff --git a/site/static/emojis/1faa3.png b/site/static/emojis/1faa3.png new file mode 100644 index 0000000000000..01c6a2476b4c5 Binary files /dev/null and b/site/static/emojis/1faa3.png differ diff --git a/site/static/emojis/1faa4.png b/site/static/emojis/1faa4.png new file mode 100644 index 0000000000000..8571b0f319582 Binary files /dev/null and b/site/static/emojis/1faa4.png differ diff --git a/site/static/emojis/1faa5.png b/site/static/emojis/1faa5.png new file mode 100644 index 0000000000000..bed7fa028d2ba Binary files /dev/null and b/site/static/emojis/1faa5.png differ diff --git a/site/static/emojis/1faa6.png b/site/static/emojis/1faa6.png new file mode 100644 index 0000000000000..30e67e7cbf954 Binary files /dev/null and b/site/static/emojis/1faa6.png differ diff --git a/site/static/emojis/1faa7.png b/site/static/emojis/1faa7.png new file mode 100644 index 0000000000000..2421eb6e5223b Binary files /dev/null and b/site/static/emojis/1faa7.png differ diff --git a/site/static/emojis/1faa8.png b/site/static/emojis/1faa8.png new file mode 100644 index 0000000000000..2f56725b81866 Binary files /dev/null and b/site/static/emojis/1faa8.png differ diff --git a/site/static/emojis/1faa9.png b/site/static/emojis/1faa9.png new file mode 100644 index 0000000000000..371dd3f59af78 Binary files /dev/null and b/site/static/emojis/1faa9.png differ diff --git a/site/static/emojis/1faaa.png b/site/static/emojis/1faaa.png new file mode 100644 index 0000000000000..28914d597dcc7 Binary files /dev/null and b/site/static/emojis/1faaa.png differ diff --git a/site/static/emojis/1faab.png b/site/static/emojis/1faab.png new file mode 100644 index 0000000000000..56248eae44ab5 Binary files /dev/null and b/site/static/emojis/1faab.png differ diff --git a/site/static/emojis/1faac.png b/site/static/emojis/1faac.png new file mode 100644 index 0000000000000..95b5e05072c64 Binary files /dev/null and b/site/static/emojis/1faac.png differ diff --git a/site/static/emojis/1fab0.png b/site/static/emojis/1fab0.png new file mode 100644 index 0000000000000..5183b5bb989c3 Binary files /dev/null and b/site/static/emojis/1fab0.png differ diff --git a/site/static/emojis/1fab1.png b/site/static/emojis/1fab1.png new file mode 100644 index 0000000000000..5ae8568f0b267 Binary files /dev/null and b/site/static/emojis/1fab1.png differ diff --git a/site/static/emojis/1fab2.png b/site/static/emojis/1fab2.png new file mode 100644 index 0000000000000..fcc1e46f7509b Binary files /dev/null and b/site/static/emojis/1fab2.png differ diff --git a/site/static/emojis/1fab3.png b/site/static/emojis/1fab3.png new file mode 100644 index 0000000000000..a237252382589 Binary files /dev/null and b/site/static/emojis/1fab3.png differ diff --git a/site/static/emojis/1fab4.png b/site/static/emojis/1fab4.png new file mode 100644 index 0000000000000..10c0fa57a506d Binary files /dev/null and b/site/static/emojis/1fab4.png differ diff --git a/site/static/emojis/1fab5.png b/site/static/emojis/1fab5.png new file mode 100644 index 0000000000000..5d25b7a23013d Binary files /dev/null and b/site/static/emojis/1fab5.png differ diff --git a/site/static/emojis/1fab6.png b/site/static/emojis/1fab6.png new file mode 100644 index 0000000000000..5ff7191cdbf69 Binary files /dev/null and b/site/static/emojis/1fab6.png differ diff --git a/site/static/emojis/1fab7.png b/site/static/emojis/1fab7.png new file mode 100644 index 0000000000000..1cbdb98467748 Binary files /dev/null and b/site/static/emojis/1fab7.png differ diff --git a/site/static/emojis/1fab8.png b/site/static/emojis/1fab8.png new file mode 100644 index 0000000000000..f312f47d566fa Binary files /dev/null and b/site/static/emojis/1fab8.png differ diff --git a/site/static/emojis/1fab9.png b/site/static/emojis/1fab9.png new file mode 100644 index 0000000000000..505c9f891eff3 Binary files /dev/null and b/site/static/emojis/1fab9.png differ diff --git a/site/static/emojis/1faba.png b/site/static/emojis/1faba.png new file mode 100644 index 0000000000000..d2a849425208f Binary files /dev/null and b/site/static/emojis/1faba.png differ diff --git a/site/static/emojis/1fac0.png b/site/static/emojis/1fac0.png new file mode 100644 index 0000000000000..6d712a0652b47 Binary files /dev/null and b/site/static/emojis/1fac0.png differ diff --git a/site/static/emojis/1fac1.png b/site/static/emojis/1fac1.png new file mode 100644 index 0000000000000..3259df2647ef6 Binary files /dev/null and b/site/static/emojis/1fac1.png differ diff --git a/site/static/emojis/1fac2.png b/site/static/emojis/1fac2.png new file mode 100644 index 0000000000000..8cc1c058588f4 Binary files /dev/null and b/site/static/emojis/1fac2.png differ diff --git a/site/static/emojis/1fac3-1f3fb.png b/site/static/emojis/1fac3-1f3fb.png new file mode 100644 index 0000000000000..2040952ba4a64 Binary files /dev/null and b/site/static/emojis/1fac3-1f3fb.png differ diff --git a/site/static/emojis/1fac3-1f3fc.png b/site/static/emojis/1fac3-1f3fc.png new file mode 100644 index 0000000000000..1a4a8f2c874b6 Binary files /dev/null and b/site/static/emojis/1fac3-1f3fc.png differ diff --git a/site/static/emojis/1fac3-1f3fd.png b/site/static/emojis/1fac3-1f3fd.png new file mode 100644 index 0000000000000..fa2e94b5511bf Binary files /dev/null and b/site/static/emojis/1fac3-1f3fd.png differ diff --git a/site/static/emojis/1fac3-1f3fe.png b/site/static/emojis/1fac3-1f3fe.png new file mode 100644 index 0000000000000..6decc3e1aa08b Binary files /dev/null and b/site/static/emojis/1fac3-1f3fe.png differ diff --git a/site/static/emojis/1fac3-1f3ff.png b/site/static/emojis/1fac3-1f3ff.png new file mode 100644 index 0000000000000..960abc8c8ff75 Binary files /dev/null and b/site/static/emojis/1fac3-1f3ff.png differ diff --git a/site/static/emojis/1fac3.png b/site/static/emojis/1fac3.png new file mode 100644 index 0000000000000..a1bb8560d81d8 Binary files /dev/null and b/site/static/emojis/1fac3.png differ diff --git a/site/static/emojis/1fac4-1f3fb.png b/site/static/emojis/1fac4-1f3fb.png new file mode 100644 index 0000000000000..76cfb2e71db5f Binary files /dev/null and b/site/static/emojis/1fac4-1f3fb.png differ diff --git a/site/static/emojis/1fac4-1f3fc.png b/site/static/emojis/1fac4-1f3fc.png new file mode 100644 index 0000000000000..36d5f5401efc9 Binary files /dev/null and b/site/static/emojis/1fac4-1f3fc.png differ diff --git a/site/static/emojis/1fac4-1f3fd.png b/site/static/emojis/1fac4-1f3fd.png new file mode 100644 index 0000000000000..4c7ba5a161671 Binary files /dev/null and b/site/static/emojis/1fac4-1f3fd.png differ diff --git a/site/static/emojis/1fac4-1f3fe.png b/site/static/emojis/1fac4-1f3fe.png new file mode 100644 index 0000000000000..26963851ad06c Binary files /dev/null and b/site/static/emojis/1fac4-1f3fe.png differ diff --git a/site/static/emojis/1fac4-1f3ff.png b/site/static/emojis/1fac4-1f3ff.png new file mode 100644 index 0000000000000..d3118efb96c40 Binary files /dev/null and b/site/static/emojis/1fac4-1f3ff.png differ diff --git a/site/static/emojis/1fac4.png b/site/static/emojis/1fac4.png new file mode 100644 index 0000000000000..2bc18378681fe Binary files /dev/null and b/site/static/emojis/1fac4.png differ diff --git a/site/static/emojis/1fac5-1f3fb.png b/site/static/emojis/1fac5-1f3fb.png new file mode 100644 index 0000000000000..f9d535683d1dd Binary files /dev/null and b/site/static/emojis/1fac5-1f3fb.png differ diff --git a/site/static/emojis/1fac5-1f3fc.png b/site/static/emojis/1fac5-1f3fc.png new file mode 100644 index 0000000000000..13e32b14b9beb Binary files /dev/null and b/site/static/emojis/1fac5-1f3fc.png differ diff --git a/site/static/emojis/1fac5-1f3fd.png b/site/static/emojis/1fac5-1f3fd.png new file mode 100644 index 0000000000000..09c284ceee0bd Binary files /dev/null and b/site/static/emojis/1fac5-1f3fd.png differ diff --git a/site/static/emojis/1fac5-1f3fe.png b/site/static/emojis/1fac5-1f3fe.png new file mode 100644 index 0000000000000..eb639141b174a Binary files /dev/null and b/site/static/emojis/1fac5-1f3fe.png differ diff --git a/site/static/emojis/1fac5-1f3ff.png b/site/static/emojis/1fac5-1f3ff.png new file mode 100644 index 0000000000000..c3607584ab3df Binary files /dev/null and b/site/static/emojis/1fac5-1f3ff.png differ diff --git a/site/static/emojis/1fac5.png b/site/static/emojis/1fac5.png new file mode 100644 index 0000000000000..22e3e9d501d7b Binary files /dev/null and b/site/static/emojis/1fac5.png differ diff --git a/site/static/emojis/1fad0.png b/site/static/emojis/1fad0.png new file mode 100644 index 0000000000000..3dbe93433ca95 Binary files /dev/null and b/site/static/emojis/1fad0.png differ diff --git a/site/static/emojis/1fad1.png b/site/static/emojis/1fad1.png new file mode 100644 index 0000000000000..b4ef7e32a8c47 Binary files /dev/null and b/site/static/emojis/1fad1.png differ diff --git a/site/static/emojis/1fad2.png b/site/static/emojis/1fad2.png new file mode 100644 index 0000000000000..3e660e6d0c285 Binary files /dev/null and b/site/static/emojis/1fad2.png differ diff --git a/site/static/emojis/1fad3.png b/site/static/emojis/1fad3.png new file mode 100644 index 0000000000000..30b2977b6816e Binary files /dev/null and b/site/static/emojis/1fad3.png differ diff --git a/site/static/emojis/1fad4.png b/site/static/emojis/1fad4.png new file mode 100644 index 0000000000000..7dba90554eb6c Binary files /dev/null and b/site/static/emojis/1fad4.png differ diff --git a/site/static/emojis/1fad5.png b/site/static/emojis/1fad5.png new file mode 100644 index 0000000000000..8b1f5073370f8 Binary files /dev/null and b/site/static/emojis/1fad5.png differ diff --git a/site/static/emojis/1fad6.png b/site/static/emojis/1fad6.png new file mode 100644 index 0000000000000..37b47ed427ada Binary files /dev/null and b/site/static/emojis/1fad6.png differ diff --git a/site/static/emojis/1fad7.png b/site/static/emojis/1fad7.png new file mode 100644 index 0000000000000..6f7e690458fd5 Binary files /dev/null and b/site/static/emojis/1fad7.png differ diff --git a/site/static/emojis/1fad8.png b/site/static/emojis/1fad8.png new file mode 100644 index 0000000000000..ae12344e84395 Binary files /dev/null and b/site/static/emojis/1fad8.png differ diff --git a/site/static/emojis/1fad9.png b/site/static/emojis/1fad9.png new file mode 100644 index 0000000000000..6988172c39aea Binary files /dev/null and b/site/static/emojis/1fad9.png differ diff --git a/site/static/emojis/1fae0.png b/site/static/emojis/1fae0.png new file mode 100644 index 0000000000000..b22f9f4ce1490 Binary files /dev/null and b/site/static/emojis/1fae0.png differ diff --git a/site/static/emojis/1fae1.png b/site/static/emojis/1fae1.png new file mode 100644 index 0000000000000..16d636271d028 Binary files /dev/null and b/site/static/emojis/1fae1.png differ diff --git a/site/static/emojis/1fae2.png b/site/static/emojis/1fae2.png new file mode 100644 index 0000000000000..9153a41d89415 Binary files /dev/null and b/site/static/emojis/1fae2.png differ diff --git a/site/static/emojis/1fae3.png b/site/static/emojis/1fae3.png new file mode 100644 index 0000000000000..b4572380a8c7b Binary files /dev/null and b/site/static/emojis/1fae3.png differ diff --git a/site/static/emojis/1fae4.png b/site/static/emojis/1fae4.png new file mode 100644 index 0000000000000..44c34dc71d4dc Binary files /dev/null and b/site/static/emojis/1fae4.png differ diff --git a/site/static/emojis/1fae5.png b/site/static/emojis/1fae5.png new file mode 100644 index 0000000000000..e0444c480ec93 Binary files /dev/null and b/site/static/emojis/1fae5.png differ diff --git a/site/static/emojis/1fae6.png b/site/static/emojis/1fae6.png new file mode 100644 index 0000000000000..755c94e5ae3c3 Binary files /dev/null and b/site/static/emojis/1fae6.png differ diff --git a/site/static/emojis/1fae7.png b/site/static/emojis/1fae7.png new file mode 100644 index 0000000000000..8b402bdba3b25 Binary files /dev/null and b/site/static/emojis/1fae7.png differ diff --git a/site/static/emojis/1faf0-1f3fb.png b/site/static/emojis/1faf0-1f3fb.png new file mode 100644 index 0000000000000..64fe03d81534f Binary files /dev/null and b/site/static/emojis/1faf0-1f3fb.png differ diff --git a/site/static/emojis/1faf0-1f3fc.png b/site/static/emojis/1faf0-1f3fc.png new file mode 100644 index 0000000000000..4c5610564e73b Binary files /dev/null and b/site/static/emojis/1faf0-1f3fc.png differ diff --git a/site/static/emojis/1faf0-1f3fd.png b/site/static/emojis/1faf0-1f3fd.png new file mode 100644 index 0000000000000..fa2b902e5795c Binary files /dev/null and b/site/static/emojis/1faf0-1f3fd.png differ diff --git a/site/static/emojis/1faf0-1f3fe.png b/site/static/emojis/1faf0-1f3fe.png new file mode 100644 index 0000000000000..6a2c153ec3286 Binary files /dev/null and b/site/static/emojis/1faf0-1f3fe.png differ diff --git a/site/static/emojis/1faf0-1f3ff.png b/site/static/emojis/1faf0-1f3ff.png new file mode 100644 index 0000000000000..8e73cdf494b81 Binary files /dev/null and b/site/static/emojis/1faf0-1f3ff.png differ diff --git a/site/static/emojis/1faf0.png b/site/static/emojis/1faf0.png new file mode 100644 index 0000000000000..1a4ebedf2e764 Binary files /dev/null and b/site/static/emojis/1faf0.png differ diff --git a/site/static/emojis/1faf1-1f3fb-200d-1faf2-1f3fc.png b/site/static/emojis/1faf1-1f3fb-200d-1faf2-1f3fc.png new file mode 100644 index 0000000000000..2c911d7d70f8f Binary files /dev/null and b/site/static/emojis/1faf1-1f3fb-200d-1faf2-1f3fc.png differ diff --git a/site/static/emojis/1faf1-1f3fb-200d-1faf2-1f3fd.png b/site/static/emojis/1faf1-1f3fb-200d-1faf2-1f3fd.png new file mode 100644 index 0000000000000..5f81f9d886cc0 Binary files /dev/null and b/site/static/emojis/1faf1-1f3fb-200d-1faf2-1f3fd.png differ diff --git a/site/static/emojis/1faf1-1f3fb-200d-1faf2-1f3fe.png b/site/static/emojis/1faf1-1f3fb-200d-1faf2-1f3fe.png new file mode 100644 index 0000000000000..b1f794731c350 Binary files /dev/null and b/site/static/emojis/1faf1-1f3fb-200d-1faf2-1f3fe.png differ diff --git a/site/static/emojis/1faf1-1f3fb-200d-1faf2-1f3ff.png b/site/static/emojis/1faf1-1f3fb-200d-1faf2-1f3ff.png new file mode 100644 index 0000000000000..270800ee51314 Binary files /dev/null and b/site/static/emojis/1faf1-1f3fb-200d-1faf2-1f3ff.png differ diff --git a/site/static/emojis/1faf1-1f3fb.png b/site/static/emojis/1faf1-1f3fb.png new file mode 100644 index 0000000000000..350fd42a0bdbc Binary files /dev/null and b/site/static/emojis/1faf1-1f3fb.png differ diff --git a/site/static/emojis/1faf1-1f3fc-200d-1faf2-1f3fb.png b/site/static/emojis/1faf1-1f3fc-200d-1faf2-1f3fb.png new file mode 100644 index 0000000000000..3d7487d6194f6 Binary files /dev/null and b/site/static/emojis/1faf1-1f3fc-200d-1faf2-1f3fb.png differ diff --git a/site/static/emojis/1faf1-1f3fc-200d-1faf2-1f3fd.png b/site/static/emojis/1faf1-1f3fc-200d-1faf2-1f3fd.png new file mode 100644 index 0000000000000..681473f688c0a Binary files /dev/null and b/site/static/emojis/1faf1-1f3fc-200d-1faf2-1f3fd.png differ diff --git a/site/static/emojis/1faf1-1f3fc-200d-1faf2-1f3fe.png b/site/static/emojis/1faf1-1f3fc-200d-1faf2-1f3fe.png new file mode 100644 index 0000000000000..267dfa1f34172 Binary files /dev/null and b/site/static/emojis/1faf1-1f3fc-200d-1faf2-1f3fe.png differ diff --git a/site/static/emojis/1faf1-1f3fc-200d-1faf2-1f3ff.png b/site/static/emojis/1faf1-1f3fc-200d-1faf2-1f3ff.png new file mode 100644 index 0000000000000..09312a04ad5c9 Binary files /dev/null and b/site/static/emojis/1faf1-1f3fc-200d-1faf2-1f3ff.png differ diff --git a/site/static/emojis/1faf1-1f3fc.png b/site/static/emojis/1faf1-1f3fc.png new file mode 100644 index 0000000000000..7a8459690c75d Binary files /dev/null and b/site/static/emojis/1faf1-1f3fc.png differ diff --git a/site/static/emojis/1faf1-1f3fd-200d-1faf2-1f3fb.png b/site/static/emojis/1faf1-1f3fd-200d-1faf2-1f3fb.png new file mode 100644 index 0000000000000..8fff1125da4cd Binary files /dev/null and b/site/static/emojis/1faf1-1f3fd-200d-1faf2-1f3fb.png differ diff --git a/site/static/emojis/1faf1-1f3fd-200d-1faf2-1f3fc.png b/site/static/emojis/1faf1-1f3fd-200d-1faf2-1f3fc.png new file mode 100644 index 0000000000000..b71098b814070 Binary files /dev/null and b/site/static/emojis/1faf1-1f3fd-200d-1faf2-1f3fc.png differ diff --git a/site/static/emojis/1faf1-1f3fd-200d-1faf2-1f3fe.png b/site/static/emojis/1faf1-1f3fd-200d-1faf2-1f3fe.png new file mode 100644 index 0000000000000..7e76b6a8496d4 Binary files /dev/null and b/site/static/emojis/1faf1-1f3fd-200d-1faf2-1f3fe.png differ diff --git a/site/static/emojis/1faf1-1f3fd-200d-1faf2-1f3ff.png b/site/static/emojis/1faf1-1f3fd-200d-1faf2-1f3ff.png new file mode 100644 index 0000000000000..df2600e84acf9 Binary files /dev/null and b/site/static/emojis/1faf1-1f3fd-200d-1faf2-1f3ff.png differ diff --git a/site/static/emojis/1faf1-1f3fd.png b/site/static/emojis/1faf1-1f3fd.png new file mode 100644 index 0000000000000..62cdaa15fc020 Binary files /dev/null and b/site/static/emojis/1faf1-1f3fd.png differ diff --git a/site/static/emojis/1faf1-1f3fe-200d-1faf2-1f3fb.png b/site/static/emojis/1faf1-1f3fe-200d-1faf2-1f3fb.png new file mode 100644 index 0000000000000..7f8c42c1b95da Binary files /dev/null and b/site/static/emojis/1faf1-1f3fe-200d-1faf2-1f3fb.png differ diff --git a/site/static/emojis/1faf1-1f3fe-200d-1faf2-1f3fc.png b/site/static/emojis/1faf1-1f3fe-200d-1faf2-1f3fc.png new file mode 100644 index 0000000000000..2982f4e0afd3e Binary files /dev/null and b/site/static/emojis/1faf1-1f3fe-200d-1faf2-1f3fc.png differ diff --git a/site/static/emojis/1faf1-1f3fe-200d-1faf2-1f3fd.png b/site/static/emojis/1faf1-1f3fe-200d-1faf2-1f3fd.png new file mode 100644 index 0000000000000..cea2e531f3b23 Binary files /dev/null and b/site/static/emojis/1faf1-1f3fe-200d-1faf2-1f3fd.png differ diff --git a/site/static/emojis/1faf1-1f3fe-200d-1faf2-1f3ff.png b/site/static/emojis/1faf1-1f3fe-200d-1faf2-1f3ff.png new file mode 100644 index 0000000000000..353d0adcc4264 Binary files /dev/null and b/site/static/emojis/1faf1-1f3fe-200d-1faf2-1f3ff.png differ diff --git a/site/static/emojis/1faf1-1f3fe.png b/site/static/emojis/1faf1-1f3fe.png new file mode 100644 index 0000000000000..754a1fdc042ee Binary files /dev/null and b/site/static/emojis/1faf1-1f3fe.png differ diff --git a/site/static/emojis/1faf1-1f3ff-200d-1faf2-1f3fb.png b/site/static/emojis/1faf1-1f3ff-200d-1faf2-1f3fb.png new file mode 100644 index 0000000000000..7fda714716721 Binary files /dev/null and b/site/static/emojis/1faf1-1f3ff-200d-1faf2-1f3fb.png differ diff --git a/site/static/emojis/1faf1-1f3ff-200d-1faf2-1f3fc.png b/site/static/emojis/1faf1-1f3ff-200d-1faf2-1f3fc.png new file mode 100644 index 0000000000000..3f09537065c21 Binary files /dev/null and b/site/static/emojis/1faf1-1f3ff-200d-1faf2-1f3fc.png differ diff --git a/site/static/emojis/1faf1-1f3ff-200d-1faf2-1f3fd.png b/site/static/emojis/1faf1-1f3ff-200d-1faf2-1f3fd.png new file mode 100644 index 0000000000000..2759c418101ce Binary files /dev/null and b/site/static/emojis/1faf1-1f3ff-200d-1faf2-1f3fd.png differ diff --git a/site/static/emojis/1faf1-1f3ff-200d-1faf2-1f3fe.png b/site/static/emojis/1faf1-1f3ff-200d-1faf2-1f3fe.png new file mode 100644 index 0000000000000..c17022a84b98d Binary files /dev/null and b/site/static/emojis/1faf1-1f3ff-200d-1faf2-1f3fe.png differ diff --git a/site/static/emojis/1faf1-1f3ff.png b/site/static/emojis/1faf1-1f3ff.png new file mode 100644 index 0000000000000..22527d97e7d1b Binary files /dev/null and b/site/static/emojis/1faf1-1f3ff.png differ diff --git a/site/static/emojis/1faf1.png b/site/static/emojis/1faf1.png new file mode 100644 index 0000000000000..c03e0401cc11b Binary files /dev/null and b/site/static/emojis/1faf1.png differ diff --git a/site/static/emojis/1faf2-1f3fb.png b/site/static/emojis/1faf2-1f3fb.png new file mode 100644 index 0000000000000..2d75e3048fb13 Binary files /dev/null and b/site/static/emojis/1faf2-1f3fb.png differ diff --git a/site/static/emojis/1faf2-1f3fc.png b/site/static/emojis/1faf2-1f3fc.png new file mode 100644 index 0000000000000..cf9fb69a5e512 Binary files /dev/null and b/site/static/emojis/1faf2-1f3fc.png differ diff --git a/site/static/emojis/1faf2-1f3fd.png b/site/static/emojis/1faf2-1f3fd.png new file mode 100644 index 0000000000000..38b0cdc55dede Binary files /dev/null and b/site/static/emojis/1faf2-1f3fd.png differ diff --git a/site/static/emojis/1faf2-1f3fe.png b/site/static/emojis/1faf2-1f3fe.png new file mode 100644 index 0000000000000..d10f7a0396902 Binary files /dev/null and b/site/static/emojis/1faf2-1f3fe.png differ diff --git a/site/static/emojis/1faf2-1f3ff.png b/site/static/emojis/1faf2-1f3ff.png new file mode 100644 index 0000000000000..68b394f37266e Binary files /dev/null and b/site/static/emojis/1faf2-1f3ff.png differ diff --git a/site/static/emojis/1faf2.png b/site/static/emojis/1faf2.png new file mode 100644 index 0000000000000..499742365969f Binary files /dev/null and b/site/static/emojis/1faf2.png differ diff --git a/site/static/emojis/1faf3-1f3fb.png b/site/static/emojis/1faf3-1f3fb.png new file mode 100644 index 0000000000000..d8168dce4dc6f Binary files /dev/null and b/site/static/emojis/1faf3-1f3fb.png differ diff --git a/site/static/emojis/1faf3-1f3fc.png b/site/static/emojis/1faf3-1f3fc.png new file mode 100644 index 0000000000000..5a841e5023eb8 Binary files /dev/null and b/site/static/emojis/1faf3-1f3fc.png differ diff --git a/site/static/emojis/1faf3-1f3fd.png b/site/static/emojis/1faf3-1f3fd.png new file mode 100644 index 0000000000000..c439588ed0a9e Binary files /dev/null and b/site/static/emojis/1faf3-1f3fd.png differ diff --git a/site/static/emojis/1faf3-1f3fe.png b/site/static/emojis/1faf3-1f3fe.png new file mode 100644 index 0000000000000..3b63da73ca9f1 Binary files /dev/null and b/site/static/emojis/1faf3-1f3fe.png differ diff --git a/site/static/emojis/1faf3-1f3ff.png b/site/static/emojis/1faf3-1f3ff.png new file mode 100644 index 0000000000000..a8ea30ce80d51 Binary files /dev/null and b/site/static/emojis/1faf3-1f3ff.png differ diff --git a/site/static/emojis/1faf3.png b/site/static/emojis/1faf3.png new file mode 100644 index 0000000000000..1e057115a4af8 Binary files /dev/null and b/site/static/emojis/1faf3.png differ diff --git a/site/static/emojis/1faf4-1f3fb.png b/site/static/emojis/1faf4-1f3fb.png new file mode 100644 index 0000000000000..0695579d7b9b3 Binary files /dev/null and b/site/static/emojis/1faf4-1f3fb.png differ diff --git a/site/static/emojis/1faf4-1f3fc.png b/site/static/emojis/1faf4-1f3fc.png new file mode 100644 index 0000000000000..4251f775a3ee9 Binary files /dev/null and b/site/static/emojis/1faf4-1f3fc.png differ diff --git a/site/static/emojis/1faf4-1f3fd.png b/site/static/emojis/1faf4-1f3fd.png new file mode 100644 index 0000000000000..49208c249fca9 Binary files /dev/null and b/site/static/emojis/1faf4-1f3fd.png differ diff --git a/site/static/emojis/1faf4-1f3fe.png b/site/static/emojis/1faf4-1f3fe.png new file mode 100644 index 0000000000000..ae14345638223 Binary files /dev/null and b/site/static/emojis/1faf4-1f3fe.png differ diff --git a/site/static/emojis/1faf4-1f3ff.png b/site/static/emojis/1faf4-1f3ff.png new file mode 100644 index 0000000000000..fcc64e7f98f74 Binary files /dev/null and b/site/static/emojis/1faf4-1f3ff.png differ diff --git a/site/static/emojis/1faf4.png b/site/static/emojis/1faf4.png new file mode 100644 index 0000000000000..d9fdff839f35c Binary files /dev/null and b/site/static/emojis/1faf4.png differ diff --git a/site/static/emojis/1faf5-1f3fb.png b/site/static/emojis/1faf5-1f3fb.png new file mode 100644 index 0000000000000..e6ae0b9df1e26 Binary files /dev/null and b/site/static/emojis/1faf5-1f3fb.png differ diff --git a/site/static/emojis/1faf5-1f3fc.png b/site/static/emojis/1faf5-1f3fc.png new file mode 100644 index 0000000000000..9dfd77c87905e Binary files /dev/null and b/site/static/emojis/1faf5-1f3fc.png differ diff --git a/site/static/emojis/1faf5-1f3fd.png b/site/static/emojis/1faf5-1f3fd.png new file mode 100644 index 0000000000000..222201c99da74 Binary files /dev/null and b/site/static/emojis/1faf5-1f3fd.png differ diff --git a/site/static/emojis/1faf5-1f3fe.png b/site/static/emojis/1faf5-1f3fe.png new file mode 100644 index 0000000000000..5bba90bb65ca4 Binary files /dev/null and b/site/static/emojis/1faf5-1f3fe.png differ diff --git a/site/static/emojis/1faf5-1f3ff.png b/site/static/emojis/1faf5-1f3ff.png new file mode 100644 index 0000000000000..3d922501fa6f8 Binary files /dev/null and b/site/static/emojis/1faf5-1f3ff.png differ diff --git a/site/static/emojis/1faf5.png b/site/static/emojis/1faf5.png new file mode 100644 index 0000000000000..9e3a1b383886a Binary files /dev/null and b/site/static/emojis/1faf5.png differ diff --git a/site/static/emojis/1faf6-1f3fb.png b/site/static/emojis/1faf6-1f3fb.png new file mode 100644 index 0000000000000..55bfa0f369c1c Binary files /dev/null and b/site/static/emojis/1faf6-1f3fb.png differ diff --git a/site/static/emojis/1faf6-1f3fc.png b/site/static/emojis/1faf6-1f3fc.png new file mode 100644 index 0000000000000..d79a55f31a93a Binary files /dev/null and b/site/static/emojis/1faf6-1f3fc.png differ diff --git a/site/static/emojis/1faf6-1f3fd.png b/site/static/emojis/1faf6-1f3fd.png new file mode 100644 index 0000000000000..b0eb0d00b1183 Binary files /dev/null and b/site/static/emojis/1faf6-1f3fd.png differ diff --git a/site/static/emojis/1faf6-1f3fe.png b/site/static/emojis/1faf6-1f3fe.png new file mode 100644 index 0000000000000..e6f52ba0a08b1 Binary files /dev/null and b/site/static/emojis/1faf6-1f3fe.png differ diff --git a/site/static/emojis/1faf6-1f3ff.png b/site/static/emojis/1faf6-1f3ff.png new file mode 100644 index 0000000000000..f85b0ca83f2dd Binary files /dev/null and b/site/static/emojis/1faf6-1f3ff.png differ diff --git a/site/static/emojis/1faf6.png b/site/static/emojis/1faf6.png new file mode 100644 index 0000000000000..23cf0502f23c7 Binary files /dev/null and b/site/static/emojis/1faf6.png differ diff --git a/site/static/emojis/203c.png b/site/static/emojis/203c.png new file mode 100644 index 0000000000000..2334a7f5c100d Binary files /dev/null and b/site/static/emojis/203c.png differ diff --git a/site/static/emojis/2049.png b/site/static/emojis/2049.png new file mode 100644 index 0000000000000..c5304bf1417b1 Binary files /dev/null and b/site/static/emojis/2049.png differ diff --git a/site/static/emojis/2122.png b/site/static/emojis/2122.png new file mode 100644 index 0000000000000..b9ffb56e3fb1d Binary files /dev/null and b/site/static/emojis/2122.png differ diff --git a/site/static/emojis/2139.png b/site/static/emojis/2139.png new file mode 100644 index 0000000000000..829f0bf085159 Binary files /dev/null and b/site/static/emojis/2139.png differ diff --git a/site/static/emojis/2194.png b/site/static/emojis/2194.png new file mode 100644 index 0000000000000..d0cb730c83454 Binary files /dev/null and b/site/static/emojis/2194.png differ diff --git a/site/static/emojis/2195.png b/site/static/emojis/2195.png new file mode 100644 index 0000000000000..cbbe269e4e1ae Binary files /dev/null and b/site/static/emojis/2195.png differ diff --git a/site/static/emojis/2196.png b/site/static/emojis/2196.png new file mode 100644 index 0000000000000..c3f9bdfce5933 Binary files /dev/null and b/site/static/emojis/2196.png differ diff --git a/site/static/emojis/2197.png b/site/static/emojis/2197.png new file mode 100644 index 0000000000000..08eb63ceed5fd Binary files /dev/null and b/site/static/emojis/2197.png differ diff --git a/site/static/emojis/2198.png b/site/static/emojis/2198.png new file mode 100644 index 0000000000000..5135705c6fdb4 Binary files /dev/null and b/site/static/emojis/2198.png differ diff --git a/site/static/emojis/2199.png b/site/static/emojis/2199.png new file mode 100644 index 0000000000000..41b24fe673a79 Binary files /dev/null and b/site/static/emojis/2199.png differ diff --git a/site/static/emojis/21a9.png b/site/static/emojis/21a9.png new file mode 100644 index 0000000000000..1df93e69069e3 Binary files /dev/null and b/site/static/emojis/21a9.png differ diff --git a/site/static/emojis/21aa.png b/site/static/emojis/21aa.png new file mode 100644 index 0000000000000..7a0b709d25600 Binary files /dev/null and b/site/static/emojis/21aa.png differ diff --git a/site/static/emojis/23-20e3.png b/site/static/emojis/23-20e3.png new file mode 100644 index 0000000000000..f9129612eaac6 Binary files /dev/null and b/site/static/emojis/23-20e3.png differ diff --git a/site/static/emojis/231a.png b/site/static/emojis/231a.png new file mode 100644 index 0000000000000..0f0ec3c9e360c Binary files /dev/null and b/site/static/emojis/231a.png differ diff --git a/site/static/emojis/231b.png b/site/static/emojis/231b.png new file mode 100644 index 0000000000000..8e9196f3cd307 Binary files /dev/null and b/site/static/emojis/231b.png differ diff --git a/site/static/emojis/2328.png b/site/static/emojis/2328.png new file mode 100644 index 0000000000000..22a0a7dbcefef Binary files /dev/null and b/site/static/emojis/2328.png differ diff --git a/site/static/emojis/23cf.png b/site/static/emojis/23cf.png new file mode 100644 index 0000000000000..940831bdc193c Binary files /dev/null and b/site/static/emojis/23cf.png differ diff --git a/site/static/emojis/23e9.png b/site/static/emojis/23e9.png new file mode 100644 index 0000000000000..a4277ef3f094d Binary files /dev/null and b/site/static/emojis/23e9.png differ diff --git a/site/static/emojis/23ea.png b/site/static/emojis/23ea.png new file mode 100644 index 0000000000000..9018ecf7eb117 Binary files /dev/null and b/site/static/emojis/23ea.png differ diff --git a/site/static/emojis/23eb.png b/site/static/emojis/23eb.png new file mode 100644 index 0000000000000..3311acf024c65 Binary files /dev/null and b/site/static/emojis/23eb.png differ diff --git a/site/static/emojis/23ec.png b/site/static/emojis/23ec.png new file mode 100644 index 0000000000000..2e53b4fffa332 Binary files /dev/null and b/site/static/emojis/23ec.png differ diff --git a/site/static/emojis/23ed.png b/site/static/emojis/23ed.png new file mode 100644 index 0000000000000..a69200295cfab Binary files /dev/null and b/site/static/emojis/23ed.png differ diff --git a/site/static/emojis/23ee.png b/site/static/emojis/23ee.png new file mode 100644 index 0000000000000..56116b43d0e54 Binary files /dev/null and b/site/static/emojis/23ee.png differ diff --git a/site/static/emojis/23ef.png b/site/static/emojis/23ef.png new file mode 100644 index 0000000000000..4de7931beef55 Binary files /dev/null and b/site/static/emojis/23ef.png differ diff --git a/site/static/emojis/23f0.png b/site/static/emojis/23f0.png new file mode 100644 index 0000000000000..1e16c4f64f3dc Binary files /dev/null and b/site/static/emojis/23f0.png differ diff --git a/site/static/emojis/23f1.png b/site/static/emojis/23f1.png new file mode 100644 index 0000000000000..34d7f141a0d69 Binary files /dev/null and b/site/static/emojis/23f1.png differ diff --git a/site/static/emojis/23f2.png b/site/static/emojis/23f2.png new file mode 100644 index 0000000000000..e8b7dc4741775 Binary files /dev/null and b/site/static/emojis/23f2.png differ diff --git a/site/static/emojis/23f3.png b/site/static/emojis/23f3.png new file mode 100644 index 0000000000000..b86946b324c0c Binary files /dev/null and b/site/static/emojis/23f3.png differ diff --git a/site/static/emojis/23f8.png b/site/static/emojis/23f8.png new file mode 100644 index 0000000000000..f2843e3af5688 Binary files /dev/null and b/site/static/emojis/23f8.png differ diff --git a/site/static/emojis/23f9.png b/site/static/emojis/23f9.png new file mode 100644 index 0000000000000..009bce06d650c Binary files /dev/null and b/site/static/emojis/23f9.png differ diff --git a/site/static/emojis/23fa.png b/site/static/emojis/23fa.png new file mode 100644 index 0000000000000..8f14600a2409f Binary files /dev/null and b/site/static/emojis/23fa.png differ diff --git a/site/static/emojis/24c2.png b/site/static/emojis/24c2.png new file mode 100644 index 0000000000000..64e209fd09991 Binary files /dev/null and b/site/static/emojis/24c2.png differ diff --git a/site/static/emojis/25aa.png b/site/static/emojis/25aa.png new file mode 100644 index 0000000000000..ab6088aac9557 Binary files /dev/null and b/site/static/emojis/25aa.png differ diff --git a/site/static/emojis/25ab.png b/site/static/emojis/25ab.png new file mode 100644 index 0000000000000..250060020df35 Binary files /dev/null and b/site/static/emojis/25ab.png differ diff --git a/site/static/emojis/25b6.png b/site/static/emojis/25b6.png new file mode 100644 index 0000000000000..b0bf29e5b4c23 Binary files /dev/null and b/site/static/emojis/25b6.png differ diff --git a/site/static/emojis/25c0.png b/site/static/emojis/25c0.png new file mode 100644 index 0000000000000..2721eabe55c40 Binary files /dev/null and b/site/static/emojis/25c0.png differ diff --git a/site/static/emojis/25fb.png b/site/static/emojis/25fb.png new file mode 100644 index 0000000000000..8696fed41dcfc Binary files /dev/null and b/site/static/emojis/25fb.png differ diff --git a/site/static/emojis/25fc.png b/site/static/emojis/25fc.png new file mode 100644 index 0000000000000..417cf851099c0 Binary files /dev/null and b/site/static/emojis/25fc.png differ diff --git a/site/static/emojis/25fd.png b/site/static/emojis/25fd.png new file mode 100644 index 0000000000000..a7de8524b808b Binary files /dev/null and b/site/static/emojis/25fd.png differ diff --git a/site/static/emojis/25fe.png b/site/static/emojis/25fe.png new file mode 100644 index 0000000000000..bcfd21205d3cc Binary files /dev/null and b/site/static/emojis/25fe.png differ diff --git a/site/static/emojis/2600.png b/site/static/emojis/2600.png new file mode 100644 index 0000000000000..718b31db31a4d Binary files /dev/null and b/site/static/emojis/2600.png differ diff --git a/site/static/emojis/2601.png b/site/static/emojis/2601.png new file mode 100644 index 0000000000000..6b1fead8acc97 Binary files /dev/null and b/site/static/emojis/2601.png differ diff --git a/site/static/emojis/2602.png b/site/static/emojis/2602.png new file mode 100644 index 0000000000000..ce9bb58d1ef5f Binary files /dev/null and b/site/static/emojis/2602.png differ diff --git a/site/static/emojis/2603.png b/site/static/emojis/2603.png new file mode 100644 index 0000000000000..dfff95c7f28b8 Binary files /dev/null and b/site/static/emojis/2603.png differ diff --git a/site/static/emojis/2604.png b/site/static/emojis/2604.png new file mode 100644 index 0000000000000..3b6021bcda914 Binary files /dev/null and b/site/static/emojis/2604.png differ diff --git a/site/static/emojis/260e.png b/site/static/emojis/260e.png new file mode 100644 index 0000000000000..e3319af0376a7 Binary files /dev/null and b/site/static/emojis/260e.png differ diff --git a/site/static/emojis/2611.png b/site/static/emojis/2611.png new file mode 100644 index 0000000000000..4b530a8faa2d1 Binary files /dev/null and b/site/static/emojis/2611.png differ diff --git a/site/static/emojis/2614.png b/site/static/emojis/2614.png new file mode 100644 index 0000000000000..b8a96f9c33250 Binary files /dev/null and b/site/static/emojis/2614.png differ diff --git a/site/static/emojis/2615.png b/site/static/emojis/2615.png new file mode 100644 index 0000000000000..5ce8931e1dec0 Binary files /dev/null and b/site/static/emojis/2615.png differ diff --git a/site/static/emojis/2618.png b/site/static/emojis/2618.png new file mode 100644 index 0000000000000..f987099ff7a5c Binary files /dev/null and b/site/static/emojis/2618.png differ diff --git a/site/static/emojis/261d-1f3fb.png b/site/static/emojis/261d-1f3fb.png new file mode 100644 index 0000000000000..18a978063969a Binary files /dev/null and b/site/static/emojis/261d-1f3fb.png differ diff --git a/site/static/emojis/261d-1f3fc.png b/site/static/emojis/261d-1f3fc.png new file mode 100644 index 0000000000000..13dc0973c254f Binary files /dev/null and b/site/static/emojis/261d-1f3fc.png differ diff --git a/site/static/emojis/261d-1f3fd.png b/site/static/emojis/261d-1f3fd.png new file mode 100644 index 0000000000000..a042487226756 Binary files /dev/null and b/site/static/emojis/261d-1f3fd.png differ diff --git a/site/static/emojis/261d-1f3fe.png b/site/static/emojis/261d-1f3fe.png new file mode 100644 index 0000000000000..4365323610c96 Binary files /dev/null and b/site/static/emojis/261d-1f3fe.png differ diff --git a/site/static/emojis/261d-1f3ff.png b/site/static/emojis/261d-1f3ff.png new file mode 100644 index 0000000000000..2e943bcb4661b Binary files /dev/null and b/site/static/emojis/261d-1f3ff.png differ diff --git a/site/static/emojis/261d.png b/site/static/emojis/261d.png new file mode 100644 index 0000000000000..23d764187132a Binary files /dev/null and b/site/static/emojis/261d.png differ diff --git a/site/static/emojis/2620.png b/site/static/emojis/2620.png new file mode 100644 index 0000000000000..ba32dd234db34 Binary files /dev/null and b/site/static/emojis/2620.png differ diff --git a/site/static/emojis/2622.png b/site/static/emojis/2622.png new file mode 100644 index 0000000000000..6b167878b16b7 Binary files /dev/null and b/site/static/emojis/2622.png differ diff --git a/site/static/emojis/2623.png b/site/static/emojis/2623.png new file mode 100644 index 0000000000000..5d8d42b02ba74 Binary files /dev/null and b/site/static/emojis/2623.png differ diff --git a/site/static/emojis/2626.png b/site/static/emojis/2626.png new file mode 100644 index 0000000000000..b9f0e3a8665b3 Binary files /dev/null and b/site/static/emojis/2626.png differ diff --git a/site/static/emojis/262a.png b/site/static/emojis/262a.png new file mode 100644 index 0000000000000..c7538a524baa4 Binary files /dev/null and b/site/static/emojis/262a.png differ diff --git a/site/static/emojis/262e.png b/site/static/emojis/262e.png new file mode 100644 index 0000000000000..8a8be5e46376d Binary files /dev/null and b/site/static/emojis/262e.png differ diff --git a/site/static/emojis/262f.png b/site/static/emojis/262f.png new file mode 100644 index 0000000000000..82faf77a03908 Binary files /dev/null and b/site/static/emojis/262f.png differ diff --git a/site/static/emojis/2638.png b/site/static/emojis/2638.png new file mode 100644 index 0000000000000..e3a3e9210a2a4 Binary files /dev/null and b/site/static/emojis/2638.png differ diff --git a/site/static/emojis/2639.png b/site/static/emojis/2639.png new file mode 100644 index 0000000000000..9d9698f6b7212 Binary files /dev/null and b/site/static/emojis/2639.png differ diff --git a/site/static/emojis/263a.png b/site/static/emojis/263a.png new file mode 100644 index 0000000000000..29c80a226fcae Binary files /dev/null and b/site/static/emojis/263a.png differ diff --git a/site/static/emojis/2640.png b/site/static/emojis/2640.png new file mode 100644 index 0000000000000..f9b176035826e Binary files /dev/null and b/site/static/emojis/2640.png differ diff --git a/site/static/emojis/2642.png b/site/static/emojis/2642.png new file mode 100644 index 0000000000000..2591c832acfac Binary files /dev/null and b/site/static/emojis/2642.png differ diff --git a/site/static/emojis/2648.png b/site/static/emojis/2648.png new file mode 100644 index 0000000000000..0798e87b7e73e Binary files /dev/null and b/site/static/emojis/2648.png differ diff --git a/site/static/emojis/2649.png b/site/static/emojis/2649.png new file mode 100644 index 0000000000000..5ca7494601ab2 Binary files /dev/null and b/site/static/emojis/2649.png differ diff --git a/site/static/emojis/264a.png b/site/static/emojis/264a.png new file mode 100644 index 0000000000000..7bdc7b100289c Binary files /dev/null and b/site/static/emojis/264a.png differ diff --git a/site/static/emojis/264b.png b/site/static/emojis/264b.png new file mode 100644 index 0000000000000..9d14919ebfe84 Binary files /dev/null and b/site/static/emojis/264b.png differ diff --git a/site/static/emojis/264c.png b/site/static/emojis/264c.png new file mode 100644 index 0000000000000..a1009e9a0de21 Binary files /dev/null and b/site/static/emojis/264c.png differ diff --git a/site/static/emojis/264d.png b/site/static/emojis/264d.png new file mode 100644 index 0000000000000..8bf788774b46e Binary files /dev/null and b/site/static/emojis/264d.png differ diff --git a/site/static/emojis/264e.png b/site/static/emojis/264e.png new file mode 100644 index 0000000000000..f06a78cf2ea4d Binary files /dev/null and b/site/static/emojis/264e.png differ diff --git a/site/static/emojis/264f.png b/site/static/emojis/264f.png new file mode 100644 index 0000000000000..2ca7e0b9c26f4 Binary files /dev/null and b/site/static/emojis/264f.png differ diff --git a/site/static/emojis/2650.png b/site/static/emojis/2650.png new file mode 100644 index 0000000000000..57919345ec45a Binary files /dev/null and b/site/static/emojis/2650.png differ diff --git a/site/static/emojis/2651.png b/site/static/emojis/2651.png new file mode 100644 index 0000000000000..b89c8d21960a0 Binary files /dev/null and b/site/static/emojis/2651.png differ diff --git a/site/static/emojis/2652.png b/site/static/emojis/2652.png new file mode 100644 index 0000000000000..de34060dd313b Binary files /dev/null and b/site/static/emojis/2652.png differ diff --git a/site/static/emojis/2653.png b/site/static/emojis/2653.png new file mode 100644 index 0000000000000..84d436f39a40d Binary files /dev/null and b/site/static/emojis/2653.png differ diff --git a/site/static/emojis/265f.png b/site/static/emojis/265f.png new file mode 100644 index 0000000000000..18f933cb0cc84 Binary files /dev/null and b/site/static/emojis/265f.png differ diff --git a/site/static/emojis/2660.png b/site/static/emojis/2660.png new file mode 100644 index 0000000000000..c9138c3963d8b Binary files /dev/null and b/site/static/emojis/2660.png differ diff --git a/site/static/emojis/2663.png b/site/static/emojis/2663.png new file mode 100644 index 0000000000000..20af6f8d3676c Binary files /dev/null and b/site/static/emojis/2663.png differ diff --git a/site/static/emojis/2665.png b/site/static/emojis/2665.png new file mode 100644 index 0000000000000..f80860bb3ae39 Binary files /dev/null and b/site/static/emojis/2665.png differ diff --git a/site/static/emojis/2666.png b/site/static/emojis/2666.png new file mode 100644 index 0000000000000..574fadf609aec Binary files /dev/null and b/site/static/emojis/2666.png differ diff --git a/site/static/emojis/2668.png b/site/static/emojis/2668.png new file mode 100644 index 0000000000000..6ca91542f13fc Binary files /dev/null and b/site/static/emojis/2668.png differ diff --git a/site/static/emojis/267b.png b/site/static/emojis/267b.png new file mode 100644 index 0000000000000..97c09767f317e Binary files /dev/null and b/site/static/emojis/267b.png differ diff --git a/site/static/emojis/267e.png b/site/static/emojis/267e.png new file mode 100644 index 0000000000000..778e87b2e491c Binary files /dev/null and b/site/static/emojis/267e.png differ diff --git a/site/static/emojis/267f.png b/site/static/emojis/267f.png new file mode 100644 index 0000000000000..5d796cee1b4bb Binary files /dev/null and b/site/static/emojis/267f.png differ diff --git a/site/static/emojis/2692.png b/site/static/emojis/2692.png new file mode 100644 index 0000000000000..055a8e7aa0e9b Binary files /dev/null and b/site/static/emojis/2692.png differ diff --git a/site/static/emojis/2693.png b/site/static/emojis/2693.png new file mode 100644 index 0000000000000..277f85ec4d41a Binary files /dev/null and b/site/static/emojis/2693.png differ diff --git a/site/static/emojis/2694.png b/site/static/emojis/2694.png new file mode 100644 index 0000000000000..61bf8b1bf0a3b Binary files /dev/null and b/site/static/emojis/2694.png differ diff --git a/site/static/emojis/2695.png b/site/static/emojis/2695.png new file mode 100644 index 0000000000000..d542f01bd6715 Binary files /dev/null and b/site/static/emojis/2695.png differ diff --git a/site/static/emojis/2696.png b/site/static/emojis/2696.png new file mode 100644 index 0000000000000..cf179675d9aa5 Binary files /dev/null and b/site/static/emojis/2696.png differ diff --git a/site/static/emojis/2697.png b/site/static/emojis/2697.png new file mode 100644 index 0000000000000..c4b62271c779c Binary files /dev/null and b/site/static/emojis/2697.png differ diff --git a/site/static/emojis/2699.png b/site/static/emojis/2699.png new file mode 100644 index 0000000000000..b78e56447a548 Binary files /dev/null and b/site/static/emojis/2699.png differ diff --git a/site/static/emojis/269b.png b/site/static/emojis/269b.png new file mode 100644 index 0000000000000..7daedd8e404e7 Binary files /dev/null and b/site/static/emojis/269b.png differ diff --git a/site/static/emojis/269c.png b/site/static/emojis/269c.png new file mode 100644 index 0000000000000..7ad56ad454383 Binary files /dev/null and b/site/static/emojis/269c.png differ diff --git a/site/static/emojis/26a0.png b/site/static/emojis/26a0.png new file mode 100644 index 0000000000000..a154653002f0f Binary files /dev/null and b/site/static/emojis/26a0.png differ diff --git a/site/static/emojis/26a1.png b/site/static/emojis/26a1.png new file mode 100644 index 0000000000000..797d3ca938168 Binary files /dev/null and b/site/static/emojis/26a1.png differ diff --git a/site/static/emojis/26a7.png b/site/static/emojis/26a7.png new file mode 100644 index 0000000000000..fc84e19d14c1f Binary files /dev/null and b/site/static/emojis/26a7.png differ diff --git a/site/static/emojis/26aa.png b/site/static/emojis/26aa.png new file mode 100644 index 0000000000000..1d5ec9319fd74 Binary files /dev/null and b/site/static/emojis/26aa.png differ diff --git a/site/static/emojis/26ab.png b/site/static/emojis/26ab.png new file mode 100644 index 0000000000000..038f93edd6971 Binary files /dev/null and b/site/static/emojis/26ab.png differ diff --git a/site/static/emojis/26b0.png b/site/static/emojis/26b0.png new file mode 100644 index 0000000000000..184c59f60d6b9 Binary files /dev/null and b/site/static/emojis/26b0.png differ diff --git a/site/static/emojis/26b1.png b/site/static/emojis/26b1.png new file mode 100644 index 0000000000000..9c45483469ea0 Binary files /dev/null and b/site/static/emojis/26b1.png differ diff --git a/site/static/emojis/26bd.png b/site/static/emojis/26bd.png new file mode 100644 index 0000000000000..5e11489594248 Binary files /dev/null and b/site/static/emojis/26bd.png differ diff --git a/site/static/emojis/26be.png b/site/static/emojis/26be.png new file mode 100644 index 0000000000000..b69c9c765bea5 Binary files /dev/null and b/site/static/emojis/26be.png differ diff --git a/site/static/emojis/26c4.png b/site/static/emojis/26c4.png new file mode 100644 index 0000000000000..70518ad8edfb8 Binary files /dev/null and b/site/static/emojis/26c4.png differ diff --git a/site/static/emojis/26c5.png b/site/static/emojis/26c5.png new file mode 100644 index 0000000000000..13ff46049f3a0 Binary files /dev/null and b/site/static/emojis/26c5.png differ diff --git a/site/static/emojis/26c8.png b/site/static/emojis/26c8.png new file mode 100644 index 0000000000000..699b775ce617f Binary files /dev/null and b/site/static/emojis/26c8.png differ diff --git a/site/static/emojis/26ce.png b/site/static/emojis/26ce.png new file mode 100644 index 0000000000000..24fbd8a748b8e Binary files /dev/null and b/site/static/emojis/26ce.png differ diff --git a/site/static/emojis/26cf.png b/site/static/emojis/26cf.png new file mode 100644 index 0000000000000..d482a9062294f Binary files /dev/null and b/site/static/emojis/26cf.png differ diff --git a/site/static/emojis/26d1.png b/site/static/emojis/26d1.png new file mode 100644 index 0000000000000..d99f6046f5658 Binary files /dev/null and b/site/static/emojis/26d1.png differ diff --git a/site/static/emojis/26d3.png b/site/static/emojis/26d3.png new file mode 100644 index 0000000000000..1fa9dfd00696d Binary files /dev/null and b/site/static/emojis/26d3.png differ diff --git a/site/static/emojis/26d4.png b/site/static/emojis/26d4.png new file mode 100644 index 0000000000000..d4410559bed6c Binary files /dev/null and b/site/static/emojis/26d4.png differ diff --git a/site/static/emojis/26e9.png b/site/static/emojis/26e9.png new file mode 100644 index 0000000000000..0fb5d1286d0f0 Binary files /dev/null and b/site/static/emojis/26e9.png differ diff --git a/site/static/emojis/26ea.png b/site/static/emojis/26ea.png new file mode 100644 index 0000000000000..3d84412bb96ed Binary files /dev/null and b/site/static/emojis/26ea.png differ diff --git a/site/static/emojis/26f0.png b/site/static/emojis/26f0.png new file mode 100644 index 0000000000000..26f6e5cfa16dd Binary files /dev/null and b/site/static/emojis/26f0.png differ diff --git a/site/static/emojis/26f1.png b/site/static/emojis/26f1.png new file mode 100644 index 0000000000000..120de456f78b7 Binary files /dev/null and b/site/static/emojis/26f1.png differ diff --git a/site/static/emojis/26f2.png b/site/static/emojis/26f2.png new file mode 100644 index 0000000000000..545c3eb85e79a Binary files /dev/null and b/site/static/emojis/26f2.png differ diff --git a/site/static/emojis/26f3.png b/site/static/emojis/26f3.png new file mode 100644 index 0000000000000..4dbfac67812fc Binary files /dev/null and b/site/static/emojis/26f3.png differ diff --git a/site/static/emojis/26f4.png b/site/static/emojis/26f4.png new file mode 100644 index 0000000000000..ce8759630bfc5 Binary files /dev/null and b/site/static/emojis/26f4.png differ diff --git a/site/static/emojis/26f5.png b/site/static/emojis/26f5.png new file mode 100644 index 0000000000000..ed45fad83880c Binary files /dev/null and b/site/static/emojis/26f5.png differ diff --git a/site/static/emojis/26f7-1f3fb.png b/site/static/emojis/26f7-1f3fb.png new file mode 100644 index 0000000000000..9cd4e00aed538 Binary files /dev/null and b/site/static/emojis/26f7-1f3fb.png differ diff --git a/site/static/emojis/26f7-1f3fc.png b/site/static/emojis/26f7-1f3fc.png new file mode 100644 index 0000000000000..1ed165b678a47 Binary files /dev/null and b/site/static/emojis/26f7-1f3fc.png differ diff --git a/site/static/emojis/26f7-1f3fd.png b/site/static/emojis/26f7-1f3fd.png new file mode 100644 index 0000000000000..427b3d027ee51 Binary files /dev/null and b/site/static/emojis/26f7-1f3fd.png differ diff --git a/site/static/emojis/26f7-1f3fe.png b/site/static/emojis/26f7-1f3fe.png new file mode 100644 index 0000000000000..5970ef6ecbf0a Binary files /dev/null and b/site/static/emojis/26f7-1f3fe.png differ diff --git a/site/static/emojis/26f7-1f3ff.png b/site/static/emojis/26f7-1f3ff.png new file mode 100644 index 0000000000000..390c4fb504669 Binary files /dev/null and b/site/static/emojis/26f7-1f3ff.png differ diff --git a/site/static/emojis/26f7.png b/site/static/emojis/26f7.png new file mode 100644 index 0000000000000..7de15aa6c7232 Binary files /dev/null and b/site/static/emojis/26f7.png differ diff --git a/site/static/emojis/26f8.png b/site/static/emojis/26f8.png new file mode 100644 index 0000000000000..aedf5af158765 Binary files /dev/null and b/site/static/emojis/26f8.png differ diff --git a/site/static/emojis/26f9-1f3fb-200d-2640-fe0f.png b/site/static/emojis/26f9-1f3fb-200d-2640-fe0f.png new file mode 100644 index 0000000000000..83750a1515b6d Binary files /dev/null and b/site/static/emojis/26f9-1f3fb-200d-2640-fe0f.png differ diff --git a/site/static/emojis/26f9-1f3fb-200d-2642-fe0f.png b/site/static/emojis/26f9-1f3fb-200d-2642-fe0f.png new file mode 100644 index 0000000000000..4d4d656f533cc Binary files /dev/null and b/site/static/emojis/26f9-1f3fb-200d-2642-fe0f.png differ diff --git a/site/static/emojis/26f9-1f3fb.png b/site/static/emojis/26f9-1f3fb.png new file mode 100644 index 0000000000000..082b064721bed Binary files /dev/null and b/site/static/emojis/26f9-1f3fb.png differ diff --git a/site/static/emojis/26f9-1f3fc-200d-2640-fe0f.png b/site/static/emojis/26f9-1f3fc-200d-2640-fe0f.png new file mode 100644 index 0000000000000..807a7fbcf4a08 Binary files /dev/null and b/site/static/emojis/26f9-1f3fc-200d-2640-fe0f.png differ diff --git a/site/static/emojis/26f9-1f3fc-200d-2642-fe0f.png b/site/static/emojis/26f9-1f3fc-200d-2642-fe0f.png new file mode 100644 index 0000000000000..a2427ae231c93 Binary files /dev/null and b/site/static/emojis/26f9-1f3fc-200d-2642-fe0f.png differ diff --git a/site/static/emojis/26f9-1f3fc.png b/site/static/emojis/26f9-1f3fc.png new file mode 100644 index 0000000000000..b8f1405132b08 Binary files /dev/null and b/site/static/emojis/26f9-1f3fc.png differ diff --git a/site/static/emojis/26f9-1f3fd-200d-2640-fe0f.png b/site/static/emojis/26f9-1f3fd-200d-2640-fe0f.png new file mode 100644 index 0000000000000..7cbed5efaf251 Binary files /dev/null and b/site/static/emojis/26f9-1f3fd-200d-2640-fe0f.png differ diff --git a/site/static/emojis/26f9-1f3fd-200d-2642-fe0f.png b/site/static/emojis/26f9-1f3fd-200d-2642-fe0f.png new file mode 100644 index 0000000000000..10facd5e677cd Binary files /dev/null and b/site/static/emojis/26f9-1f3fd-200d-2642-fe0f.png differ diff --git a/site/static/emojis/26f9-1f3fd.png b/site/static/emojis/26f9-1f3fd.png new file mode 100644 index 0000000000000..b2b315a6838c9 Binary files /dev/null and b/site/static/emojis/26f9-1f3fd.png differ diff --git a/site/static/emojis/26f9-1f3fe-200d-2640-fe0f.png b/site/static/emojis/26f9-1f3fe-200d-2640-fe0f.png new file mode 100644 index 0000000000000..851ee25df414e Binary files /dev/null and b/site/static/emojis/26f9-1f3fe-200d-2640-fe0f.png differ diff --git a/site/static/emojis/26f9-1f3fe-200d-2642-fe0f.png b/site/static/emojis/26f9-1f3fe-200d-2642-fe0f.png new file mode 100644 index 0000000000000..fb6f377a8fbe5 Binary files /dev/null and b/site/static/emojis/26f9-1f3fe-200d-2642-fe0f.png differ diff --git a/site/static/emojis/26f9-1f3fe.png b/site/static/emojis/26f9-1f3fe.png new file mode 100644 index 0000000000000..b5a25be18c9c8 Binary files /dev/null and b/site/static/emojis/26f9-1f3fe.png differ diff --git a/site/static/emojis/26f9-1f3ff-200d-2640-fe0f.png b/site/static/emojis/26f9-1f3ff-200d-2640-fe0f.png new file mode 100644 index 0000000000000..e3d4cec6908f6 Binary files /dev/null and b/site/static/emojis/26f9-1f3ff-200d-2640-fe0f.png differ diff --git a/site/static/emojis/26f9-1f3ff-200d-2642-fe0f.png b/site/static/emojis/26f9-1f3ff-200d-2642-fe0f.png new file mode 100644 index 0000000000000..830fa1a72e31d Binary files /dev/null and b/site/static/emojis/26f9-1f3ff-200d-2642-fe0f.png differ diff --git a/site/static/emojis/26f9-1f3ff.png b/site/static/emojis/26f9-1f3ff.png new file mode 100644 index 0000000000000..74e0500e7f932 Binary files /dev/null and b/site/static/emojis/26f9-1f3ff.png differ diff --git a/site/static/emojis/26f9-fe0f-200d-2640-fe0f.png b/site/static/emojis/26f9-fe0f-200d-2640-fe0f.png new file mode 100644 index 0000000000000..42df033036988 Binary files /dev/null and b/site/static/emojis/26f9-fe0f-200d-2640-fe0f.png differ diff --git a/site/static/emojis/26f9-fe0f-200d-2642-fe0f.png b/site/static/emojis/26f9-fe0f-200d-2642-fe0f.png new file mode 100644 index 0000000000000..122f3307259a2 Binary files /dev/null and b/site/static/emojis/26f9-fe0f-200d-2642-fe0f.png differ diff --git a/site/static/emojis/26f9.png b/site/static/emojis/26f9.png new file mode 100644 index 0000000000000..b7f7856204069 Binary files /dev/null and b/site/static/emojis/26f9.png differ diff --git a/site/static/emojis/26fa.png b/site/static/emojis/26fa.png new file mode 100644 index 0000000000000..d8a0dbd39e672 Binary files /dev/null and b/site/static/emojis/26fa.png differ diff --git a/site/static/emojis/26fd.png b/site/static/emojis/26fd.png new file mode 100644 index 0000000000000..8307de2e55573 Binary files /dev/null and b/site/static/emojis/26fd.png differ diff --git a/site/static/emojis/2702.png b/site/static/emojis/2702.png new file mode 100644 index 0000000000000..ba94dc641870d Binary files /dev/null and b/site/static/emojis/2702.png differ diff --git a/site/static/emojis/2705.png b/site/static/emojis/2705.png new file mode 100644 index 0000000000000..0683c7ecf12ac Binary files /dev/null and b/site/static/emojis/2705.png differ diff --git a/site/static/emojis/2708.png b/site/static/emojis/2708.png new file mode 100644 index 0000000000000..6bffcd5a9652c Binary files /dev/null and b/site/static/emojis/2708.png differ diff --git a/site/static/emojis/2709.png b/site/static/emojis/2709.png new file mode 100644 index 0000000000000..90023eb6858c5 Binary files /dev/null and b/site/static/emojis/2709.png differ diff --git a/site/static/emojis/270a-1f3fb.png b/site/static/emojis/270a-1f3fb.png new file mode 100644 index 0000000000000..0b7aeb80428f8 Binary files /dev/null and b/site/static/emojis/270a-1f3fb.png differ diff --git a/site/static/emojis/270a-1f3fc.png b/site/static/emojis/270a-1f3fc.png new file mode 100644 index 0000000000000..14b14468f2179 Binary files /dev/null and b/site/static/emojis/270a-1f3fc.png differ diff --git a/site/static/emojis/270a-1f3fd.png b/site/static/emojis/270a-1f3fd.png new file mode 100644 index 0000000000000..73ff6c977f550 Binary files /dev/null and b/site/static/emojis/270a-1f3fd.png differ diff --git a/site/static/emojis/270a-1f3fe.png b/site/static/emojis/270a-1f3fe.png new file mode 100644 index 0000000000000..f2ae4eb0df321 Binary files /dev/null and b/site/static/emojis/270a-1f3fe.png differ diff --git a/site/static/emojis/270a-1f3ff.png b/site/static/emojis/270a-1f3ff.png new file mode 100644 index 0000000000000..39e3a237da39f Binary files /dev/null and b/site/static/emojis/270a-1f3ff.png differ diff --git a/site/static/emojis/270a.png b/site/static/emojis/270a.png new file mode 100644 index 0000000000000..0e2291c261d82 Binary files /dev/null and b/site/static/emojis/270a.png differ diff --git a/site/static/emojis/270b-1f3fb.png b/site/static/emojis/270b-1f3fb.png new file mode 100644 index 0000000000000..b8a37846189bf Binary files /dev/null and b/site/static/emojis/270b-1f3fb.png differ diff --git a/site/static/emojis/270b-1f3fc.png b/site/static/emojis/270b-1f3fc.png new file mode 100644 index 0000000000000..45c1a47426d82 Binary files /dev/null and b/site/static/emojis/270b-1f3fc.png differ diff --git a/site/static/emojis/270b-1f3fd.png b/site/static/emojis/270b-1f3fd.png new file mode 100644 index 0000000000000..d1a826860bc7e Binary files /dev/null and b/site/static/emojis/270b-1f3fd.png differ diff --git a/site/static/emojis/270b-1f3fe.png b/site/static/emojis/270b-1f3fe.png new file mode 100644 index 0000000000000..0a593055eea6f Binary files /dev/null and b/site/static/emojis/270b-1f3fe.png differ diff --git a/site/static/emojis/270b-1f3ff.png b/site/static/emojis/270b-1f3ff.png new file mode 100644 index 0000000000000..d556c2a316623 Binary files /dev/null and b/site/static/emojis/270b-1f3ff.png differ diff --git a/site/static/emojis/270b.png b/site/static/emojis/270b.png new file mode 100644 index 0000000000000..ce49d6aef1d0a Binary files /dev/null and b/site/static/emojis/270b.png differ diff --git a/site/static/emojis/270c-1f3fb.png b/site/static/emojis/270c-1f3fb.png new file mode 100644 index 0000000000000..3a69852347324 Binary files /dev/null and b/site/static/emojis/270c-1f3fb.png differ diff --git a/site/static/emojis/270c-1f3fc.png b/site/static/emojis/270c-1f3fc.png new file mode 100644 index 0000000000000..488baf8bf67b8 Binary files /dev/null and b/site/static/emojis/270c-1f3fc.png differ diff --git a/site/static/emojis/270c-1f3fd.png b/site/static/emojis/270c-1f3fd.png new file mode 100644 index 0000000000000..10a5746601679 Binary files /dev/null and b/site/static/emojis/270c-1f3fd.png differ diff --git a/site/static/emojis/270c-1f3fe.png b/site/static/emojis/270c-1f3fe.png new file mode 100644 index 0000000000000..bf52c750e4451 Binary files /dev/null and b/site/static/emojis/270c-1f3fe.png differ diff --git a/site/static/emojis/270c-1f3ff.png b/site/static/emojis/270c-1f3ff.png new file mode 100644 index 0000000000000..61f75f2d75739 Binary files /dev/null and b/site/static/emojis/270c-1f3ff.png differ diff --git a/site/static/emojis/270c.png b/site/static/emojis/270c.png new file mode 100644 index 0000000000000..5734f34918c65 Binary files /dev/null and b/site/static/emojis/270c.png differ diff --git a/site/static/emojis/270d-1f3fb.png b/site/static/emojis/270d-1f3fb.png new file mode 100644 index 0000000000000..a2f9d932ebd7b Binary files /dev/null and b/site/static/emojis/270d-1f3fb.png differ diff --git a/site/static/emojis/270d-1f3fc.png b/site/static/emojis/270d-1f3fc.png new file mode 100644 index 0000000000000..f9f6739061b3a Binary files /dev/null and b/site/static/emojis/270d-1f3fc.png differ diff --git a/site/static/emojis/270d-1f3fd.png b/site/static/emojis/270d-1f3fd.png new file mode 100644 index 0000000000000..0943238115d9f Binary files /dev/null and b/site/static/emojis/270d-1f3fd.png differ diff --git a/site/static/emojis/270d-1f3fe.png b/site/static/emojis/270d-1f3fe.png new file mode 100644 index 0000000000000..8252421f519fd Binary files /dev/null and b/site/static/emojis/270d-1f3fe.png differ diff --git a/site/static/emojis/270d-1f3ff.png b/site/static/emojis/270d-1f3ff.png new file mode 100644 index 0000000000000..4214c3a152d74 Binary files /dev/null and b/site/static/emojis/270d-1f3ff.png differ diff --git a/site/static/emojis/270d.png b/site/static/emojis/270d.png new file mode 100644 index 0000000000000..86f753c3d2b73 Binary files /dev/null and b/site/static/emojis/270d.png differ diff --git a/site/static/emojis/270f.png b/site/static/emojis/270f.png new file mode 100644 index 0000000000000..ae8bdbc285865 Binary files /dev/null and b/site/static/emojis/270f.png differ diff --git a/site/static/emojis/2712.png b/site/static/emojis/2712.png new file mode 100644 index 0000000000000..e5d30fd605773 Binary files /dev/null and b/site/static/emojis/2712.png differ diff --git a/site/static/emojis/2714.png b/site/static/emojis/2714.png new file mode 100644 index 0000000000000..b63dce1d12ebd Binary files /dev/null and b/site/static/emojis/2714.png differ diff --git a/site/static/emojis/2716.png b/site/static/emojis/2716.png new file mode 100644 index 0000000000000..32c55aa9a2ae1 Binary files /dev/null and b/site/static/emojis/2716.png differ diff --git a/site/static/emojis/271d.png b/site/static/emojis/271d.png new file mode 100644 index 0000000000000..0755be4508145 Binary files /dev/null and b/site/static/emojis/271d.png differ diff --git a/site/static/emojis/2721.png b/site/static/emojis/2721.png new file mode 100644 index 0000000000000..149560071a542 Binary files /dev/null and b/site/static/emojis/2721.png differ diff --git a/site/static/emojis/2728.png b/site/static/emojis/2728.png new file mode 100644 index 0000000000000..ebd2c77b1de10 Binary files /dev/null and b/site/static/emojis/2728.png differ diff --git a/site/static/emojis/2733.png b/site/static/emojis/2733.png new file mode 100644 index 0000000000000..1f393dae535a1 Binary files /dev/null and b/site/static/emojis/2733.png differ diff --git a/site/static/emojis/2734.png b/site/static/emojis/2734.png new file mode 100644 index 0000000000000..83d31fafd2dc1 Binary files /dev/null and b/site/static/emojis/2734.png differ diff --git a/site/static/emojis/2744.png b/site/static/emojis/2744.png new file mode 100644 index 0000000000000..ee53c868739f0 Binary files /dev/null and b/site/static/emojis/2744.png differ diff --git a/site/static/emojis/2747.png b/site/static/emojis/2747.png new file mode 100644 index 0000000000000..8a9731b97d234 Binary files /dev/null and b/site/static/emojis/2747.png differ diff --git a/site/static/emojis/274c.png b/site/static/emojis/274c.png new file mode 100644 index 0000000000000..8347c7bad5ba3 Binary files /dev/null and b/site/static/emojis/274c.png differ diff --git a/site/static/emojis/274e.png b/site/static/emojis/274e.png new file mode 100644 index 0000000000000..a96a67c92d2f9 Binary files /dev/null and b/site/static/emojis/274e.png differ diff --git a/site/static/emojis/2753.png b/site/static/emojis/2753.png new file mode 100644 index 0000000000000..1f337b221441e Binary files /dev/null and b/site/static/emojis/2753.png differ diff --git a/site/static/emojis/2754.png b/site/static/emojis/2754.png new file mode 100644 index 0000000000000..a28b30475abae Binary files /dev/null and b/site/static/emojis/2754.png differ diff --git a/site/static/emojis/2755.png b/site/static/emojis/2755.png new file mode 100644 index 0000000000000..0b173031e2d10 Binary files /dev/null and b/site/static/emojis/2755.png differ diff --git a/site/static/emojis/2757.png b/site/static/emojis/2757.png new file mode 100644 index 0000000000000..9c48a72739125 Binary files /dev/null and b/site/static/emojis/2757.png differ diff --git a/site/static/emojis/2763.png b/site/static/emojis/2763.png new file mode 100644 index 0000000000000..1e421bc9db219 Binary files /dev/null and b/site/static/emojis/2763.png differ diff --git a/site/static/emojis/2764-fe0f-200d-1f525.png b/site/static/emojis/2764-fe0f-200d-1f525.png new file mode 100644 index 0000000000000..36be1b8077545 Binary files /dev/null and b/site/static/emojis/2764-fe0f-200d-1f525.png differ diff --git a/site/static/emojis/2764-fe0f-200d-1fa79.png b/site/static/emojis/2764-fe0f-200d-1fa79.png new file mode 100644 index 0000000000000..b834e62ccb972 Binary files /dev/null and b/site/static/emojis/2764-fe0f-200d-1fa79.png differ diff --git a/site/static/emojis/2764.png b/site/static/emojis/2764.png new file mode 100644 index 0000000000000..a7511e97ae30a Binary files /dev/null and b/site/static/emojis/2764.png differ diff --git a/site/static/emojis/2795.png b/site/static/emojis/2795.png new file mode 100644 index 0000000000000..21d5a886d293b Binary files /dev/null and b/site/static/emojis/2795.png differ diff --git a/site/static/emojis/2796.png b/site/static/emojis/2796.png new file mode 100644 index 0000000000000..7779c9d3f0e2d Binary files /dev/null and b/site/static/emojis/2796.png differ diff --git a/site/static/emojis/2797.png b/site/static/emojis/2797.png new file mode 100644 index 0000000000000..1d2425eaff0a1 Binary files /dev/null and b/site/static/emojis/2797.png differ diff --git a/site/static/emojis/27a1.png b/site/static/emojis/27a1.png new file mode 100644 index 0000000000000..1cf8b3d683d6d Binary files /dev/null and b/site/static/emojis/27a1.png differ diff --git a/site/static/emojis/27b0.png b/site/static/emojis/27b0.png new file mode 100644 index 0000000000000..71def8e1bdcdf Binary files /dev/null and b/site/static/emojis/27b0.png differ diff --git a/site/static/emojis/27bf.png b/site/static/emojis/27bf.png new file mode 100644 index 0000000000000..e01c0c2dd6aba Binary files /dev/null and b/site/static/emojis/27bf.png differ diff --git a/site/static/emojis/2934.png b/site/static/emojis/2934.png new file mode 100644 index 0000000000000..bafb601bb6e7d Binary files /dev/null and b/site/static/emojis/2934.png differ diff --git a/site/static/emojis/2935.png b/site/static/emojis/2935.png new file mode 100644 index 0000000000000..83466a0243f2b Binary files /dev/null and b/site/static/emojis/2935.png differ diff --git a/site/static/emojis/2a-20e3.png b/site/static/emojis/2a-20e3.png new file mode 100644 index 0000000000000..8944081e47d61 Binary files /dev/null and b/site/static/emojis/2a-20e3.png differ diff --git a/site/static/emojis/2b05.png b/site/static/emojis/2b05.png new file mode 100644 index 0000000000000..03c7d3af48681 Binary files /dev/null and b/site/static/emojis/2b05.png differ diff --git a/site/static/emojis/2b06.png b/site/static/emojis/2b06.png new file mode 100644 index 0000000000000..4f2a41102139f Binary files /dev/null and b/site/static/emojis/2b06.png differ diff --git a/site/static/emojis/2b07.png b/site/static/emojis/2b07.png new file mode 100644 index 0000000000000..cbb200dadc88f Binary files /dev/null and b/site/static/emojis/2b07.png differ diff --git a/site/static/emojis/2b1b.png b/site/static/emojis/2b1b.png new file mode 100644 index 0000000000000..1ea0e3ec7ef86 Binary files /dev/null and b/site/static/emojis/2b1b.png differ diff --git a/site/static/emojis/2b1c.png b/site/static/emojis/2b1c.png new file mode 100644 index 0000000000000..5f76e52ee332d Binary files /dev/null and b/site/static/emojis/2b1c.png differ diff --git a/site/static/emojis/2b50.png b/site/static/emojis/2b50.png new file mode 100644 index 0000000000000..0590867e07d28 Binary files /dev/null and b/site/static/emojis/2b50.png differ diff --git a/site/static/emojis/2b55.png b/site/static/emojis/2b55.png new file mode 100644 index 0000000000000..8106cde2605e4 Binary files /dev/null and b/site/static/emojis/2b55.png differ diff --git a/site/static/emojis/30-20e3.png b/site/static/emojis/30-20e3.png new file mode 100644 index 0000000000000..f0d5615acfeec Binary files /dev/null and b/site/static/emojis/30-20e3.png differ diff --git a/site/static/emojis/3030.png b/site/static/emojis/3030.png new file mode 100644 index 0000000000000..8e74f9b895c03 Binary files /dev/null and b/site/static/emojis/3030.png differ diff --git a/site/static/emojis/303d.png b/site/static/emojis/303d.png new file mode 100644 index 0000000000000..1a47aff64f4d9 Binary files /dev/null and b/site/static/emojis/303d.png differ diff --git a/site/static/emojis/31-20e3.png b/site/static/emojis/31-20e3.png new file mode 100644 index 0000000000000..3836e2c3e4476 Binary files /dev/null and b/site/static/emojis/31-20e3.png differ diff --git a/site/static/emojis/32-20e3.png b/site/static/emojis/32-20e3.png new file mode 100644 index 0000000000000..dbb85d1f9962a Binary files /dev/null and b/site/static/emojis/32-20e3.png differ diff --git a/site/static/emojis/3297.png b/site/static/emojis/3297.png new file mode 100644 index 0000000000000..ac83914e0a16d Binary files /dev/null and b/site/static/emojis/3297.png differ diff --git a/site/static/emojis/3299.png b/site/static/emojis/3299.png new file mode 100644 index 0000000000000..c9e9e27f0a21d Binary files /dev/null and b/site/static/emojis/3299.png differ diff --git a/site/static/emojis/33-20e3.png b/site/static/emojis/33-20e3.png new file mode 100644 index 0000000000000..4b77c2d792aac Binary files /dev/null and b/site/static/emojis/33-20e3.png differ diff --git a/site/static/emojis/34-20e3.png b/site/static/emojis/34-20e3.png new file mode 100644 index 0000000000000..ddbb5559ca41a Binary files /dev/null and b/site/static/emojis/34-20e3.png differ diff --git a/site/static/emojis/35-20e3.png b/site/static/emojis/35-20e3.png new file mode 100644 index 0000000000000..6bf88f6a59cc7 Binary files /dev/null and b/site/static/emojis/35-20e3.png differ diff --git a/site/static/emojis/36-20e3.png b/site/static/emojis/36-20e3.png new file mode 100644 index 0000000000000..cf16307eb46e2 Binary files /dev/null and b/site/static/emojis/36-20e3.png differ diff --git a/site/static/emojis/37-20e3.png b/site/static/emojis/37-20e3.png new file mode 100644 index 0000000000000..308e89ca0a9fd Binary files /dev/null and b/site/static/emojis/37-20e3.png differ diff --git a/site/static/emojis/38-20e3.png b/site/static/emojis/38-20e3.png new file mode 100644 index 0000000000000..34f098df014ba Binary files /dev/null and b/site/static/emojis/38-20e3.png differ diff --git a/site/static/emojis/39-20e3.png b/site/static/emojis/39-20e3.png new file mode 100644 index 0000000000000..df6e1161d66db Binary files /dev/null and b/site/static/emojis/39-20e3.png differ diff --git a/site/static/emojis/a9.png b/site/static/emojis/a9.png new file mode 100644 index 0000000000000..db8ce8aed8796 Binary files /dev/null and b/site/static/emojis/a9.png differ diff --git a/site/static/emojis/ae.png b/site/static/emojis/ae.png new file mode 100644 index 0000000000000..76dec323b05f7 Binary files /dev/null and b/site/static/emojis/ae.png differ diff --git a/site/static/emojis/e50a.png b/site/static/emojis/e50a.png new file mode 100644 index 0000000000000..898209d50560a Binary files /dev/null and b/site/static/emojis/e50a.png differ diff --git a/site/yarn.lock b/site/yarn.lock index 9072c8848777c..6708ed39cb80a 100644 --- a/site/yarn.lock +++ b/site/yarn.lock @@ -1140,6 +1140,16 @@ resolved "https://registry.yarnpkg.com/@discoveryjs/json-ext/-/json-ext-0.5.6.tgz#d5e0706cf8c6acd8c6032f8d54070af261bbbb2f" integrity sha512-ws57AidsDvREKrZKYffXddNkyaF14iHNHm8VQnZH6t99E8gczjNN0GpvcGny0imC80yQ0tHz1xVUKk/KFQSUyA== +"@emoji-mart/data@^1.0.5": + version "1.0.5" + resolved "https://registry.yarnpkg.com/@emoji-mart/data/-/data-1.0.5.tgz#62c837f1384eb2f94bec4c0dcfe8d230cc67e81d" + integrity sha512-HulW+jI7w3ghqRN4+i1LZYJ04bdsMJg5fJ7dr6rlVpsIYKmhpVA7/ACl9R3OB5aoMf8dqNdXftVss8qHCoOi+g== + +"@emoji-mart/react@^1.0.1": + version "1.0.1" + resolved "https://registry.yarnpkg.com/@emoji-mart/react/-/react-1.0.1.tgz#46b6a2e92faf16fa9b7f9471f137fa2e3d1e8ac3" + integrity sha512-ALhLD96BOL5w+a4NI5NpmfqfF1aVjjj2qJE0dLst/OhjBfVmpteWNgn/h8LZy9ulU6AnbeS+13KnPFzDjCvRRw== + "@emotion/cache@^10.0.27": version "10.0.29" resolved "https://registry.yarnpkg.com/@emotion/cache/-/cache-10.0.29.tgz#87e7e64f412c060102d589fe7c6dc042e6f9d1e0" @@ -6175,6 +6185,11 @@ emittery@^0.8.1: resolved "https://registry.yarnpkg.com/emittery/-/emittery-0.8.1.tgz#bb23cc86d03b30aa75a7f734819dee2e1ba70860" integrity sha512-uDfvUjVrfGJJhymx/kz6prltenw1u7WrCg1oa94zYY8xxVpLLUu045LAT0dhDZdXG58/EpPL/5kA180fQ/qudg== +emoji-mart@^5.2.1: + version "5.2.1" + resolved "https://registry.yarnpkg.com/emoji-mart/-/emoji-mart-5.2.1.tgz#eccd7d650e7bc042a07834a263b87c8153f214e5" + integrity sha512-q6lz1u8TrGrO5Bv8dL2Z5atTRQaci3YzUfbYN0MzlLmIKdRt3N6vNT7uvCWRKc1tERrI45sn0nQYk3g99cBr/w== + emoji-regex@^8.0.0: version "8.0.0" resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37"