diff --git a/assets/anim.scss b/assets/anim.scss index fb0e2846..79202ed7 100644 --- a/assets/anim.scss +++ b/assets/anim.scss @@ -218,6 +218,121 @@ $context-css-animated-emote-mixin: false; } } +@mixin Gigachad() { + .text > .generify-container:has(+ .generify-container.generify-emote-Gigachad[data-modifiers~="mirror"]) { + @content; + } + .text > .generify-container.generify-emote-Gigachad:not([data-modifiers~="mirror"]) + .generify-container { + @content; + } +} + +@include Gigachad() { + animation: Gigachad-shake-anim 6s 375ms linear; + transform-origin: 50% 100%; + + &::before, &::after { + content: ""; + pointer-events: none; + position: absolute; + top: 50%; + left: 50%; + margin: -8px -6px; + width: 16px; + height: 12px; + background-image: url("/assets/emotes/modifiers/fireball.png"); + background-size: 240px 12px; + background-position: 16px 0px; + background-repeat: no-repeat; + animation: Gigachad-fireball-anim 750ms 8 step-start, Gigachad-fireball-fly-anim 6s linear; + animation-fill-mode: none, forwards; + z-index: 2; + } + + &::before { + @for $i from 0 to 8 { + #{"--offset-x-" + $i}: (random(60) + 20) * 1%; + #{"--offset-y-" + $i}: (random(40) + 20) * 1%; + #{"--scale-" + $i}: (random(50) + 100) * 1%; + } + animation-delay: 0.5s; + } + + &::after { + @for $i from 0 to 8 { + #{"--offset-x-" + $i}: (random(60) + 20) * 1%; + #{"--offset-y-" + $i}: (random(40) + 20) * 1%; + #{"--scale-" + $i}: (random(100) + 100) * 1%; + } + } + + @at-root .pref-animateforever &, &:hover { + animation-iteration-count: infinite; + } + + @at-root .pref-animateforever &::before, &:hover::before { + animation-iteration-count: infinite; + } + + @at-root .pref-animateforever &::after, &:hover::after { + animation-iteration-count: infinite; + } +} + +@keyframes Gigachad-shake-anim { + $cycles: 16; + @for $i from 0 to $cycles { + #{100 / $cycles * ($i) * 1%} { + transform: scaleY(1); + filter: brightness(1); + } + #{100 / $cycles * ($i + 2/15) * 1%} { + transform: scaleY(1); + filter: brightness(1.3); + } + #{100 / $cycles * ($i + 6/15) * 1%} { + transform: scaleY((random(30) + 60) * 1%); + filter: brightness(1.2); + } + #{100 / $cycles * ($i + 1) * 1% - 1%} { + transform: scaleY(1); + filter: brightness(1); + } + } +} + +@keyframes Gigachad-fireball-anim { + $frames: 15; + $width: 240px; + @for $i from 0 to $frames { + #{100 / $frames * $i * 1%} { + background-position-x: -$width / $frames * $i; + } + } + 100% { + background-position-x: 240px; + } +} + +@keyframes Gigachad-fireball-fly-anim { + $cycles: 8; + @for $i from 0 to $cycles { + #{100 / $cycles * $i * 1%} { + transform: translateY(-30px) rotate(90deg) scale(var(#{"--scale-" + $i})); + left: var(#{"--offset-x-" + $i}); + top: var(#{"--offset-y-" + $i}); + } + #{100 / $cycles * ($i + 7/15) * 1%} { + transform: translateY(0) rotate(90deg) scale(var(#{"--scale-" + $i})); + } + #{100 / $cycles * ($i + 1) * 1% - 1%} { + transform: translateY(0) rotate(90deg) scale(var(#{"--scale-" + $i})); + left: var(#{"--offset-x-" + $i}); + top: var(#{"--offset-y-" + $i}); + } + } +} + @keyframes emote-hit { 0% { color: #B91010; font-size:200%; } 1% { color: $color-light; font-size:190%; } @@ -451,6 +566,15 @@ $spritesDir : '/assets/emotes/emoticons-animated/'; } } +@include sprite-animation( + $file-name: MiyanoHype, + $frame-count: 10, + $sprite-width: 320px, + $sprite-height: 32px, + $animation-duration: 800ms, + $iteration-count: 3 +); + @include sprite-animation( $file-name: Clap, $frame-count: 2, @@ -460,6 +584,15 @@ $spritesDir : '/assets/emotes/emoticons-animated/'; $iteration-count: 5 ); +@include sprite-animation( + $file-name: COGGERS, + $frame-count: 60, + $sprite-width: 1920px, + $sprite-height: 32px, + $animation-duration: 800ms, + $iteration-count: 2 +); + @include sprite-animation( $file-name: CuckCrab, $frame-count: 20, @@ -478,6 +611,15 @@ $spritesDir : '/assets/emotes/emoticons-animated/'; $iteration-count: 3 ); +@include sprite-animation( + $file-name: PepoDance, + $frame-count: 10, + $sprite-width: 460px, + $sprite-height: 32px, + $animation-duration: 500ms, + $iteration-count: 5 +); + @include sprite-animation( $file-name: PepeJam, $frame-count: 4, @@ -507,6 +649,34 @@ $spritesDir : '/assets/emotes/emoticons-animated/'; $iteration-count: 2 ); +@include sprite-animation( + $file-name: VroomVroom, + $frame-count: 101, + $sprite-width: 2828px, + $sprite-height: 28px, + $animation-duration: 4000ms, + $iteration-count: 2 +); + +@include sprite-animation( + $file-name: WAG, + $frame-count: 2, + $sprite-width: 74px, + $sprite-height: 32px, + $animation-duration: 500ms, + $iteration-count: 10 +); + +@include sprite-animation( + $file-name: FeelsPepoMan, + $frame-count: 4, + $sprite-width: 128px, + $sprite-height: 32px, + $animation-duration: 400ms, + $iteration-count: 7, + $can-animate-forever: true +); + @include sprite-animation( $file-name: BONK, $frame-count: 2, @@ -576,6 +746,16 @@ $spritesDir : '/assets/emotes/emoticons-animated/'; $can-animate-forever: true ); +@include sprite-animation( + $file-name: HACKER, + $frame-count: 16, + $sprite-width: 816px, + $sprite-height: 32px, + $animation-duration: 1600ms, + $iteration-count: 2, + $can-animate-forever: true +); + @include sprite-animation( $file-name: KEKW, $frame-count: 16, @@ -654,6 +834,46 @@ $spritesDir : '/assets/emotes/emoticons-animated/'; $can-animate-forever: true ); +@include sprite-animation( + $file-name: monkaSteer, + $frame-count: 24, + $sprite-width: 648px, + $sprite-height: 25px, + $animation-duration: 1680ms, + $iteration-count: 3, + $can-animate-forever: true +); + +@include sprite-animation( + $file-name: NODDERS, + $frame-count: 4, + $sprite-width: 112px, + $sprite-height: 28px, + $animation-duration: 320ms, + $iteration-count: 16, + $can-animate-forever: true +); + +@include sprite-animation( + $file-name: NOPERS, + $frame-count: 8, + $sprite-width: 224px, + $sprite-height: 28px, + $animation-duration: 640ms, + $iteration-count: 16, + $can-animate-forever: true, +); + +@include sprite-animation( + $file-name: PeepoRun, + $frame-count: 6, + $sprite-width: 168px, + $sprite-height: 28px, + $animation-duration: 420ms, + $iteration-count: 12, + $can-animate-forever: true +); + @include sprite-animation( $file-name: DuckJAM, $frame-count: 55, @@ -697,6 +917,17 @@ $spritesDir : '/assets/emotes/emoticons-animated/'; $can-animate-forever: true ); +@include sprite-animation( + $file-name: DaFeels, + $frame-count: 180, + $sprite-width: 5760px, + $sprite-height: 32px, + $animation-duration: 5s, + $iteration-count: 1, + $end-on-last-frame: true, + $can-animate-forever: true +); + @include sprite-animation( $file-name: WICKEDSTEER, $frame-count: 24, @@ -791,7 +1022,7 @@ $spritesDir : '/assets/emotes/emoticons-animated/'; @include sprite-animation( $file-name: SHUSH, $frame-count: 4, - $sprite-width: 156px, + $sprite-width: 112px, $sprite-height: 28px, $animation-duration: 4s, $iteration-count: 2, @@ -799,6 +1030,17 @@ $spritesDir : '/assets/emotes/emoticons-animated/'; $end-on-last-frame: true ); +@include sprite-animation( + $file-name: YEE, + $frame-count: 192, + $sprite-width: 11904px, + $sprite-height: 32px, + $animation-duration: 3.2s, + $iteration-count: 1, + $can-animate-forever: true, + $end-on-last-frame: true +); + @include sprite-animation( $file-name: HocusPocus, $frame-count: 33, @@ -849,17 +1091,6 @@ $spritesDir : '/assets/emotes/emoticons-animated/'; $end-on-last-frame: true ); -@include sprite-animation( - $file-name: AngelThump, - $frame-count: 90, - $sprite-width: 7560px, - $sprite-height: 32px, - $animation-duration: 3s, - $iteration-count: 1, - $can-animate-forever: true, - $end-on-last-frame: true -); - @include sprite-animation( $file-name: STIR, $frame-count: 17, @@ -890,461 +1121,6 @@ $spritesDir : '/assets/emotes/emoticons-animated/'; $can-animate-forever: true ); -@include sprite-animation( - $file-name: MiyanoHype, - $frame-count: 10, - $sprite-width: 320px, - $sprite-height: 32px, - $animation-duration: 800ms, - $iteration-count: 3 -); - -@mixin MiyanoHype() { - .text > .generify-container:has(+ .generify-container.generify-emote-MiyanoHype:not([data-modifiers~="mirror"])) { - @content; - } - .text > .generify-container.generify-emote-MiyanoHype[data-modifiers~="mirror"] + .generify-container { - @content; - } -} - -@include MiyanoHype() { - margin-right: 0; - margin-left: 0; - animation: YUMP-anim 800ms 3; - animation-delay: .3s; - - &:hover { - margin-right: 0; - margin-left: 0; - animation: YUMP-anim-hover 800ms 3; - animation-delay: .3s - } - - &::after { - content: ""; - position: absolute; - border-radius: 50%; - top: 32px; - left: 0; - width: 100%; - height: 100%; - animation: Cutify-anim 800ms 3; - clip-path: polygon(0 -60px, 100% -60px, 100% calc(-32px + 100%), 0 calc(-32px + 100%)); - z-index: 1; - } - - &:hover::after { - animation: Cutify-anim-hover 1s infinite; - } -} - -@keyframes Cutify-anim { - 40% { box-shadow: 0 0 0px 0px rgba(208, 116, 251, .7); } - 50% { box-shadow: 0 0 20px 20px rgba(208, 116, 251, .7); } - 100% { box-shadow: 0 0 0px 0px rgba(208, 116, 251, .7); } -} - -@keyframes Cutify-anim-hover { - 0% { box-shadow: 0 0 8px 8px rgba(208, 116, 251, .4); } - 40% { box-shadow: 0 0 20px 20px rgba(208, 116, 251, .7); } - 100% { box-shadow: 0 0 8px 8px rgba(208, 116, 251, .4); } -} - -@keyframes YUMP-anim { - 0% { transform: translate(0px, 0px); } - 25% { transform: translate(0px, -7.5px) rotate(-3deg); animation-timing-function: ease } - 37% { transform: translate(0px, 0px) rotate(-3deg); animation-timing-function: ease-in } - 55% { transform: translate(0px, -3px) rotate(4deg); animation-timing-function: ease} - 60% { transform: translate(0px, 0px) rotate(4deg); animation-timing-function: ease-in} - 75% { transform: translate(0px, -1.5px); animation-timing-function: ease } - 100% { transform: translate(0px, 0px); animation-timing-function: ease-in} -} - -@keyframes YUMP-anim-hover { - 0% { transform: translate(0px, 0px); } - 25% { transform: translate(0px, -7.5px) rotate(-3deg); animation-timing-function: ease } - 37% { transform: translate(0px, 0px) rotate(-3deg); animation-timing-function: ease-in } - 55% { transform: translate(0px, -3px) rotate(4deg); animation-timing-function: ease} - 60% { transform: translate(0px, 0px) rotate(4deg); animation-timing-function: ease-in} - 75% { transform: translate(0px, -1.5px); animation-timing-function: ease } - 100% { transform: translate(0px, 0px); animation-timing-function: ease-in} -} - -@include css-animated-emote(SMUG, true) { - @include emote-animation(200ms, 5) { - 0% { transform: translate(0px, 0px); } - 50% { transform: translate(0px, 3px); } - 100% { transform: translate(0px, 0px); } - } -} - -.chat-emote-SMUG { - animation: SMUG-anim 900ms 1; - - .generify-container.fast & { - animation-duration: 450ms; - } - - .generify-container.slow & { - animation-duration: 1.8s; - } - - &:hover { - animation: SMUG-anim-hover 300ms infinite; - - .generify-container.fast & { - animation-duration: 150ms; - } - - .generify-container.slow & { - animation-duration: 600ms; - } - } -} - -@keyframes SMUG-anim { - 0% { transform: translate(0px, 0px); } - 10% { transform: translate(0px, -3px); } - 20% { transform: translate(0px, 0px); } - 30% { transform: translate(0px, 0px); } - 40% { transform: translate(0px, -3px); } - 50% { transform: translate(0px, 0px); } - 60% { transform: translate(0px, 0px); } - 70% { transform: translate(0px, -2px); } - 77% { transform: translate(0px, -3px); } - 84% { transform: translate(0px, -2px); } - 91% { transform: translate(0px, 0px); } -} - -@keyframes SMUG-anim-hover { - 0% { transform: translate(0px, 0px); } - 35% { transform: translate(0px, -3px); } - 70% { transform: translate(0px, 0px); } -} - -@mixin MAGE() { - .text > .generify-container:has(+ .generify-container.generify-emote-MAGE[data-modifiers~="mirror"]) { - @content; - } - .text > .generify-container.generify-emote-MAGE:not([data-modifiers~="mirror"]) + .generify-container { - @content; - } -} - -@include MAGE() { - margin-right: 0; - margin-left: 0; - animation: PsiStorm-flicker-anim 2s 3; - - &::after, &::before { - content: ""; - pointer-events: none; - position: absolute; - top: 50; - left: 50%; - margin: -20px -28px; - width: 64px; - height: 48px; - } - - &::before { - opacity: 0.8; - mix-blend-mode: screen; - background-color: #00a; - mask-image: url("/assets/emotes/modifiers/psistorm-mask.png"); - mask-size: 896px 48px; - mask-position: 64px 0px; - mask-repeat: no-repeat; - animation: PsiStorm-mask-anim 2s 3; - animation-timing-function: step-start; - z-index: 2; - } - - &::after { - background-image: url("/assets/emotes/modifiers/psistorm.png"); - background-size: 896px 48px; - background-position-x: 64px; - background-repeat: no-repeat; - animation: PsiStorm-anim 2s 3; - animation-timing-function: step-start; - z-index: 3; - filter: brightness(120%); - } - - @at-root .pref-animateforever &, &:hover { - animation-iteration-count: infinite; - } - - @at-root .pref-animateforever &::before, &:hover::before { - animation-iteration-count: infinite; - } - - @at-root .pref-animateforever &::after, &:hover::after { - animation-iteration-count: infinite; - } -} - -@keyframes PsiStorm-flicker-anim { - $frames: 28; - @for $i from 0 to $frames { - #{100 / $frames * $i * 1%} { - transform: translate3d(random(3) * 1px, random(3) * 1px, random(3) * 1px) scale((102 - random(4)) / 100); - filter: brightness(140 - random(80) * 1%); - } - } - 100% { - transform: translate3d(random(3) * 1px, random(3) * 1px, random(3) * 1px) scale((102 - random(4)) / 100); - filter: brightness(1); - } -} - -@keyframes PsiStorm-anim { - $frames: 14; - $width: 896px; - @for $i from 0 to $frames { - #{100 / $frames * $i * 1%} { - background-position-x: -$width / $frames * $i; - } - } - 100% { - background-position-x: 0px; - } -} - -@keyframes PsiStorm-mask-anim { - $frames: 14; - $width: 896px; - @for $i from 0 to $frames { - #{100 / $frames * $i * 1%} { - transform: translate3d(random(20) / 10px, random(20) / 10px, random(20) / 10px); - mask-position: -$width / $frames * $i 0px; - } - } - 100% { - transform: translate3d(random(20) / 10px, random(20) / 10px, random(20) / 10px); - mask-position: 0px 0px; - } -} - -@include sprite-animation( - $file-name: COGGERS, - $frame-count: 60, - $sprite-width: 3120px, - $sprite-height: 31px, - $animation-duration: 800ms, - $iteration-count: 2 -); - -@include sprite-animation( - $file-name: PepoDance, - $frame-count: 12, - $sprite-width: 1032px, - $sprite-height: 32px, - $animation-duration: 600ms, - $iteration-count: 5 -); - -@include sprite-animation( - $file-name: VroomVroom, - $frame-count: 117, - $sprite-width: 11700px, - $sprite-height: 32px, - $animation-duration: 5000ms, - $iteration-count: 1 -); - -@include sprite-animation( - $file-name: WAG, - $frame-count: 2, - $sprite-width: 96px, - $sprite-height: 32px, - $animation-duration: 500ms, - $iteration-count: 10 -); - -@include sprite-animation( - $file-name: HACKER, - $frame-count: 2, - $sprite-width: 96px, - $sprite-height: 34px, - $animation-duration: 400ms, - $iteration-count: 10, - $can-animate-forever: true -); - -@include sprite-animation( - $file-name: FeelsPepoMan, - $frame-count: 5, - $sprite-width: 150px, - $sprite-height: 32px, - $animation-duration: 500ms, - $iteration-count: 7, - $can-animate-forever: true -); - -@include sprite-animation( - $file-name: monkaSteer, - $frame-count: 24, - $sprite-width: 888px, - $sprite-height: 32px, - $animation-duration: 2040ms, - $iteration-count: 3, - $can-animate-forever: true -); - -@include sprite-animation( - $file-name: NODDERS, - $frame-count: 4, - $sprite-width: 176px, - $sprite-height: 28px, - $animation-duration: 400ms, - $iteration-count: 13, - $can-animate-forever: true -); - -@include sprite-animation( - $file-name: NOPERS, - $frame-count: 8, - $sprite-width: 336px, - $sprite-height: 28px, - $animation-duration: 800ms, - $iteration-count: 7, - $can-animate-forever: true, -); - -@include sprite-animation( - $file-name: PeepoRun, - $frame-count: 6, - $sprite-width: 180px, - $sprite-height: 32px, - $animation-duration: 600ms, - $iteration-count: 10, - $can-animate-forever: true -); - -@include sprite-animation( - $file-name: SURPRISE, - $frame-count: 9, - $sprite-width: 261px, - $sprite-height: 31px, - $animation-duration: 900ms, - $iteration-count: 7, - $can-animate-forever: true -); - -@include sprite-animation( - $file-name: monkaMEGA, - $frame-count: 17, - $sprite-width: 578px, - $sprite-height: 32px, - $animation-duration: 850ms, - $iteration-count: 5, - $can-animate-forever: true -); - -@include sprite-animation( - $file-name: NOM, - $frame-count: 38, - $sprite-width: 1786px, - $sprite-height: 32px, - $animation-duration: 2000ms, - $animation-direction: alternate, - $iteration-count: 2, - $end-on-frame: 1, - $can-animate-forever: true -); - -@include sprite-animation( - $file-name: PepoSleep, - $frame-count: 48, - $sprite-width: 1680px, - $sprite-height: 32px, - $animation-duration: 12900ms, - $iteration-count: 2, - $can-animate-forever: true -); - -@include sprite-animation( - $file-name: PepoWant, - $frame-count: 150, - $sprite-width: 7050px, - $sprite-height: 32px, - $animation-duration: 2.5s, - $animation-direction: alternate, - $iteration-count: 2, - $end-on-frame: 1, - $can-animate-forever: true -); - -@include sprite-animation( - $file-name: TIMID, - $frame-count: 75, - $sprite-width: 2400px, - $sprite-height: 32px, - $animation-duration: 2.5s, - $animation-direction: alternate, - $iteration-count: 1, - $end-on-frame: 1, - $can-animate-forever: true -); - -@include sprite-animation( - $file-name: AngelThump, - $frame-count: 120, - $sprite-width: 12480px, - $sprite-height: 32px, - $animation-duration: 4s, - $animation-direction: alternate, - $iteration-count: 1, - $end-on-last-frame: true, - $can-animate-forever: true -); - -@include sprite-animation( - $file-name: YEE, - $frame-count: 45, - $sprite-width: 2520px, - $sprite-height: 32px, - $animation-duration: 1.5s, - $iteration-count: 3, - $end-on-last-frame: true, - $can-animate-forever: true -); - -@include sprite-animation( - $file-name: DaFeels, - $frame-count: 120, - $sprite-width: 5760px, - $sprite-height: 32px, - $animation-duration: 4s, - $iteration-count: 1, - $end-on-last-frame: true, - $can-animate-forever: true -); - -@include sprite-animation( - $file-name: PEPE, - $frame-count: 150, - $sprite-width: 9000px, - $sprite-height: 32px, - $animation-duration: 5s, - $animation-direction: alternate, - $iteration-count: 1, - $end-on-last-frame: true, - $can-animate-forever: true -); - -@include sprite-animation( - $file-name: Gigachad, - $frame-count: 42, - $sprite-width: 6006px, - $sprite-height: 32px, - $animation-duration: 4.2s, - $iteration-count: 1, - $end-on-last-frame: true, -); - @include css-animated-emote(PepoTurkey) { transform-style: preserve-3d; transform-origin: bottom center; diff --git a/assets/chat/css/generify.scss b/assets/chat/css/generify.scss index dc3435e0..c0df061d 100644 --- a/assets/chat/css/generify.scss +++ b/assets/chat/css/generify.scss @@ -763,7 +763,7 @@ &:before, &:after { content: ""; - background-image: image-set(url("/assets/emotes/modifiers/angel-october-4x.png") 4x, url("/assets/emotes/modifiers/angel-october-2x.png") 2x, url("/assets/emotes/modifiers/angel-october-1x.png") 1x); + background-image: image-set(url("/assets/emotes/modifiers/angel-4x.png") 4x, url("/assets/emotes/modifiers/angel-2x.png") 2x, url("/assets/emotes/modifiers/angel-1x.png") 1x); height: 27px; width: 65px; position: absolute; diff --git a/assets/chat/js/const.js b/assets/chat/js/const.js index 4ba4395c..4953a5c5 100644 --- a/assets/chat/js/const.js +++ b/assets/chat/js/const.js @@ -164,7 +164,7 @@ const TAGS = [ "weeb", ]; -const SEASON = "october"; +const SEASON = "default"; module.exports = { KEYCODES, diff --git a/assets/emotes/emoticons-animated/2x/AngelThump.png b/assets/emotes/emoticons-animated/2x/AngelThump.png deleted file mode 100644 index 5b3a1255..00000000 Binary files a/assets/emotes/emoticons-animated/2x/AngelThump.png and /dev/null differ diff --git a/assets/emotes/emoticons-animated/2x/ApeHands.png b/assets/emotes/emoticons-animated/2x/ApeHands.png new file mode 100644 index 00000000..0d63bca5 Binary files /dev/null and b/assets/emotes/emoticons-animated/2x/ApeHands.png differ diff --git a/assets/emotes/emoticons-animated/2x/COGGERS.png b/assets/emotes/emoticons-animated/2x/COGGERS.png deleted file mode 100644 index 61135c8f..00000000 Binary files a/assets/emotes/emoticons-animated/2x/COGGERS.png and /dev/null differ diff --git a/assets/emotes/emoticons-animated/2x/DaFeels.png b/assets/emotes/emoticons-animated/2x/DaFeels.png deleted file mode 100644 index 0756e9df..00000000 Binary files a/assets/emotes/emoticons-animated/2x/DaFeels.png and /dev/null differ diff --git a/assets/emotes/emoticons-animated/2x/FeelsPepoMan.png b/assets/emotes/emoticons-animated/2x/FeelsPepoMan.png deleted file mode 100644 index f5ab008f..00000000 Binary files a/assets/emotes/emoticons-animated/2x/FeelsPepoMan.png and /dev/null differ diff --git a/assets/emotes/emoticons-animated/2x/Gigachad.png b/assets/emotes/emoticons-animated/2x/Gigachad.png index 0279e6be..e894e597 100644 Binary files a/assets/emotes/emoticons-animated/2x/Gigachad.png and b/assets/emotes/emoticons-animated/2x/Gigachad.png differ diff --git a/assets/emotes/emoticons-animated/2x/HACKER.png b/assets/emotes/emoticons-animated/2x/HACKER.png index df926bd3..fd1749ea 100644 Binary files a/assets/emotes/emoticons-animated/2x/HACKER.png and b/assets/emotes/emoticons-animated/2x/HACKER.png differ diff --git a/assets/emotes/emoticons-animated/2x/MiyanoHype.png b/assets/emotes/emoticons-animated/2x/MiyanoHype.png index 703b486a..02bd98fe 100644 Binary files a/assets/emotes/emoticons-animated/2x/MiyanoHype.png and b/assets/emotes/emoticons-animated/2x/MiyanoHype.png differ diff --git a/assets/emotes/emoticons-animated/2x/NODDERS.png b/assets/emotes/emoticons-animated/2x/NODDERS.png index afecf9d0..b3adc243 100644 Binary files a/assets/emotes/emoticons-animated/2x/NODDERS.png and b/assets/emotes/emoticons-animated/2x/NODDERS.png differ diff --git a/assets/emotes/emoticons-animated/2x/NOM.png b/assets/emotes/emoticons-animated/2x/NOM.png deleted file mode 100644 index d3175911..00000000 Binary files a/assets/emotes/emoticons-animated/2x/NOM.png and /dev/null differ diff --git a/assets/emotes/emoticons-animated/2x/NOPERS.png b/assets/emotes/emoticons-animated/2x/NOPERS.png index dd6aae40..19f4f97a 100644 Binary files a/assets/emotes/emoticons-animated/2x/NOPERS.png and b/assets/emotes/emoticons-animated/2x/NOPERS.png differ diff --git a/assets/emotes/emoticons-animated/2x/PEPE.png b/assets/emotes/emoticons-animated/2x/PEPE.png deleted file mode 100644 index 604c5c52..00000000 Binary files a/assets/emotes/emoticons-animated/2x/PEPE.png and /dev/null differ diff --git a/assets/emotes/emoticons-animated/2x/PeepoRun.png b/assets/emotes/emoticons-animated/2x/PeepoRun.png index 9c763ed1..164949b8 100644 Binary files a/assets/emotes/emoticons-animated/2x/PeepoRun.png and b/assets/emotes/emoticons-animated/2x/PeepoRun.png differ diff --git a/assets/emotes/emoticons-animated/2x/PepoCopter.png b/assets/emotes/emoticons-animated/2x/PepoCopter.png index b360b56a..f75c91a4 100644 Binary files a/assets/emotes/emoticons-animated/2x/PepoCopter.png and b/assets/emotes/emoticons-animated/2x/PepoCopter.png differ diff --git a/assets/emotes/emoticons-animated/2x/PepoDance.png b/assets/emotes/emoticons-animated/2x/PepoDance.png deleted file mode 100644 index fb9de1e6..00000000 Binary files a/assets/emotes/emoticons-animated/2x/PepoDance.png and /dev/null differ diff --git a/assets/emotes/emoticons-animated/2x/PepoSleep.png b/assets/emotes/emoticons-animated/2x/PepoSleep.png deleted file mode 100644 index 7dee3ef3..00000000 Binary files a/assets/emotes/emoticons-animated/2x/PepoSleep.png and /dev/null differ diff --git a/assets/emotes/emoticons-animated/2x/SHUSH.png b/assets/emotes/emoticons-animated/2x/SHUSH.png index d7d5a1ac..e898b140 100644 Binary files a/assets/emotes/emoticons-animated/2x/SHUSH.png and b/assets/emotes/emoticons-animated/2x/SHUSH.png differ diff --git a/assets/emotes/emoticons-animated/2x/SURPRISE.png b/assets/emotes/emoticons-animated/2x/SURPRISE.png deleted file mode 100644 index 5bc83199..00000000 Binary files a/assets/emotes/emoticons-animated/2x/SURPRISE.png and /dev/null differ diff --git a/assets/emotes/emoticons-animated/2x/TIMID.png b/assets/emotes/emoticons-animated/2x/TIMID.png deleted file mode 100644 index 259622fc..00000000 Binary files a/assets/emotes/emoticons-animated/2x/TIMID.png and /dev/null differ diff --git a/assets/emotes/emoticons-animated/2x/VroomVroom.png b/assets/emotes/emoticons-animated/2x/VroomVroom.png index 26cebf37..8dfd552f 100644 Binary files a/assets/emotes/emoticons-animated/2x/VroomVroom.png and b/assets/emotes/emoticons-animated/2x/VroomVroom.png differ diff --git a/assets/emotes/emoticons-animated/2x/WAG.png b/assets/emotes/emoticons-animated/2x/WAG.png new file mode 100644 index 00000000..86eed34c Binary files /dev/null and b/assets/emotes/emoticons-animated/2x/WAG.png differ diff --git a/assets/emotes/emoticons-animated/2x/YEE.png b/assets/emotes/emoticons-animated/2x/YEE.png deleted file mode 100644 index 88afa3d9..00000000 Binary files a/assets/emotes/emoticons-animated/2x/YEE.png and /dev/null differ diff --git a/assets/emotes/emoticons-animated/2x/monkaMEGA.png b/assets/emotes/emoticons-animated/2x/monkaMEGA.png deleted file mode 100644 index 91326fb3..00000000 Binary files a/assets/emotes/emoticons-animated/2x/monkaMEGA.png and /dev/null differ diff --git a/assets/emotes/emoticons-animated/2x/monkaSteer.png b/assets/emotes/emoticons-animated/2x/monkaSteer.png deleted file mode 100644 index f754b459..00000000 Binary files a/assets/emotes/emoticons-animated/2x/monkaSteer.png and /dev/null differ diff --git a/assets/emotes/emoticons-animated/4x/AngelThump.png b/assets/emotes/emoticons-animated/4x/AngelThump.png deleted file mode 100644 index c19b8aaf..00000000 Binary files a/assets/emotes/emoticons-animated/4x/AngelThump.png and /dev/null differ diff --git a/assets/emotes/emoticons-animated/4x/ApeHands.png b/assets/emotes/emoticons-animated/4x/ApeHands.png new file mode 100644 index 00000000..25c2f1b8 Binary files /dev/null and b/assets/emotes/emoticons-animated/4x/ApeHands.png differ diff --git a/assets/emotes/emoticons-animated/4x/COGGERS.png b/assets/emotes/emoticons-animated/4x/COGGERS.png deleted file mode 100644 index d20e4912..00000000 Binary files a/assets/emotes/emoticons-animated/4x/COGGERS.png and /dev/null differ diff --git a/assets/emotes/emoticons-animated/4x/DaFeels.png b/assets/emotes/emoticons-animated/4x/DaFeels.png deleted file mode 100644 index 3621d571..00000000 Binary files a/assets/emotes/emoticons-animated/4x/DaFeels.png and /dev/null differ diff --git a/assets/emotes/emoticons-animated/4x/FeelsPepoMan.png b/assets/emotes/emoticons-animated/4x/FeelsPepoMan.png deleted file mode 100644 index dc381ee4..00000000 Binary files a/assets/emotes/emoticons-animated/4x/FeelsPepoMan.png and /dev/null differ diff --git a/assets/emotes/emoticons-animated/4x/Gigachad.png b/assets/emotes/emoticons-animated/4x/Gigachad.png index 1e275900..641ce6dc 100644 Binary files a/assets/emotes/emoticons-animated/4x/Gigachad.png and b/assets/emotes/emoticons-animated/4x/Gigachad.png differ diff --git a/assets/emotes/emoticons-animated/4x/HACKER.png b/assets/emotes/emoticons-animated/4x/HACKER.png index f613e671..d98b0fbc 100644 Binary files a/assets/emotes/emoticons-animated/4x/HACKER.png and b/assets/emotes/emoticons-animated/4x/HACKER.png differ diff --git a/assets/emotes/emoticons-animated/4x/MiyanoHype.png b/assets/emotes/emoticons-animated/4x/MiyanoHype.png index 8a71107b..ecb845e4 100644 Binary files a/assets/emotes/emoticons-animated/4x/MiyanoHype.png and b/assets/emotes/emoticons-animated/4x/MiyanoHype.png differ diff --git a/assets/emotes/emoticons-animated/4x/NODDERS.png b/assets/emotes/emoticons-animated/4x/NODDERS.png index a9cf772f..f868c873 100644 Binary files a/assets/emotes/emoticons-animated/4x/NODDERS.png and b/assets/emotes/emoticons-animated/4x/NODDERS.png differ diff --git a/assets/emotes/emoticons-animated/4x/NOM.png b/assets/emotes/emoticons-animated/4x/NOM.png deleted file mode 100644 index db820807..00000000 Binary files a/assets/emotes/emoticons-animated/4x/NOM.png and /dev/null differ diff --git a/assets/emotes/emoticons-animated/4x/NOPERS.png b/assets/emotes/emoticons-animated/4x/NOPERS.png index 807b91a8..a5d78ffb 100644 Binary files a/assets/emotes/emoticons-animated/4x/NOPERS.png and b/assets/emotes/emoticons-animated/4x/NOPERS.png differ diff --git a/assets/emotes/emoticons-animated/4x/PEPE.png b/assets/emotes/emoticons-animated/4x/PEPE.png deleted file mode 100644 index 602bf206..00000000 Binary files a/assets/emotes/emoticons-animated/4x/PEPE.png and /dev/null differ diff --git a/assets/emotes/emoticons-animated/4x/PeepoRun.png b/assets/emotes/emoticons-animated/4x/PeepoRun.png index aa1658ab..2286c3ab 100644 Binary files a/assets/emotes/emoticons-animated/4x/PeepoRun.png and b/assets/emotes/emoticons-animated/4x/PeepoRun.png differ diff --git a/assets/emotes/emoticons-animated/4x/PepoCopter.png b/assets/emotes/emoticons-animated/4x/PepoCopter.png index d6dde0ad..5c00f44c 100644 Binary files a/assets/emotes/emoticons-animated/4x/PepoCopter.png and b/assets/emotes/emoticons-animated/4x/PepoCopter.png differ diff --git a/assets/emotes/emoticons-animated/4x/PepoDance.png b/assets/emotes/emoticons-animated/4x/PepoDance.png deleted file mode 100644 index 0c73a877..00000000 Binary files a/assets/emotes/emoticons-animated/4x/PepoDance.png and /dev/null differ diff --git a/assets/emotes/emoticons-animated/4x/PepoSleep.png b/assets/emotes/emoticons-animated/4x/PepoSleep.png deleted file mode 100644 index b6629ef0..00000000 Binary files a/assets/emotes/emoticons-animated/4x/PepoSleep.png and /dev/null differ diff --git a/assets/emotes/emoticons-animated/4x/SHUSH.png b/assets/emotes/emoticons-animated/4x/SHUSH.png index 168ded93..76a8fee0 100644 Binary files a/assets/emotes/emoticons-animated/4x/SHUSH.png and b/assets/emotes/emoticons-animated/4x/SHUSH.png differ diff --git a/assets/emotes/emoticons-animated/4x/SURPRISE.png b/assets/emotes/emoticons-animated/4x/SURPRISE.png deleted file mode 100644 index 3f178f17..00000000 Binary files a/assets/emotes/emoticons-animated/4x/SURPRISE.png and /dev/null differ diff --git a/assets/emotes/emoticons-animated/4x/TIMID.png b/assets/emotes/emoticons-animated/4x/TIMID.png deleted file mode 100644 index 8bdf7580..00000000 Binary files a/assets/emotes/emoticons-animated/4x/TIMID.png and /dev/null differ diff --git a/assets/emotes/emoticons-animated/4x/VroomVroom.png b/assets/emotes/emoticons-animated/4x/VroomVroom.png index 5ced1833..b318d46d 100644 Binary files a/assets/emotes/emoticons-animated/4x/VroomVroom.png and b/assets/emotes/emoticons-animated/4x/VroomVroom.png differ diff --git a/assets/emotes/emoticons-animated/4x/WAG.png b/assets/emotes/emoticons-animated/4x/WAG.png new file mode 100644 index 00000000..146c83a6 Binary files /dev/null and b/assets/emotes/emoticons-animated/4x/WAG.png differ diff --git a/assets/emotes/emoticons-animated/4x/YEE.png b/assets/emotes/emoticons-animated/4x/YEE.png deleted file mode 100644 index a025ac53..00000000 Binary files a/assets/emotes/emoticons-animated/4x/YEE.png and /dev/null differ diff --git a/assets/emotes/emoticons-animated/4x/monkaMEGA.png b/assets/emotes/emoticons-animated/4x/monkaMEGA.png deleted file mode 100644 index a7d53222..00000000 Binary files a/assets/emotes/emoticons-animated/4x/monkaMEGA.png and /dev/null differ diff --git a/assets/emotes/emoticons-animated/4x/monkaSteer.png b/assets/emotes/emoticons-animated/4x/monkaSteer.png deleted file mode 100644 index 1cb79d53..00000000 Binary files a/assets/emotes/emoticons-animated/4x/monkaSteer.png and /dev/null differ diff --git a/assets/emotes/emoticons-animated/AngelThump.png b/assets/emotes/emoticons-animated/AngelThump.png deleted file mode 100644 index 47a10982..00000000 Binary files a/assets/emotes/emoticons-animated/AngelThump.png and /dev/null differ diff --git a/assets/emotes/emoticons-animated/ApeHands.png b/assets/emotes/emoticons-animated/ApeHands.png new file mode 100644 index 00000000..a37323ac Binary files /dev/null and b/assets/emotes/emoticons-animated/ApeHands.png differ diff --git a/assets/emotes/emoticons-animated/COGGERS.png b/assets/emotes/emoticons-animated/COGGERS.png old mode 100644 new mode 100755 index a5f3ad49..e78b5a08 Binary files a/assets/emotes/emoticons-animated/COGGERS.png and b/assets/emotes/emoticons-animated/COGGERS.png differ diff --git a/assets/emotes/emoticons-animated/DaFeels.png b/assets/emotes/emoticons-animated/DaFeels.png deleted file mode 100644 index c0532ab6..00000000 Binary files a/assets/emotes/emoticons-animated/DaFeels.png and /dev/null differ diff --git a/assets/emotes/emoticons-animated/FeelsPepoMan.png b/assets/emotes/emoticons-animated/FeelsPepoMan.png index 37dcec75..2f1b7a47 100644 Binary files a/assets/emotes/emoticons-animated/FeelsPepoMan.png and b/assets/emotes/emoticons-animated/FeelsPepoMan.png differ diff --git a/assets/emotes/emoticons-animated/Gigachad.png b/assets/emotes/emoticons-animated/Gigachad.png index a9e4997e..e06517ea 100644 Binary files a/assets/emotes/emoticons-animated/Gigachad.png and b/assets/emotes/emoticons-animated/Gigachad.png differ diff --git a/assets/emotes/emoticons-animated/HACKER.png b/assets/emotes/emoticons-animated/HACKER.png index 19c44e82..4eeb97cd 100644 Binary files a/assets/emotes/emoticons-animated/HACKER.png and b/assets/emotes/emoticons-animated/HACKER.png differ diff --git a/assets/emotes/emoticons-animated/MiyanoHype.png b/assets/emotes/emoticons-animated/MiyanoHype.png index 84be104c..0d73caeb 100644 Binary files a/assets/emotes/emoticons-animated/MiyanoHype.png and b/assets/emotes/emoticons-animated/MiyanoHype.png differ diff --git a/assets/emotes/emoticons-animated/NODDERS.png b/assets/emotes/emoticons-animated/NODDERS.png index a94f7091..0ae8e8c4 100644 Binary files a/assets/emotes/emoticons-animated/NODDERS.png and b/assets/emotes/emoticons-animated/NODDERS.png differ diff --git a/assets/emotes/emoticons-animated/NOM.png b/assets/emotes/emoticons-animated/NOM.png deleted file mode 100644 index 146e70ef..00000000 Binary files a/assets/emotes/emoticons-animated/NOM.png and /dev/null differ diff --git a/assets/emotes/emoticons-animated/NOPERS.png b/assets/emotes/emoticons-animated/NOPERS.png index f1c67653..3fac96d1 100644 Binary files a/assets/emotes/emoticons-animated/NOPERS.png and b/assets/emotes/emoticons-animated/NOPERS.png differ diff --git a/assets/emotes/emoticons-animated/PEPE.png b/assets/emotes/emoticons-animated/PEPE.png deleted file mode 100644 index f182cea9..00000000 Binary files a/assets/emotes/emoticons-animated/PEPE.png and /dev/null differ diff --git a/assets/emotes/emoticons-animated/PeepoRun.png b/assets/emotes/emoticons-animated/PeepoRun.png index c01f3c3c..6e2bff4d 100644 Binary files a/assets/emotes/emoticons-animated/PeepoRun.png and b/assets/emotes/emoticons-animated/PeepoRun.png differ diff --git a/assets/emotes/emoticons-animated/PepeJam.png b/assets/emotes/emoticons-animated/PepeJam.png index 2679dbbb..1d078c4f 100644 Binary files a/assets/emotes/emoticons-animated/PepeJam.png and b/assets/emotes/emoticons-animated/PepeJam.png differ diff --git a/assets/emotes/emoticons-animated/PepoCopter.png b/assets/emotes/emoticons-animated/PepoCopter.png index bced6be4..78746d7d 100644 Binary files a/assets/emotes/emoticons-animated/PepoCopter.png and b/assets/emotes/emoticons-animated/PepoCopter.png differ diff --git a/assets/emotes/emoticons-animated/PepoDance.png b/assets/emotes/emoticons-animated/PepoDance.png index 5733c64b..63027897 100644 Binary files a/assets/emotes/emoticons-animated/PepoDance.png and b/assets/emotes/emoticons-animated/PepoDance.png differ diff --git a/assets/emotes/emoticons-animated/PepoSleep.png b/assets/emotes/emoticons-animated/PepoSleep.png deleted file mode 100644 index 38c53b9f..00000000 Binary files a/assets/emotes/emoticons-animated/PepoSleep.png and /dev/null differ diff --git a/assets/emotes/emoticons-animated/SHUSH.png b/assets/emotes/emoticons-animated/SHUSH.png index b4666c9e..299a00f2 100644 Binary files a/assets/emotes/emoticons-animated/SHUSH.png and b/assets/emotes/emoticons-animated/SHUSH.png differ diff --git a/assets/emotes/emoticons-animated/SURPRISE.png b/assets/emotes/emoticons-animated/SURPRISE.png deleted file mode 100644 index 9ce0b9e5..00000000 Binary files a/assets/emotes/emoticons-animated/SURPRISE.png and /dev/null differ diff --git a/assets/emotes/emoticons-animated/TIMID.png b/assets/emotes/emoticons-animated/TIMID.png deleted file mode 100644 index 10989b68..00000000 Binary files a/assets/emotes/emoticons-animated/TIMID.png and /dev/null differ diff --git a/assets/emotes/emoticons-animated/VroomVroom.png b/assets/emotes/emoticons-animated/VroomVroom.png index 96870803..bef8dbff 100644 Binary files a/assets/emotes/emoticons-animated/VroomVroom.png and b/assets/emotes/emoticons-animated/VroomVroom.png differ diff --git a/assets/emotes/emoticons-animated/WAG.png b/assets/emotes/emoticons-animated/WAG.png index cc403db6..7af00058 100644 Binary files a/assets/emotes/emoticons-animated/WAG.png and b/assets/emotes/emoticons-animated/WAG.png differ diff --git a/assets/emotes/emoticons-animated/YEE.png b/assets/emotes/emoticons-animated/YEE.png deleted file mode 100644 index 11e76be1..00000000 Binary files a/assets/emotes/emoticons-animated/YEE.png and /dev/null differ diff --git a/assets/emotes/emoticons-animated/gif/2x/COGGERS.gif b/assets/emotes/emoticons-animated/gif/2x/COGGERS.gif new file mode 100644 index 00000000..31c5a064 Binary files /dev/null and b/assets/emotes/emoticons-animated/gif/2x/COGGERS.gif differ diff --git a/assets/emotes/emoticons-animated/gif/2x/FeelsPepoMan.gif b/assets/emotes/emoticons-animated/gif/2x/FeelsPepoMan.gif new file mode 100644 index 00000000..4f8c70d4 Binary files /dev/null and b/assets/emotes/emoticons-animated/gif/2x/FeelsPepoMan.gif differ diff --git a/assets/emotes/emoticons-animated/gif/2x/HACKER.gif b/assets/emotes/emoticons-animated/gif/2x/HACKER.gif new file mode 100644 index 00000000..deacebea Binary files /dev/null and b/assets/emotes/emoticons-animated/gif/2x/HACKER.gif differ diff --git a/assets/emotes/emoticons-animated/gif/2x/NODDERS.gif b/assets/emotes/emoticons-animated/gif/2x/NODDERS.gif new file mode 100644 index 00000000..5fcf0717 Binary files /dev/null and b/assets/emotes/emoticons-animated/gif/2x/NODDERS.gif differ diff --git a/assets/emotes/emoticons-animated/gif/2x/NOPERS.gif b/assets/emotes/emoticons-animated/gif/2x/NOPERS.gif new file mode 100644 index 00000000..fbeabd0b Binary files /dev/null and b/assets/emotes/emoticons-animated/gif/2x/NOPERS.gif differ diff --git a/assets/emotes/emoticons-animated/gif/2x/WAG.gif b/assets/emotes/emoticons-animated/gif/2x/WAG.gif new file mode 100644 index 00000000..ce991d06 Binary files /dev/null and b/assets/emotes/emoticons-animated/gif/2x/WAG.gif differ diff --git a/assets/emotes/emoticons-animated/gif/2x/monkaSteer.png b/assets/emotes/emoticons-animated/gif/2x/monkaSteer.png new file mode 100644 index 00000000..9aae19a0 Binary files /dev/null and b/assets/emotes/emoticons-animated/gif/2x/monkaSteer.png differ diff --git a/assets/emotes/emoticons-animated/gif/4x/COGGERS.gif b/assets/emotes/emoticons-animated/gif/4x/COGGERS.gif new file mode 100644 index 00000000..31c5a064 Binary files /dev/null and b/assets/emotes/emoticons-animated/gif/4x/COGGERS.gif differ diff --git a/assets/emotes/emoticons-animated/gif/4x/HACKER.gif b/assets/emotes/emoticons-animated/gif/4x/HACKER.gif new file mode 100644 index 00000000..49e98abc Binary files /dev/null and b/assets/emotes/emoticons-animated/gif/4x/HACKER.gif differ diff --git a/assets/emotes/emoticons-animated/gif/4x/NODDERS.gif b/assets/emotes/emoticons-animated/gif/4x/NODDERS.gif new file mode 100644 index 00000000..398da9e0 Binary files /dev/null and b/assets/emotes/emoticons-animated/gif/4x/NODDERS.gif differ diff --git a/assets/emotes/emoticons-animated/gif/4x/NOPERS.gif b/assets/emotes/emoticons-animated/gif/4x/NOPERS.gif new file mode 100644 index 00000000..58b83f0e Binary files /dev/null and b/assets/emotes/emoticons-animated/gif/4x/NOPERS.gif differ diff --git a/assets/emotes/emoticons-animated/gif/4x/PeepoRun.gif b/assets/emotes/emoticons-animated/gif/4x/PeepoRun.gif new file mode 100644 index 00000000..9e60dc1b Binary files /dev/null and b/assets/emotes/emoticons-animated/gif/4x/PeepoRun.gif differ diff --git a/assets/emotes/emoticons-animated/gif/4x/PepeJam.gif b/assets/emotes/emoticons-animated/gif/4x/PepeJam.gif new file mode 100644 index 00000000..ed75e559 Binary files /dev/null and b/assets/emotes/emoticons-animated/gif/4x/PepeJam.gif differ diff --git a/assets/emotes/emoticons-animated/gif/4x/PepoDance.gif b/assets/emotes/emoticons-animated/gif/4x/PepoDance.gif new file mode 100644 index 00000000..af4ab24f Binary files /dev/null and b/assets/emotes/emoticons-animated/gif/4x/PepoDance.gif differ diff --git a/assets/emotes/emoticons-animated/gif/REE.gif b/assets/emotes/emoticons-animated/gif/4x/REE.gif similarity index 100% rename from assets/emotes/emoticons-animated/gif/REE.gif rename to assets/emotes/emoticons-animated/gif/4x/REE.gif diff --git a/assets/emotes/emoticons-animated/gif/4x/VroomVroom.gif b/assets/emotes/emoticons-animated/gif/4x/VroomVroom.gif new file mode 100644 index 00000000..db1b94ef Binary files /dev/null and b/assets/emotes/emoticons-animated/gif/4x/VroomVroom.gif differ diff --git a/assets/emotes/emoticons-animated/gif/4x/WAG.gif b/assets/emotes/emoticons-animated/gif/4x/WAG.gif new file mode 100644 index 00000000..70616317 Binary files /dev/null and b/assets/emotes/emoticons-animated/gif/4x/WAG.gif differ diff --git a/assets/emotes/emoticons-animated/gif/4x/monkaSteer.gif b/assets/emotes/emoticons-animated/gif/4x/monkaSteer.gif new file mode 100644 index 00000000..6050ccc8 Binary files /dev/null and b/assets/emotes/emoticons-animated/gif/4x/monkaSteer.gif differ diff --git a/assets/emotes/emoticons-animated/gif/COGGERS.gif b/assets/emotes/emoticons-animated/gif/COGGERS.gif deleted file mode 100644 index a72425d9..00000000 Binary files a/assets/emotes/emoticons-animated/gif/COGGERS.gif and /dev/null differ diff --git a/assets/emotes/emoticons-animated/gif/HACKER.gif b/assets/emotes/emoticons-animated/gif/HACKER.gif new file mode 100644 index 00000000..b03121be Binary files /dev/null and b/assets/emotes/emoticons-animated/gif/HACKER.gif differ diff --git a/assets/emotes/emoticons-animated/gif/MiyanoHype.gif b/assets/emotes/emoticons-animated/gif/MiyanoHype.gif new file mode 100644 index 00000000..049c5b84 Binary files /dev/null and b/assets/emotes/emoticons-animated/gif/MiyanoHype.gif differ diff --git a/assets/emotes/emoticons-animated/gif/NODDERS.gif b/assets/emotes/emoticons-animated/gif/NODDERS.gif new file mode 100644 index 00000000..5d9b6534 Binary files /dev/null and b/assets/emotes/emoticons-animated/gif/NODDERS.gif differ diff --git a/assets/emotes/emoticons-animated/gif/NOM.gif b/assets/emotes/emoticons-animated/gif/NOM.gif deleted file mode 100644 index d2f525ab..00000000 Binary files a/assets/emotes/emoticons-animated/gif/NOM.gif and /dev/null differ diff --git a/assets/emotes/emoticons-animated/gif/NOPERS.gif b/assets/emotes/emoticons-animated/gif/NOPERS.gif new file mode 100644 index 00000000..c7e4544a Binary files /dev/null and b/assets/emotes/emoticons-animated/gif/NOPERS.gif differ diff --git a/assets/emotes/emoticons-animated/gif/PeepoRun.gif b/assets/emotes/emoticons-animated/gif/PeepoRun.gif new file mode 100644 index 00000000..a1046e57 Binary files /dev/null and b/assets/emotes/emoticons-animated/gif/PeepoRun.gif differ diff --git a/assets/emotes/emoticons-animated/gif/SURPRISE.gif b/assets/emotes/emoticons-animated/gif/SURPRISE.gif deleted file mode 100644 index 3a32cd28..00000000 Binary files a/assets/emotes/emoticons-animated/gif/SURPRISE.gif and /dev/null differ diff --git a/assets/emotes/emoticons-animated/gif/VroomVroom.gif b/assets/emotes/emoticons-animated/gif/VroomVroom.gif deleted file mode 100644 index 01d5b862..00000000 Binary files a/assets/emotes/emoticons-animated/gif/VroomVroom.gif and /dev/null differ diff --git a/assets/emotes/emoticons-animated/gif/WAG.gif b/assets/emotes/emoticons-animated/gif/WAG.gif new file mode 100644 index 00000000..c717603b Binary files /dev/null and b/assets/emotes/emoticons-animated/gif/WAG.gif differ diff --git a/assets/emotes/emoticons-animated/gif/monkaMEGA.gif b/assets/emotes/emoticons-animated/gif/monkaMEGA.gif deleted file mode 100644 index 81bf3751..00000000 Binary files a/assets/emotes/emoticons-animated/gif/monkaMEGA.gif and /dev/null differ diff --git a/assets/emotes/emoticons-animated/gif/monkaSteer.gif b/assets/emotes/emoticons-animated/gif/monkaSteer.gif new file mode 100644 index 00000000..bbfab501 Binary files /dev/null and b/assets/emotes/emoticons-animated/gif/monkaSteer.gif differ diff --git a/assets/emotes/emoticons-animated/monkaMEGA.png b/assets/emotes/emoticons-animated/monkaMEGA.png deleted file mode 100644 index c8c81828..00000000 Binary files a/assets/emotes/emoticons-animated/monkaMEGA.png and /dev/null differ diff --git a/assets/emotes/emoticons-animated/monkaSteer.png b/assets/emotes/emoticons-animated/monkaSteer.png index 4d0127fe..12df5233 100644 Binary files a/assets/emotes/emoticons-animated/monkaSteer.png and b/assets/emotes/emoticons-animated/monkaSteer.png differ diff --git a/assets/emotes/emoticons/2x/4Head.png b/assets/emotes/emoticons/2x/4Head.png index c700b997..5841baf5 100644 Binary files a/assets/emotes/emoticons/2x/4Head.png and b/assets/emotes/emoticons/2x/4Head.png differ diff --git a/assets/emotes/emoticons/2x/4U.png b/assets/emotes/emoticons/2x/4U.png index 46fc939b..4a28306d 100644 Binary files a/assets/emotes/emoticons/2x/4U.png and b/assets/emotes/emoticons/2x/4U.png differ diff --git a/assets/emotes/emoticons/2x/AOCFace.png b/assets/emotes/emoticons/2x/AOCFace.png index a61c61c3..5440923c 100644 Binary files a/assets/emotes/emoticons/2x/AOCFace.png and b/assets/emotes/emoticons/2x/AOCFace.png differ diff --git a/assets/emotes/emoticons/2x/AYAYA.png b/assets/emotes/emoticons/2x/AYAYA.png index deb6c11b..def6e23f 100644 Binary files a/assets/emotes/emoticons/2x/AYAYA.png and b/assets/emotes/emoticons/2x/AYAYA.png differ diff --git a/assets/emotes/emoticons/2x/AngelThump.png b/assets/emotes/emoticons/2x/AngelThump.png new file mode 100644 index 00000000..3b9bbe2a Binary files /dev/null and b/assets/emotes/emoticons/2x/AngelThump.png differ diff --git a/assets/emotes/emoticons/2x/ApeHands.png b/assets/emotes/emoticons/2x/ApeHands.png index 90b09690..57aaf348 100644 Binary files a/assets/emotes/emoticons/2x/ApeHands.png and b/assets/emotes/emoticons/2x/ApeHands.png differ diff --git a/assets/emotes/emoticons/2x/BOGGED.png b/assets/emotes/emoticons/2x/BOGGED.png index 9d6d4784..0a163eb1 100644 Binary files a/assets/emotes/emoticons/2x/BOGGED.png and b/assets/emotes/emoticons/2x/BOGGED.png differ diff --git a/assets/emotes/emoticons/2x/BasedGod.png b/assets/emotes/emoticons/2x/BasedGod.png index 8349f138..756f9d9a 100644 Binary files a/assets/emotes/emoticons/2x/BasedGod.png and b/assets/emotes/emoticons/2x/BasedGod.png differ diff --git a/assets/emotes/emoticons/2x/BibleThump.png b/assets/emotes/emoticons/2x/BibleThump.png new file mode 100644 index 00000000..6129b46d Binary files /dev/null and b/assets/emotes/emoticons/2x/BibleThump.png differ diff --git a/assets/emotes/emoticons/2x/CAUGHT.png b/assets/emotes/emoticons/2x/CAUGHT.png index 06191f1a..5e266c04 100644 Binary files a/assets/emotes/emoticons/2x/CAUGHT.png and b/assets/emotes/emoticons/2x/CAUGHT.png differ diff --git a/assets/emotes/emoticons/2x/CampFire.png b/assets/emotes/emoticons/2x/CampFire.png index 074be752..74673aad 100644 Binary files a/assets/emotes/emoticons/2x/CampFire.png and b/assets/emotes/emoticons/2x/CampFire.png differ diff --git a/assets/emotes/emoticons/2x/ComfyAYA.png b/assets/emotes/emoticons/2x/ComfyAYA.png index d27867c2..b188a2ac 100644 Binary files a/assets/emotes/emoticons/2x/ComfyAYA.png and b/assets/emotes/emoticons/2x/ComfyAYA.png differ diff --git a/assets/emotes/emoticons/2x/ComfyApe.png b/assets/emotes/emoticons/2x/ComfyApe.png index a9d183c9..02c63d91 100644 Binary files a/assets/emotes/emoticons/2x/ComfyApe.png and b/assets/emotes/emoticons/2x/ComfyApe.png differ diff --git a/assets/emotes/emoticons/2x/ComfyCat.png b/assets/emotes/emoticons/2x/ComfyCat.png index 83b9bc63..7b762147 100644 Binary files a/assets/emotes/emoticons/2x/ComfyCat.png and b/assets/emotes/emoticons/2x/ComfyCat.png differ diff --git a/assets/emotes/emoticons/2x/ComfyDog.png b/assets/emotes/emoticons/2x/ComfyDog.png index fcd770de..b3d3eded 100644 Binary files a/assets/emotes/emoticons/2x/ComfyDog.png and b/assets/emotes/emoticons/2x/ComfyDog.png differ diff --git a/assets/emotes/emoticons/2x/ComfyFeels.png b/assets/emotes/emoticons/2x/ComfyFeels.png index 166be028..267c2f5b 100644 Binary files a/assets/emotes/emoticons/2x/ComfyFeels.png and b/assets/emotes/emoticons/2x/ComfyFeels.png differ diff --git a/assets/emotes/emoticons/2x/ComfyFerret.png b/assets/emotes/emoticons/2x/ComfyFerret.png index 910f1d1d..b20ab6e1 100644 Binary files a/assets/emotes/emoticons/2x/ComfyFerret.png and b/assets/emotes/emoticons/2x/ComfyFerret.png differ diff --git a/assets/emotes/emoticons/2x/ComfyPOTATO.png b/assets/emotes/emoticons/2x/ComfyPOTATO.png index 7b58a388..445bb4e9 100644 Binary files a/assets/emotes/emoticons/2x/ComfyPOTATO.png and b/assets/emotes/emoticons/2x/ComfyPOTATO.png differ diff --git a/assets/emotes/emoticons/2x/ComfyWeird.png b/assets/emotes/emoticons/2x/ComfyWeird.png index 7f047d8e..4ff1206e 100644 Binary files a/assets/emotes/emoticons/2x/ComfyWeird.png and b/assets/emotes/emoticons/2x/ComfyWeird.png differ diff --git a/assets/emotes/emoticons/2x/ComfyYEE.png b/assets/emotes/emoticons/2x/ComfyYEE.png index 3244bab2..8d94e12e 100644 Binary files a/assets/emotes/emoticons/2x/ComfyYEE.png and b/assets/emotes/emoticons/2x/ComfyYEE.png differ diff --git a/assets/emotes/emoticons/2x/DANKMEMES.png b/assets/emotes/emoticons/2x/DANKMEMES.png index cf5f0a65..751dfda7 100644 Binary files a/assets/emotes/emoticons/2x/DANKMEMES.png and b/assets/emotes/emoticons/2x/DANKMEMES.png differ diff --git a/assets/emotes/emoticons/2x/DELUSIONAL.png b/assets/emotes/emoticons/2x/DELUSIONAL.png index a5d5d3f1..f4bb24e4 100644 Binary files a/assets/emotes/emoticons/2x/DELUSIONAL.png and b/assets/emotes/emoticons/2x/DELUSIONAL.png differ diff --git a/assets/emotes/emoticons/2x/DEVILISH.png b/assets/emotes/emoticons/2x/DEVILISH.png index b8d25f97..56fab6c9 100644 Binary files a/assets/emotes/emoticons/2x/DEVILISH.png and b/assets/emotes/emoticons/2x/DEVILISH.png differ diff --git a/assets/emotes/emoticons/2x/DJPepo.png b/assets/emotes/emoticons/2x/DJPepo.png index 42a9f204..638aa707 100644 Binary files a/assets/emotes/emoticons/2x/DJPepo.png and b/assets/emotes/emoticons/2x/DJPepo.png differ diff --git a/assets/emotes/emoticons/2x/DOUBT.png b/assets/emotes/emoticons/2x/DOUBT.png index a9a25480..b89bafe1 100644 Binary files a/assets/emotes/emoticons/2x/DOUBT.png and b/assets/emotes/emoticons/2x/DOUBT.png differ diff --git a/assets/emotes/emoticons/2x/DaFeels.png b/assets/emotes/emoticons/2x/DaFeels.png new file mode 100644 index 00000000..c6b979b9 Binary files /dev/null and b/assets/emotes/emoticons/2x/DaFeels.png differ diff --git a/assets/emotes/emoticons/2x/DuckerZ.png b/assets/emotes/emoticons/2x/DuckerZ.png index b2bd965f..af467387 100644 Binary files a/assets/emotes/emoticons/2x/DuckerZ.png and b/assets/emotes/emoticons/2x/DuckerZ.png differ diff --git a/assets/emotes/emoticons/2x/FIDGETLOL.png b/assets/emotes/emoticons/2x/FIDGETLOL.png index 78811783..42fd34b9 100644 Binary files a/assets/emotes/emoticons/2x/FIDGETLOL.png and b/assets/emotes/emoticons/2x/FIDGETLOL.png differ diff --git a/assets/emotes/emoticons/2x/FeelsAmazingMan.png b/assets/emotes/emoticons/2x/FeelsAmazingMan.png index 5440e60f..6b9ccd1d 100644 Binary files a/assets/emotes/emoticons/2x/FeelsAmazingMan.png and b/assets/emotes/emoticons/2x/FeelsAmazingMan.png differ diff --git a/assets/emotes/emoticons/2x/FeelsBadMan.png b/assets/emotes/emoticons/2x/FeelsBadMan.png index 159d247c..d32ec7d6 100644 Binary files a/assets/emotes/emoticons/2x/FeelsBadMan.png and b/assets/emotes/emoticons/2x/FeelsBadMan.png differ diff --git a/assets/emotes/emoticons/2x/FeelsDumbMan.png b/assets/emotes/emoticons/2x/FeelsDumbMan.png index fd642cd2..582c44cd 100644 Binary files a/assets/emotes/emoticons/2x/FeelsDumbMan.png and b/assets/emotes/emoticons/2x/FeelsDumbMan.png differ diff --git a/assets/emotes/emoticons/2x/FeelsGoodMan.png b/assets/emotes/emoticons/2x/FeelsGoodMan.png index d9667c6b..0146a72f 100644 Binary files a/assets/emotes/emoticons/2x/FeelsGoodMan.png and b/assets/emotes/emoticons/2x/FeelsGoodMan.png differ diff --git a/assets/emotes/emoticons/2x/FeelsOkayMan.png b/assets/emotes/emoticons/2x/FeelsOkayMan.png index 5aab8ca6..2f22f9b8 100644 Binary files a/assets/emotes/emoticons/2x/FeelsOkayMan.png and b/assets/emotes/emoticons/2x/FeelsOkayMan.png differ diff --git a/assets/emotes/emoticons/2x/FeelsWeirdMan.png b/assets/emotes/emoticons/2x/FeelsWeirdMan.png index 04f7f120..0980075c 100644 Binary files a/assets/emotes/emoticons/2x/FeelsWeirdMan.png and b/assets/emotes/emoticons/2x/FeelsWeirdMan.png differ diff --git a/assets/emotes/emoticons/2x/GODMAN.png b/assets/emotes/emoticons/2x/GODMAN.png index 48ffbc5f..e37f2138 100644 Binary files a/assets/emotes/emoticons/2x/GODMAN.png and b/assets/emotes/emoticons/2x/GODMAN.png differ diff --git a/assets/emotes/emoticons/2x/GREED.png b/assets/emotes/emoticons/2x/GREED.png index 3b203a5c..713a2235 100644 Binary files a/assets/emotes/emoticons/2x/GREED.png and b/assets/emotes/emoticons/2x/GREED.png differ diff --git a/assets/emotes/emoticons/2x/GameOfThrows.png b/assets/emotes/emoticons/2x/GameOfThrows.png index df4bcb61..03c9c13f 100644 Binary files a/assets/emotes/emoticons/2x/GameOfThrows.png and b/assets/emotes/emoticons/2x/GameOfThrows.png differ diff --git a/assets/emotes/emoticons/2x/GandalfFace.png b/assets/emotes/emoticons/2x/GandalfFace.png index 189e9959..09f65be4 100644 Binary files a/assets/emotes/emoticons/2x/GandalfFace.png and b/assets/emotes/emoticons/2x/GandalfFace.png differ diff --git a/assets/emotes/emoticons/2x/Gigachad.png b/assets/emotes/emoticons/2x/Gigachad.png new file mode 100644 index 00000000..bf05370b Binary files /dev/null and b/assets/emotes/emoticons/2x/Gigachad.png differ diff --git a/assets/emotes/emoticons/2x/HEADSHOT.png b/assets/emotes/emoticons/2x/HEADSHOT.png index 189fa1f1..25bfcddf 100644 Binary files a/assets/emotes/emoticons/2x/HEADSHOT.png and b/assets/emotes/emoticons/2x/HEADSHOT.png differ diff --git a/assets/emotes/emoticons/2x/HUH.png b/assets/emotes/emoticons/2x/HUH.png index 91ddfa88..a7274d06 100644 Binary files a/assets/emotes/emoticons/2x/HUH.png and b/assets/emotes/emoticons/2x/HUH.png differ diff --git a/assets/emotes/emoticons/2x/Hhhehhehe.png b/assets/emotes/emoticons/2x/Hhhehhehe.png index 806a5174..07b5735c 100644 Binary files a/assets/emotes/emoticons/2x/Hhhehhehe.png and b/assets/emotes/emoticons/2x/Hhhehhehe.png differ diff --git a/assets/emotes/emoticons/2x/Hmmm.png b/assets/emotes/emoticons/2x/Hmmm.png new file mode 100644 index 00000000..698d1b29 Binary files /dev/null and b/assets/emotes/emoticons/2x/Hmmm.png differ diff --git a/assets/emotes/emoticons/2x/INFESTOR.png b/assets/emotes/emoticons/2x/INFESTOR.png index a4227d32..197aebd8 100644 Binary files a/assets/emotes/emoticons/2x/INFESTOR.png and b/assets/emotes/emoticons/2x/INFESTOR.png differ diff --git a/assets/emotes/emoticons/2x/JimFace.png b/assets/emotes/emoticons/2x/JimFace.png index 6bf57e0e..9d002ee1 100644 Binary files a/assets/emotes/emoticons/2x/JimFace.png and b/assets/emotes/emoticons/2x/JimFace.png differ diff --git a/assets/emotes/emoticons/2x/KING.png b/assets/emotes/emoticons/2x/KING.png deleted file mode 100644 index a725ff86..00000000 Binary files a/assets/emotes/emoticons/2x/KING.png and /dev/null differ diff --git a/assets/emotes/emoticons/2x/Kappa.png b/assets/emotes/emoticons/2x/Kappa.png new file mode 100644 index 00000000..ae98a4ba Binary files /dev/null and b/assets/emotes/emoticons/2x/Kappa.png differ diff --git a/assets/emotes/emoticons/2x/LUL.png b/assets/emotes/emoticons/2x/LUL.png index f391fb16..5c645187 100644 Binary files a/assets/emotes/emoticons/2x/LUL.png and b/assets/emotes/emoticons/2x/LUL.png differ diff --git a/assets/emotes/emoticons/2x/MASTERB8.png b/assets/emotes/emoticons/2x/MASTERB8.png index 154e602b..c4e6cf2a 100644 Binary files a/assets/emotes/emoticons/2x/MASTERB8.png and b/assets/emotes/emoticons/2x/MASTERB8.png differ diff --git a/assets/emotes/emoticons/2x/MLADY.png b/assets/emotes/emoticons/2x/MLADY.png index 1f29bc48..c11d4dae 100644 Binary files a/assets/emotes/emoticons/2x/MLADY.png and b/assets/emotes/emoticons/2x/MLADY.png differ diff --git a/assets/emotes/emoticons/2x/MOOBERS.png b/assets/emotes/emoticons/2x/MOOBERS.png index c838b658..10ee1b1b 100644 Binary files a/assets/emotes/emoticons/2x/MOOBERS.png and b/assets/emotes/emoticons/2x/MOOBERS.png differ diff --git a/assets/emotes/emoticons/2x/MiyanoBird.png b/assets/emotes/emoticons/2x/MiyanoBird.png index 03042c93..83c7727d 100644 Binary files a/assets/emotes/emoticons/2x/MiyanoBird.png and b/assets/emotes/emoticons/2x/MiyanoBird.png differ diff --git a/assets/emotes/emoticons/2x/MiyanoComfy.png b/assets/emotes/emoticons/2x/MiyanoComfy.png index bba2c09c..7b69613e 100644 Binary files a/assets/emotes/emoticons/2x/MiyanoComfy.png and b/assets/emotes/emoticons/2x/MiyanoComfy.png differ diff --git a/assets/emotes/emoticons/2x/MotherFuckinGame.png b/assets/emotes/emoticons/2x/MotherFuckinGame.png index 478b0a42..3e97c0fe 100644 Binary files a/assets/emotes/emoticons/2x/MotherFuckinGame.png and b/assets/emotes/emoticons/2x/MotherFuckinGame.png differ diff --git a/assets/emotes/emoticons/2x/NOBULLY.png b/assets/emotes/emoticons/2x/NOBULLY.png new file mode 100644 index 00000000..9e35e8d6 Binary files /dev/null and b/assets/emotes/emoticons/2x/NOBULLY.png differ diff --git a/assets/emotes/emoticons/2x/NOM.png b/assets/emotes/emoticons/2x/NOM.png new file mode 100644 index 00000000..c2eb0d60 Binary files /dev/null and b/assets/emotes/emoticons/2x/NOM.png differ diff --git a/assets/emotes/emoticons/2x/NiceMeMe.png b/assets/emotes/emoticons/2x/NiceMeMe.png index f3f8965e..008130ac 100644 Binary files a/assets/emotes/emoticons/2x/NiceMeMe.png and b/assets/emotes/emoticons/2x/NiceMeMe.png differ diff --git a/assets/emotes/emoticons/2x/NotLikeThis.png b/assets/emotes/emoticons/2x/NotLikeThis.png index 44b1a2fd..eebcf323 100644 Binary files a/assets/emotes/emoticons/2x/NotLikeThis.png and b/assets/emotes/emoticons/2x/NotLikeThis.png differ diff --git a/assets/emotes/emoticons/2x/OMEGALUL.png b/assets/emotes/emoticons/2x/OMEGALUL.png deleted file mode 100644 index fe882dc7..00000000 Binary files a/assets/emotes/emoticons/2x/OMEGALUL.png and /dev/null differ diff --git a/assets/emotes/emoticons/2x/OnlyPretending.png b/assets/emotes/emoticons/2x/OnlyPretending.png index b3f4a2ce..2f607b60 100644 Binary files a/assets/emotes/emoticons/2x/OnlyPretending.png and b/assets/emotes/emoticons/2x/OnlyPretending.png differ diff --git a/assets/emotes/emoticons/2x/OsKrappa.png b/assets/emotes/emoticons/2x/OsKrappa.png new file mode 100644 index 00000000..362746ae Binary files /dev/null and b/assets/emotes/emoticons/2x/OsKrappa.png differ diff --git a/assets/emotes/emoticons/2x/PAIN.png b/assets/emotes/emoticons/2x/PAIN.png index a171519a..d58f51e6 100644 Binary files a/assets/emotes/emoticons/2x/PAIN.png and b/assets/emotes/emoticons/2x/PAIN.png differ diff --git a/assets/emotes/emoticons/2x/PEPE.png b/assets/emotes/emoticons/2x/PEPE.png new file mode 100644 index 00000000..a3585da9 Binary files /dev/null and b/assets/emotes/emoticons/2x/PEPE.png differ diff --git a/assets/emotes/emoticons/2x/PIKOHH.png b/assets/emotes/emoticons/2x/PIKOHH.png index bc53b272..12727a63 100644 Binary files a/assets/emotes/emoticons/2x/PIKOHH.png and b/assets/emotes/emoticons/2x/PIKOHH.png differ diff --git a/assets/emotes/emoticons/2x/POGGERS.png b/assets/emotes/emoticons/2x/POGGERS.png index 333a281a..309bd564 100644 Binary files a/assets/emotes/emoticons/2x/POGGERS.png and b/assets/emotes/emoticons/2x/POGGERS.png differ diff --git a/assets/emotes/emoticons/2x/POGGIES.png b/assets/emotes/emoticons/2x/POGGIES.png index 32182242..d7a6e541 100644 Binary files a/assets/emotes/emoticons/2x/POGGIES.png and b/assets/emotes/emoticons/2x/POGGIES.png differ diff --git a/assets/emotes/emoticons/2x/POKE.png b/assets/emotes/emoticons/2x/POKE.png index 4321b7e0..b31d4b29 100644 Binary files a/assets/emotes/emoticons/2x/POKE.png and b/assets/emotes/emoticons/2x/POKE.png differ diff --git a/assets/emotes/emoticons/2x/POTATO.png b/assets/emotes/emoticons/2x/POTATO.png index 19b31b2a..cd27cf31 100644 Binary files a/assets/emotes/emoticons/2x/POTATO.png and b/assets/emotes/emoticons/2x/POTATO.png differ diff --git a/assets/emotes/emoticons/2x/PeepoHappy.png b/assets/emotes/emoticons/2x/PeepoHappy.png index b7ce2109..f5f33541 100644 Binary files a/assets/emotes/emoticons/2x/PeepoHappy.png and b/assets/emotes/emoticons/2x/PeepoHappy.png differ diff --git a/assets/emotes/emoticons/2x/PeepoS.png b/assets/emotes/emoticons/2x/PeepoS.png index 8830aaea..ae262f95 100644 Binary files a/assets/emotes/emoticons/2x/PeepoS.png and b/assets/emotes/emoticons/2x/PeepoS.png differ diff --git a/assets/emotes/emoticons/2x/PeepoWeird.png b/assets/emotes/emoticons/2x/PeepoWeird.png index 50d06f7f..fcd7813b 100644 Binary files a/assets/emotes/emoticons/2x/PeepoWeird.png and b/assets/emotes/emoticons/2x/PeepoWeird.png differ diff --git a/assets/emotes/emoticons/2x/PepOk.png b/assets/emotes/emoticons/2x/PepOk.png index 0c6dc1c3..ea2be7fd 100644 Binary files a/assets/emotes/emoticons/2x/PepOk.png and b/assets/emotes/emoticons/2x/PepOk.png differ diff --git a/assets/emotes/emoticons/2x/PepeComfy.png b/assets/emotes/emoticons/2x/PepeComfy.png index 521c44d2..b043f304 100644 Binary files a/assets/emotes/emoticons/2x/PepeComfy.png and b/assets/emotes/emoticons/2x/PepeComfy.png differ diff --git a/assets/emotes/emoticons/2x/PepeHands.png b/assets/emotes/emoticons/2x/PepeHands.png index da74b56f..d0fb131f 100644 Binary files a/assets/emotes/emoticons/2x/PepeHands.png and b/assets/emotes/emoticons/2x/PepeHands.png differ diff --git a/assets/emotes/emoticons/2x/PepeLaugh.png b/assets/emotes/emoticons/2x/PepeLaugh.png index af3ee014..62629b99 100644 Binary files a/assets/emotes/emoticons/2x/PepeLaugh.png and b/assets/emotes/emoticons/2x/PepeLaugh.png differ diff --git a/assets/emotes/emoticons/2x/PepeMods.png b/assets/emotes/emoticons/2x/PepeMods.png new file mode 100644 index 00000000..f77c3060 Binary files /dev/null and b/assets/emotes/emoticons/2x/PepeMods.png differ diff --git a/assets/emotes/emoticons/2x/Pepega.png b/assets/emotes/emoticons/2x/Pepega.png index 88fb4b42..6c2d5885 100644 Binary files a/assets/emotes/emoticons/2x/Pepega.png and b/assets/emotes/emoticons/2x/Pepega.png differ diff --git a/assets/emotes/emoticons/2x/PepoBan.png b/assets/emotes/emoticons/2x/PepoBan.png index 960bf840..61309bd4 100644 Binary files a/assets/emotes/emoticons/2x/PepoBan.png and b/assets/emotes/emoticons/2x/PepoBan.png differ diff --git a/assets/emotes/emoticons/2x/PepoComfy.png b/assets/emotes/emoticons/2x/PepoComfy.png index e6cad7e8..e4aee0a7 100644 Binary files a/assets/emotes/emoticons/2x/PepoComfy.png and b/assets/emotes/emoticons/2x/PepoComfy.png differ diff --git a/assets/emotes/emoticons/2x/PepoFight.png b/assets/emotes/emoticons/2x/PepoFight.png deleted file mode 100644 index 08acdf59..00000000 Binary files a/assets/emotes/emoticons/2x/PepoFight.png and /dev/null differ diff --git a/assets/emotes/emoticons/2x/PepoG.png b/assets/emotes/emoticons/2x/PepoG.png index dbd829cf..45db750e 100644 Binary files a/assets/emotes/emoticons/2x/PepoG.png and b/assets/emotes/emoticons/2x/PepoG.png differ diff --git a/assets/emotes/emoticons/2x/PepoGood.png b/assets/emotes/emoticons/2x/PepoGood.png index 970d93c9..46f28560 100644 Binary files a/assets/emotes/emoticons/2x/PepoGood.png and b/assets/emotes/emoticons/2x/PepoGood.png differ diff --git a/assets/emotes/emoticons/2x/PepoHmm.png b/assets/emotes/emoticons/2x/PepoHmm.png index 19c0b839..13d05a0e 100644 Binary files a/assets/emotes/emoticons/2x/PepoHmm.png and b/assets/emotes/emoticons/2x/PepoHmm.png differ diff --git a/assets/emotes/emoticons/2x/PepoPirate.png b/assets/emotes/emoticons/2x/PepoPirate.png index eed27063..da428182 100644 Binary files a/assets/emotes/emoticons/2x/PepoPirate.png and b/assets/emotes/emoticons/2x/PepoPirate.png differ diff --git a/assets/emotes/emoticons/2x/PepoSleep.png b/assets/emotes/emoticons/2x/PepoSleep.png new file mode 100644 index 00000000..c184aa76 Binary files /dev/null and b/assets/emotes/emoticons/2x/PepoSleep.png differ diff --git a/assets/emotes/emoticons/2x/PepoThink.png b/assets/emotes/emoticons/2x/PepoThink.png index ff48a0b7..623d2c9b 100644 Binary files a/assets/emotes/emoticons/2x/PepoThink.png and b/assets/emotes/emoticons/2x/PepoThink.png differ diff --git a/assets/emotes/emoticons/2x/SEMPAI.png b/assets/emotes/emoticons/2x/SEMPAI.png index ced5821f..bd725e5e 100644 Binary files a/assets/emotes/emoticons/2x/SEMPAI.png and b/assets/emotes/emoticons/2x/SEMPAI.png differ diff --git a/assets/emotes/emoticons/2x/SHOCK.png b/assets/emotes/emoticons/2x/SHOCK.png index 29a74a1d..296f08cf 100644 Binary files a/assets/emotes/emoticons/2x/SHOCK.png and b/assets/emotes/emoticons/2x/SHOCK.png differ diff --git a/assets/emotes/emoticons/2x/SHRUG.png b/assets/emotes/emoticons/2x/SHRUG.png new file mode 100644 index 00000000..3e0628fe Binary files /dev/null and b/assets/emotes/emoticons/2x/SHRUG.png differ diff --git a/assets/emotes/emoticons/2x/SICKOOH.png b/assets/emotes/emoticons/2x/SICKOOH.png index 0ea9fd76..b019d49b 100644 Binary files a/assets/emotes/emoticons/2x/SICKOOH.png and b/assets/emotes/emoticons/2x/SICKOOH.png differ diff --git a/assets/emotes/emoticons/2x/SMOrc.png b/assets/emotes/emoticons/2x/SMOrc.png index 2bb2df6e..7c541c26 100644 Binary files a/assets/emotes/emoticons/2x/SMOrc.png and b/assets/emotes/emoticons/2x/SMOrc.png differ diff --git a/assets/emotes/emoticons/2x/SMUG.png b/assets/emotes/emoticons/2x/SMUG.png old mode 100755 new mode 100644 index 935c5014..2602ce84 Binary files a/assets/emotes/emoticons/2x/SMUG.png and b/assets/emotes/emoticons/2x/SMUG.png differ diff --git a/assets/emotes/emoticons/2x/SOTRIGGERED.png b/assets/emotes/emoticons/2x/SOTRIGGERED.png index 73eb6a45..e671d563 100644 Binary files a/assets/emotes/emoticons/2x/SOTRIGGERED.png and b/assets/emotes/emoticons/2x/SOTRIGGERED.png differ diff --git a/assets/emotes/emoticons/2x/SPY.png b/assets/emotes/emoticons/2x/SPY.png index ebc272f8..d8186efb 100644 Binary files a/assets/emotes/emoticons/2x/SPY.png and b/assets/emotes/emoticons/2x/SPY.png differ diff --git a/assets/emotes/emoticons/2x/SURPRISE.png b/assets/emotes/emoticons/2x/SURPRISE.png new file mode 100644 index 00000000..f22a23b8 Binary files /dev/null and b/assets/emotes/emoticons/2x/SURPRISE.png differ diff --git a/assets/emotes/emoticons/2x/SWEATY.png b/assets/emotes/emoticons/2x/SWEATY.png index e0415292..bbce3a61 100644 Binary files a/assets/emotes/emoticons/2x/SWEATY.png and b/assets/emotes/emoticons/2x/SWEATY.png differ diff --git a/assets/emotes/emoticons/2x/Sippy.png b/assets/emotes/emoticons/2x/Sippy.png index b9bc26c2..8f1246a9 100644 Binary files a/assets/emotes/emoticons/2x/Sippy.png and b/assets/emotes/emoticons/2x/Sippy.png differ diff --git a/assets/emotes/emoticons/2x/SoDoge.png b/assets/emotes/emoticons/2x/SoDoge.png index 63e23dd1..6de9e178 100644 Binary files a/assets/emotes/emoticons/2x/SoDoge.png and b/assets/emotes/emoticons/2x/SoDoge.png differ diff --git a/assets/emotes/emoticons/2x/SpookerZ.png b/assets/emotes/emoticons/2x/SpookerZ.png index f730e0e9..7e41b770 100644 Binary files a/assets/emotes/emoticons/2x/SpookerZ.png and b/assets/emotes/emoticons/2x/SpookerZ.png differ diff --git a/assets/emotes/emoticons/2x/TIMID.png b/assets/emotes/emoticons/2x/TIMID.png new file mode 100644 index 00000000..5d39ea49 Binary files /dev/null and b/assets/emotes/emoticons/2x/TIMID.png differ diff --git a/assets/emotes/emoticons/2x/UWOTM8.png b/assets/emotes/emoticons/2x/UWOTM8.png index 70d71e7c..73d06ba3 100644 Binary files a/assets/emotes/emoticons/2x/UWOTM8.png and b/assets/emotes/emoticons/2x/UWOTM8.png differ diff --git a/assets/emotes/emoticons/2x/WICKED.png b/assets/emotes/emoticons/2x/WICKED.png index fa503143..5ea4ec17 100644 Binary files a/assets/emotes/emoticons/2x/WICKED.png and b/assets/emotes/emoticons/2x/WICKED.png differ diff --git a/assets/emotes/emoticons/2x/Wowee.png b/assets/emotes/emoticons/2x/Wowee.png index 5d303df9..e0ec867b 100644 Binary files a/assets/emotes/emoticons/2x/Wowee.png and b/assets/emotes/emoticons/2x/Wowee.png differ diff --git a/assets/emotes/emoticons/2x/YEE.png b/assets/emotes/emoticons/2x/YEE.png new file mode 100644 index 00000000..dc9a2a3c Binary files /dev/null and b/assets/emotes/emoticons/2x/YEE.png differ diff --git a/assets/emotes/emoticons/2x/billyWeird.png b/assets/emotes/emoticons/2x/billyWeird.png index 5e88cc62..9d74e2ec 100644 Binary files a/assets/emotes/emoticons/2x/billyWeird.png and b/assets/emotes/emoticons/2x/billyWeird.png differ diff --git a/assets/emotes/emoticons/2x/cmonBruh.png b/assets/emotes/emoticons/2x/cmonBruh.png new file mode 100644 index 00000000..77006fdc Binary files /dev/null and b/assets/emotes/emoticons/2x/cmonBruh.png differ diff --git a/assets/emotes/emoticons/2x/gachiGASM.png b/assets/emotes/emoticons/2x/gachiGASM.png index e917615a..26e6e05a 100644 Binary files a/assets/emotes/emoticons/2x/gachiGASM.png and b/assets/emotes/emoticons/2x/gachiGASM.png differ diff --git a/assets/emotes/emoticons/2x/monkaHmm.png b/assets/emotes/emoticons/2x/monkaHmm.png index 93e561b3..c78c253c 100644 Binary files a/assets/emotes/emoticons/2x/monkaHmm.png and b/assets/emotes/emoticons/2x/monkaHmm.png differ diff --git a/assets/emotes/emoticons/2x/monkaMEGA.png b/assets/emotes/emoticons/2x/monkaMEGA.png new file mode 100644 index 00000000..c411b73b Binary files /dev/null and b/assets/emotes/emoticons/2x/monkaMEGA.png differ diff --git a/assets/emotes/emoticons/2x/monkaS.png b/assets/emotes/emoticons/2x/monkaS.png new file mode 100644 index 00000000..572434d5 Binary files /dev/null and b/assets/emotes/emoticons/2x/monkaS.png differ diff --git a/assets/emotes/emoticons/2x/sggL.png b/assets/emotes/emoticons/2x/sggL.png index 0b1d1010..b6060ad4 100644 Binary files a/assets/emotes/emoticons/2x/sggL.png and b/assets/emotes/emoticons/2x/sggL.png differ diff --git a/assets/emotes/emoticons/2x/umaruCry.png b/assets/emotes/emoticons/2x/umaruCry.png new file mode 100644 index 00000000..8a8334b3 Binary files /dev/null and b/assets/emotes/emoticons/2x/umaruCry.png differ diff --git a/assets/emotes/emoticons/4Head.png b/assets/emotes/emoticons/4Head.png old mode 100644 new mode 100755 index 4c7b8372..545c24e1 Binary files a/assets/emotes/emoticons/4Head.png and b/assets/emotes/emoticons/4Head.png differ diff --git a/assets/emotes/emoticons/4U.png b/assets/emotes/emoticons/4U.png index 419bd0c5..befdad89 100644 Binary files a/assets/emotes/emoticons/4U.png and b/assets/emotes/emoticons/4U.png differ diff --git a/assets/emotes/emoticons/4x/4Head.png b/assets/emotes/emoticons/4x/4Head.png index f4680aed..17adb070 100644 Binary files a/assets/emotes/emoticons/4x/4Head.png and b/assets/emotes/emoticons/4x/4Head.png differ diff --git a/assets/emotes/emoticons/4x/4U.png b/assets/emotes/emoticons/4x/4U.png index 27bae792..98569bf7 100644 Binary files a/assets/emotes/emoticons/4x/4U.png and b/assets/emotes/emoticons/4x/4U.png differ diff --git a/assets/emotes/emoticons/4x/AOCFace.png b/assets/emotes/emoticons/4x/AOCFace.png index 6583459d..73ecbf45 100644 Binary files a/assets/emotes/emoticons/4x/AOCFace.png and b/assets/emotes/emoticons/4x/AOCFace.png differ diff --git a/assets/emotes/emoticons/4x/AYAYA.png b/assets/emotes/emoticons/4x/AYAYA.png index efb491ab..ab29d9ef 100644 Binary files a/assets/emotes/emoticons/4x/AYAYA.png and b/assets/emotes/emoticons/4x/AYAYA.png differ diff --git a/assets/emotes/emoticons/4x/AngelThump.png b/assets/emotes/emoticons/4x/AngelThump.png new file mode 100644 index 00000000..b0786031 Binary files /dev/null and b/assets/emotes/emoticons/4x/AngelThump.png differ diff --git a/assets/emotes/emoticons/4x/ApeHands.png b/assets/emotes/emoticons/4x/ApeHands.png index cd712c4f..5f770eb4 100644 Binary files a/assets/emotes/emoticons/4x/ApeHands.png and b/assets/emotes/emoticons/4x/ApeHands.png differ diff --git a/assets/emotes/emoticons/4x/BOGGED.png b/assets/emotes/emoticons/4x/BOGGED.png index f67bccc3..18290fec 100644 Binary files a/assets/emotes/emoticons/4x/BOGGED.png and b/assets/emotes/emoticons/4x/BOGGED.png differ diff --git a/assets/emotes/emoticons/4x/BasedGod.png b/assets/emotes/emoticons/4x/BasedGod.png index 716bd144..810abcac 100644 Binary files a/assets/emotes/emoticons/4x/BasedGod.png and b/assets/emotes/emoticons/4x/BasedGod.png differ diff --git a/assets/emotes/emoticons/4x/BibleThump.png b/assets/emotes/emoticons/4x/BibleThump.png new file mode 100644 index 00000000..58fac5cd Binary files /dev/null and b/assets/emotes/emoticons/4x/BibleThump.png differ diff --git a/assets/emotes/emoticons/4x/CAUGHT.png b/assets/emotes/emoticons/4x/CAUGHT.png index ad27194d..384c880d 100644 Binary files a/assets/emotes/emoticons/4x/CAUGHT.png and b/assets/emotes/emoticons/4x/CAUGHT.png differ diff --git a/assets/emotes/emoticons/4x/CampFire.png b/assets/emotes/emoticons/4x/CampFire.png index ec9a44fe..d1aaa14e 100644 Binary files a/assets/emotes/emoticons/4x/CampFire.png and b/assets/emotes/emoticons/4x/CampFire.png differ diff --git a/assets/emotes/emoticons/4x/ComfyAYA.png b/assets/emotes/emoticons/4x/ComfyAYA.png index e61980db..cec574e0 100644 Binary files a/assets/emotes/emoticons/4x/ComfyAYA.png and b/assets/emotes/emoticons/4x/ComfyAYA.png differ diff --git a/assets/emotes/emoticons/4x/ComfyApe.png b/assets/emotes/emoticons/4x/ComfyApe.png index be695976..f1a95ac0 100644 Binary files a/assets/emotes/emoticons/4x/ComfyApe.png and b/assets/emotes/emoticons/4x/ComfyApe.png differ diff --git a/assets/emotes/emoticons/4x/ComfyCat.png b/assets/emotes/emoticons/4x/ComfyCat.png index 462736a3..6b046d7e 100644 Binary files a/assets/emotes/emoticons/4x/ComfyCat.png and b/assets/emotes/emoticons/4x/ComfyCat.png differ diff --git a/assets/emotes/emoticons/4x/ComfyDog.png b/assets/emotes/emoticons/4x/ComfyDog.png index f33105c5..d2329f57 100644 Binary files a/assets/emotes/emoticons/4x/ComfyDog.png and b/assets/emotes/emoticons/4x/ComfyDog.png differ diff --git a/assets/emotes/emoticons/4x/ComfyFeels.png b/assets/emotes/emoticons/4x/ComfyFeels.png index 27454895..409ee3e9 100644 Binary files a/assets/emotes/emoticons/4x/ComfyFeels.png and b/assets/emotes/emoticons/4x/ComfyFeels.png differ diff --git a/assets/emotes/emoticons/4x/ComfyFerret.png b/assets/emotes/emoticons/4x/ComfyFerret.png index 66f3a33a..5f7a7933 100644 Binary files a/assets/emotes/emoticons/4x/ComfyFerret.png and b/assets/emotes/emoticons/4x/ComfyFerret.png differ diff --git a/assets/emotes/emoticons/4x/ComfyPOTATO.png b/assets/emotes/emoticons/4x/ComfyPOTATO.png index d3763c10..4e1822bd 100644 Binary files a/assets/emotes/emoticons/4x/ComfyPOTATO.png and b/assets/emotes/emoticons/4x/ComfyPOTATO.png differ diff --git a/assets/emotes/emoticons/4x/ComfyWeird.png b/assets/emotes/emoticons/4x/ComfyWeird.png index f5422a8c..df6caa3f 100644 Binary files a/assets/emotes/emoticons/4x/ComfyWeird.png and b/assets/emotes/emoticons/4x/ComfyWeird.png differ diff --git a/assets/emotes/emoticons/4x/ComfyYEE.png b/assets/emotes/emoticons/4x/ComfyYEE.png index 0336e4f6..fdf6f7a9 100644 Binary files a/assets/emotes/emoticons/4x/ComfyYEE.png and b/assets/emotes/emoticons/4x/ComfyYEE.png differ diff --git a/assets/emotes/emoticons/4x/DANKMEMES.png b/assets/emotes/emoticons/4x/DANKMEMES.png index 0fe19118..eb079b6d 100644 Binary files a/assets/emotes/emoticons/4x/DANKMEMES.png and b/assets/emotes/emoticons/4x/DANKMEMES.png differ diff --git a/assets/emotes/emoticons/4x/DELUSIONAL.png b/assets/emotes/emoticons/4x/DELUSIONAL.png index f55ba20c..4750fdfa 100644 Binary files a/assets/emotes/emoticons/4x/DELUSIONAL.png and b/assets/emotes/emoticons/4x/DELUSIONAL.png differ diff --git a/assets/emotes/emoticons/4x/DEVILISH.png b/assets/emotes/emoticons/4x/DEVILISH.png index 58fa0862..1d1ea556 100644 Binary files a/assets/emotes/emoticons/4x/DEVILISH.png and b/assets/emotes/emoticons/4x/DEVILISH.png differ diff --git a/assets/emotes/emoticons/4x/DJPepo.png b/assets/emotes/emoticons/4x/DJPepo.png index 9bb982ed..f6a8772d 100644 Binary files a/assets/emotes/emoticons/4x/DJPepo.png and b/assets/emotes/emoticons/4x/DJPepo.png differ diff --git a/assets/emotes/emoticons/4x/DOUBT.png b/assets/emotes/emoticons/4x/DOUBT.png index bd8d50e0..58831260 100644 Binary files a/assets/emotes/emoticons/4x/DOUBT.png and b/assets/emotes/emoticons/4x/DOUBT.png differ diff --git a/assets/emotes/emoticons/4x/DaFeels.png b/assets/emotes/emoticons/4x/DaFeels.png new file mode 100644 index 00000000..1fbd923e Binary files /dev/null and b/assets/emotes/emoticons/4x/DaFeels.png differ diff --git a/assets/emotes/emoticons/4x/DuckerZ.png b/assets/emotes/emoticons/4x/DuckerZ.png index 39852664..b900978e 100644 Binary files a/assets/emotes/emoticons/4x/DuckerZ.png and b/assets/emotes/emoticons/4x/DuckerZ.png differ diff --git a/assets/emotes/emoticons/4x/FIDGETLOL.png b/assets/emotes/emoticons/4x/FIDGETLOL.png index 6176938e..127f9988 100644 Binary files a/assets/emotes/emoticons/4x/FIDGETLOL.png and b/assets/emotes/emoticons/4x/FIDGETLOL.png differ diff --git a/assets/emotes/emoticons/4x/FeelsAmazingMan.png b/assets/emotes/emoticons/4x/FeelsAmazingMan.png index b4442da7..9641ea26 100644 Binary files a/assets/emotes/emoticons/4x/FeelsAmazingMan.png and b/assets/emotes/emoticons/4x/FeelsAmazingMan.png differ diff --git a/assets/emotes/emoticons/4x/FeelsBadMan.png b/assets/emotes/emoticons/4x/FeelsBadMan.png index dbd74a45..16e2f064 100644 Binary files a/assets/emotes/emoticons/4x/FeelsBadMan.png and b/assets/emotes/emoticons/4x/FeelsBadMan.png differ diff --git a/assets/emotes/emoticons/4x/FeelsDumbMan.png b/assets/emotes/emoticons/4x/FeelsDumbMan.png index 03047bef..f14adede 100644 Binary files a/assets/emotes/emoticons/4x/FeelsDumbMan.png and b/assets/emotes/emoticons/4x/FeelsDumbMan.png differ diff --git a/assets/emotes/emoticons/4x/FeelsGoodMan.png b/assets/emotes/emoticons/4x/FeelsGoodMan.png index ec1ac1b4..56aa54ef 100644 Binary files a/assets/emotes/emoticons/4x/FeelsGoodMan.png and b/assets/emotes/emoticons/4x/FeelsGoodMan.png differ diff --git a/assets/emotes/emoticons/4x/FeelsOkayMan.png b/assets/emotes/emoticons/4x/FeelsOkayMan.png index d61de102..cd64b3fc 100644 Binary files a/assets/emotes/emoticons/4x/FeelsOkayMan.png and b/assets/emotes/emoticons/4x/FeelsOkayMan.png differ diff --git a/assets/emotes/emoticons/4x/FeelsWeirdMan.png b/assets/emotes/emoticons/4x/FeelsWeirdMan.png index b4a53f2b..be5c64f5 100644 Binary files a/assets/emotes/emoticons/4x/FeelsWeirdMan.png and b/assets/emotes/emoticons/4x/FeelsWeirdMan.png differ diff --git a/assets/emotes/emoticons/4x/GODMAN.png b/assets/emotes/emoticons/4x/GODMAN.png index cc12c9de..6f144e30 100644 Binary files a/assets/emotes/emoticons/4x/GODMAN.png and b/assets/emotes/emoticons/4x/GODMAN.png differ diff --git a/assets/emotes/emoticons/4x/GREED.png b/assets/emotes/emoticons/4x/GREED.png index e9516268..2f52c5e9 100644 Binary files a/assets/emotes/emoticons/4x/GREED.png and b/assets/emotes/emoticons/4x/GREED.png differ diff --git a/assets/emotes/emoticons/4x/GameOfThrows.png b/assets/emotes/emoticons/4x/GameOfThrows.png index b4ea703e..8d00d067 100644 Binary files a/assets/emotes/emoticons/4x/GameOfThrows.png and b/assets/emotes/emoticons/4x/GameOfThrows.png differ diff --git a/assets/emotes/emoticons/4x/GandalfFace.png b/assets/emotes/emoticons/4x/GandalfFace.png index 6e3be985..76c6d7fc 100644 Binary files a/assets/emotes/emoticons/4x/GandalfFace.png and b/assets/emotes/emoticons/4x/GandalfFace.png differ diff --git a/assets/emotes/emoticons/4x/Gigachad.png b/assets/emotes/emoticons/4x/Gigachad.png new file mode 100644 index 00000000..5ccddd71 Binary files /dev/null and b/assets/emotes/emoticons/4x/Gigachad.png differ diff --git a/assets/emotes/emoticons/4x/HEADSHOT.png b/assets/emotes/emoticons/4x/HEADSHOT.png index ad7d15a8..467acbbc 100644 Binary files a/assets/emotes/emoticons/4x/HEADSHOT.png and b/assets/emotes/emoticons/4x/HEADSHOT.png differ diff --git a/assets/emotes/emoticons/4x/HUH.png b/assets/emotes/emoticons/4x/HUH.png index ada78ad7..e38b1568 100644 Binary files a/assets/emotes/emoticons/4x/HUH.png and b/assets/emotes/emoticons/4x/HUH.png differ diff --git a/assets/emotes/emoticons/4x/Hhhehhehe.png b/assets/emotes/emoticons/4x/Hhhehhehe.png index 8fd4e1cd..3fd6ee4f 100644 Binary files a/assets/emotes/emoticons/4x/Hhhehhehe.png and b/assets/emotes/emoticons/4x/Hhhehhehe.png differ diff --git a/assets/emotes/emoticons/4x/Hmmm.png b/assets/emotes/emoticons/4x/Hmmm.png new file mode 100644 index 00000000..797fa702 Binary files /dev/null and b/assets/emotes/emoticons/4x/Hmmm.png differ diff --git a/assets/emotes/emoticons/4x/INFESTOR.png b/assets/emotes/emoticons/4x/INFESTOR.png index 16d073fd..83aa2fac 100644 Binary files a/assets/emotes/emoticons/4x/INFESTOR.png and b/assets/emotes/emoticons/4x/INFESTOR.png differ diff --git a/assets/emotes/emoticons/4x/JimFace.png b/assets/emotes/emoticons/4x/JimFace.png index ab8bf16f..babdffdf 100644 Binary files a/assets/emotes/emoticons/4x/JimFace.png and b/assets/emotes/emoticons/4x/JimFace.png differ diff --git a/assets/emotes/emoticons/4x/KING.png b/assets/emotes/emoticons/4x/KING.png deleted file mode 100644 index 4f7bc369..00000000 Binary files a/assets/emotes/emoticons/4x/KING.png and /dev/null differ diff --git a/assets/emotes/emoticons/4x/Kappa.png b/assets/emotes/emoticons/4x/Kappa.png new file mode 100644 index 00000000..f9d04389 Binary files /dev/null and b/assets/emotes/emoticons/4x/Kappa.png differ diff --git a/assets/emotes/emoticons/4x/LUL.png b/assets/emotes/emoticons/4x/LUL.png index 0aeb377a..6f52bfa7 100644 Binary files a/assets/emotes/emoticons/4x/LUL.png and b/assets/emotes/emoticons/4x/LUL.png differ diff --git a/assets/emotes/emoticons/4x/MASTERB8.png b/assets/emotes/emoticons/4x/MASTERB8.png index 6fd2580a..4a95b843 100644 Binary files a/assets/emotes/emoticons/4x/MASTERB8.png and b/assets/emotes/emoticons/4x/MASTERB8.png differ diff --git a/assets/emotes/emoticons/4x/MLADY.png b/assets/emotes/emoticons/4x/MLADY.png index 6ac47603..e046b5e4 100644 Binary files a/assets/emotes/emoticons/4x/MLADY.png and b/assets/emotes/emoticons/4x/MLADY.png differ diff --git a/assets/emotes/emoticons/4x/MOOBERS.png b/assets/emotes/emoticons/4x/MOOBERS.png index 146f60e1..52b4a432 100644 Binary files a/assets/emotes/emoticons/4x/MOOBERS.png and b/assets/emotes/emoticons/4x/MOOBERS.png differ diff --git a/assets/emotes/emoticons/4x/MiyanoBird.png b/assets/emotes/emoticons/4x/MiyanoBird.png index aee8d7ef..c095eae6 100644 Binary files a/assets/emotes/emoticons/4x/MiyanoBird.png and b/assets/emotes/emoticons/4x/MiyanoBird.png differ diff --git a/assets/emotes/emoticons/4x/MiyanoComfy.png b/assets/emotes/emoticons/4x/MiyanoComfy.png index 35aa8e15..5c0ca233 100644 Binary files a/assets/emotes/emoticons/4x/MiyanoComfy.png and b/assets/emotes/emoticons/4x/MiyanoComfy.png differ diff --git a/assets/emotes/emoticons/4x/MotherFuckinGame.png b/assets/emotes/emoticons/4x/MotherFuckinGame.png index 8b04824f..53f5f5e8 100644 Binary files a/assets/emotes/emoticons/4x/MotherFuckinGame.png and b/assets/emotes/emoticons/4x/MotherFuckinGame.png differ diff --git a/assets/emotes/emoticons/4x/NOBULLY.png b/assets/emotes/emoticons/4x/NOBULLY.png new file mode 100644 index 00000000..62eab0ea Binary files /dev/null and b/assets/emotes/emoticons/4x/NOBULLY.png differ diff --git a/assets/emotes/emoticons/4x/NOM.png b/assets/emotes/emoticons/4x/NOM.png new file mode 100644 index 00000000..75fde3b6 Binary files /dev/null and b/assets/emotes/emoticons/4x/NOM.png differ diff --git a/assets/emotes/emoticons/4x/NiceMeMe.png b/assets/emotes/emoticons/4x/NiceMeMe.png index 58f189e5..f1e2b349 100644 Binary files a/assets/emotes/emoticons/4x/NiceMeMe.png and b/assets/emotes/emoticons/4x/NiceMeMe.png differ diff --git a/assets/emotes/emoticons/4x/NotLikeThis.png b/assets/emotes/emoticons/4x/NotLikeThis.png index a60509ce..0bbcc57c 100644 Binary files a/assets/emotes/emoticons/4x/NotLikeThis.png and b/assets/emotes/emoticons/4x/NotLikeThis.png differ diff --git a/assets/emotes/emoticons/4x/OMEGALUL.png b/assets/emotes/emoticons/4x/OMEGALUL.png index afd3003c..6e565a31 100644 Binary files a/assets/emotes/emoticons/4x/OMEGALUL.png and b/assets/emotes/emoticons/4x/OMEGALUL.png differ diff --git a/assets/emotes/emoticons/4x/OnlyPretending.png b/assets/emotes/emoticons/4x/OnlyPretending.png index 08d8508d..6eca6392 100644 Binary files a/assets/emotes/emoticons/4x/OnlyPretending.png and b/assets/emotes/emoticons/4x/OnlyPretending.png differ diff --git a/assets/emotes/emoticons/4x/OsKrappa.png b/assets/emotes/emoticons/4x/OsKrappa.png new file mode 100644 index 00000000..f8c39709 Binary files /dev/null and b/assets/emotes/emoticons/4x/OsKrappa.png differ diff --git a/assets/emotes/emoticons/4x/PAIN.png b/assets/emotes/emoticons/4x/PAIN.png index c5b0e09d..84505a3c 100644 Binary files a/assets/emotes/emoticons/4x/PAIN.png and b/assets/emotes/emoticons/4x/PAIN.png differ diff --git a/assets/emotes/emoticons/4x/PEPE.png b/assets/emotes/emoticons/4x/PEPE.png new file mode 100644 index 00000000..7892de71 Binary files /dev/null and b/assets/emotes/emoticons/4x/PEPE.png differ diff --git a/assets/emotes/emoticons/4x/PIKOHH.png b/assets/emotes/emoticons/4x/PIKOHH.png index 69f64862..49cbccdb 100644 Binary files a/assets/emotes/emoticons/4x/PIKOHH.png and b/assets/emotes/emoticons/4x/PIKOHH.png differ diff --git a/assets/emotes/emoticons/4x/POGGERS.png b/assets/emotes/emoticons/4x/POGGERS.png index fa94582b..626d3fbd 100644 Binary files a/assets/emotes/emoticons/4x/POGGERS.png and b/assets/emotes/emoticons/4x/POGGERS.png differ diff --git a/assets/emotes/emoticons/4x/POGGIES.png b/assets/emotes/emoticons/4x/POGGIES.png index 1586cf72..f2163c6e 100644 Binary files a/assets/emotes/emoticons/4x/POGGIES.png and b/assets/emotes/emoticons/4x/POGGIES.png differ diff --git a/assets/emotes/emoticons/4x/POKE.png b/assets/emotes/emoticons/4x/POKE.png index 58fb917b..f594fa36 100644 Binary files a/assets/emotes/emoticons/4x/POKE.png and b/assets/emotes/emoticons/4x/POKE.png differ diff --git a/assets/emotes/emoticons/4x/POTATO.png b/assets/emotes/emoticons/4x/POTATO.png index 7d4a28ca..bd2b93cf 100644 Binary files a/assets/emotes/emoticons/4x/POTATO.png and b/assets/emotes/emoticons/4x/POTATO.png differ diff --git a/assets/emotes/emoticons/4x/PeepoHappy.png b/assets/emotes/emoticons/4x/PeepoHappy.png index 7a4704df..708ab8ed 100644 Binary files a/assets/emotes/emoticons/4x/PeepoHappy.png and b/assets/emotes/emoticons/4x/PeepoHappy.png differ diff --git a/assets/emotes/emoticons/4x/PeepoS.png b/assets/emotes/emoticons/4x/PeepoS.png index cd9aa48a..429917fe 100644 Binary files a/assets/emotes/emoticons/4x/PeepoS.png and b/assets/emotes/emoticons/4x/PeepoS.png differ diff --git a/assets/emotes/emoticons/4x/PeepoWeird.png b/assets/emotes/emoticons/4x/PeepoWeird.png index c086356d..1880680e 100644 Binary files a/assets/emotes/emoticons/4x/PeepoWeird.png and b/assets/emotes/emoticons/4x/PeepoWeird.png differ diff --git a/assets/emotes/emoticons/4x/PepOk.png b/assets/emotes/emoticons/4x/PepOk.png index 8f0ab1a9..25c0c08b 100644 Binary files a/assets/emotes/emoticons/4x/PepOk.png and b/assets/emotes/emoticons/4x/PepOk.png differ diff --git a/assets/emotes/emoticons/4x/PepeComfy.png b/assets/emotes/emoticons/4x/PepeComfy.png index 4f5ae482..65739cf4 100644 Binary files a/assets/emotes/emoticons/4x/PepeComfy.png and b/assets/emotes/emoticons/4x/PepeComfy.png differ diff --git a/assets/emotes/emoticons/4x/PepeHands.png b/assets/emotes/emoticons/4x/PepeHands.png index dfc5d98a..31b7818e 100644 Binary files a/assets/emotes/emoticons/4x/PepeHands.png and b/assets/emotes/emoticons/4x/PepeHands.png differ diff --git a/assets/emotes/emoticons/4x/PepeLaugh.png b/assets/emotes/emoticons/4x/PepeLaugh.png index b6762c62..4d38a1bc 100644 Binary files a/assets/emotes/emoticons/4x/PepeLaugh.png and b/assets/emotes/emoticons/4x/PepeLaugh.png differ diff --git a/assets/emotes/emoticons/4x/PepeMods.png b/assets/emotes/emoticons/4x/PepeMods.png new file mode 100644 index 00000000..dcb0fb52 Binary files /dev/null and b/assets/emotes/emoticons/4x/PepeMods.png differ diff --git a/assets/emotes/emoticons/4x/Pepega.png b/assets/emotes/emoticons/4x/Pepega.png index 7ef492de..255d3720 100644 Binary files a/assets/emotes/emoticons/4x/Pepega.png and b/assets/emotes/emoticons/4x/Pepega.png differ diff --git a/assets/emotes/emoticons/4x/PepoBan.png b/assets/emotes/emoticons/4x/PepoBan.png index 402c8d21..673b75cf 100644 Binary files a/assets/emotes/emoticons/4x/PepoBan.png and b/assets/emotes/emoticons/4x/PepoBan.png differ diff --git a/assets/emotes/emoticons/4x/PepoComfy.png b/assets/emotes/emoticons/4x/PepoComfy.png index d6d05eb5..a71df0da 100644 Binary files a/assets/emotes/emoticons/4x/PepoComfy.png and b/assets/emotes/emoticons/4x/PepoComfy.png differ diff --git a/assets/emotes/emoticons/4x/PepoFight.png b/assets/emotes/emoticons/4x/PepoFight.png deleted file mode 100644 index 1643ccf4..00000000 Binary files a/assets/emotes/emoticons/4x/PepoFight.png and /dev/null differ diff --git a/assets/emotes/emoticons/4x/PepoG.png b/assets/emotes/emoticons/4x/PepoG.png index 32766a1b..243708a9 100644 Binary files a/assets/emotes/emoticons/4x/PepoG.png and b/assets/emotes/emoticons/4x/PepoG.png differ diff --git a/assets/emotes/emoticons/4x/PepoGood.png b/assets/emotes/emoticons/4x/PepoGood.png index f64feffb..6e96861c 100644 Binary files a/assets/emotes/emoticons/4x/PepoGood.png and b/assets/emotes/emoticons/4x/PepoGood.png differ diff --git a/assets/emotes/emoticons/4x/PepoHmm.png b/assets/emotes/emoticons/4x/PepoHmm.png index 36065587..dd826d67 100644 Binary files a/assets/emotes/emoticons/4x/PepoHmm.png and b/assets/emotes/emoticons/4x/PepoHmm.png differ diff --git a/assets/emotes/emoticons/4x/PepoPirate.png b/assets/emotes/emoticons/4x/PepoPirate.png index 828ca635..268c259f 100644 Binary files a/assets/emotes/emoticons/4x/PepoPirate.png and b/assets/emotes/emoticons/4x/PepoPirate.png differ diff --git a/assets/emotes/emoticons/4x/PepoSleep.png b/assets/emotes/emoticons/4x/PepoSleep.png new file mode 100644 index 00000000..917904ac Binary files /dev/null and b/assets/emotes/emoticons/4x/PepoSleep.png differ diff --git a/assets/emotes/emoticons/4x/PepoThink.png b/assets/emotes/emoticons/4x/PepoThink.png index ba5f0280..84457cf8 100644 Binary files a/assets/emotes/emoticons/4x/PepoThink.png and b/assets/emotes/emoticons/4x/PepoThink.png differ diff --git a/assets/emotes/emoticons/4x/SEMPAI.png b/assets/emotes/emoticons/4x/SEMPAI.png index 8d7eedbc..5a78bce5 100644 Binary files a/assets/emotes/emoticons/4x/SEMPAI.png and b/assets/emotes/emoticons/4x/SEMPAI.png differ diff --git a/assets/emotes/emoticons/4x/SHOCK.png b/assets/emotes/emoticons/4x/SHOCK.png index dad0fdef..abc5a1da 100644 Binary files a/assets/emotes/emoticons/4x/SHOCK.png and b/assets/emotes/emoticons/4x/SHOCK.png differ diff --git a/assets/emotes/emoticons/4x/SHRUG.png b/assets/emotes/emoticons/4x/SHRUG.png new file mode 100644 index 00000000..2a974f95 Binary files /dev/null and b/assets/emotes/emoticons/4x/SHRUG.png differ diff --git a/assets/emotes/emoticons/4x/SICKOOH.png b/assets/emotes/emoticons/4x/SICKOOH.png index 8e6d084b..032f83b6 100644 Binary files a/assets/emotes/emoticons/4x/SICKOOH.png and b/assets/emotes/emoticons/4x/SICKOOH.png differ diff --git a/assets/emotes/emoticons/4x/SMOrc.png b/assets/emotes/emoticons/4x/SMOrc.png index f980b978..ec688e4c 100644 Binary files a/assets/emotes/emoticons/4x/SMOrc.png and b/assets/emotes/emoticons/4x/SMOrc.png differ diff --git a/assets/emotes/emoticons/4x/SMUG.png b/assets/emotes/emoticons/4x/SMUG.png old mode 100755 new mode 100644 index 148470ad..bbb129e0 Binary files a/assets/emotes/emoticons/4x/SMUG.png and b/assets/emotes/emoticons/4x/SMUG.png differ diff --git a/assets/emotes/emoticons/4x/SOTRIGGERED.png b/assets/emotes/emoticons/4x/SOTRIGGERED.png index 9b38db1d..b8590351 100644 Binary files a/assets/emotes/emoticons/4x/SOTRIGGERED.png and b/assets/emotes/emoticons/4x/SOTRIGGERED.png differ diff --git a/assets/emotes/emoticons/4x/SPY.png b/assets/emotes/emoticons/4x/SPY.png index a1df3810..4ff76b80 100644 Binary files a/assets/emotes/emoticons/4x/SPY.png and b/assets/emotes/emoticons/4x/SPY.png differ diff --git a/assets/emotes/emoticons/4x/SURPRISE.png b/assets/emotes/emoticons/4x/SURPRISE.png new file mode 100644 index 00000000..e18585f6 Binary files /dev/null and b/assets/emotes/emoticons/4x/SURPRISE.png differ diff --git a/assets/emotes/emoticons/4x/SWEATY.png b/assets/emotes/emoticons/4x/SWEATY.png index 3e761b3c..a91b5361 100644 Binary files a/assets/emotes/emoticons/4x/SWEATY.png and b/assets/emotes/emoticons/4x/SWEATY.png differ diff --git a/assets/emotes/emoticons/4x/Sippy.png b/assets/emotes/emoticons/4x/Sippy.png index 6c57dd57..e7d82849 100644 Binary files a/assets/emotes/emoticons/4x/Sippy.png and b/assets/emotes/emoticons/4x/Sippy.png differ diff --git a/assets/emotes/emoticons/4x/SoDoge.png b/assets/emotes/emoticons/4x/SoDoge.png index 6b71ab6d..93b47a61 100644 Binary files a/assets/emotes/emoticons/4x/SoDoge.png and b/assets/emotes/emoticons/4x/SoDoge.png differ diff --git a/assets/emotes/emoticons/4x/SpookerZ.png b/assets/emotes/emoticons/4x/SpookerZ.png index 94269f48..331c4b3a 100644 Binary files a/assets/emotes/emoticons/4x/SpookerZ.png and b/assets/emotes/emoticons/4x/SpookerZ.png differ diff --git a/assets/emotes/emoticons/4x/TIMID.png b/assets/emotes/emoticons/4x/TIMID.png new file mode 100644 index 00000000..e6772d58 Binary files /dev/null and b/assets/emotes/emoticons/4x/TIMID.png differ diff --git a/assets/emotes/emoticons/4x/UWOTM8.png b/assets/emotes/emoticons/4x/UWOTM8.png index f7cf7c1b..611855c3 100644 Binary files a/assets/emotes/emoticons/4x/UWOTM8.png and b/assets/emotes/emoticons/4x/UWOTM8.png differ diff --git a/assets/emotes/emoticons/4x/WICKED.png b/assets/emotes/emoticons/4x/WICKED.png index 4960b884..fc744e8d 100644 Binary files a/assets/emotes/emoticons/4x/WICKED.png and b/assets/emotes/emoticons/4x/WICKED.png differ diff --git a/assets/emotes/emoticons/4x/Wowee.png b/assets/emotes/emoticons/4x/Wowee.png index 33fc7e35..1802a675 100644 Binary files a/assets/emotes/emoticons/4x/Wowee.png and b/assets/emotes/emoticons/4x/Wowee.png differ diff --git a/assets/emotes/emoticons/4x/YEE.png b/assets/emotes/emoticons/4x/YEE.png new file mode 100644 index 00000000..e86b7973 Binary files /dev/null and b/assets/emotes/emoticons/4x/YEE.png differ diff --git a/assets/emotes/emoticons/4x/billyWeird.png b/assets/emotes/emoticons/4x/billyWeird.png index 7f000963..958bef11 100644 Binary files a/assets/emotes/emoticons/4x/billyWeird.png and b/assets/emotes/emoticons/4x/billyWeird.png differ diff --git a/assets/emotes/emoticons/4x/cmonBruh.png b/assets/emotes/emoticons/4x/cmonBruh.png new file mode 100644 index 00000000..06ca720a Binary files /dev/null and b/assets/emotes/emoticons/4x/cmonBruh.png differ diff --git a/assets/emotes/emoticons/4x/gachiGASM.png b/assets/emotes/emoticons/4x/gachiGASM.png index 8c0568bc..b5c867ff 100644 Binary files a/assets/emotes/emoticons/4x/gachiGASM.png and b/assets/emotes/emoticons/4x/gachiGASM.png differ diff --git a/assets/emotes/emoticons/4x/monkaHmm.png b/assets/emotes/emoticons/4x/monkaHmm.png index 0764b4ea..51befcb2 100644 Binary files a/assets/emotes/emoticons/4x/monkaHmm.png and b/assets/emotes/emoticons/4x/monkaHmm.png differ diff --git a/assets/emotes/emoticons/4x/monkaMEGA.png b/assets/emotes/emoticons/4x/monkaMEGA.png new file mode 100644 index 00000000..4dd62c71 Binary files /dev/null and b/assets/emotes/emoticons/4x/monkaMEGA.png differ diff --git a/assets/emotes/emoticons/4x/monkaS.png b/assets/emotes/emoticons/4x/monkaS.png new file mode 100644 index 00000000..094b5cb1 Binary files /dev/null and b/assets/emotes/emoticons/4x/monkaS.png differ diff --git a/assets/emotes/emoticons/4x/sggL.png b/assets/emotes/emoticons/4x/sggL.png index 196a4ac2..4fb43126 100644 Binary files a/assets/emotes/emoticons/4x/sggL.png and b/assets/emotes/emoticons/4x/sggL.png differ diff --git a/assets/emotes/emoticons/4x/umaruCry.png b/assets/emotes/emoticons/4x/umaruCry.png new file mode 100644 index 00000000..e32cccae Binary files /dev/null and b/assets/emotes/emoticons/4x/umaruCry.png differ diff --git a/assets/emotes/emoticons/AOCFace.png b/assets/emotes/emoticons/AOCFace.png index 5402130b..eec77b70 100644 Binary files a/assets/emotes/emoticons/AOCFace.png and b/assets/emotes/emoticons/AOCFace.png differ diff --git a/assets/emotes/emoticons/AYAYA.png b/assets/emotes/emoticons/AYAYA.png index 796060c6..e9e88230 100644 Binary files a/assets/emotes/emoticons/AYAYA.png and b/assets/emotes/emoticons/AYAYA.png differ diff --git a/assets/emotes/emoticons/AngelThump.png b/assets/emotes/emoticons/AngelThump.png new file mode 100644 index 00000000..0b2aa32a Binary files /dev/null and b/assets/emotes/emoticons/AngelThump.png differ diff --git a/assets/emotes/emoticons/ApeHands.png b/assets/emotes/emoticons/ApeHands.png index 31949085..dc9e0b44 100644 Binary files a/assets/emotes/emoticons/ApeHands.png and b/assets/emotes/emoticons/ApeHands.png differ diff --git a/assets/emotes/emoticons/BOGGED.png b/assets/emotes/emoticons/BOGGED.png index 6aba0df8..335a2a1f 100644 Binary files a/assets/emotes/emoticons/BOGGED.png and b/assets/emotes/emoticons/BOGGED.png differ diff --git a/assets/emotes/emoticons/BasedGod.png b/assets/emotes/emoticons/BasedGod.png index 4b5e4ab9..07af430d 100644 Binary files a/assets/emotes/emoticons/BasedGod.png and b/assets/emotes/emoticons/BasedGod.png differ diff --git a/assets/emotes/emoticons/BibleThump.png b/assets/emotes/emoticons/BibleThump.png index 1cfde6c4..71c236ee 100644 Binary files a/assets/emotes/emoticons/BibleThump.png and b/assets/emotes/emoticons/BibleThump.png differ diff --git a/assets/emotes/emoticons/CAUGHT.png b/assets/emotes/emoticons/CAUGHT.png index 7ba683e6..c3c99d56 100644 Binary files a/assets/emotes/emoticons/CAUGHT.png and b/assets/emotes/emoticons/CAUGHT.png differ diff --git a/assets/emotes/emoticons/CampFire.png b/assets/emotes/emoticons/CampFire.png index 2bca0b7e..417bce1b 100644 Binary files a/assets/emotes/emoticons/CampFire.png and b/assets/emotes/emoticons/CampFire.png differ diff --git a/assets/emotes/emoticons/ComfyAYA.png b/assets/emotes/emoticons/ComfyAYA.png index cc525864..5650331c 100644 Binary files a/assets/emotes/emoticons/ComfyAYA.png and b/assets/emotes/emoticons/ComfyAYA.png differ diff --git a/assets/emotes/emoticons/ComfyApe.png b/assets/emotes/emoticons/ComfyApe.png index c7df713c..9045b6ff 100644 Binary files a/assets/emotes/emoticons/ComfyApe.png and b/assets/emotes/emoticons/ComfyApe.png differ diff --git a/assets/emotes/emoticons/ComfyCat.png b/assets/emotes/emoticons/ComfyCat.png index 4c1eabb6..fe95c67a 100644 Binary files a/assets/emotes/emoticons/ComfyCat.png and b/assets/emotes/emoticons/ComfyCat.png differ diff --git a/assets/emotes/emoticons/ComfyDog.png b/assets/emotes/emoticons/ComfyDog.png index 5dc9b35d..b6d25867 100644 Binary files a/assets/emotes/emoticons/ComfyDog.png and b/assets/emotes/emoticons/ComfyDog.png differ diff --git a/assets/emotes/emoticons/ComfyFeels.png b/assets/emotes/emoticons/ComfyFeels.png index 57225e19..b232cf82 100644 Binary files a/assets/emotes/emoticons/ComfyFeels.png and b/assets/emotes/emoticons/ComfyFeels.png differ diff --git a/assets/emotes/emoticons/ComfyFerret.png b/assets/emotes/emoticons/ComfyFerret.png index fc4767a6..0625af97 100644 Binary files a/assets/emotes/emoticons/ComfyFerret.png and b/assets/emotes/emoticons/ComfyFerret.png differ diff --git a/assets/emotes/emoticons/ComfyPOTATO.png b/assets/emotes/emoticons/ComfyPOTATO.png index 4917b635..5dcb484f 100644 Binary files a/assets/emotes/emoticons/ComfyPOTATO.png and b/assets/emotes/emoticons/ComfyPOTATO.png differ diff --git a/assets/emotes/emoticons/ComfyWeird.png b/assets/emotes/emoticons/ComfyWeird.png index 5f386ac6..11ff4cd5 100644 Binary files a/assets/emotes/emoticons/ComfyWeird.png and b/assets/emotes/emoticons/ComfyWeird.png differ diff --git a/assets/emotes/emoticons/ComfyYEE.png b/assets/emotes/emoticons/ComfyYEE.png index 2a455ca3..c659708d 100644 Binary files a/assets/emotes/emoticons/ComfyYEE.png and b/assets/emotes/emoticons/ComfyYEE.png differ diff --git a/assets/emotes/emoticons/DANKMEMES.png b/assets/emotes/emoticons/DANKMEMES.png index 1b7d5c0c..1b2d5827 100644 Binary files a/assets/emotes/emoticons/DANKMEMES.png and b/assets/emotes/emoticons/DANKMEMES.png differ diff --git a/assets/emotes/emoticons/DELUSIONAL.png b/assets/emotes/emoticons/DELUSIONAL.png index 2285ac55..3f87731c 100644 Binary files a/assets/emotes/emoticons/DELUSIONAL.png and b/assets/emotes/emoticons/DELUSIONAL.png differ diff --git a/assets/emotes/emoticons/DEVILISH.png b/assets/emotes/emoticons/DEVILISH.png index e2966ba2..b055bc77 100644 Binary files a/assets/emotes/emoticons/DEVILISH.png and b/assets/emotes/emoticons/DEVILISH.png differ diff --git a/assets/emotes/emoticons/DJPepo.png b/assets/emotes/emoticons/DJPepo.png index 442557a2..321dfbf8 100644 Binary files a/assets/emotes/emoticons/DJPepo.png and b/assets/emotes/emoticons/DJPepo.png differ diff --git a/assets/emotes/emoticons/DOUBT.png b/assets/emotes/emoticons/DOUBT.png index 9e1a8238..27dc4f4c 100644 Binary files a/assets/emotes/emoticons/DOUBT.png and b/assets/emotes/emoticons/DOUBT.png differ diff --git a/assets/emotes/emoticons/DaFeels.png b/assets/emotes/emoticons/DaFeels.png new file mode 100644 index 00000000..0ae97e7f Binary files /dev/null and b/assets/emotes/emoticons/DaFeels.png differ diff --git a/assets/emotes/emoticons/DuckerZ.png b/assets/emotes/emoticons/DuckerZ.png index 8e38c915..ba7cb12e 100644 Binary files a/assets/emotes/emoticons/DuckerZ.png and b/assets/emotes/emoticons/DuckerZ.png differ diff --git a/assets/emotes/emoticons/FIDGETLOL.png b/assets/emotes/emoticons/FIDGETLOL.png index d001ddab..d05927fc 100644 Binary files a/assets/emotes/emoticons/FIDGETLOL.png and b/assets/emotes/emoticons/FIDGETLOL.png differ diff --git a/assets/emotes/emoticons/FeelsAmazingMan.png b/assets/emotes/emoticons/FeelsAmazingMan.png index ad6365b2..b08086da 100644 Binary files a/assets/emotes/emoticons/FeelsAmazingMan.png and b/assets/emotes/emoticons/FeelsAmazingMan.png differ diff --git a/assets/emotes/emoticons/FeelsBadMan.png b/assets/emotes/emoticons/FeelsBadMan.png index ca6d1482..52154427 100644 Binary files a/assets/emotes/emoticons/FeelsBadMan.png and b/assets/emotes/emoticons/FeelsBadMan.png differ diff --git a/assets/emotes/emoticons/FeelsDumbMan.png b/assets/emotes/emoticons/FeelsDumbMan.png index 8fdcad4c..af07c10a 100644 Binary files a/assets/emotes/emoticons/FeelsDumbMan.png and b/assets/emotes/emoticons/FeelsDumbMan.png differ diff --git a/assets/emotes/emoticons/FeelsGoodMan.png b/assets/emotes/emoticons/FeelsGoodMan.png index d6b8720c..40f366ef 100644 Binary files a/assets/emotes/emoticons/FeelsGoodMan.png and b/assets/emotes/emoticons/FeelsGoodMan.png differ diff --git a/assets/emotes/emoticons/FeelsOkayMan.png b/assets/emotes/emoticons/FeelsOkayMan.png index 96c75b5f..ec5a1d8d 100644 Binary files a/assets/emotes/emoticons/FeelsOkayMan.png and b/assets/emotes/emoticons/FeelsOkayMan.png differ diff --git a/assets/emotes/emoticons/FeelsWeirdMan.png b/assets/emotes/emoticons/FeelsWeirdMan.png index c3333414..16fbf03b 100644 Binary files a/assets/emotes/emoticons/FeelsWeirdMan.png and b/assets/emotes/emoticons/FeelsWeirdMan.png differ diff --git a/assets/emotes/emoticons/GODMAN.png b/assets/emotes/emoticons/GODMAN.png index f0c821c6..a09125ee 100644 Binary files a/assets/emotes/emoticons/GODMAN.png and b/assets/emotes/emoticons/GODMAN.png differ diff --git a/assets/emotes/emoticons/GREED.png b/assets/emotes/emoticons/GREED.png index 9e2f243a..38618110 100644 Binary files a/assets/emotes/emoticons/GREED.png and b/assets/emotes/emoticons/GREED.png differ diff --git a/assets/emotes/emoticons/GameOfThrows.png b/assets/emotes/emoticons/GameOfThrows.png index d73f676d..49a857af 100644 Binary files a/assets/emotes/emoticons/GameOfThrows.png and b/assets/emotes/emoticons/GameOfThrows.png differ diff --git a/assets/emotes/emoticons/GandalfFace.png b/assets/emotes/emoticons/GandalfFace.png index 423dc7ca..457bf986 100644 Binary files a/assets/emotes/emoticons/GandalfFace.png and b/assets/emotes/emoticons/GandalfFace.png differ diff --git a/assets/emotes/emoticons/Gigachad.png b/assets/emotes/emoticons/Gigachad.png new file mode 100644 index 00000000..979bf1c5 Binary files /dev/null and b/assets/emotes/emoticons/Gigachad.png differ diff --git a/assets/emotes/emoticons/HEADSHOT.png b/assets/emotes/emoticons/HEADSHOT.png index 97a2cde7..b331531d 100644 Binary files a/assets/emotes/emoticons/HEADSHOT.png and b/assets/emotes/emoticons/HEADSHOT.png differ diff --git a/assets/emotes/emoticons/HUH.png b/assets/emotes/emoticons/HUH.png index 7582845d..f5a8b71a 100644 Binary files a/assets/emotes/emoticons/HUH.png and b/assets/emotes/emoticons/HUH.png differ diff --git a/assets/emotes/emoticons/Hhhehhehe.png b/assets/emotes/emoticons/Hhhehhehe.png index 84e6067f..91aa86e5 100644 Binary files a/assets/emotes/emoticons/Hhhehhehe.png and b/assets/emotes/emoticons/Hhhehhehe.png differ diff --git a/assets/emotes/emoticons/Hmmm.png b/assets/emotes/emoticons/Hmmm.png index 70d9569a..a9c0af2a 100644 Binary files a/assets/emotes/emoticons/Hmmm.png and b/assets/emotes/emoticons/Hmmm.png differ diff --git a/assets/emotes/emoticons/INFESTOR.png b/assets/emotes/emoticons/INFESTOR.png index 1806a14d..018f62fc 100644 Binary files a/assets/emotes/emoticons/INFESTOR.png and b/assets/emotes/emoticons/INFESTOR.png differ diff --git a/assets/emotes/emoticons/JimFace.png b/assets/emotes/emoticons/JimFace.png index 31efe871..bf3e09c7 100644 Binary files a/assets/emotes/emoticons/JimFace.png and b/assets/emotes/emoticons/JimFace.png differ diff --git a/assets/emotes/emoticons/KING.png b/assets/emotes/emoticons/KING.png index f249cf08..41f9dedb 100644 Binary files a/assets/emotes/emoticons/KING.png and b/assets/emotes/emoticons/KING.png differ diff --git a/assets/emotes/emoticons/Kappa.png b/assets/emotes/emoticons/Kappa.png index 602a88ab..900338e4 100644 Binary files a/assets/emotes/emoticons/Kappa.png and b/assets/emotes/emoticons/Kappa.png differ diff --git a/assets/emotes/emoticons/LUL.png b/assets/emotes/emoticons/LUL.png index c3b3952b..79fa931b 100644 Binary files a/assets/emotes/emoticons/LUL.png and b/assets/emotes/emoticons/LUL.png differ diff --git a/assets/emotes/emoticons/MASTERB8.png b/assets/emotes/emoticons/MASTERB8.png index 0e358320..c3f39972 100644 Binary files a/assets/emotes/emoticons/MASTERB8.png and b/assets/emotes/emoticons/MASTERB8.png differ diff --git a/assets/emotes/emoticons/MLADY.png b/assets/emotes/emoticons/MLADY.png index 2aa5d2aa..0b74f7b4 100644 Binary files a/assets/emotes/emoticons/MLADY.png and b/assets/emotes/emoticons/MLADY.png differ diff --git a/assets/emotes/emoticons/MOOBERS.png b/assets/emotes/emoticons/MOOBERS.png index b22f4cde..29fea6f6 100644 Binary files a/assets/emotes/emoticons/MOOBERS.png and b/assets/emotes/emoticons/MOOBERS.png differ diff --git a/assets/emotes/emoticons/MiyanoBird.png b/assets/emotes/emoticons/MiyanoBird.png index 53039c54..9c372f05 100644 Binary files a/assets/emotes/emoticons/MiyanoBird.png and b/assets/emotes/emoticons/MiyanoBird.png differ diff --git a/assets/emotes/emoticons/MiyanoComfy.png b/assets/emotes/emoticons/MiyanoComfy.png index 9b888a47..e4f41eac 100644 Binary files a/assets/emotes/emoticons/MiyanoComfy.png and b/assets/emotes/emoticons/MiyanoComfy.png differ diff --git a/assets/emotes/emoticons/MotherFuckinGame.png b/assets/emotes/emoticons/MotherFuckinGame.png index 1379006b..1ad9845d 100644 Binary files a/assets/emotes/emoticons/MotherFuckinGame.png and b/assets/emotes/emoticons/MotherFuckinGame.png differ diff --git a/assets/emotes/emoticons/NOBULLY.png b/assets/emotes/emoticons/NOBULLY.png index c6aa5c6c..7ea003c5 100644 Binary files a/assets/emotes/emoticons/NOBULLY.png and b/assets/emotes/emoticons/NOBULLY.png differ diff --git a/assets/emotes/emoticons/NOM.png b/assets/emotes/emoticons/NOM.png new file mode 100644 index 00000000..493e89d1 Binary files /dev/null and b/assets/emotes/emoticons/NOM.png differ diff --git a/assets/emotes/emoticons/NiceMeMe.png b/assets/emotes/emoticons/NiceMeMe.png index 1a2ec072..29c00f13 100644 Binary files a/assets/emotes/emoticons/NiceMeMe.png and b/assets/emotes/emoticons/NiceMeMe.png differ diff --git a/assets/emotes/emoticons/NotLikeThis.png b/assets/emotes/emoticons/NotLikeThis.png index 6951d069..d410c379 100644 Binary files a/assets/emotes/emoticons/NotLikeThis.png and b/assets/emotes/emoticons/NotLikeThis.png differ diff --git a/assets/emotes/emoticons/OMEGALUL.png b/assets/emotes/emoticons/OMEGALUL.png index a123b8fb..8381a27a 100644 Binary files a/assets/emotes/emoticons/OMEGALUL.png and b/assets/emotes/emoticons/OMEGALUL.png differ diff --git a/assets/emotes/emoticons/OnlyPretending.png b/assets/emotes/emoticons/OnlyPretending.png index 132af522..34226cb1 100644 Binary files a/assets/emotes/emoticons/OnlyPretending.png and b/assets/emotes/emoticons/OnlyPretending.png differ diff --git a/assets/emotes/emoticons/OsKrappa.png b/assets/emotes/emoticons/OsKrappa.png index 926e3671..ecedb3b0 100644 Binary files a/assets/emotes/emoticons/OsKrappa.png and b/assets/emotes/emoticons/OsKrappa.png differ diff --git a/assets/emotes/emoticons/PAIN.png b/assets/emotes/emoticons/PAIN.png index 2b6d29c0..cf30dd49 100644 Binary files a/assets/emotes/emoticons/PAIN.png and b/assets/emotes/emoticons/PAIN.png differ diff --git a/assets/emotes/emoticons/PEPE.png b/assets/emotes/emoticons/PEPE.png new file mode 100644 index 00000000..b5d9d83d Binary files /dev/null and b/assets/emotes/emoticons/PEPE.png differ diff --git a/assets/emotes/emoticons/PIKOHH.png b/assets/emotes/emoticons/PIKOHH.png index 2c0cf6b8..ce2be66f 100644 Binary files a/assets/emotes/emoticons/PIKOHH.png and b/assets/emotes/emoticons/PIKOHH.png differ diff --git a/assets/emotes/emoticons/POGGERS.png b/assets/emotes/emoticons/POGGERS.png old mode 100644 new mode 100755 index 00261109..196f0b0a Binary files a/assets/emotes/emoticons/POGGERS.png and b/assets/emotes/emoticons/POGGERS.png differ diff --git a/assets/emotes/emoticons/POGGIES.png b/assets/emotes/emoticons/POGGIES.png index 86027abd..0969aab2 100644 Binary files a/assets/emotes/emoticons/POGGIES.png and b/assets/emotes/emoticons/POGGIES.png differ diff --git a/assets/emotes/emoticons/POKE.png b/assets/emotes/emoticons/POKE.png index 04166f01..c0e14618 100644 Binary files a/assets/emotes/emoticons/POKE.png and b/assets/emotes/emoticons/POKE.png differ diff --git a/assets/emotes/emoticons/POTATO.png b/assets/emotes/emoticons/POTATO.png index d37548ab..c5fefea0 100644 Binary files a/assets/emotes/emoticons/POTATO.png and b/assets/emotes/emoticons/POTATO.png differ diff --git a/assets/emotes/emoticons/PeepoHappy.png b/assets/emotes/emoticons/PeepoHappy.png index f50fc5f6..656ed009 100644 Binary files a/assets/emotes/emoticons/PeepoHappy.png and b/assets/emotes/emoticons/PeepoHappy.png differ diff --git a/assets/emotes/emoticons/PeepoS.png b/assets/emotes/emoticons/PeepoS.png index 99cb3a23..7bfdeafd 100644 Binary files a/assets/emotes/emoticons/PeepoS.png and b/assets/emotes/emoticons/PeepoS.png differ diff --git a/assets/emotes/emoticons/PeepoWeird.png b/assets/emotes/emoticons/PeepoWeird.png index bbdb9dce..a9d1d18e 100644 Binary files a/assets/emotes/emoticons/PeepoWeird.png and b/assets/emotes/emoticons/PeepoWeird.png differ diff --git a/assets/emotes/emoticons/PepOk.png b/assets/emotes/emoticons/PepOk.png index 0b913428..8fb44f96 100644 Binary files a/assets/emotes/emoticons/PepOk.png and b/assets/emotes/emoticons/PepOk.png differ diff --git a/assets/emotes/emoticons/PepeComfy.png b/assets/emotes/emoticons/PepeComfy.png index 21f3e427..8d9e7602 100644 Binary files a/assets/emotes/emoticons/PepeComfy.png and b/assets/emotes/emoticons/PepeComfy.png differ diff --git a/assets/emotes/emoticons/PepeHands.png b/assets/emotes/emoticons/PepeHands.png index ba00782b..7ca078f9 100644 Binary files a/assets/emotes/emoticons/PepeHands.png and b/assets/emotes/emoticons/PepeHands.png differ diff --git a/assets/emotes/emoticons/PepeLaugh.png b/assets/emotes/emoticons/PepeLaugh.png index 3eddf049..105f3cb6 100644 Binary files a/assets/emotes/emoticons/PepeLaugh.png and b/assets/emotes/emoticons/PepeLaugh.png differ diff --git a/assets/emotes/emoticons/PepeMods.png b/assets/emotes/emoticons/PepeMods.png index b914eba3..7a538641 100644 Binary files a/assets/emotes/emoticons/PepeMods.png and b/assets/emotes/emoticons/PepeMods.png differ diff --git a/assets/emotes/emoticons/Pepega.png b/assets/emotes/emoticons/Pepega.png index fc5e6f0b..63c426a0 100644 Binary files a/assets/emotes/emoticons/Pepega.png and b/assets/emotes/emoticons/Pepega.png differ diff --git a/assets/emotes/emoticons/PepoBan.png b/assets/emotes/emoticons/PepoBan.png index 225a13bd..d0496e10 100644 Binary files a/assets/emotes/emoticons/PepoBan.png and b/assets/emotes/emoticons/PepoBan.png differ diff --git a/assets/emotes/emoticons/PepoComfy.png b/assets/emotes/emoticons/PepoComfy.png index 51a64cce..db641e9d 100644 Binary files a/assets/emotes/emoticons/PepoComfy.png and b/assets/emotes/emoticons/PepoComfy.png differ diff --git a/assets/emotes/emoticons/PepoFight.png b/assets/emotes/emoticons/PepoFight.png index df57e9e2..404f0aa5 100644 Binary files a/assets/emotes/emoticons/PepoFight.png and b/assets/emotes/emoticons/PepoFight.png differ diff --git a/assets/emotes/emoticons/PepoG.png b/assets/emotes/emoticons/PepoG.png index 04eefc10..6aadb3af 100644 Binary files a/assets/emotes/emoticons/PepoG.png and b/assets/emotes/emoticons/PepoG.png differ diff --git a/assets/emotes/emoticons/PepoGood.png b/assets/emotes/emoticons/PepoGood.png index 7f4c8331..cf885825 100644 Binary files a/assets/emotes/emoticons/PepoGood.png and b/assets/emotes/emoticons/PepoGood.png differ diff --git a/assets/emotes/emoticons/PepoHmm.png b/assets/emotes/emoticons/PepoHmm.png index e96ea887..4bdc7ae3 100644 Binary files a/assets/emotes/emoticons/PepoHmm.png and b/assets/emotes/emoticons/PepoHmm.png differ diff --git a/assets/emotes/emoticons/PepoPirate.png b/assets/emotes/emoticons/PepoPirate.png index a7f36745..3a4f4bbc 100644 Binary files a/assets/emotes/emoticons/PepoPirate.png and b/assets/emotes/emoticons/PepoPirate.png differ diff --git a/assets/emotes/emoticons/PepoSleep.png b/assets/emotes/emoticons/PepoSleep.png new file mode 100644 index 00000000..daf480a2 Binary files /dev/null and b/assets/emotes/emoticons/PepoSleep.png differ diff --git a/assets/emotes/emoticons/PepoThink.png b/assets/emotes/emoticons/PepoThink.png index e12dffab..b6789adf 100644 Binary files a/assets/emotes/emoticons/PepoThink.png and b/assets/emotes/emoticons/PepoThink.png differ diff --git a/assets/emotes/emoticons/SEMPAI.png b/assets/emotes/emoticons/SEMPAI.png index 7b9faa27..b1b13f7c 100644 Binary files a/assets/emotes/emoticons/SEMPAI.png and b/assets/emotes/emoticons/SEMPAI.png differ diff --git a/assets/emotes/emoticons/SHOCK.png b/assets/emotes/emoticons/SHOCK.png index d23c14d1..0d7394a0 100644 Binary files a/assets/emotes/emoticons/SHOCK.png and b/assets/emotes/emoticons/SHOCK.png differ diff --git a/assets/emotes/emoticons/SHRUG.png b/assets/emotes/emoticons/SHRUG.png index 1a5f2762..503a6b21 100644 Binary files a/assets/emotes/emoticons/SHRUG.png and b/assets/emotes/emoticons/SHRUG.png differ diff --git a/assets/emotes/emoticons/SICKOOH.png b/assets/emotes/emoticons/SICKOOH.png index 64124e18..8d71ded6 100644 Binary files a/assets/emotes/emoticons/SICKOOH.png and b/assets/emotes/emoticons/SICKOOH.png differ diff --git a/assets/emotes/emoticons/SMOrc.png b/assets/emotes/emoticons/SMOrc.png old mode 100644 new mode 100755 index 646e6224..7f5ae331 Binary files a/assets/emotes/emoticons/SMOrc.png and b/assets/emotes/emoticons/SMOrc.png differ diff --git a/assets/emotes/emoticons/SMUG.png b/assets/emotes/emoticons/SMUG.png old mode 100755 new mode 100644 index 8863a0ba..3279076c Binary files a/assets/emotes/emoticons/SMUG.png and b/assets/emotes/emoticons/SMUG.png differ diff --git a/assets/emotes/emoticons/SOTRIGGERED.png b/assets/emotes/emoticons/SOTRIGGERED.png index 8664d7fb..fcf482c6 100644 Binary files a/assets/emotes/emoticons/SOTRIGGERED.png and b/assets/emotes/emoticons/SOTRIGGERED.png differ diff --git a/assets/emotes/emoticons/SPY.png b/assets/emotes/emoticons/SPY.png index 643b094f..07d8f6f6 100644 Binary files a/assets/emotes/emoticons/SPY.png and b/assets/emotes/emoticons/SPY.png differ diff --git a/assets/emotes/emoticons/SURPRISE.png b/assets/emotes/emoticons/SURPRISE.png new file mode 100644 index 00000000..1e52987d Binary files /dev/null and b/assets/emotes/emoticons/SURPRISE.png differ diff --git a/assets/emotes/emoticons/SWEATY.png b/assets/emotes/emoticons/SWEATY.png index 60b7b9f6..1c0a30ca 100644 Binary files a/assets/emotes/emoticons/SWEATY.png and b/assets/emotes/emoticons/SWEATY.png differ diff --git a/assets/emotes/emoticons/Sippy.png b/assets/emotes/emoticons/Sippy.png index 595380c2..8f5370a6 100644 Binary files a/assets/emotes/emoticons/Sippy.png and b/assets/emotes/emoticons/Sippy.png differ diff --git a/assets/emotes/emoticons/SoDoge.png b/assets/emotes/emoticons/SoDoge.png index 3a707920..fa1e47d1 100644 Binary files a/assets/emotes/emoticons/SoDoge.png and b/assets/emotes/emoticons/SoDoge.png differ diff --git a/assets/emotes/emoticons/SpookerZ.png b/assets/emotes/emoticons/SpookerZ.png index 773f6777..280c80f8 100644 Binary files a/assets/emotes/emoticons/SpookerZ.png and b/assets/emotes/emoticons/SpookerZ.png differ diff --git a/assets/emotes/emoticons/TIMID.png b/assets/emotes/emoticons/TIMID.png new file mode 100644 index 00000000..54454d1c Binary files /dev/null and b/assets/emotes/emoticons/TIMID.png differ diff --git a/assets/emotes/emoticons/UWOTM8.png b/assets/emotes/emoticons/UWOTM8.png index ebc87bce..07cda3f7 100644 Binary files a/assets/emotes/emoticons/UWOTM8.png and b/assets/emotes/emoticons/UWOTM8.png differ diff --git a/assets/emotes/emoticons/WICKED.png b/assets/emotes/emoticons/WICKED.png index 3c692cec..835272b0 100644 Binary files a/assets/emotes/emoticons/WICKED.png and b/assets/emotes/emoticons/WICKED.png differ diff --git a/assets/emotes/emoticons/Wowee.png b/assets/emotes/emoticons/Wowee.png index 7302488a..f430d12c 100644 Binary files a/assets/emotes/emoticons/Wowee.png and b/assets/emotes/emoticons/Wowee.png differ diff --git a/assets/emotes/emoticons/YEE.png b/assets/emotes/emoticons/YEE.png new file mode 100644 index 00000000..d7e21d5b Binary files /dev/null and b/assets/emotes/emoticons/YEE.png differ diff --git a/assets/emotes/emoticons/billyWeird.png b/assets/emotes/emoticons/billyWeird.png index 71f38c68..e66edf7f 100644 Binary files a/assets/emotes/emoticons/billyWeird.png and b/assets/emotes/emoticons/billyWeird.png differ diff --git a/assets/emotes/emoticons/cmonBruh.png b/assets/emotes/emoticons/cmonBruh.png index d7624e96..db21f9e9 100644 Binary files a/assets/emotes/emoticons/cmonBruh.png and b/assets/emotes/emoticons/cmonBruh.png differ diff --git a/assets/emotes/emoticons/gachiGASM.png b/assets/emotes/emoticons/gachiGASM.png index 4ec09291..82240f5d 100644 Binary files a/assets/emotes/emoticons/gachiGASM.png and b/assets/emotes/emoticons/gachiGASM.png differ diff --git a/assets/emotes/emoticons/monkaHmm.png b/assets/emotes/emoticons/monkaHmm.png index 06a63c3a..451b5446 100644 Binary files a/assets/emotes/emoticons/monkaHmm.png and b/assets/emotes/emoticons/monkaHmm.png differ diff --git a/assets/emotes/emoticons/monkaMEGA.png b/assets/emotes/emoticons/monkaMEGA.png new file mode 100644 index 00000000..67989953 Binary files /dev/null and b/assets/emotes/emoticons/monkaMEGA.png differ diff --git a/assets/emotes/emoticons/monkaS.png b/assets/emotes/emoticons/monkaS.png index 52ee7fd4..2d93d999 100644 Binary files a/assets/emotes/emoticons/monkaS.png and b/assets/emotes/emoticons/monkaS.png differ diff --git a/assets/emotes/emoticons/old/AYAYA.png b/assets/emotes/emoticons/old/AYAYA.png new file mode 100644 index 00000000..db2d01cf Binary files /dev/null and b/assets/emotes/emoticons/old/AYAYA.png differ diff --git a/assets/emotes/emoticons/old/AYAYA2.png b/assets/emotes/emoticons/old/AYAYA2.png new file mode 100644 index 00000000..0a709cde Binary files /dev/null and b/assets/emotes/emoticons/old/AYAYA2.png differ diff --git a/assets/emotes/emoticons/old/NOBULLY.png b/assets/emotes/emoticons/old/NOBULLY.png new file mode 100644 index 00000000..2524a4a8 Binary files /dev/null and b/assets/emotes/emoticons/old/NOBULLY.png differ diff --git a/assets/emotes/emoticons/old/haHAA.png b/assets/emotes/emoticons/old/haHAA.png new file mode 100644 index 00000000..c1d16ed6 Binary files /dev/null and b/assets/emotes/emoticons/old/haHAA.png differ diff --git a/assets/emotes/emoticons/old/monkaMEGA-2.png b/assets/emotes/emoticons/old/monkaMEGA-2.png new file mode 100644 index 00000000..36526238 Binary files /dev/null and b/assets/emotes/emoticons/old/monkaMEGA-2.png differ diff --git a/assets/emotes/emoticons/old/monkaMEGA.png b/assets/emotes/emoticons/old/monkaMEGA.png new file mode 100644 index 00000000..b1d4a3a1 Binary files /dev/null and b/assets/emotes/emoticons/old/monkaMEGA.png differ diff --git a/assets/emotes/emoticons/old/monkaS.png b/assets/emotes/emoticons/old/monkaS.png new file mode 100644 index 00000000..9acc472a Binary files /dev/null and b/assets/emotes/emoticons/old/monkaS.png differ diff --git a/assets/emotes/emoticons/sggL.png b/assets/emotes/emoticons/sggL.png index 1b80984f..23806707 100644 Binary files a/assets/emotes/emoticons/sggL.png and b/assets/emotes/emoticons/sggL.png differ diff --git a/assets/emotes/emoticons/umaruCry.png b/assets/emotes/emoticons/umaruCry.png index b0206a19..78eff53d 100644 Binary files a/assets/emotes/emoticons/umaruCry.png and b/assets/emotes/emoticons/umaruCry.png differ