Skip to content

Instantly share code, notes, and snippets.

@TheSunCat
Last active May 5, 2024 16:41
Show Gist options
  • Star 59 You must be signed in to star a gist
  • Fork 9 You must be signed in to fork a gist
  • Save TheSunCat/58fedaa19d6154ef3e4b2b676c286906 to your computer and use it in GitHub Desktop.
Save TheSunCat/58fedaa19d6154ef3e4b2b676c286906 to your computer and use it in GitHub Desktop.
Hide all Nitro & Boost upsells in Discord!
/**
* @name Adblock for Discord
* @author TheSunCat and contributors
* @version 1.0.0
* @description Hide all Nitro & Boost upsells on Discord!
* @source https://gist.github.com/TheSunCat/58fedaa19d6154ef3e4b2b676c286906
*/
/* ------------------ */
/* Hide Nitro upsells */
/* ------------------ */
/* Chatbox buttons */
div[aria-label="Start an Activity"] { display: none; }
button[aria-label="Send a gift"] { display: none; }
/* Hide Nitro button in Home */
a[href="/store"] { display: none; }
/* Hide shop button in Home */
a[href="/shop"] { display: none; }
/* TODO: join more than 100 servers upsell */
/* Hide Nitro tabs in Settings */
div[aria-label="User Settings"] > div[aria-label="Nitro"] { display: none; }
div[aria-label="User Settings"] > div[aria-label="Nitro"] + div { display: none; }
div[aria-label="User Settings"] > div[aria-label="Subscriptions"] { display: none; }
div[aria-label="User Settings"] > div[aria-label="Gift Inventory"] + div[class^="item_"] { display: none; }
/* Nitro separator in settings */
/*div[aria-label="User Settings"] > div[aria-label="Gift Inventory"] { display: none; }*/
/* Gift Inventory tab entirely */
/*div[aria-label="User Settings"] > div[aria-label="Gift Inventory"] + div[class^="item_"] + div[class^="separator"] { display: none; }*/
/* Hide Billing header and separator */
div[aria-label="User Settings"] > div[aria-label="Clips"] + div[class^="item_"] + div[class^="separator_"] + div[class^="header_"] { display: none; }
div[aria-label="User Settings"] > div[aria-label="Clips"] + div[class^="item_"] + div[class^="separator_"] + div[class^="header_"] ~ div[class^="header_"] { display: block; }
/* Server Profiles: Make unique profiles for each server box */
div[class*="upsellOverlayContainer_"] { display: none; }
/* Profiles: Choose a GIF avatar */
div[class^="optionBox"]:has(div[class^="text-sm-semibold"] > div[class^="optionBoxText"] > div[class^="optionBoxDescription"] > div[class^="nitroWheelFlairContainer"]) { display: none; }
/* Profiles: Change decorations exclusive to Nitro */
div[class*="decorationGridItem"]:has(div[class*="iconBadge"]) { display: none; } /* Decorations */
div[class*="effectGridItem"]:has(div[class*="iconBadge"]) { display: none; } /* Effects */
/* Profiles: Try out Nitro! box */
div[class^="premiumFeatureBorder"] { display: none; }
/* Profiles: New style ad */
#profile-customization-tab > div[class^="container"]:has(button[class*="colorBrand"]) { display: none; }
/* Profiles: Per server avatar */
div[class^="imageUploaderInner"] + div[class^="imageUploaderHint"] { display: none; }
div[class^="imageUploaderInner"] + div[class^="imageUploaderHint"] + div[class^="imageUploaderIcon"]{ display: none; }
/* Profiles: Hide profile customization ad in banners */
div[class^="bannerNitroUpsell"] { display: none;}
/* Voice & Video: Soundboard section */
div[class^="container"]:has(div[class^="children"] > div[class^="soundboardRow"]) { display: none; }
/* Appearance: Hide app icon upsell */
div[class^="selectionGroup"]:has(div[role="radiogroup"] > div > div[class^="presets"] > [class*="appIconSelectionContainer"]) { display: none; }
/* Appearance: Theme upsells */
section[class*="basicThemeSelectors_"] + section { display: none; }
/* Hide message size upsells */
div[class^="characterCount"] > div[class*=" upsell_"] { display: none; }
/* Hide Go Live quality upsells */
button[class*=" selectorButtonPremiumRequired"] { display: none; }
/* Hide ad in profile banners */
div[class^="premiumIconWrapper"] { display: none; }
/* Hide "Level up your look" ad in account profile popout */
div[class*="hasCollectiblesUpsell"] > div[class ^="userPopoutInner"] > div[class*="animation_"] { display: none; }
/* Hide "Gift Nitro" button in DM User Profile sidebar */
button[class*=" giftButton"] { display: none; }
/* Emoji popout: "Get nitro" button */
button[class^=shinyButton]:has(div[class*=premiumSubscribeButton]) { display: none; }
/* Emoji popout: "Powered by nitro" text */
div[class^=nitroTextAndBadge] { display: none; }
/* Hide "Custom emojis" Nitro text from hover tooltip */
div[class^=tooltipPremiumContent] { display: none; }
/* Emoji autocomplete upsell (wowww this stoops low, even for them) */
div[class^="nitroTopDividerContainer"], div[class^="nitroTopDividerContainer"] ~ div { display: none; }
/* Hide the 'Unlock these emoji with Nitro' in emoji picker */
div[class^=upsellContainer] { display: none; }
/* Remove the purple background in the emoji picker and autocomplete */
div[class*=categorySectionNitroLocked] { background-color: unset !important; }
/* Remove the purple divider at the bottom of the emoji picker*/
div[class^=nitroBottomDivider] { display: none; }
/* Hide the lock icon on servers icon in the emoji picker */
div[class^=categoryItemLockIconContainer] { display: none; }
/* Hide the lock icon on emoji in the emoji picker */
div[class^=emojiLockIconContainer] { display: none; }
/* Restore old grayscale filter on Nitro emojis so you don't accidentally click them and get an ad */
div[class*=categorySectionNitroLocked] > ul > li > button > img[class^="lockedEmoji"] { filter: grayscale(); }
/* Grayscale for emoji that are simply locked and not in the Nitro section */
button:has(div[class^=emojiLockIconContainer]) { filter: grayscale(); }
/* Avatar decorations upsell */
div[class*="userProfileInner_"] > div:has(div[aria-label="Go to Shop"]) { display: none; }
/* ------------- */
/* Server boosts */
/* ------------- */
/* Server Boost button in top left dropdown */
div[id="guild-header-popout-premium-subscribe"] { display: none; }
div[role="group"]:has(div[id="guild-header-popout-premium-subscribe"]) + div[role="separator"] { display: none; }
/* Server settings: Boost tab */
div[class^="serverBoostTabItem"] { display: none; }
div[class^="serverBoostTabItem"] + div[class^="separator"] { display: none; }
/* Server settings: Overview */
div[class^="divider"]:has(div > div > div > div[class^="upsell"]) { display: none; }
/* TODO: Hide role icon in Roles tab when we don't have boost lvl 2 */
/* Server settings: Stickers tab */
/* NOTE: risky, but seems ok for now */
div[class^="children_"] > div[class^="upsellContainer"] { display: none; }
div[class*="tierHeaderUnlocked"] + div { display: none; }
div[class*="tier_"]:has(div[class^="tierHeaderLocked"]) { display: none; }
div[class^="tierInProgress"] { display: none; }
/* Server settings: Custom Invite Link tab */
button[class^="shinyButton"]:has(div[class*="upsellButton"]) { display: none; }
/* Boost progress bar */
/* NOTE: risky, but seems ok for now */
ul[aria-label="Channels"] > div[role="button"][class^="container"] { display: none; }
/* TODO: would be nice to hide disabled soundboard sounds & emojis
* However, looks like it needs to be done on the JS level. This is too buggy
div[class*="premiumDisabled_"] {display:none;}*/
/* --------------- */
/* Super reactions */
/* --------------- */
/* Super reactions button */
button[id="super-reaction-picker-tab"] { display: none; }
/* Super reaction animation */
div[class*="shakeReaction"] { animation: none !important; }
div[class^="reactionInner"] > div > div[class^="effectsWrapper"] { display: none; }
img[class*="hideEmoji"] { animation: blink-emoji 1s linear infinite; opacity: 255; }
@keyframes blink-emoji {
50% { opacity: 0; }
}
/* Add Super Reaction menu item */
#message-add-reaction-1 { display: none; }
#message-actions-add-reaction-1 { display: none; }
div[aria-label="Add Super Reaction"] { display: none; }
/* Upsell when hovering a Super Reaction */
div[class^="burstReactionTooltipPrompt"] { display: none; }
/* --------------------------------- */
/* Quests (straight up paid ads lol) */
/* --------------------------------- */
/* Hide quests from the gift inventory */
div[class^="questsContainer"] > * { display: none; }
/* Completed quest profile badge (doesn't provide any use so...) */
a[aria-label^="Completed a Quest"] { display: none; }
/* ------------------ */
/* General annoyances */
/* ------------------ */
/* Chatbox buttons */
button[aria-label="Open GIF picker"] { display: none; }
button[aria-label="Open sticker picker"] { display: none; }
/* Stickers tab in emoji/GIF picker (can always be opened if needed with Ctrl+S) */
button[id="sticker-picker-tab"] { display: none; }
/* Avatar decorations */
svg[class*="avatarDecoration_"] { display: none; }
img[class^="avatarDecoration_"] { display: none; }
/* Profile effects */
div[class^="profileEffects"] { display: none; }
/* Animated "Activities" hover effect in calls */
/* NOTE: would be nice to disable the white hover effect,
* but that'd break when you're actually in an activity */
div[aria-labelledby^="vc-activities"] { display: none; }
/* Bugfix laggy server scroll */
div[data-dnd-name] > div[class^="wrapper"] svg { overflow: hidden; }
/* Hide Help button */
div[aria-label="Help"] { display: none; }
/* Hide explore servers button */
div[aria-label="Servers"] + div + div { display: none; }
/* Hide download button in web version */
div[aria-label="Servers"] + div[class^="tutorialContainer"] + div + div { display: none; } /* separator */
div[aria-label="Servers"] + div[class^="tutorialContainer"] + div + div + div { display: none; } /* button & click target */
/* Hide Library button in Home */
a[data-list-item-id*="___library"] { display: none; }
/* Nitro profile badges */
/*a[aria-label^="Subscriber since"], a[aria-label^="Early Supporter"] { display: none; }*/
/* Server booster profile badge */
/* a[aria-label^="Server boosting since"] { display: none; } */
/* Server booster member list badge */
/* svg[aria-label^="Server boosting since"] { display: none; } */
/* Hide all super reactions entirely */
/* div[id*="message-reactions"] div:has(div div[aria-label*="super reaction"]) { display: none; } */
/* Hide "Active Now" sidebar in friends list */
/* div[class^="nowPlayingColumn"] { display: none; } */
@TheSunCat
Copy link
Author

Done! Thanks for the feedback.

@douira
Copy link

douira commented Mar 22, 2024

All the server emotes (except for unicode emojis) are now grayscale for me, even the ones that are not nitro-exclusive.

@douira
Copy link

douira commented Mar 22, 2024

Screenshot 2024-03-22 at 19 06 20
Here's a screenshot of the dev console. It appears they are applying the lockedEmoji class to all emoji images, even ones that are not blocked. Maybe a :has filter is required.

@douira
Copy link

douira commented Mar 22, 2024

What I've written for myself is the following addition since I don't want to see unavailable emotes or their categories at all. I also don't want to see blocked messages.

[class*="groupStart"]:has([class*="blockedSystemMessage"]) {
    max-height: 0;
    overflow: hidden;
    border-top: #5a5d63 3px dashed;
    max-width: 80px;
    margin-left: 73px;
}

li[id^=emoji-picker-grid]:has(div[class^=emojiLockIconContainer]) {
  display: none !important;
}

div[class*=categorySectionNitroLocked] {
  display: none !important;
}

@TheSunCat
Copy link
Author

Thanks for letting me know! Should be fixed.

@LockBlock-dev
Copy link

Me again, it looks like I forgot a div at the very bottom of servers emojis:
image

/* Remove the purple divider at the bottom of the emoji picker*/
div[class^=nitroBottomDivider] { display: none; }

@lordfluffykins
Copy link

Hey, I was trying to figure out a way on how to permanently hide some of discord's elements and stumbled upon this site. The problem is that I have no idea where to insert this code and I would really like to know. I have Vencord downloaded, if that means anything to anyone.
Thanks in advance :)

@LockBlock-dev
Copy link

Hey, I was trying to figure out a way on how to permanently hide some of discord's elements and stumbled upon this site. The problem is that I have no idea where to insert this code and I would really like to know. I have Vencord downloaded, if that means anything to anyone. Thanks in advance :)

Enabling and pasting custom CSS should be available in your client mod settings. In Vencord you need to enable and open QuickCSS file.

@lordfluffykins
Copy link

Hey, I was trying to figure out a way on how to permanently hide some of discord's elements and stumbled upon this site. The problem is that I have no idea where to insert this code and I would really like to know. I have Vencord downloaded, if that means anything to anyone. Thanks in advance :)

Enabling and pasting custom CSS should be available in your client mod settings. In Vencord you need to enable and open QuickCSS file.

I did that but copy-pasting any line of code in the QuickCSS file did nothing, aka there were no changes.

@TheSunCat
Copy link
Author

/* Remove the purple divider at the bottom of the emoji picker*/
div[class^=nitroBottomDivider] { display: none; }

Thanks, added it!

I did that but copy-pasting any line of code in the QuickCSS file did nothing, aka there were no changes.

You need to copy-paste the full file into the QuickCSS window. Alternatively (if you don't need to customize it), you can add it to Vencord's Online Themes text box: https://gist.github.com/TheSunCat/58fedaa19d6154ef3e4b2b676c286906/raw/ac785fe3d2fec3a39def99587abf190dd1005636/DisblockOrigin.theme.css

@lordfluffykins
Copy link

add it to Vencord's Online Themes text box: https://gist.github.com/TheSunCat/58fedaa19d6154ef3e4b2b676c286906/raw/

Thanks for the help, that works. Does this mean you can remove any element of discord this way? If so, is there a way to remove the "Active Now" bar at the friends panel?

@TheSunCat
Copy link
Author

To a certain extent, yup!

I'll add it to the annoyances section, commented out (since it appears to be a genuine feature, though I never used it). You can copy that bit into your QuickCSS to hide it.

As a side note, I would really love to make this more customizable for people without having to manually wrangle the CSS. I don't want to make a plugin because I want to keep it usable without client mods (just inject the CSS), so I dunno. Any suggestions are welcome!

@Kupie
Copy link

Kupie commented Apr 1, 2024

Yooo thank you so much! Can't believe how much spammy shit is in discord now for nitro

@TheSunCat
Copy link
Author

It's crazy indeed. I also saw they are now implementing forced arbitration. I am primarily reachable via the open Matrix platform and I really hope more communities will decide to bridge or move their guilds entirely over to it!
It saddens me to see so many great open source projects providing only Discord as their main community hub.

@roddie-digital
Copy link

roddie-digital commented Apr 1, 2024

Just seen an advert for loot boxes, it's a massive chunk in <div class="wrapper_a2d9da"> but not sure if it will always be named like that don't know the best way to counter it. It's a popup in the bottom right corner saying "Loot boxes have arrived!" and if you mouseover it an embedded YouTube video slides up out of it...

@TheSunCat
Copy link
Author

Yeah, the name would change (the letters at the end), and I can't just block wrapper entirely. If I can get it to pop up on my end, I can try removing it. I searched around in Experiments and found "Packages" which shows a similar-sounding ad on the bottom right:
image

I have surprisingly not been able to find any unique identifying string to consistently block this one... here's the HTML if anyone wants to give it a shot:

Click to expand HTML
<div class="wrapper_a2d9da"><div class="closeButton_ab31cc button__4bf3d" role="button" tabindex="0"><svg class="closeIcon__08cd1" aria-hidden="true" role="img" xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" viewBox="0 0 24 24"><path fill="var(--white)" d="M17.3 18.7a1 1 0 0 0 1.4-1.4L13.42 12l5.3-5.3a1 1 0 0 0-1.42-1.4L12 10.58l-5.3-5.3a1 1 0 0 0-1.4 1.42L10.58 12l-5.3 5.3a1 1 0 1 0 1.42 1.4L12 13.42l5.3 5.3Z" class=""></path></svg><div class="text-xs-bold__5467c" data-text-variant="text-xs/bold" style="color: white;">Didn't ask</div></div><div class="contentWrapper_e66e14"><div class="videoWrapper_fd5126"><iframe class="video_f41d06" src="https://www.youtube.com/embed/cc2-4ci4G84?autoplay=1&amp;mute=1&amp;controls=0&amp;loop=1&amp;playlist=cc2-4ci4G84&amp;origin=https://discord.com" sandbox="allow-same-origin allow-scripts allow-popups"></iframe></div><div class="entrypoint__13ed3" role="button" tabindex="0"><div class="backgroundWrapper_bdc06e"><div class="background__91fa8 backgroundImage__12ba0" style="transform: translate3d(-29.5444px, -29.2556px, 0px);"></div></div><div class="animation_ab3e4b wrapper_c4c084"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 1080 1080" width="1080" height="1080" preserveAspectRatio="xMidYMid meet" style="width: 100%; height: 100%; transform: translate3d(0px, 0px, 0px); content-visibility: visible;"><defs><clipPath id="__lottie_element_199"><rect width="1080" height="1080" x="0" y="0"></rect></clipPath><image xlink:href=""></image><clipPath id="__lottie_element_205"><path d="M0,0 L1080,0 L1080,1080 L0,1080z"></path></clipPath><clipPath id="__lottie_element_259"><path d="M0,0 L1280,0 L1280,1280 L0,1280z"></path></clipPath><radialGradient id="__lottie_element_317" spreadMethod="pad" gradientUnits="userSpaceOnUse"><stop></stop><stop></stop><stop></stop></radialGradient><mask id="__lottie_element_319"><path fill="url(#__lottie_element_318)"></path></mask><radialGradient id="__lottie_element_318" spreadMethod="pad" gradientUnits="userSpaceOnUse"><stop stop-color="rgb(255,255,255)"></stop><stop stop-color="rgb(255,255,255)"></stop><stop stop-color="rgb(255,255,255)"></stop></radialGradient><radialGradient id="__lottie_element_323" spreadMethod="pad" gradientUnits="userSpaceOnUse"><stop></stop><stop></stop><stop></stop></radialGradient><mask id="__lottie_element_325"><path fill="url(#__lottie_element_324)"></path></mask><radialGradient id="__lottie_element_324" spreadMethod="pad" gradientUnits="userSpaceOnUse"><stop stop-color="rgb(255,255,255)"></stop><stop stop-color="rgb(255,255,255)"></stop><stop stop-color="rgb(255,255,255)"></stop></radialGradient><linearGradient id="__lottie_element_329" spreadMethod="pad" gradientUnits="userSpaceOnUse"><stop></stop><stop></stop><stop></stop><stop></stop><stop></stop></linearGradient><radialGradient id="__lottie_element_330" spreadMethod="pad" gradientUnits="userSpaceOnUse"><stop></stop><stop></stop><stop></stop></radialGradient><linearGradient id="__lottie_element_331" spreadMethod="pad" gradientUnits="userSpaceOnUse"><stop></stop><stop></stop><stop></stop><stop></stop><stop></stop></linearGradient><linearGradient id="__lottie_element_338" spreadMethod="pad" gradientUnits="userSpaceOnUse" x1="75.8949966430664" y1="-34.5369987487793" x2="-38.2869987487793" y2="16.792999267578125"><stop offset="0%" stop-color="rgb(255,255,255)" stop-opacity="1"></stop><stop offset="27%" stop-color="rgb(255,224,175)" stop-opacity="1"></stop><stop offset="44%" stop-color="rgb(255,194,95)" stop-opacity="1"></stop><stop offset="64%" stop-color="rgb(255,205,81)" stop-opacity="0.5"></stop><stop offset="100%" stop-color="rgb(255,216,67)" stop-opacity="0"></stop></linearGradient><linearGradient id="__lottie_element_339" spreadMethod="pad" gradientUnits="userSpaceOnUse" x1="69.40399932861328" y1="-34.61399841308594" x2="-34.04399871826172" y2="0.48500001430511475"><stop offset="0%" stop-color="rgb(255,255,255)" stop-opacity="1"></stop><stop offset="19%" stop-color="rgb(255,234,199)" stop-opacity="1"></stop><stop offset="31%" stop-color="rgb(255,212,143)" stop-opacity="1"></stop><stop offset="56%" stop-color="rgb(255,234,136)" stop-opacity="0.5"></stop><stop offset="100%" stop-color="rgb(255,255,130)" stop-opacity="0"></stop></linearGradient><linearGradient id="__lottie_element_340" spreadMethod="pad" gradientUnits="userSpaceOnUse" x1="157.21200561523438" y1="-48.14500045776367" x2="-86.48799896240234" y2="39.52199935913086"><stop offset="6%" stop-color="rgb(255,255,255)" stop-opacity="1"></stop><stop offset="46%" stop-color="rgb(255,255,255)" stop-opacity="0.5"></stop><stop offset="72%" stop-color="rgb(255,255,255)" stop-opacity="0"></stop></linearGradient><linearGradient id="__lottie_element_341" spreadMethod="pad" gradientUnits="userSpaceOnUse" x1="-23.586000442504883" y1="-52.345001220703125" x2="15.086000442504883" y2="42.08700180053711"><stop offset="6%" stop-color="rgb(255,255,255)" stop-opacity="1"></stop><stop offset="46%" stop-color="rgb(255,255,255)" stop-opacity="0.5"></stop><stop offset="72%" stop-color="rgb(255,255,255)" stop-opacity="0"></stop></linearGradient><linearGradient id="__lottie_element_342" spreadMethod="pad" gradientUnits="userSpaceOnUse" x1="-20.576000213623047" y1="-50.08300018310547" x2="16.974000930786133" y2="41.608001708984375"><stop offset="6%" stop-color="rgb(255,255,255)" stop-opacity="1"></stop><stop offset="46%" stop-color="rgb(255,255,255)" stop-opacity="0.5"></stop><stop offset="72%" stop-color="rgb(255,255,255)" stop-opacity="0"></stop></linearGradient><linearGradient id="__lottie_element_346" spreadMethod="pad" gradientUnits="userSpaceOnUse" x1="138.90499877929688" y1="-125.3290023803711" x2="-70.2509994506836" y2="15.70199966430664"><stop offset="0%" stop-color="rgb(255,255,255)" stop-opacity="1"></stop><stop offset="27%" stop-color="rgb(255,255,193)" stop-opacity="1"></stop><stop offset="44%" stop-color="rgb(255,255,130)" stop-opacity="1"></stop><stop offset="64%" stop-color="rgb(255,238,98)" stop-opacity="0.5"></stop><stop offset="100%" stop-color="rgb(255,221,67)" stop-opacity="0"></stop></linearGradient><linearGradient id="__lottie_element_347" spreadMethod="pad" gradientUnits="userSpaceOnUse" x1="-61.60599899291992" y1="-109.06300354003906" x2="12.468999862670898" y2="52.21900177001953"><stop offset="0%" stop-color="rgb(255,255,255)" stop-opacity="1"></stop><stop offset="27%" stop-color="rgb(255,246,193)" stop-opacity="1"></stop><stop offset="44%" stop-color="rgb(255,238,130)" stop-opacity="1"></stop><stop offset="64%" stop-color="rgb(255,227,98)" stop-opacity="0.5"></stop><stop offset="100%" stop-color="rgb(255,217,67)" stop-opacity="0"></stop></linearGradient><linearGradient id="__lottie_element_348" spreadMethod="pad" gradientUnits="userSpaceOnUse" x1="87.36799621582031" y1="-24.80699920654297" x2="-31.292999267578125" y2="15.45300006866455"><stop offset="0%" stop-color="rgb(255,255,255)" stop-opacity="1"></stop><stop offset="19%" stop-color="rgb(255,246,193)" stop-opacity="1"></stop><stop offset="31%" stop-color="rgb(255,238,130)" stop-opacity="1"></stop><stop offset="56%" stop-color="rgb(255,246,130)" stop-opacity="0.5"></stop><stop offset="100%" stop-color="rgb(255,255,130)" stop-opacity="0"></stop></linearGradient><linearGradient id="__lottie_element_349" spreadMethod="pad" gradientUnits="userSpaceOnUse" x1="-124.02200317382812" y1="-139.6439971923828" x2="27.825000762939453" y2="64.36100006103516"><stop offset="0%" stop-color="rgb(255,255,255)" stop-opacity="1"></stop><stop offset="27%" stop-color="rgb(255,255,193)" stop-opacity="1"></stop><stop offset="44%" stop-color="rgb(255,255,130)" stop-opacity="1"></stop><stop offset="64%" stop-color="rgb(255,227,98)" stop-opacity="0.5"></stop><stop offset="100%" stop-color="rgb(255,199,67)" stop-opacity="0"></stop></linearGradient><clipPath id="__lottie_element_397"><path d="M0,0 L300,0 L300,300 L0,300z"></path></clipPath><radialGradient id="__lottie_element_455" spreadMethod="pad" gradientUnits="userSpaceOnUse"><stop></stop><stop></stop><stop></stop></radialGradient><mask id="__lottie_element_457"><path fill="url(#__lottie_element_456)"></path></mask><radialGradient id="__lottie_element_456" spreadMethod="pad" gradientUnits="userSpaceOnUse"><stop stop-color="rgb(255,255,255)"></stop><stop stop-color="rgb(255,255,255)"></stop><stop stop-color="rgb(255,255,255)"></stop><stop stop-color="rgb(255,255,255)"></stop><stop stop-color="rgb(255,255,255)"></stop></radialGradient><radialGradient id="__lottie_element_463" spreadMethod="pad" gradientUnits="userSpaceOnUse"><stop></stop><stop></stop><stop></stop></radialGradient><radialGradient id="__lottie_element_467" spreadMethod="pad" gradientUnits="userSpaceOnUse"><stop></stop><stop></stop><stop></stop></radialGradient><radialGradient id="__lottie_element_474" spreadMethod="pad" gradientUnits="userSpaceOnUse"><stop></stop><stop></stop><stop></stop></radialGradient><mask id="__lottie_element_476"><path fill="url(#__lottie_element_475)"></path></mask><radialGradient id="__lottie_element_475" spreadMethod="pad" gradientUnits="userSpaceOnUse"><stop stop-color="rgb(255,255,255)"></stop><stop stop-color="rgb(255,255,255)"></stop><stop stop-color="rgb(255,255,255)"></stop><stop stop-color="rgb(255,255,255)"></stop><stop stop-color="rgb(255,255,255)"></stop></radialGradient></defs><g clip-path="url(#__lottie_element_199)"><g clip-path="url(#__lottie_element_205)" transform="matrix(1,0,0,1,0,0)" opacity="1" style="display: block;"><g style="display: none;"><g><path fill="url(#__lottie_element_474)" mask="url(#__lottie_element_476)"></path></g></g><g style="display: none;"><g><path fill="url(#__lottie_element_455)" mask="url(#__lottie_element_457)"></path></g></g><g style="display: none;"><g><path></path></g><g><path></path></g></g><g style="display: none;"><g><path fill="url(#__lottie_element_467)"></path></g></g><g style="display: none;"><g><path fill="url(#__lottie_element_463)"></path></g></g><g style="display: none;"><g><path></path></g><g><path></path></g></g><g clip-path="url(#__lottie_element_259)" transform="matrix(0.8899999856948853,0,0,0.8899999856948853,-29.5999755859375,-29.5999755859375)" opacity="1" style="display: block;"><g transform="matrix(1.711045742034912,-0.4906344711780548,0.4906344711780548,1.711045742034912,874.540771484375,565.4634399414062)" opacity="1" style="display: block;"><g opacity="1" transform="matrix(1,0,0,1,0,0)"><path fill="rgb(229,218,235)" fill-opacity="1" d=" M-6.002999782562256,60.09199905395508 C-6.002999782562256,60.09199905395508 -132.18099975585938,62.85200119018555 -132.18099975585938,62.85200119018555 C-132.18099975585938,62.85200119018555 -156.93099975585938,58.547000885009766 -156.93099975585938,58.547000885009766 C-156.93099975585938,58.547000885009766 -176.13499450683594,48.560001373291016 -176.13499450683594,48.560001373291016 C-176.13499450683594,48.560001373291016 -272.0589904785156,-30.177000045776367 -272.0589904785156,-30.177000045776367 C-272.0589904785156,-30.177000045776367 -263.5069885253906,-58.20800018310547 -262.0820007324219,-62.95899963378906 C-260.6570129394531,-67.70999908447266 -263.0320129394531,-70.08599853515625 -263.0320129394531,-70.08599853515625 C-263.0320129394531,-70.08599853515625 -269.6289978027344,-85.35800170898438 -270.8609924316406,-87.61699676513672 C-272.0929870605469,-89.8759994506836 -271.0660095214844,-92.95700073242188 -270.2449951171875,-95.4209976196289 C-269.42401123046875,-97.88500213623047 -263.468994140625,-119.86000061035156 -257.10198974609375,-131.36099243164062 C-250.73500061035156,-142.86199951171875 -234.71600341796875,-146.76400756835938 -230.4029998779297,-147.3800048828125 C-226.08999633789062,-147.99600219726562 -183.99000549316406,-146.35299682617188 -183.99000549316406,-146.35299682617188 C-183.99000549316406,-146.35299682617188 -181.11399841308594,-148.8179931640625 -179.26600646972656,-149.84500122070312 C-177.41799926757812,-150.8719940185547 -174.33700561523438,-150.66600036621094 -172.2830047607422,-150.87100219726562 C-170.22900390625,-151.0760040283203 -165.50599670410156,-145.9429931640625 -165.50599670410156,-145.9429931640625 C-165.50599670410156,-145.9429931640625 -155.6479949951172,-146.1479949951172 -155.6479949951172,-146.1479949951172 C-155.6479949951172,-146.1479949951172 -153.18299865722656,-148.20199584960938 -150.718994140625,-149.0229949951172 C-148.2550048828125,-149.843994140625 -144.1479949951172,-149.22799682617188 -142.7100067138672,-148.61199951171875 C-141.27200317382812,-147.99600219726562 -136.9600067138672,-143.88900756835938 -136.9600067138672,-143.88900756835938 C-136.9600067138672,-143.88900756835938 -105.53800201416016,-141.62899780273438 -93.21600341796875,-141.4239959716797 C-80.89399719238281,-141.218994140625 -69.5979995727539,-134.031005859375 -64.0530014038086,-130.5399932861328 C-58.507999420166016,-127.04900360107422 17.479000091552734,-72.41999816894531 32.26599884033203,-59.891998291015625 C47.053001403808594,-47.36399841308594 47.875,-29.70199966430664 46.4370002746582,-22.924999237060547 C44.999000549316406,-16.148000717163086 37.81100082397461,7.263999938964844 37.60599899291992,8.291000366210938 C37.4010009765625,9.317999839782715 35.75699996948242,12.192999839782715 33.909000396728516,14.041000366210938 C32.06100082397461,15.888999938964844 28.569000244140625,16.91699981689453 28.569000244140625,16.91699981689453 C28.569000244140625,16.91699981689453 27.663000106811523,17.541000366210938 27.663000106811523,17.541000366210938 C27.663000106811523,17.541000366210938 6.435999870300293,24.315000534057617 3.505000114440918,32.61899948120117 C1.0169999599456787,39.66600036621094 -1.8220000267028809,48.58300018310547 -5.502999782562256,60.007999420166016 C-5.502999782562256,60.007999420166016 -6.002999782562256,60.09199905395508 -6.002999782562256,60.09199905395508z"></path></g><g opacity="1" transform="matrix(1,0,0,1,0,0)"><path fill="rgb(219,206,224)" fill-opacity="1" d=" M-242.33999633789062,-143.64199829101562 C-242.33999633789062,-143.64199829101562 -143.031005859375,-64.69100189208984 -136.5760040283203,-59.229000091552734 C-130.12100219726562,-53.766998291015625 -113.23799896240234,-49.79499816894531 -103.80400085449219,-49.29800033569336 C-94.37000274658203,-48.80099868774414 41.90700149536133,-47.91299819946289 41.90700149536133,-47.91299819946289 C41.90700149536133,-47.91299819946289 37.71200180053711,-56.25 33.24300003051758,-59.72600173950195 C28.77400016784668,-63.20199966430664 -56.63199996948242,-125.76599884033203 -60.604000091552734,-128.24899291992188 C-64.57599639892578,-130.73199462890625 -81.95500183105469,-141.15899658203125 -93.3759994506836,-142.15199279785156 C-104.7969970703125,-143.14500427246094 -228.43699645996094,-147.61399841308594 -228.43699645996094,-147.61399841308594 C-228.43699645996094,-147.61399841308594 -239.85699462890625,-147.1179962158203 -242.33999633789062,-143.64199829101562z"></path></g><g opacity="1" transform="matrix(1,0,0,1,0,0)"><path fill="rgb(219,206,224)" fill-opacity="1" d=" M-144.66000366210938,28.10700035095215 C-144.66000366210938,28.10700035095215 -131.05299377441406,-12.71399974822998 -128.78500366210938,-18.950000762939453 C-126.51699829101562,-25.18600082397461 -113.47699737548828,-39.926998138427734 -93.06700134277344,-39.926998138427734 C-72.65699768066406,-39.926998138427734 24.860000610351562,-37.659000396728516 32.22999954223633,-37.09199905395508 C39.599998474121094,-36.525001525878906 46.97100067138672,-33.12300109863281 45.83700180053711,-26.31999969482422 C44.702999114990234,-19.517000198364258 36.19900131225586,7.697000026702881 35.064998626708984,9.96500015258789 C33.930999755859375,12.232999801635742 32.33000183105469,16.070999145507812 28.92799949645996,16.63800048828125 C25.525999069213867,17.204999923706055 8.569999694824219,25.812999725341797 7.340000152587891,28.200000762939453 C5.017000198364258,32.70800018310547 -5.75600004196167,60.99100112915039 -5.75600004196167,60.99100112915039 C-5.75600004196167,60.99100112915039 -130.48599243164062,60.99100112915039 -130.48599243164062,60.99100112915039 C-130.48599243164062,60.99100112915039 -122.54900360107422,39.446998596191406 -121.41500091552734,33.777000427246094 C-120.28099822998047,28.10700035095215 -122.5479965209961,23.0049991607666 -127.6510009765625,20.73699951171875 C-132.75399780273438,18.4689998626709 -137.28900146484375,15.067000389099121 -137.28900146484375,15.067000389099121 C-137.28900146484375,15.067000389099121 -144.66000366210938,28.10700035095215 -144.66000366210938,28.10700035095215z"></path></g><g opacity="1" transform="matrix(1,0,0,1,0,0)"><path fill="rgb(156,165,215)" fill-opacity="1" d=" M-163.2989959716797,52.41600036621094 C-163.2989959716797,52.41600036621094 -147.11000061035156,2.50600004196167 -143.8300018310547,-8.73900032043457 C-140.5500030517578,-19.983999252319336 -133.52099609375,-43.4119987487793 -156.01199340820312,-61.68600082397461 C-178.5030059814453,-79.95999908447266 -252.06700134277344,-137.12399291992188 -252.06700134277344,-137.12399291992188 C-252.06700134277344,-137.12399291992188 -256.75299072265625,-132.43800354003906 -259.5639953613281,-126.34700012207031 C-262.375,-120.25599670410156 -269.07000732421875,-99.5270004272461 -270.0069885253906,-97.18399810791016 C-270.9440002441406,-94.84100341796875 -272.73199462890625,-90.08499908447266 -269.87200927734375,-85.11399841308594 C-268.18701171875,-82.18499755859375 -262.32501220703125,-67.2770004272461 -262.79400634765625,-64.93399810791016 C-263.26300048828125,-62.590999603271484 -271.9150085449219,-32.5369987487793 -271.9150085449219,-32.5369987487793 C-271.9150085449219,-32.5369987487793 -176.2220001220703,48.63999938964844 -176.2220001220703,48.63999938964844 C-176.2220001220703,48.63999938964844 -163.2989959716797,52.41600036621094 -163.2989959716797,52.41600036621094z"></path></g><g opacity="1" transform="matrix(1,0,0,1,0,0)"><path fill="rgb(145,155,198)" fill-opacity="1" d=" M-237.28500366210938,-84.90599822998047 C-237.28500366210938,-84.90599822998047 -237.28500366210938,-84.90599822998047 -237.28500366210938,-84.90599822998047 C-240.63299560546875,-84.4540023803711 -243.74099731445312,-86.8219985961914 -244.1929931640625,-90.16999816894531 C-244.1929931640625,-90.16999816894531 -245.9810028076172,-104.80599975585938 -245.9810028076172,-104.80599975585938 C-246.43299865722656,-108.15399932861328 -244.06399536132812,-111.26300048828125 -240.71600341796875,-111.71499633789062 C-240.71600341796875,-111.71499633789062 -240.71600341796875,-111.71499633789062 -240.71600341796875,-111.71499633789062 C-237.3679962158203,-112.16699981689453 -234.25999450683594,-109.7979965209961 -233.80799865722656,-106.44999694824219 C-233.80799865722656,-106.44999694824219 -232.02000427246094,-91.81500244140625 -232.02000427246094,-91.81500244140625 C-231.5679931640625,-88.46700286865234 -233.93699645996094,-85.35800170898438 -237.28500366210938,-84.90599822998047z"></path></g><g opacity="1" transform="matrix(1,0,0,1,0,0)"><path fill="rgb(194,186,198)" fill-opacity="1" d=" M-97.90299987792969,6.074999809265137 C-97.90299987792969,6.074999809265137 -97.90299987792969,6.074999809265137 -97.90299987792969,6.074999809265137 C-101.22899627685547,7.984000205993652 -105.40599822998047,7.010000228881836 -107.18399810791016,3.9119999408721924 C-107.18399810791016,3.9119999408721924 -112.9260025024414,-8.449000358581543 -112.9260025024414,-8.449000358581543 C-114.7040023803711,-11.54699993133545 -113.43800354003906,-15.645000457763672 -110.11199951171875,-17.554000854492188 C-110.11199951171875,-17.554000854492188 -110.11199951171875,-17.554000854492188 -110.11199951171875,-17.554000854492188 C-106.78600311279297,-19.46299934387207 -102.60900115966797,-18.48900032043457 -100.83100128173828,-15.390999794006348 C-100.83100128173828,-15.390999794006348 -95.08899688720703,-3.0299999713897705 -95.08899688720703,-3.0299999713897705 C-93.31099700927734,0.06800000369548798 -94.5770034790039,4.165999889373779 -97.90299987792969,6.074999809265137z"></path></g><g opacity="1" transform="matrix(1,0,0,1,0,0)"><path fill="rgb(194,186,198)" fill-opacity="1" d=" M-0.15800000727176666,2.490000009536743 C-0.15800000727176666,2.490000009536743 -0.15800000727176666,2.490000009536743 -0.15800000727176666,2.490000009536743 C-2.436000108718872,-0.004000000189989805 -2.259000062942505,-3.9089999198913574 0.23499999940395355,-6.186999797821045 C0.23499999940395355,-6.186999797821045 15.758999824523926,-20.10099983215332 15.758999824523926,-20.10099983215332 C18.253000259399414,-22.378999710083008 22.158000946044922,-22.20199966430664 24.43600082397461,-19.70800018310547 C24.43600082397461,-19.70800018310547 24.43600082397461,-19.70800018310547 24.43600082397461,-19.70800018310547 C26.714000701904297,-17.214000701904297 26.535999298095703,-13.309000015258789 24.04199981689453,-11.031000137329102 C24.04199981689453,-11.031000137329102 8.517999649047852,2.882999897003174 8.517999649047852,2.882999897003174 C6.02400016784668,5.160999774932861 2.119999885559082,4.984000205993652 -0.15800000727176666,2.490000009536743z"></path></g><g opacity="1" transform="matrix(1,0,0,1,0,0)"><path fill="rgb(145,155,198)" fill-opacity="1" d=" M-180.40199279785156,-17.974000930786133 C-180.40199279785156,-17.974000930786133 -180.40199279785156,-17.974000930786133 -180.40199279785156,-17.974000930786133 C-182.0850067138672,-20.902999877929688 -181.06500244140625,-24.676000595092773 -178.13600158691406,-26.358999252319336 C-178.13600158691406,-26.358999252319336 -165.25799560546875,-33.540000915527344 -165.25799560546875,-33.540000915527344 C-162.32899475097656,-35.222999572753906 -158.55599975585938,-34.20199966430664 -156.8730010986328,-31.273000717163086 C-156.8730010986328,-31.273000717163086 -156.8730010986328,-31.273000717163086 -156.8730010986328,-31.273000717163086 C-155.19000244140625,-28.3439998626709 -156.21099853515625,-24.570999145507812 -159.13999938964844,-22.88800048828125 C-159.13999938964844,-22.88800048828125 -172.01699829101562,-15.708000183105469 -172.01699829101562,-15.708000183105469 C-174.9459991455078,-14.024999618530273 -178.718994140625,-15.045000076293945 -180.40199279785156,-17.974000930786133z"></path></g><g opacity="1" transform="matrix(1,0,0,1,0,0)"><path fill="rgb(73,69,70)" fill-opacity="1" d=" M27.660999298095703,17.174999237060547 C27.660999298095703,17.174999237060547 13.286999702453613,61.07699966430664 13.286999702453613,61.07699966430664 C13.286999702453613,61.07699966430664 -5.688000202178955,61.236000061035156 -5.813000202178955,60.96099853515625 C-1.6629999876022339,48.29999923706055 2.73799991607666,34.979000091552734 3.690000057220459,32.75699996948242 C5.48799991607666,28.562000274658203 11.180000305175781,23.16900062561035 13.876999855041504,21.969999313354492 C16.573999404907227,20.770999908447266 27.660999298095703,17.174999237060547 27.660999298095703,17.174999237060547z"></path></g><g opacity="1" transform="matrix(1,0,0,1,0,0)"><path fill="rgb(73,69,70)" fill-opacity="1" d=" M-272.65899658203125,-30.422000885009766 C-268.010986328125,-45.367000579833984 -263.4219970703125,-60.02299880981445 -262.989990234375,-61.03099822998047 C-262.09100341796875,-63.12799835205078 -261.49200439453125,-65.82499694824219 -262.6910095214844,-68.52200317382812 C-263.8900146484375,-71.21900177001953 -268.6839904785156,-82.00599670410156 -268.6839904785156,-82.00599670410156 C-268.6839904785156,-82.00599670410156 -282.3599853515625,-37.4739990234375 -282.3599853515625,-37.4739990234375 C-282.3599853515625,-37.4739990234375 -275,-32.02299880981445 -272.65899658203125,-30.422000885009766z"></path></g><g opacity="1" transform="matrix(1,0,0,1,0,0)"><path fill="rgb(73,69,70)" fill-opacity="1" d=" M-164.98699951171875,11.848999977111816 C-164.98699951171875,11.848999977111816 -166.63800048828125,18.452999114990234 -166.63800048828125,18.452999114990234 C-166.63800048828125,18.452999114990234 -163.33599853515625,22.084999084472656 -163.33599853515625,22.084999084472656 C-163.33599853515625,22.084999084472656 -168.28900146484375,23.075000762939453 -168.28900146484375,23.075000762939453 C-168.28900146484375,23.075000762939453 -176.11300659179688,49.292999267578125 -176.11300659179688,49.292999267578125 C-176.11300659179688,49.292999267578125 -174.64700317382812,51.35300064086914 -174.64700317382812,51.35300064086914 C-174.64700317382812,51.35300064086914 -174.67300415039062,51.26499938964844 -174.67300415039062,51.26499938964844 C-174.67300415039062,51.26499938964844 -174.66700744628906,51.15299987792969 -174.66700744628906,51.15299987792969 C-174.66700744628906,51.15299987792969 -166.1750030517578,56.27899932861328 -158.35499572753906,59.35499954223633 C-146.1999969482422,64.13600158691406 -134.93099975585938,63.01499938964844 -134.93099975585938,63.01499938964844 C-134.93099975585938,63.01499938964844 -134.8470001220703,63.007999420166016 -134.8470001220703,63.007999420166016 C-134.8470001220703,63.007999420166016 -135.0290069580078,63.20399856567383 -135.0290069580078,63.20399856567383 C-135.0290069580078,63.20399856567383 -133.70899963378906,62.542999267578125 -133.70899963378906,62.542999267578125 C-133.70899963378906,62.542999267578125 -125.69599914550781,37.60300064086914 -125.69599914550781,37.60300064086914 C-125.69599914550781,37.60300064086914 -127.34700012207031,38.263999938964844 -127.01699829101562,37.27299880981445 C-126.68699645996094,36.28200149536133 -125.69599914550781,33.64099884033203 -125.69599914550781,33.64099884033203 C-125.69599914550781,33.64099884033203 -123.05500030517578,32.31999969482422 -123.05500030517578,32.31999969482422 C-123.05500030517578,32.31999969482422 -121.40399932861328,24.06599998474121 -121.40399932861328,24.06599998474121 C-121.40399932861328,24.06599998474121 -137.2519989013672,14.16100025177002 -137.2519989013672,14.16100025177002 C-137.2519989013672,14.16100025177002 -147.1580047607422,11.519000053405762 -147.1580047607422,11.519000053405762 C-147.1580047607422,11.519000053405762 -164.98699951171875,11.848999977111816 -164.98699951171875,11.848999977111816z"></path></g><g opacity="1" transform="matrix(1,0,0,1,0,0)"><path fill="rgb(234,172,59)" fill-opacity="1" d=" M-38.85900115966797,-77.58499908447266 C-42.54499816894531,-65.32499694824219 -74.87000274658203,-64.20700073242188 -111.05899810791016,-75.08799743652344 C-147.2480010986328,-85.96900177001953 -173.5959930419922,-104.72899627685547 -169.91000366210938,-116.98899841308594 C-166.2239990234375,-129.24899291992188 -133.8990020751953,-130.36599731445312 -97.70999908447266,-119.48500061035156 C-61.520999908447266,-108.60399627685547 -35.17300033569336,-89.84500122070312 -38.85900115966797,-77.58499908447266z"></path></g><g opacity="1" transform="matrix(1,0,0,1,0,0)"><path fill="rgb(73,69,70)" fill-opacity="1" d=" M-66.34400177001953,-62.731998443603516 C-66.34400177001953,-62.731998443603516 -67.06900024414062,-55.96500015258789 -67.06900024414062,-55.96500015258789 C-67.06900024414062,-55.96500015258789 -58.36800003051758,-49.43899917602539 -57.8849983215332,-47.74700164794922 C-57.402000427246094,-46.05500030517578 -56.435001373291016,-39.77000045776367 -56.917999267578125,-38.31999969482422 C-57.4010009765625,-36.869998931884766 -64.41100311279297,-13.907999992370605 -64.41100311279297,-13.182999610900879 C-64.41100311279297,-12.458000183105469 -61.027000427246094,-4.966000080108643 -59.81800079345703,-4.723999977111816 C-58.60900115966797,-4.48199987411499 -37.58100128173828,-4.239999771118164 -36.13100051879883,-4.965000152587891 C-34.680999755859375,-5.690000057220459 -30.08799934387207,-10.041000366210938 -29.604999542236328,-11.008000373840332 C-29.121999740600586,-11.975000381469727 -22.95400047302246,-35.90999984741211 -22.47100067138672,-37.36000061035156 C-21.988000869750977,-38.810001373291016 -22.851999282836914,-46.89899826049805 -24.246000289916992,-50.54100036621094 C-28.700000762939453,-55.83000183105469 -37.34000015258789,-63.45800018310547 -39.03200149536133,-63.215999603271484 C-40.7239990234375,-62.9739990234375 -63.444000244140625,-63.941001892089844 -63.444000244140625,-63.941001892089844 C-63.444000244140625,-63.941001892089844 -65.61900329589844,-64.66600036621094 -66.34400177001953,-62.731998443603516z"></path></g><g opacity="0.44" transform="matrix(1,0,0,1,0,0)"><path stroke-linecap="butt" stroke-linejoin="miter" fill-opacity="0" stroke-miterlimit="10" stroke="rgb(73,69,70)" stroke-opacity="1" stroke-width="2" d=" M-243.87100219726562,-7.326000213623047 C-243.822998046875,-7.497000217437744 -243.77499389648438,-7.666999816894531 -243.72500610351562,-7.836999893188477 C-240.24600219726562,-19.729999542236328 -232.65699768066406,-28.03700065612793 -223.61099243164062,-28.31999969482422 C-210.76300048828125,-28.722000122070312 -199.83700561523438,-12.786999702453613 -199.20899963378906,7.2729997634887695 C-199.20899963378906,7.2729997634887695 -199.20899963378906,7.2729997634887695 -199.20899963378906,7.2729997634887695 C-198.98300170898438,14.468999862670898 -200.11399841308594,21.2189998626709 -202.24899291992188,26.93400001525879"></path></g><g opacity="1" transform="matrix(1,0,0,1,0,0)"><g opacity="1" transform="matrix(1,0,0,1,0,0)"><path fill="rgb(73,69,70)" fill-opacity="1" d=" M11.939000129699707,-60.4370002746582 C11.055999755859375,-57.78900146484375 3.390000104904175,-57.959999084472656 -5.184000015258789,-60.81800079345703 C-13.758000373840332,-63.67599868774414 -19.993000030517578,-68.13999938964844 -19.110000610351562,-70.78800201416016 C-18.226999282836914,-73.43599700927734 -10.560999870300293,-73.26499938964844 -1.9869999885559082,-70.40699768066406 C6.586999893188477,-67.54900360107422 12.821999549865723,-63.084999084472656 11.939000129699707,-60.4370002746582z"></path></g><g opacity="1" transform="matrix(1,0,0,1,0,0)"><g opacity="1" transform="matrix(1,0,0,1,0,0)"><path fill="rgb(255,46,9)" fill-opacity="1" d=" M-16.59000015258789,-71.43099975585938 C-17.472999572753906,-68.78299713134766 -12.130999565124512,-64.61699676513672 -4.658999919891357,-62.125999450683594 C2.812999963760376,-59.6349983215332 9.585000038146973,-59.76300048828125 10.468000411987305,-62.4109992980957 C10.468000411987305,-62.4109992980957 12.836000442504883,-69.34600067138672 12.836000442504883,-69.34600067138672 C12.836000442504883,-69.34600067138672 -14.222000122070312,-78.36599731445312 -14.222000122070312,-78.36599731445312 C-14.222000122070312,-78.36599731445312 -16.59000015258789,-71.43099975585938 -16.59000015258789,-71.43099975585938z"></path></g><g opacity="1" transform="matrix(1,0,0,1,0,0)"><path fill="rgb(255,152,148)" fill-opacity="1" d=" M12.836000442504883,-69.34600067138672 C11.95300006866455,-66.697998046875 5.181000232696533,-66.56999969482422 -2.2909998893737793,-69.06099700927734 C-9.762999534606934,-71.552001953125 -15.104999542236328,-75.71800231933594 -14.222000122070312,-78.36599731445312 C-13.33899974822998,-81.01399993896484 -6.565999984741211,-81.14199829101562 0.906000018119812,-78.6510009765625 C8.378000259399414,-76.16000366210938 13.718999862670898,-71.99400329589844 12.836000442504883,-69.34600067138672z"></path></g></g></g><g opacity="1" transform="matrix(1,0,0,1,0,0)"><g opacity="1" transform="matrix(1,0,0,1,0,0)"><path stroke-linecap="butt" stroke-linejoin="miter" fill-opacity="0" stroke-miterlimit="10" stroke="rgb(73,69,70)" stroke-opacity="1" stroke-width="1" d=" M-106.84600067138672,-61.064998626708984 C-107.41100311279297,-58.858001708984375 -113.10700225830078,-58.40999984741211 -119.56700134277344,-60.06399917602539 C-126.0270004272461,-61.71799850463867 -130.80599975585938,-64.8479995727539 -130.24099731445312,-67.05500030517578 C-129.67599487304688,-69.26200103759766 -123.9800033569336,-69.70999908447266 -117.5199966430664,-68.05599975585938 C-111.05999755859375,-66.4020004272461 -106.28099822998047,-63.27199935913086 -106.84600067138672,-61.064998626708984z"></path></g><g opacity="1" transform="matrix(1,0,0,1,0,0)"><path stroke-linecap="butt" stroke-linejoin="miter" fill-opacity="0" stroke-miterlimit="10" stroke="rgb(73,69,70)" stroke-opacity="1" stroke-width="1" d=" M-74.4219970703125,-122.16200256347656 C-75.06199645996094,-119.66200256347656 -82.78099822998047,-119.47799682617188 -91.66100311279297,-121.75199890136719 C-100.54100036621094,-124.0260009765625 -107.22100067138672,-127.89600372314453 -106.58100128173828,-130.39599609375 C-105.94100189208984,-132.89599609375 -98.2229995727539,-133.07899475097656 -89.34300231933594,-130.80499267578125 C-80.46299743652344,-128.531005859375 -73.78199768066406,-124.66200256347656 -74.4219970703125,-122.16200256347656z"></path></g></g><g opacity="1" transform="matrix(1,0,0,1,0,0)"><path fill="rgb(73,69,70)" fill-opacity="1" d=" M-185.33099365234375,-146.01300048828125 C-185.33099365234375,-146.01300048828125 -178.0989990234375,-145.51400756835938 -178.0989990234375,-145.51400756835938 C-178.0989990234375,-145.51400756835938 -167.1280059814453,-136.78599548339844 -165.3820037841797,-136.53700256347656 C-163.63600158691406,-136.28799438476562 -133.21400451660156,-135.04100036621094 -132.96499633789062,-135.78900146484375 C-132.71600341796875,-136.53700256347656 -131.718994140625,-138.53199768066406 -132.71600341796875,-139.27999877929688 C-133.71299743652344,-140.0279998779297 -143.18899536132812,-149.25399780273438 -144.43600463867188,-149.25399780273438 C-145.68299865722656,-149.25399780273438 -149.6719970703125,-150.2519989013672 -151.91600036621094,-148.75599670410156 C-154.16000366210938,-147.25999450683594 -154.90899658203125,-145.51400756835938 -154.90899658203125,-145.51400756835938 C-154.90899658203125,-145.51400756835938 -166.37899780273438,-145.76300048828125 -166.37899780273438,-145.76300048828125 C-166.37899780273438,-145.76300048828125 -171.11700439453125,-150.0030059814453 -171.86500549316406,-150.2519989013672 C-172.61300659179688,-150.50100708007812 -176.85299682617188,-150.50100708007812 -178.3489990234375,-150.0019989013672 C-179.84500122070312,-149.5030059814453 -185.33099365234375,-146.01300048828125 -185.33099365234375,-146.01300048828125z"></path></g><g opacity="1" transform="matrix(1,0,0,1,0,0)"><path fill="rgb(45,44,44)" fill-opacity="1" d=" M-59.81800079345703,-4.723999977111816 C-59.81800079345703,-4.723999977111816 -59.0890007019043,-6.545000076293945 -59.0890007019043,-6.545000076293945 C-59.0890007019043,-6.545000076293945 -62.36399841308594,-12.729999542236328 -62.18199920654297,-13.093999862670898 C-62,-13.458000183105469 -54.99700164794922,-37.196998596191406 -54.814998626708984,-38.198001861572266 C-54.632999420166016,-39.19900131225586 -55.90599822998047,-48.56700134277344 -56.17900085449219,-49.02199935913086 C-56.45199966430664,-49.47700119018555 -64.36499786376953,-57.47999954223633 -64.36499786376953,-57.47999954223633 C-64.36499786376953,-57.47999954223633 -63.72800064086914,-63.9379997253418 -63.72800064086914,-63.9379997253418 C-63.72800064086914,-63.9379997253418 -66.13999938964844,-64.43599700927734 -66.34400177001953,-62.731998443603516 C-66.5479965209961,-61.02799987792969 -67.06900024414062,-55.96500015258789 -67.06900024414062,-55.96500015258789 C-67.06900024414062,-55.96500015258789 -61.362998962402344,-51.29499816894531 -60.180999755859375,-50.20399856567383 C-58.999000549316406,-49.112998962402344 -57.99800109863281,-48.11199951171875 -57.63399887084961,-46.292999267578125 C-57.27000045776367,-44.4739990234375 -56.65599822998047,-39.715999603271484 -56.917999267578125,-38.31999969482422 C-57.18000030517578,-36.92399978637695 -64.18399810791016,-13.454000473022461 -64.41100311279297,-13.182999610900879 C-64.63800048828125,-12.911999702453613 -62.00199890136719,-6.177000045776367 -59.81800079345703,-4.723999977111816z"></path></g><g opacity="1" transform="matrix(1,0,0,1,0,0)"><path fill="rgb(45,44,44)" fill-opacity="1" d=" M-132.41799926757812,-138.46400451660156 C-132.41799926757812,-138.46400451660156 -164.7689971923828,-139.01600646972656 -164.7689971923828,-139.01600646972656 C-164.7689971923828,-139.01600646972656 -177.17599487304688,-150.32000732421875 -177.45199584960938,-150.32000732421875 C-177.72799682617188,-150.32000732421875 -179.47500610351562,-149.677001953125 -180.2100067138672,-149.2169952392578 C-180.94500732421875,-148.7570037841797 -185.33099365234375,-146.01300048828125 -185.33099365234375,-146.01300048828125 C-185.33099365234375,-146.01300048828125 -178.0989990234375,-145.51400756835938 -178.0989990234375,-145.51400756835938 C-178.0989990234375,-145.51400756835938 -166.79100036621094,-136.25900268554688 -166.05599975585938,-136.25900268554688 C-165.3209991455078,-136.25900268554688 -132.96499633789062,-135.78900146484375 -132.96499633789062,-135.78900146484375 C-132.96499633789062,-135.78900146484375 -132.41799926757812,-138.46400451660156 -132.41799926757812,-138.46400451660156z"></path></g><g opacity="1" transform="matrix(1,0,0,1,0,0)"><path stroke-linecap="butt" stroke-linejoin="miter" fill-opacity="0" stroke-miterlimit="10" stroke="rgb(45,44,44)" stroke-opacity="1" stroke-width="1" d=" M-36.08700180053711,-16.35300064086914 C-36.08700180053711,-16.35300064086914 -52.61000061035156,-16.35300064086914 -52.61000061035156,-16.35300064086914"></path></g><g opacity="1" transform="matrix(1,0,0,1,0,0)"><g opacity="1" transform="matrix(1,0,0,1,0,0)"><path fill="rgb(255,194,95)" fill-opacity="1" d=" M-147.4199981689453,-101.11900329589844 C-147.4199981689453,-101.11900329589844 -135.7449951171875,-89.60600280761719 -116.43299865722656,-83.28099822998047 C-91.572998046875,-75 -61.571998596191406,-69.93900299072266 -54.00299835205078,-78.43599700927734 C-44.80400085449219,-88.76399993896484 -67.9530029296875,-101.11900329589844 -67.9530029296875,-101.11900329589844 C-67.9530029296875,-101.11900329589844 -92.10199737548828,-114.96499633789062 -119.87000274658203,-119.6719970703125 C-144.26600646972656,-123.80799865722656 -171.11099243164062,-120.41899871826172 -147.4199981689453,-101.11900329589844z"></path></g></g><g opacity="1" transform="matrix(1,0,0,1,0,0)"><g opacity="1" transform="matrix(1,0,0,1,0,0)"><path fill="rgb(250,221,148)" fill-opacity="1" d=" M-98.1240005493164,-34.73400115966797 C-98.1240005493164,-34.73400115966797 -100.36900329589844,-25.30299949645996 -100.36900329589844,-25.30299949645996 C-100.36900329589844,-25.30299949645996 -99.32099914550781,-22.30900001525879 -99.32099914550781,-22.30900001525879 C-99.32099914550781,-22.30900001525879 -87.34600067138672,-21.860000610351562 -87.34600067138672,-21.860000610351562 C-87.34600067138672,-21.860000610351562 -85.55000305175781,-23.506999969482422 -85.55000305175781,-23.506999969482422 C-85.55000305175781,-23.506999969482422 -82.55599975585938,-34.73400115966797 -82.55599975585938,-34.73400115966797 C-82.55599975585938,-34.73400115966797 -83.60399627685547,-36.529998779296875 -83.60399627685547,-36.529998779296875 C-83.60399627685547,-36.529998779296875 -95.87899780273438,-36.979000091552734 -95.87899780273438,-36.979000091552734 C-95.87899780273438,-36.979000091552734 -98.1240005493164,-34.73400115966797 -98.1240005493164,-34.73400115966797z"></path></g><g opacity="1" transform="matrix(1,0,0,1,0,0)"><path fill="rgb(250,221,148)" fill-opacity="1" d=" M-82.40699768066406,-26.649999618530273 C-82.40699768066406,-26.649999618530273 -83.00499725341797,-22.010000228881836 -83.00499725341797,-22.010000228881836 C-83.00499725341797,-22.010000228881836 -67.88700103759766,-22.30900001525879 -67.88700103759766,-22.30900001525879 C-67.88700103759766,-22.30900001525879 -67.28800201416016,-25.75200080871582 -67.28800201416016,-25.75200080871582 C-67.28800201416016,-25.75200080871582 -72.677001953125,-26.052000045776367 -72.677001953125,-26.052000045776367 C-72.677001953125,-26.052000045776367 -65.49199676513672,-30.691999435424805 -65.49199676513672,-30.691999435424805 C-65.49199676513672,-30.691999435424805 -64.44400024414062,-36.529998779296875 -64.44400024414062,-36.529998779296875 C-64.44400024414062,-36.529998779296875 -79.26300048828125,-36.529998779296875 -79.26300048828125,-36.529998779296875 C-79.26300048828125,-36.529998779296875 -79.41300201416016,-33.98500061035156 -79.41300201416016,-33.98500061035156 C-79.41300201416016,-33.98500061035156 -75.22200012207031,-32.63800048828125 -75.22200012207031,-32.63800048828125 C-75.22200012207031,-32.63800048828125 -73.2760009765625,-34.1349983215332 -73.2760009765625,-34.1349983215332 C-73.2760009765625,-34.1349983215332 -70.58100128173828,-34.1349983215332 -70.58100128173828,-34.1349983215332 C-70.58100128173828,-34.1349983215332 -82.40699768066406,-26.649999618530273 -82.40699768066406,-26.649999618530273z"></path></g><g opacity="1" transform="matrix(1,0,0,1,0,0)"><path fill="rgb(219,206,224)" fill-opacity="1" d=" M-92.60700225830078,-32.60499954223633 C-92.60700225830078,-32.60499954223633 -94.01899719238281,-26.85700035095215 -94.01899719238281,-26.85700035095215 C-94.01899719238281,-26.85700035095215 -93.81700134277344,-25.74799919128418 -93.81700134277344,-25.74799919128418 C-93.81700134277344,-25.74799919128418 -90.79199981689453,-25.74799919128418 -90.79199981689453,-25.74799919128418 C-90.79199981689453,-25.74799919128418 -90.08599853515625,-26.85700035095215 -90.08599853515625,-26.85700035095215 C-90.08599853515625,-26.85700035095215 -88.4729995727539,-32.70500183105469 -88.4729995727539,-32.70500183105469 C-88.4729995727539,-32.70500183105469 -88.8759994506836,-33.512001037597656 -88.8759994506836,-33.512001037597656 C-88.8759994506836,-33.512001037597656 -91.49800109863281,-33.512001037597656 -91.49800109863281,-33.512001037597656 C-91.49800109863281,-33.512001037597656 -92.60700225830078,-32.60499954223633 -92.60700225830078,-32.60499954223633z"></path></g></g><g opacity="1" transform="matrix(1,0,0,1,0,0)"><path fill="rgb(73,69,70)" fill-opacity="1" d=" M-31.599000930786133,-57.606998443603516 C-31.599000930786133,-57.606998443603516 -23.54599952697754,-75.90699768066406 -21.024999618530273,-78.83499908447266 C-19.93600082397461,-80.0999984741211 -17.238000869750977,-80.63300323486328 -17.238000869750977,-80.63300323486328 C-17.238000869750977,-80.63300323486328 -22.00200080871582,-81.2750015258789 -23.63800048828125,-78.64700317382812 C-24.899999618530273,-76.62100219726562 -33.34700012207031,-59.22800064086914 -33.34700012207031,-59.22800064086914 C-33.34700012207031,-59.22800064086914 -31.599000930786133,-57.606998443603516 -31.599000930786133,-57.606998443603516z"></path></g><g opacity="1" transform="matrix(1,0,0,1,0,0)"><path stroke-linecap="butt" stroke-linejoin="miter" fill-opacity="0" stroke-miterlimit="10" stroke="rgb(124,130,147)" stroke-opacity="1" stroke-width="1" d=" M-176.66700744628906,-15.109000205993652 C-178.1909942626953,-15.517999649047852 -179.5590057373047,-16.506000518798828 -180.40199279785156,-17.974000930786133 C-180.40199279785156,-17.974000930786133 -180.40199279785156,-17.974000930786133 -180.40199279785156,-17.974000930786133 C-182.0850067138672,-20.902999877929688 -181.06500244140625,-24.676000595092773 -178.13600158691406,-26.358999252319336 C-178.13600158691406,-26.358999252319336 -165.25799560546875,-33.540000915527344 -165.25799560546875,-33.540000915527344 C-162.32899475097656,-35.222999572753906 -158.55599975585938,-34.20199966430664 -156.8730010986328,-31.273000717163086 C-156.8730010986328,-31.273000717163086 -156.8730010986328,-31.273000717163086 -156.8730010986328,-31.273000717163086 C-156.052001953125,-29.8439998626709 -155.87399291992188,-28.21299934387207 -156.2480010986328,-26.722999572753906"></path></g><g opacity="1" transform="matrix(1,0,0,1,0,0)"><path stroke-linecap="butt" stroke-linejoin="miter" fill-opacity="0" stroke-miterlimit="10" stroke="rgb(124,130,147)" stroke-opacity="1" stroke-width="1" d=" M-244.78599548339844,-95.0199966430664 C-244.78599548339844,-95.0199966430664 -245.9810028076172,-104.80599975585938 -245.9810028076172,-104.80599975585938 C-246.43299865722656,-108.15399932861328 -244.06399536132812,-111.26300048828125 -240.71600341796875,-111.71499633789062 C-240.71600341796875,-111.71499633789062 -240.71600341796875,-111.71499633789062 -240.71600341796875,-111.71499633789062 C-237.3679962158203,-112.16699981689453 -234.25999450683594,-109.7979965209961 -233.80799865722656,-106.44999694824219 C-233.80799865722656,-106.44999694824219 -232.3560028076172,-94.56099700927734 -232.3560028076172,-94.56099700927734"></path></g><g opacity="1" transform="matrix(1,0,0,1,0,0)"><path stroke-linecap="butt" stroke-linejoin="miter" fill-opacity="0" stroke-miterlimit="10" stroke="rgb(124,130,147)" stroke-opacity="1" stroke-width="1" d=" M-112.81700134277344,-14.861000061035156 C-112.19999694824219,-15.937000274658203 -111.28299713134766,-16.881999969482422 -110.11199951171875,-17.554000854492188 C-110.11199951171875,-17.554000854492188 -110.11199951171875,-17.554000854492188 -110.11199951171875,-17.554000854492188 C-106.78600311279297,-19.46299934387207 -102.60900115966797,-18.48900032043457 -100.83100128173828,-15.390999794006348 C-100.83100128173828,-15.390999794006348 -95.08899688720703,-3.0299999713897705 -95.08899688720703,-3.0299999713897705 C-93.31099700927734,0.06800000369548798 -94.5770034790039,4.165999889373779 -97.90299987792969,6.074999809265137 C-97.90299987792969,6.074999809265137 -97.90299987792969,6.074999809265137 -97.90299987792969,6.074999809265137 C-100.39800262451172,7.506999969482422 -103.37000274658203,7.316999912261963 -105.45099639892578,5.826000213623047"></path></g><g opacity="1" transform="matrix(1,0,0,1,0,0)"><path stroke-linecap="butt" stroke-linejoin="miter" fill-opacity="0" stroke-miterlimit="10" stroke="rgb(124,130,147)" stroke-opacity="1" stroke-width="1" d=" M4.539999961853027,-10.045999526977539 C4.539999961853027,-10.045999526977539 15.758999824523926,-20.10099983215332 15.758999824523926,-20.10099983215332 C18.253000259399414,-22.378999710083008 22.158000946044922,-22.20199966430664 24.43600082397461,-19.70800018310547 C24.43600082397461,-19.70800018310547 24.43600082397461,-19.70800018310547 24.43600082397461,-19.70800018310547 C26.714000701904297,-17.214000701904297 26.535999298095703,-13.309000015258789 24.04199981689453,-11.031000137329102 C24.04199981689453,-11.031000137329102 17.398000717163086,-5.074999809265137 17.398000717163086,-5.074999809265137"></path></g><g opacity="1" transform="matrix(1,0,0,1,0,0)"><path fill="rgb(91,91,91)" fill-opacity="1" d=" M-56.17900085449219,-49.02199935913086 C-56.17900085449219,-49.02199935913086 -23.549999237060547,-48.87099838256836 -23.549999237060547,-48.87099838256836 C-23.549999237060547,-48.87099838256836 -21.878000259399414,-41.499000549316406 -22.851999282836914,-37.74100112915039 C-22.851999282836914,-37.74100112915039 -54.814998626708984,-38.198001861572266 -54.814998626708984,-38.198001861572266 C-54.814998626708984,-38.198001861572266 -56.17900085449219,-49.02199935913086 -56.17900085449219,-49.02199935913086z"></path></g><g opacity="1" transform="matrix(1,0,0,1,0,0)"><path stroke-linecap="butt" stroke-linejoin="miter" fill-opacity="0" stroke-miterlimit="10" stroke="rgb(45,44,44)" stroke-opacity="1" stroke-width="1" d=" M-56.459999084472656,-56.507999420166016 C-56.459999084472656,-56.507999420166016 -41.10599899291992,-56.803001403808594 -41.10599899291992,-56.803001403808594 C-41.10599899291992,-56.803001403808594 -30.3700008392334,-48.17499923706055 -30.3700008392334,-48.17499923706055 C-30.3700008392334,-48.17499923706055 -29.93600082397461,-34.88100051879883 -30.231000900268555,-33.70000076293945 C-30.525999069213867,-32.51900100708008 -36.08700180053711,-16.35300064086914 -36.08700180053711,-16.35300064086914 C-36.08700180053711,-16.35300064086914 -35.79199981689453,-9.562000274658203 -35.79199981689453,-9.562000274658203 C-35.79199981689453,-9.562000274658203 -54.983001708984375,-9.267000198364258 -54.983001708984375,-9.267000198364258 C-54.983001708984375,-9.267000198364258 -47.349998474121094,-35.369998931884766 -47.349998474121094,-35.369998931884766 C-47.349998474121094,-35.369998931884766 -46.89799880981445,-47.98500061035156 -47.48899841308594,-48.87099838256836 C-48.08000183105469,-49.75699996948242 -56.459999084472656,-56.507999420166016 -56.459999084472656,-56.507999420166016z"></path></g><g opacity="1" transform="matrix(1,0,0,1,0,0)"><path fill="rgb(91,91,91)" fill-opacity="1" d=" M-176.01600646972656,48.95500183105469 C-176.01600646972656,48.95500183105469 -171.11399841308594,51.10200119018555 -167.5760040283203,52.321998596191406 C-167.5760040283203,52.321998596191406 -160.25599670410156,28.288000106811523 -160.25599670410156,28.288000106811523 C-160.25599670410156,28.288000106811523 -168.28900146484375,23.075000762939453 -168.28900146484375,23.075000762939453 C-168.28900146484375,23.075000762939453 -176.01600646972656,48.95500183105469 -176.01600646972656,48.95500183105469z"></path></g><g opacity="1" transform="matrix(1,0,0,1,0,0)"><path fill="rgb(45,121,220)" fill-opacity="1" d=" M-268.54901123046875,-82.73200225830078 C-268.54901123046875,-82.73200225830078 -274.19000244140625,-63.970001220703125 -274.19000244140625,-63.970001220703125 C-274.19000244140625,-63.970001220703125 -272.760986328125,-61.31999969482422 -270.1000061035156,-59.36800003051758 C-270.1000061035156,-59.36800003051758 -265.57000732421875,-75.06300354003906 -265.57000732421875,-75.06300354003906 C-265.57000732421875,-75.06300354003906 -268.54901123046875,-82.73200225830078 -268.54901123046875,-82.73200225830078z"></path></g><g opacity="1" transform="matrix(1,0,0,1,0,0)"><path fill="rgb(45,121,220)" fill-opacity="1" d=" M-275.2070007324219,-60.96099853515625 C-275.2070007324219,-60.96099853515625 -273.4309997558594,-58.54499816894531 -271.5830078125,-57.26599884033203 C-271.5830078125,-57.26599884033203 -278.47601318359375,-36.016998291015625 -278.47601318359375,-36.016998291015625 C-278.47601318359375,-36.016998291015625 -281.06500244140625,-38.702999114990234 -281.65399169921875,-39.7760009765625 C-281.65399169921875,-39.7760009765625 -275.2070007324219,-60.96099853515625 -275.2070007324219,-60.96099853515625z"></path></g><g opacity="1" transform="matrix(1,0,0,1,0,0)"><g opacity="1" transform="matrix(1,0,0,1,0,0)"><path fill="rgb(45,44,44)" fill-opacity="1" d=" M-265.2170104980469,-55.005001068115234 C-270.81298828125,-56.869998931884766 -274.4840087890625,-62.30099868774414 -274.6369934082031,-62.53099822998047 C-274.6369934082031,-62.53099822998047 -274.2229919433594,-63.9379997253418 -274.2229919433594,-63.9379997253418 C-274.18701171875,-63.8849983215332 -270.1659851074219,-57.70800018310547 -264.9010009765625,-55.952999114990234 C-264.9010009765625,-55.952999114990234 -265.2170104980469,-55.005001068115234 -265.2170104980469,-55.005001068115234z"></path></g></g><g opacity="1" transform="matrix(1,0,0,1,0,0)"><g opacity="1" transform="matrix(1,0,0,1,0,0)"><path fill="rgb(45,44,44)" fill-opacity="1" d=" M-272.5459899902344,-31.184999465942383 C-278.1419982910156,-33.04999923706055 -281.81298828125,-38.48099899291992 -281.96600341796875,-38.71099853515625 C-281.96600341796875,-38.71099853515625 -281.65399169921875,-39.7760009765625 -281.65399169921875,-39.7760009765625 C-281.6180114746094,-39.722999572753906 -277.4949951171875,-33.88800048828125 -272.2300109863281,-32.132999420166016 C-272.2300109863281,-32.132999420166016 -272.5459899902344,-31.184999465942383 -272.5459899902344,-31.184999465942383z"></path></g></g><g opacity="1" transform="matrix(1,0,0,1,0,0)"><path fill="rgb(53,53,53)" fill-opacity="1" d=" M-168.9550018310547,22.874000549316406 C-168.9550018310547,22.874000549316406 -157.81900024414062,32.20199966430664 -146.6820068359375,35.68199920654297 C-135.5449981689453,39.1619987487793 -126.91500091552734,37.63100051879883 -126.91500091552734,37.63100051879883 C-126.91500091552734,37.63100051879883 -125.94000244140625,33.17599868774414 -125.94000244140625,33.17599868774414 C-125.94000244140625,33.17599868774414 -141.39199829101562,36.65599822998047 -163.5260009765625,22.17799949645996 C-163.5260009765625,22.17799949645996 -168.9550018310547,22.874000549316406 -168.9550018310547,22.874000549316406z"></path></g><g opacity="1" transform="matrix(1,0,0,1,0,0)"><path stroke-linecap="butt" stroke-linejoin="miter" fill-opacity="0" stroke-miterlimit="10" stroke="rgb(45,44,44)" stroke-opacity="1" stroke-width="1" d=" M-163.33599853515625,22.084999084472656 C-163.33599853515625,22.084999084472656 -145.78500366210938,35.8489990234375 -126.0790023803711,33.314998626708984"></path></g><g opacity="1" transform="matrix(1,0,0,1,0,0)"><path stroke-linecap="butt" stroke-linejoin="miter" fill-opacity="0" stroke-miterlimit="10" stroke="rgb(45,44,44)" stroke-opacity="1" stroke-width="1" d=" M-174.04800415039062,48.69300079345703 C-174.04800415039062,48.69300079345703 -154.50599670410156,65.3740005493164 -134.8000030517578,62.84000015258789"></path></g><g opacity="1" transform="matrix(1,0,0,1,0,0)"><path fill="rgb(53,53,53)" fill-opacity="1" d=" M0.8650000095367432,40.654998779296875 C0.8650000095367432,40.654998779296875 0.15399999916553497,42.8380012512207 0.15399999916553497,42.8380012512207 C0.15399999916553497,42.8380012512207 12.390999794006348,45.731998443603516 19.957000732421875,40.70500183105469 C19.957000732421875,40.70500183105469 21.073999404907227,37.20199966430664 21.073999404907227,37.20199966430664 C21.073999404907227,37.20199966430664 18.128999710083008,39.33399963378906 14.015999794006348,40.50199890136719 C9.902999877929688,41.66999816894531 6.3480000495910645,41.41600036621094 5.0279998779296875,41.2130012512207 C3.7079999446868896,41.0099983215332 0.8650000095367432,40.654998779296875 0.8650000095367432,40.654998779296875z"></path></g><g opacity="1" transform="matrix(1,0,0,1,0,0)"><g opacity="1" transform="matrix(1,0,0,1,0,0)"><path fill="rgb(45,44,44)" fill-opacity="1" d=" M7.000999927520752,41.612998962402344 C3.6480000019073486,41.612998962402344 1.1039999723434448,41.209999084472656 0.8640000224113464,41.17100143432617 C0.8640000224113464,41.17100143432617 1.0260000228881836,40.183998107910156 1.0260000228881836,40.183998107910156 C1.159999966621399,40.207000732421875 15.036999702453613,42.183998107910156 21.253000259399414,36.61000061035156 C21.253000259399414,36.61000061035156 20.93199920654297,37.733001708984375 20.93199920654297,37.733001708984375 C17.14699935913086,41.125999450683594 11.54800033569336,41.612998962402344 7.000999927520752,41.612998962402344z"></path></g></g><g opacity="1" transform="matrix(1,0,0,1,0,0)"><path fill="rgb(233,171,58)" fill-opacity="1" d=" M-64.88800048828125,-101.19400024414062 C-64.88800048828125,-101.19400024414062 -149.718994140625,-100.98300170898438 -149.718994140625,-100.98300170898438 C-149.718994140625,-100.98300170898438 -139.88800048828125,-92.83699798583984 -139.88800048828125,-92.83699798583984 C-139.88800048828125,-92.83699798583984 -57.16299819946289,-94.31199645996094 -57.16299819946289,-94.31199645996094 C-57.16299819946289,-94.31199645996094 -64.88800048828125,-101.19400024414062 -64.88800048828125,-101.19400024414062z"></path></g></g><g style="display: none;"><g><path></path></g><g><g><path></path></g><g><path></path></g><g><path></path></g><g><path></path></g><g><path></path></g><g><path></path></g><g><path></path></g></g><g><g><path></path></g><g><path></path></g><g><path></path></g><g><path></path></g><g><path></path></g><g><path></path></g><g><path></path></g></g><g><path></path></g><g><path></path></g><g><path></path></g><g><path></path></g><g><path></path></g><g><path></path></g><g><path></path></g><g><path></path></g><g><path></path></g><g><path></path></g><g><path></path></g><g><path stroke-linecap="butt" stroke-linejoin="miter" fill-opacity="0" stroke-miterlimit="10"></path></g><g><path></path></g><g><path></path></g><g><path></path></g><g><path></path></g><g><path></path></g><g><path></path></g><g><path></path></g><g><path></path></g><g><path></path></g><g><path></path></g><g><path></path></g><g><path></path></g><g><path></path></g><g><path></path></g><g><path></path></g><g><g><path></path></g><g><path></path></g><g><path></path></g><g><path></path></g><g><path></path></g><g><path></path></g><g><path></path></g></g><g><path></path></g><g><path></path></g><g><path></path></g><g><path stroke-linecap="butt" stroke-linejoin="miter" fill-opacity="0" stroke-miterlimit="10"></path></g><g><path stroke-linecap="butt" stroke-linejoin="miter" fill-opacity="0" stroke-miterlimit="10"></path></g><g><path stroke-linecap="butt" stroke-linejoin="miter" fill-opacity="0" stroke-miterlimit="10"></path></g><g><path stroke-linecap="butt" stroke-linejoin="miter" fill-opacity="0" stroke-miterlimit="10"></path></g></g><g style="display: none;"><g><g><path></path></g><g><path></path></g><g><path></path></g><g><path></path></g><g><path></path></g><g><g><path></path></g><g><path></path></g><g><path></path></g><g><path></path></g><g><path></path></g></g><g><g><path></path></g><g><path></path></g><g><path></path></g><g><path></path></g><g><path></path></g></g><g><g><path></path></g><g><path></path></g><g><path></path></g><g><path></path></g><g><path></path></g></g><g><path></path></g><g><path></path></g><g><path></path></g><g><path></path></g><g><path></path></g><g><path></path></g><g><path></path></g><g><path></path></g><g><path></path></g><g><path></path></g><g><g><path></path></g><g><path></path></g><g><path></path></g><g><path></path></g><g><path></path></g><g><path></path></g><g><path></path></g></g><g><path></path></g><g><path></path></g><g><path></path></g><g><path></path></g><g><path></path></g><g><path></path></g><g><path></path></g><g><path></path></g><g><path></path></g><g><path stroke-linecap="butt" stroke-linejoin="miter" fill-opacity="0" stroke-miterlimit="10"></path></g><g><path stroke-linecap="butt" stroke-linejoin="miter" fill-opacity="0" stroke-miterlimit="10"></path></g><g><path></path></g><g><path></path></g><g><path stroke-linecap="butt" stroke-linejoin="miter" fill-opacity="0" stroke-miterlimit="10"></path></g><g><path></path></g><g><path></path></g><g><g><path></path></g><g><path></path></g><g><path stroke-linecap="butt" stroke-linejoin="miter" fill-opacity="0" stroke-miterlimit="10"></path></g><g><path stroke-linecap="butt" stroke-linejoin="miter" fill-opacity="0" stroke-miterlimit="10"></path></g></g></g><g><path></path></g></g><g transform="matrix(1.711045742034912,-0.4906344711780548,0.4906344711780548,1.711045742034912,874.541015625,565.4639892578125)" opacity="1" style="display: block;"><g opacity="1" transform="matrix(1,0,0,1,0,0)"><path fill="rgb(11,92,233)" fill-opacity="1" d=" M-293.07598876953125,-2.183000087738037 C-293.07598876953125,-2.183000087738037 -298.2099914550781,-1.5670000314712524 -300.2640075683594,3.361999988555908 C-302.3179931640625,8.291000366210938 -309.7120056152344,37.659000396728516 -310.5329895019531,43.81999969482422 C-311.35400390625,49.98099899291992 -310.3280029296875,61.07099914550781 -299.4429931640625,71.95600128173828 C-288.5580139160156,82.84100341796875 -219.3489990234375,145.2740020751953 -212.36599731445312,151.0240020751953 C-205.38299560546875,156.7740020751953 -193.4720001220703,166.83700561523438 -174.3719940185547,166.6320037841797 C-155.27200317382812,166.427001953125 -137.61099243164062,166.2220001220703 -134.9409942626953,165.81100463867188 C-132.27099609375,165.39999389648438 -129.39599609375,163.96200561523438 -127.34200286865234,161.4980010986328 C-125.28800201416016,159.03399658203125 -122.20899963378906,154.406005859375 -122.20899963378906,154.406005859375 C-122.20899963378906,154.406005859375 -87.91100311279297,153.2830047607422 -87.91100311279297,153.2830047607422 C-87.91100311279297,153.2830047607422 -81.13400268554688,158.8280029296875 -79.69599914550781,160.26600646972656 C-78.25800323486328,161.70399475097656 -76,163.13999938964844 -72.3030014038086,162.93499755859375 C-68.60600280761719,162.72999572753906 -44.987998962402344,161.7030029296875 -36.979000091552734,160.67599487304688 C-28.969999313354492,159.6490020751953 -14.387999534606934,153.48800659179688 -7.815999984741211,136.23699951171875 C-1.24399995803833,118.98600006103516 3.890000104904175,105.63700103759766 3.890000104904175,103.37799835205078 C3.890000104904175,101.11900329589844 1.2200000286102295,96.60099792480469 1.2200000286102295,96.60099792480469 C1.2200000286102295,96.60099792480469 0.09300000220537186,99.4749984741211 0.09300000220537186,99.4749984741211 C0.09300000220537186,99.4749984741211 -2.312999963760376,101.81600189208984 -6.39300012588501,99.7760009765625 C-10.472999572753906,97.73600006103516 -15.71399974822998,97.3219985961914 -13.673999786376953,87.7040023803711 C-11.633999824523926,78.08599853515625 -6.39300012588501,63.560001373291016 -6.39300012588501,63.560001373291016 C-6.39300012588501,63.560001373291016 -129.60000610351562,65.95800018310547 -129.60000610351562,65.95800018310547 C-129.60000610351562,65.95800018310547 -130.4739990234375,60.71200180053711 -134.8459930419922,60.71200180053711 C-139.21800231933594,60.71200180053711 -171.46600341796875,48.827999114990234 -171.46600341796875,48.827999114990234 C-171.46600341796875,48.827999114990234 -176.13299560546875,47.2869987487793 -179.33900451660156,50.49300003051758 C-179.33900451660156,50.49300003051758 -274.4490051269531,-28.761999130249023 -274.4490051269531,-28.761999130249023 C-274.4490051269531,-28.761999130249023 -282.3179931640625,2.13100004196167 -282.3179931640625,2.13100004196167 C-282.3179931640625,2.13100004196167 -290.47900390625,2.4230000972747803 -291.6449890136719,2.4230000972747803 C-292.8110046386719,2.4230000972747803 -293.92498779296875,1.0800000429153442 -293.07598876953125,-2.183000087738037z"></path></g><g opacity="1" transform="matrix(1,0,0,1,0,0)"><path fill="rgb(47,106,244)" fill-opacity="1" d=" M-181.63699340820312,48.680999755859375 C-181.63699340820312,48.680999755859375 -192.3820037841797,79.18099975585938 -192.3820037841797,79.18099975585938 C-192.3820037841797,79.18099975585938 -193.42100524902344,82.99299621582031 -192.03500366210938,86.11199951171875 C-190.6490020751953,89.23100280761719 -180.94400024414062,104.48200225830078 -182.3300018310547,108.29399871826172 C-183.71600341796875,112.10600280761719 -190.6490020751953,135.6750030517578 -193.0749969482422,140.52699279785156 C-195.50100708007812,145.37899780273438 -203.81900024414062,157.50999450683594 -217.68299865722656,146.41900634765625 C-231.5469970703125,135.3280029296875 -296.3590087890625,75.71499633789062 -301.5580139160156,69.47599792480469 C-306.7569885253906,63.23699951171875 -311.6090087890625,52.145999908447266 -310.5690002441406,43.1349983215332 C-309.52899169921875,34.124000549316406 -300.1719970703125,3.9709999561309814 -299.82501220703125,2.930999994277954 C-299.4779968261719,1.8910000324249268 -295.3190002441406,-0.5350000262260437 -295.3190002441406,-0.5350000262260437 C-295.3190002441406,-0.5350000262260437 -295.3190002441406,2.23799991607666 -292.20001220703125,2.930999994277954 C-289.08099365234375,3.624000072479248 -283.5350036621094,2.930999994277954 -283.5350036621094,2.930999994277954 C-283.5350036621094,2.930999994277954 -274.52301025390625,-27.569000244140625 -274.52301025390625,-27.569000244140625 C-274.52301025390625,-27.569000244140625 -181.63699340820312,48.680999755859375 -181.63699340820312,48.680999755859375z"></path></g><g opacity="1" transform="matrix(1,0,0,1,0,0)"><path stroke-linecap="butt" stroke-linejoin="miter" fill-opacity="0" stroke-miterlimit="10" stroke="rgb(234,172,59)" stroke-opacity="1" stroke-width="5" d=" M-273.4679870605469,-30.506000518798828 C-273.4679870605469,-30.506000518798828 -159.0749969482422,64.21499633789062 -159.0749969482422,64.21499633789062 C-159.0749969482422,64.21499633789062 1.9479999542236328,61.95500183105469 1.9479999542236328,61.95500183105469"></path></g><g opacity="1" transform="matrix(1,0,0,1,0,0)"><path stroke-linecap="butt" stroke-linejoin="miter" fill-opacity="0" stroke-miterlimit="10" stroke="rgb(234,172,59)" stroke-opacity="1" stroke-width="1" d=" M-94.6719970703125,128.16299438476562 C-94.6719970703125,128.16299438476562 -86.26899719238281,121.19000244140625 -86.26899719238281,121.19000244140625 C-86.26899719238281,121.19000244140625 -80.90599822998047,127.80500030517578 -80.90599822998047,127.80500030517578 C-80.90599822998047,127.80500030517578 -94.6719970703125,128.16299438476562 -94.6719970703125,128.16299438476562z"></path></g><g opacity="1" transform="matrix(1,0,0,1,0,0)"><path fill="rgb(42,90,186)" fill-opacity="1" d=" M-207.82699584960938,119.61699676513672 C-207.82699584960938,119.61699676513672 -207.82699584960938,119.61699676513672 -207.82699584960938,119.61699676513672 C-211.1750030517578,120.06900024414062 -214.2830047607422,117.70099639892578 -214.73500061035156,114.35299682617188 C-214.73500061035156,114.35299682617188 -217.84800720214844,91.31099700927734 -217.84800720214844,91.31099700927734 C-218.3000030517578,87.96299743652344 -215.9320068359375,84.85399627685547 -212.58399963378906,84.4020004272461 C-212.58399963378906,84.4020004272461 -212.58399963378906,84.4020004272461 -212.58399963378906,84.4020004272461 C-209.23599243164062,83.94999694824219 -206.1269989013672,86.31800079345703 -205.6750030517578,89.66600036621094 C-205.6750030517578,89.66600036621094 -202.56199645996094,112.70800018310547 -202.56199645996094,112.70800018310547 C-202.11000061035156,116.05599975585938 -204.47900390625,119.16500091552734 -207.82699584960938,119.61699676513672z"></path></g><g opacity="1" transform="matrix(1,0,0,1,0,0)"><path fill="rgb(42,90,186)" fill-opacity="1" d=" M-289.9800109863281,43.257999420166016 C-289.9800109863281,43.257999420166016 -289.9800109863281,43.257999420166016 -289.9800109863281,43.257999420166016 C-291.95001220703125,40.513999938964844 -291.3169860839844,36.65700149536133 -288.572998046875,34.6870002746582 C-288.572998046875,34.6870002746582 -277.26800537109375,27.64299964904785 -277.26800537109375,27.64299964904785 C-274.52398681640625,25.67300033569336 -270.6669921875,26.305999755859375 -268.6969909667969,29.049999237060547 C-268.6969909667969,29.049999237060547 -268.6969909667969,29.049999237060547 -268.6969909667969,29.049999237060547 C-266.72698974609375,31.79400062561035 -267.3599853515625,35.6510009765625 -270.10400390625,37.62099838256836 C-270.10400390625,37.62099838256836 -281.40899658203125,44.665000915527344 -281.40899658203125,44.665000915527344 C-284.15301513671875,46.6349983215332 -288.010009765625,46.00199890136719 -289.9800109863281,43.257999420166016z"></path></g><g opacity="1" transform="matrix(1,0,0,1,0,0)"><path fill="rgb(19,85,183)" fill-opacity="1" d=" M-150.1199951171875,129.5570068359375 C-150.1199951171875,129.5570068359375 -150.1199951171875,129.5570068359375 -150.1199951171875,129.5570068359375 C-152.50599670410156,127.16600036621094 -152.50100708007812,123.25700378417969 -150.11000061035156,120.87100219726562 C-150.11000061035156,120.87100219726562 -135.21600341796875,106.28399658203125 -135.21600341796875,106.28399658203125 C-132.8249969482422,103.89800262451172 -128.91600036621094,103.90299987792969 -126.52999877929688,106.29399871826172 C-126.52999877929688,106.29399871826172 -126.52999877929688,106.29399871826172 -126.52999877929688,106.29399871826172 C-124.14399719238281,108.68499755859375 -124.14900207519531,112.59400177001953 -126.54000091552734,114.9800033569336 C-126.54000091552734,114.9800033569336 -141.4340057373047,129.56700134277344 -141.4340057373047,129.56700134277344 C-143.8249969482422,131.9530029296875 -147.73399353027344,131.947998046875 -150.1199951171875,129.5570068359375z"></path></g><g opacity="1" transform="matrix(1,0,0,1,0,0)"><path fill="rgb(19,85,183)" fill-opacity="1" d=" M-23.93199920654297,124.72699737548828 C-23.93199920654297,124.72699737548828 -23.93199920654297,124.72699737548828 -23.93199920654297,124.72699737548828 C-26.86199951171875,126.40899658203125 -30.634000778198242,125.38700103759766 -32.316001892089844,122.45700073242188 C-32.316001892089844,122.45700073242188 -37.8120002746582,110.80699920654297 -37.8120002746582,110.80699920654297 C-39.49399948120117,107.87699890136719 -38.47200012207031,104.1050033569336 -35.54199981689453,102.4229965209961 C-35.54199981689453,102.4229965209961 -35.54199981689453,102.4229965209961 -35.54199981689453,102.4229965209961 C-32.61199951171875,100.74099731445312 -28.84000015258789,101.76200103759766 -27.158000946044922,104.69200134277344 C-27.158000946044922,104.69200134277344 -21.663000106811523,116.34300231933594 -21.663000106811523,116.34300231933594 C-19.981000900268555,119.27300262451172 -21.00200080871582,123.04499816894531 -23.93199920654297,124.72699737548828z"></path></g><g opacity="1" transform="matrix(1,0,0,1,0,0)"><path fill="rgb(73,69,70)" fill-opacity="1" d=" M14.102999687194824,58.58599853515625 C14.102999687194824,58.58599853515625 0.09399999678134918,101.3740005493164 0.09399999678134918,101.3740005493164 C0.09399999678134918,101.3740005493164 -8.295999526977539,100.1760025024414 -11.592000007629395,97.77899932861328 C-14.887999534606934,95.38200378417969 -15.187999725341797,89.08899688720703 -13.6899995803833,84.89399719238281 C-12.954999923706055,82.83599853515625 -9.190999984741211,71.26100158691406 -5.335000038146973,59.505001068115234 C1.2640000581741333,59.55099868774414 14.102999687194824,58.58599853515625 14.102999687194824,58.58599853515625z"></path></g><g opacity="1" transform="matrix(1,0,0,1,0,0)"><path fill="rgb(73,69,70)" fill-opacity="1" d=" M-293.2539978027344,-2.002000093460083 C-293.2539978027344,-2.002000093460083 -293.8529968261719,0.9950000047683716 -293.8529968261719,0.9950000047683716 C-293.8529968261719,0.9950000047683716 -292.3550109863281,2.7929999828338623 -289.9580078125,2.7929999828338623 C-287.5610046386719,2.7929999828338623 -282.7669982910156,2.193000078201294 -282.7669982910156,2.193000078201294 C-282.7669982910156,2.193000078201294 -277.50799560546875,-15.11400032043457 -272.2869873046875,-31.889999389648438 C-279.072998046875,-34.76100158691406 -281.66400146484375,-39.65299987792969 -281.66400146484375,-39.65299987792969 C-281.66400146484375,-39.65299987792969 -293.2539978027344,-2.002000093460083 -293.2539978027344,-2.002000093460083z"></path></g><g opacity="1" transform="matrix(1,0,0,1,0,0)"><path fill="rgb(73,69,70)" fill-opacity="1" d=" M-175.22300720214844,46.1879997253418 C-175.22300720214844,46.1879997253418 -173.90199279785156,48.499000549316406 -173.90199279785156,48.499000549316406 C-173.90199279785156,48.499000549316406 -174.56199645996094,51.80099868774414 -174.56199645996094,51.80099868774414 C-174.56199645996094,51.80099868774414 -176.21299743652344,51.13999938964844 -176.21299743652344,51.13999938964844 C-176.21299743652344,51.13999938964844 -182.81700134277344,73.9219970703125 -182.81700134277344,73.9219970703125 C-182.81700134277344,73.9219970703125 -181.8260040283203,75.24299621582031 -181.8260040283203,75.24299621582031 C-181.8260040283203,75.24299621582031 -183.14700317382812,78.21499633789062 -183.14700317382812,78.21499633789062 C-183.14700317382812,78.21499633789062 -184.79800415039062,78.21499633789062 -184.79800415039062,78.21499633789062 C-184.79800415039062,78.21499633789062 -188.42999267578125,89.77100372314453 -179.84500122070312,99.01599884033203 C-171.25999450683594,108.26100158691406 -149.7989959716797,107.93000030517578 -143.8560028076172,94.39299774169922 C-143.8560028076172,94.39299774169922 -143.8560028076172,91.4219970703125 -143.8560028076172,91.4219970703125 C-143.8560028076172,91.4219970703125 -142.86500549316406,88.12000274658203 -142.86500549316406,88.12000274658203 C-142.86500549316406,88.12000274658203 -140.88400268554688,86.79900360107422 -140.88400268554688,86.79900360107422 C-140.88400268554688,86.79900360107422 -133.6199951171875,63.6870002746582 -133.6199951171875,63.6870002746582 C-133.6199951171875,63.6870002746582 -134.9409942626953,62.69599914550781 -134.9409942626953,62.69599914550781 C-134.9409942626953,62.69599914550781 -134.281005859375,60.71500015258789 -134.281005859375,60.71500015258789 C-134.281005859375,60.71500015258789 -132.9600067138672,60.05500030517578 -132.9600067138672,60.05500030517578 C-132.9600067138672,60.05500030517578 -175.22300720214844,46.1879997253418 -175.22300720214844,46.1879997253418z"></path></g><g opacity="1" transform="matrix(1,0,0,1,0,0)"><path fill="rgb(73,69,70)" fill-opacity="1" d=" M-35.86000061035156,87.48899841308594 C-55.683998107910156,113.38400268554688 -86.15699768066406,123.3499984741211 -103.9219970703125,109.7490005493164 C-121.68699645996094,96.14800262451172 -120.01799774169922,64.13099670410156 -100.19400024414062,38.236000061035156 C-80.37000274658203,12.340999603271484 -49.89699935913086,2.375999927520752 -32.13199996948242,15.97700023651123 C-14.366999626159668,29.577999114990234 -16.035999298095703,61.59400177001953 -35.86000061035156,87.48899841308594z"></path></g><g opacity="0.3065121666666512" transform="matrix(1,0,0,1,0,0)"><path fill="rgb(255,255,255)" fill-opacity="1" d=" M-39.5890007019043,83.99700164794922 C-56.60200119018555,106.22000122070312 -82.75299835205078,114.77200317382812 -97.9990005493164,103.0999984741211 C-113.24500274658203,91.4280014038086 -111.81199645996094,63.95199966430664 -94.79900360107422,41.729000091552734 C-77.78600311279297,19.506000518798828 -51.6349983215332,10.95300006866455 -36.388999938964844,22.625 C-21.14299964904785,34.297000885009766 -22.576000213623047,61.77399826049805 -39.5890007019043,83.99700164794922z"></path></g><g opacity="1" transform="matrix(1,0,0,1,0,0)"><path fill="rgb(73,69,70)" fill-opacity="1" d=" M-43.183998107910156,80.88700103759766 C-57.433998107910156,99.5009994506836 -79.33999633789062,106.66600036621094 -92.11000061035156,96.88899993896484 C-104.87999725341797,87.11199951171875 -103.68099975585938,64.09700012207031 -89.43000030517578,45.483001708984375 C-75.18000030517578,26.868999481201172 -53.27399826049805,19.70400047302246 -40.50400161743164,29.481000900268555 C-27.733999252319336,39.257999420166016 -28.93400001525879,62.27299880981445 -43.183998107910156,80.88700103759766z"></path></g><g opacity="1" transform="matrix(1,0,0,1,0,0)"><path fill="rgb(12,56,152)" fill-opacity="1" d=" M-87.05899810791016,153.30599975585938 C-87.05899810791016,153.30599975585938 -75.36499786376953,145.65199279785156 -75.36499786376953,145.65199279785156 C-75.36499786376953,145.65199279785156 -109.16999816894531,145.65199279785156 -109.16999816894531,145.65199279785156 C-109.16999816894531,145.65199279785156 -117.03700256347656,145.65199279785156 -122.35199737548828,154.15699768066406 C-122.35199737548828,154.15699768066406 -87.05899810791016,153.30599975585938 -87.05899810791016,153.30599975585938z"></path></g><g opacity="0.44" transform="matrix(1,0,0,1,0,0)"><path stroke-linecap="butt" stroke-linejoin="miter" fill-opacity="0" stroke-miterlimit="10" stroke="rgb(73,69,70)" stroke-opacity="1" stroke-width="2" d=" M-203.7790069580078,30.5049991607666 C-207.79299926757812,38.733001708984375 -214.09800720214844,44.097999572753906 -221.33599853515625,44.32400131225586 C-234.1840057373047,44.72600173950195 -245.11000061035156,28.790000915527344 -245.73800659179688,8.729999542236328 C-245.875,4.368000030517578 -245.51300048828125,0.17100000381469727 -244.7310028076172,-3.7320001125335693"></path></g><g opacity="1" transform="matrix(1,0,0,1,0,0)"><path fill="rgb(47,106,244)" fill-opacity="1" d=" M-87.74500274658203,153.4600067138672 C-87.74500274658203,153.4600067138672 -78.77999877929688,161.0050048828125 -78.77999877929688,161.0050048828125 C-78.77999877929688,161.0050048828125 -74.10800170898438,164.56900024414062 -69.75299835205078,162.03500366210938 C-67.93000030517578,160.97500610351562 -72.23600006103516,149.6009979248047 -73.55400085449219,148.02000427246094 C-74.87200164794922,146.43899536132812 -75.53299713134766,145.80299377441406 -75.53299713134766,145.80299377441406 C-75.53299713134766,145.80299377441406 -87.74500274658203,153.4600067138672 -87.74500274658203,153.4600067138672z"></path></g><g opacity="1" transform="matrix(1,0,0,1,0,0)"><g opacity="1" transform="matrix(1,0,0,1,0,0)"><path fill="rgb(250,221,148)" fill-opacity="1" d=" M-59.41999816894531,142.69900512695312 C-59.41999816894531,142.69900512695312 -62.4630012512207,152.76400756835938 -62.4630012512207,152.76400756835938 C-62.4630012512207,152.76400756835938 -53.099998474121094,152.76400756835938 -53.099998474121094,152.76400756835938 C-53.099998474121094,152.76400756835938 -59.41999816894531,142.69900512695312 -59.41999816894531,142.69900512695312z"></path></g><g opacity="1" transform="matrix(1,0,0,1,0,0)"><path fill="rgb(250,221,148)" fill-opacity="1" d=" M-48.30400085449219,152.88800048828125 C-48.30400085449219,152.88800048828125 -45.141998291015625,142.2310028076172 -45.141998291015625,142.2310028076172 C-45.141998291015625,142.2310028076172 -36.48099899291992,141.9969940185547 -36.48099899291992,141.9969940185547 C-36.48099899291992,141.9969940185547 -38.5880012512207,147.38099670410156 -38.5880012512207,147.38099670410156 C-38.5880012512207,147.38099670410156 -40.69499969482422,147.61500549316406 -40.69499969482422,147.61500549316406 C-40.69499969482422,147.61500549316406 -42.55699920654297,152.88800048828125 -42.55699920654297,152.88800048828125 C-42.55699920654297,152.88800048828125 -48.30400085449219,152.88800048828125 -48.30400085449219,152.88800048828125z"></path></g><g opacity="1" transform="matrix(1,0,0,1,0,0)"><path fill="rgb(250,221,148)" fill-opacity="1" d=" M-38.39500045776367,152.49099731445312 C-38.39500045776367,152.49099731445312 -34.62900161743164,141.88800048828125 -34.62900161743164,141.88800048828125 C-34.62900161743164,141.88800048828125 -30.06999969482422,141.78900146484375 -30.06999969482422,141.78900146484375 C-30.06999969482422,141.78900146484375 -33.63800048828125,152.39199829101562 -33.63800048828125,152.39199829101562 C-33.63800048828125,152.39199829101562 -38.39500045776367,152.49099731445312 -38.39500045776367,152.49099731445312z"></path></g><g opacity="1" transform="matrix(1,0,0,1,0,0)"><path fill="rgb(250,221,148)" fill-opacity="1" d=" M-31.7549991607666,152.19400024414062 C-31.7549991607666,152.19400024414062 -27.586999893188477,141.2949981689453 -27.586999893188477,141.2949981689453 C-27.586999893188477,141.2949981689453 -25.246000289916992,145.74200439453125 -25.246000289916992,145.74200439453125 C-25.246000289916992,145.74200439453125 -20.33099937438965,141.2949981689453 -20.33099937438965,141.2949981689453 C-20.33099937438965,141.2949981689453 -23.232999801635742,152.29299926757812 -23.232999801635742,152.29299926757812 C-23.232999801635742,152.29299926757812 -31.7549991607666,152.19400024414062 -31.7549991607666,152.19400024414062z"></path></g><g opacity="1" transform="matrix(1,0,0,1,0,0)"><path fill="rgb(250,221,148)" fill-opacity="1" d=" M-47.75600051879883,146.5959930419922 C-48.430999755859375,148.20899963378906 -49.816001892089844,149.16600036621094 -50.847999572753906,148.73399353027344 C-51.880001068115234,148.302001953125 -52.16899871826172,146.6439971923828 -51.49399948120117,145.031005859375 C-50.819000244140625,143.41799926757812 -49.433998107910156,142.46099853515625 -48.402000427246094,142.89300537109375 C-47.369998931884766,143.3249969482422 -47.08100128173828,144.98300170898438 -47.75600051879883,146.5959930419922z"></path></g></g><g opacity="1" transform="matrix(1,0,0,1,0,0)"><path fill="rgb(24,70,137)" fill-opacity="1" d=" M-133.29299926757812,59.70000076293945 C-133.29299926757812,59.70000076293945 -128.4029998779297,62.41699981689453 -129.76100158691406,67.30699920654297 C-131.11900329589844,72.1969985961914 -136.28199768066406,90.6709976196289 -138.4550018310547,93.66000366210938 C-140.6280059814453,96.64900207519531 -141.71499633789062,98.27899932861328 -146.33399963378906,100.99600219726562 C-150.9530029296875,103.71299743652344 -156.11500549316406,104.52799987792969 -156.11500549316406,104.52799987792969 C-156.11500549316406,104.52799987792969 -147.1490020751953,98.5510025024414 -145.79100036621094,96.10600280761719 C-144.43299865722656,93.66100311279297 -143.88900756835938,92.302001953125 -143.88900756835938,92.302001953125 C-143.88900756835938,92.302001953125 -145.2469940185547,91.21600341796875 -144.16000366210938,89.31400299072266 C-143.072998046875,87.41200256347656 -141.71499633789062,86.86799621582031 -141.1719970703125,85.51000213623047 C-140.62899780273438,84.1520004272461 -135.19500732421875,68.93699645996094 -134.92300415039062,67.5790023803711 C-134.6510009765625,66.22100067138672 -135.4669952392578,66.76399993896484 -135.19500732421875,64.31900024414062 C-134.92300415039062,61.874000549316406 -133.29299926757812,59.70000076293945 -133.29299926757812,59.70000076293945z"></path></g><g opacity="1" transform="matrix(1,0,0,1,0,0)"><path fill="rgb(91,91,91)" fill-opacity="1" d=" M-176.21299743652344,51.13999938964844 C-176.21299743652344,51.13999938964844 -174.16400146484375,51.71200180053711 -174.16400146484375,51.71200180053711 C-174.16400146484375,51.71200180053711 -170.7480010986328,54.88399887084961 -168.30799865722656,55.86000061035156 C-168.30799865722656,55.86000061035156 -175.6280059814453,78.06500244140625 -175.6280059814453,78.06500244140625 C-175.6280059814453,78.06500244140625 -179.7760009765625,75.13700103759766 -179.7760009765625,75.13700103759766 C-179.7760009765625,75.13700103759766 -181.24000549316406,75.74700164794922 -181.24000549316406,75.74700164794922 C-181.24000549316406,75.74700164794922 -182.81700134277344,73.9219970703125 -182.81700134277344,73.9219970703125 C-182.81700134277344,73.9219970703125 -176.21299743652344,51.13999938964844 -176.21299743652344,51.13999938964844z"></path></g><g opacity="1" transform="matrix(1,0,0,1,0,0)"><path fill="rgb(91,91,91)" fill-opacity="1" d=" M-183.14700317382812,78.21499633789062 C-183.14700317382812,78.21499633789062 -178.53399658203125,80.58599853515625 -176.8560028076172,81.1449966430664 C-176.8560028076172,81.1449966430664 -182.0019989013672,96.13700103759766 -182.0019989013672,96.13700103759766 C-182.0019989013672,96.13700103759766 -187.81700134277344,88.93399810791016 -184.79800415039062,78.21499633789062 C-184.79800415039062,78.21499633789062 -183.14700317382812,78.21499633789062 -183.14700317382812,78.21499633789062z"></path></g><g opacity="1" transform="matrix(1,0,0,1,0,0)"><path fill="rgb(45,121,220)" fill-opacity="1" d=" M-282.5979919433594,-36.513999938964844 C-282.5979919433594,-36.513999938964844 -280.6080017089844,-33.74300003051758 -279.47100830078125,-33.03200149536133 C-279.47100830078125,-33.03200149536133 -286.0090026855469,-11.357000350952148 -286.0090026855469,-11.357000350952148 C-286.0090026855469,-11.357000350952148 -288.6600036621094,-14.138999938964844 -289.2179870605469,-15.093000411987305 C-289.2179870605469,-15.093000411987305 -282.5979919433594,-36.513999938964844 -282.5979919433594,-36.513999938964844z"></path></g><g opacity="1" transform="matrix(1,0,0,1,0,0)"><g opacity="1" transform="matrix(1,0,0,1,0,0)"><path fill="rgb(45,44,44)" fill-opacity="1" d=" M-280.1369934082031,-6.579999923706055 C-285.7330017089844,-8.444999694824219 -289.40399169921875,-13.87600040435791 -289.5570068359375,-14.105999946594238 C-289.5570068359375,-14.105999946594238 -289.2179870605469,-15.093000411987305 -289.2179870605469,-15.093000411987305 C-289.1820068359375,-15.039999961853027 -285.0849914550781,-9.282999992370605 -279.82000732421875,-7.5279998779296875 C-279.82000732421875,-7.5279998779296875 -280.1369934082031,-6.579999923706055 -280.1369934082031,-6.579999923706055z"></path></g></g><g opacity="1" transform="matrix(1,0,0,1,0,0)"><g opacity="1" transform="matrix(1,0,0,1,0,0)"><path fill="rgb(45,44,44)" fill-opacity="1" d=" M-272.5459899902344,-31.184999465942383 C-278.1419982910156,-33.04999923706055 -281.81298828125,-38.48099899291992 -281.96600341796875,-38.71099853515625 C-281.96600341796875,-38.71099853515625 -281.65399169921875,-39.7760009765625 -281.65399169921875,-39.7760009765625 C-281.6180114746094,-39.722999572753906 -277.4949951171875,-33.88800048828125 -272.2300109863281,-32.132999420166016 C-272.2300109863281,-32.132999420166016 -272.5459899902344,-31.184999465942383 -272.5459899902344,-31.184999465942383z"></path></g></g><g opacity="1" transform="matrix(1,0,0,1,0,0)"><path fill="rgb(45,121,220)" fill-opacity="1" d=" M-290.0920104980469,-12.36400032043457 C-290.0920104980469,-12.36400032043457 -288.4360046386719,-9.604999542236328 -287.25299072265625,-8.973999977111816 C-287.25299072265625,-8.973999977111816 -290.4859924316406,2.8540000915527344 -290.4859924316406,2.8540000915527344 C-290.4859924316406,2.8540000915527344 -292.6470031738281,2.763000011444092 -293.8529968261719,0.9950000047683716 C-293.8529968261719,0.9950000047683716 -290.0920104980469,-12.36400032043457 -290.0920104980469,-12.36400032043457z"></path></g><g opacity="1" transform="matrix(1,0,0,1,0,0)"><path fill="rgb(53,53,53)" fill-opacity="1" d=" M-176.26100158691406,51.33100128173828 C-176.26100158691406,51.33100128173828 -169.27200317382812,58.57400131225586 -158.13499450683594,62.05400085449219 C-146.9980010986328,65.53399658203125 -135.4980010986328,65.96800231933594 -135.4980010986328,65.96800231933594 C-135.4980010986328,65.96800231933594 -134.39199829101562,60.86199951171875 -134.39199829101562,60.86199951171875 C-134.39199829101562,60.86199951171875 -151.65899658203125,64.02200317382812 -173.79299926757812,49.54399871826172 C-173.79299926757812,49.54399871826172 -176.26100158691406,51.33100128173828 -176.26100158691406,51.33100128173828z"></path></g><g opacity="1" transform="matrix(1,0,0,1,0,0)"><path fill="rgb(53,53,53)" fill-opacity="1" d=" M-184.5540008544922,78.31600189208984 C-184.5540008544922,78.31600189208984 -177.0570068359375,84.92400360107422 -165.9199981689453,88.40399932861328 C-154.7830047607422,91.88400268554688 -143.92300415039062,92.09300231933594 -143.92300415039062,92.09300231933594 C-143.92300415039062,92.09300231933594 -142.177001953125,87.21199798583984 -142.177001953125,87.21199798583984 C-142.177001953125,87.21199798583984 -159.44400024414062,90.37200164794922 -181.5780029296875,75.89399719238281 C-181.5780029296875,75.89399719238281 -184.5540008544922,78.31600189208984 -184.5540008544922,78.31600189208984z"></path></g><g opacity="1" transform="matrix(1,0,0,1,0,0)"><path stroke-linecap="butt" stroke-linejoin="miter" fill-opacity="0" stroke-miterlimit="10" stroke="rgb(45,44,44)" stroke-opacity="1" stroke-width="1" d=" M-174.04800415039062,48.69300079345703 C-174.04800415039062,48.69300079345703 -153.7570037841797,62.88600158691406 -134.05099487304688,60.35200119018555"></path></g><g opacity="1" transform="matrix(1,0,0,1,0,0)"><path stroke-linecap="butt" stroke-linejoin="miter" fill-opacity="0" stroke-miterlimit="10" stroke="rgb(45,44,44)" stroke-opacity="1" stroke-width="1" d=" M-181.67599487304688,75.43900299072266 C-181.67599487304688,75.43900299072266 -162.0590057373047,89.74400329589844 -142.35299682617188,87.20999908447266"></path></g><g opacity="1" transform="matrix(1,0,0,1,0,0)"><path fill="rgb(53,53,53)" fill-opacity="1" d=" M-6.701000213623047,63.60599899291992 C-6.701000213623047,63.60599899291992 -7.4629998207092285,65.94200134277344 -7.4629998207092285,65.94200134277344 C-7.4629998207092285,65.94200134277344 5.738999843597412,68.2770004272461 12.34000015258789,63.757999420166016 C12.34000015258789,63.757999420166016 13.609999656677246,59.95000076293945 13.609999656677246,59.95000076293945 C13.609999656677246,59.95000076293945 9.243000030517578,62.84400177001953 5.130000114440918,63.50400161743164 C1.0169999599456787,64.16400146484375 -6.498000144958496,63.047000885009766 -6.498000144958496,63.047000885009766 C-6.498000144958496,63.047000885009766 -6.701000213623047,63.60599899291992 -6.701000213623047,63.60599899291992z"></path></g><g opacity="1" transform="matrix(1,0,0,1,0,0)"><path fill="rgb(53,53,53)" fill-opacity="1" d=" M-13.555999755859375,84.5260009765625 C-13.555999755859375,84.5260009765625 -14.11400032043457,86.45500183105469 -14.215999603271484,87.11499786376953 C-14.215999603271484,87.11499786376953 -1.5729999542236328,89.70500183105469 5.485000133514404,84.6780014038086 C5.485000133514404,84.6780014038086 6.703999996185303,81.17500305175781 6.703999996185303,81.17500305175781 C6.703999996185303,81.17500305175781 2.7950000762939453,84.01799774169922 -2.0799999237060547,84.62699890136719 C-6.954999923706055,85.23600006103516 -13.555999755859375,84.5260009765625 -13.555999755859375,84.5260009765625z"></path></g><g opacity="1" transform="matrix(1,0,0,1,0,0)"><g opacity="1" transform="matrix(1,0,0,1,0,0)"><path fill="rgb(45,44,44)" fill-opacity="1" d=" M-0.3630000054836273,64.15499877929688 C-3.7160000801086426,64.15499877929688 -6.533999919891357,63.874000549316406 -6.77400016784668,63.834999084472656 C-6.77400016784668,63.834999084472656 -6.3379998207092285,62.724998474121094 -6.3379998207092285,62.724998474121094 C-6.203999996185303,62.74800109863281 8.791000366210938,64.63700103759766 13.925999641418457,59.020999908447266 C13.925999641418457,59.020999908447266 13.444000244140625,60.518001556396484 13.444000244140625,60.518001556396484 C9.65999984741211,63.9109992980957 4.184000015258789,64.15499877929688 -0.3630000054836273,64.15499877929688z"></path></g></g><g opacity="1" transform="matrix(1,0,0,1,0,0)"><g opacity="1" transform="matrix(1,0,0,1,0,0)"><path fill="rgb(45,44,44)" fill-opacity="1" d=" M-7.059999942779541,85.35700225830078 C-10.413000106811523,85.35700225830078 -13.430000305175781,84.8949966430664 -13.670000076293945,84.85600280761719 C-13.670000076293945,84.85600280761719 -13.319000244140625,83.87899780273438 -13.319000244140625,83.87899780273438 C-13.1850004196167,83.9020004272461 0.7239999771118164,85.9749984741211 6.940000057220459,80.4000015258789 C6.940000057220459,80.4000015258789 6.541999816894531,81.70899963378906 6.541999816894531,81.70899963378906 C2.9839999675750732,84.64099884033203 -2.513000011444092,85.35700225830078 -7.059999942779541,85.35700225830078z"></path></g></g><g opacity="1" transform="matrix(1,0,0,1,0,0)"><path stroke-linecap="butt" stroke-linejoin="miter" fill-opacity="0" stroke-miterlimit="10" stroke="rgb(68,147,226)" stroke-opacity="1" stroke-width="1" d=" M-207.82699584960938,119.61699676513672 C-207.82699584960938,119.61699676513672 -207.82699584960938,119.61699676513672 -207.82699584960938,119.61699676513672 C-211.1750030517578,120.06900024414062 -214.2830047607422,117.70099639892578 -214.73500061035156,114.35299682617188 C-214.73500061035156,114.35299682617188 -217.84800720214844,91.31099700927734 -217.84800720214844,91.31099700927734 C-218.3000030517578,87.96299743652344 -215.9320068359375,84.85399627685547 -212.58399963378906,84.4020004272461"></path></g><g opacity="1" transform="matrix(1,0,0,1,0,0)"><path stroke-linecap="butt" stroke-linejoin="miter" fill-opacity="0" stroke-miterlimit="10" stroke="rgb(33,81,158)" stroke-opacity="1" stroke-width="1" d=" M-289.9800109863281,43.257999420166016 C-289.9800109863281,43.257999420166016 -289.9800109863281,43.257999420166016 -289.9800109863281,43.257999420166016 C-291.95001220703125,40.513999938964844 -291.3169860839844,36.65700149536133 -288.572998046875,34.6870002746582 C-288.572998046875,34.6870002746582 -277.26800537109375,27.64299964904785 -277.26800537109375,27.64299964904785 C-274.52398681640625,25.67300033569336 -270.6669921875,26.305999755859375 -268.6969909667969,29.049999237060547"></path></g></g><g style="display: none;"><g><g><path></path></g><g><path></path></g><g><path></path></g><g><path></path></g><g><path></path></g><g><path></path></g><g><path></path></g></g><g><path></path></g><g><path></path></g><g><g><path></path></g><g><path></path></g><g><path></path></g></g><g><path></path></g><g><path></path></g><g><path></path></g><g><g><path></path></g><g><path></path></g><g><path></path></g></g><g><path></path></g><g><path></path></g><g><path></path></g><g><path></path></g><g><path></path></g><g><path></path></g><g><path></path></g><g><path></path></g><g><path></path></g><g><path></path></g><g><path></path></g><g><path></path></g><g><path></path></g><g><g><path></path></g><g><path></path></g><g><path></path></g><g><path></path></g><g><path></path></g><g><path></path></g><g><path></path></g></g><g><g><path></path></g><g><path></path></g><g><path></path></g></g><g><path></path></g><g><path stroke-linecap="butt" stroke-linejoin="miter" fill-opacity="0" stroke-miterlimit="10"></path></g><g><path></path></g><g><path></path></g><g><path></path></g><g><path></path></g><g><g><path></path></g><g><path></path></g></g><g><path></path></g><g><g><path></path></g><g><path></path></g></g><g><path></path></g><g><path></path></g><g><path></path></g><g><path stroke-linecap="butt" stroke-linejoin="miter" fill-opacity="0" stroke-miterlimit="10"></path></g><g><path stroke-linecap="butt" stroke-linejoin="miter" fill-opacity="0" stroke-miterlimit="10"></path></g><g><path stroke-linecap="butt" stroke-linejoin="miter" fill-opacity="0" stroke-miterlimit="10"></path></g><g><path stroke-linecap="butt" stroke-linejoin="miter" fill-opacity="0" stroke-miterlimit="10"></path></g><g><g><path></path></g><g><path></path></g><g><path></path></g><g><path></path></g><g><path></path></g></g><g><path stroke-linecap="butt" stroke-linejoin="miter" fill-opacity="0" stroke-miterlimit="10"></path></g></g><g clip-path="url(#__lottie_element_397)" transform="matrix(0.4095533490180969,-0.0701359361410141,-0.03465011715888977,0.6066272854804993,735.5744018554688,623.9017333984375)" opacity="1" style="display: block;"><g transform="matrix(2.0743765830993652,-0.34953567385673523,0.34953567385673523,2.0743765830993652,-92.39122009277344,-22.484085083007812)" opacity="1" style="display: block;"><g opacity="1" transform="matrix(1,0,0,1,70.45600128173828,112.07099914550781)"><path fill="rgb(255,255,255)" fill-opacity="1" d=" M-5.122000217437744,5.545000076293945 C-1.8300000429153442,7.9770002365112305 1.7039999961853027,10.04800033569336 5.418000221252441,11.732000350952148 C-0.546999990940094,5.685999870300293 -4.252999782562256,-2.5889999866485596 -4.3429999351501465,-11.732000350952148 C-5.488999843597412,-5.927999973297119 -5.666999816894531,-0.17399999499320984 -5.122000217437744,5.545000076293945z"></path></g><g opacity="1" transform="matrix(1,0,0,1,129.5399932861328,112.11100006103516)"><path fill="rgb(255,255,255)" fill-opacity="1" d=" M4.3460001945495605,-11.697999954223633 C4.236999988555908,-2.5810000896453857 0.5329999923706055,5.668000221252441 -5.420000076293945,11.697999954223633 C-1.7029999494552612,10.015000343322754 1.8350000381469727,7.945000171661377 5.126999855041504,5.511000156402588 C5.710000038146973,-0.5400000214576721 5.409999847412109,-6.261000156402588 4.3460001945495605,-11.697999954223633z"></path></g></g><g transform="matrix(1.9961464405059814,-0.35197359323501587,0.35197359323501587,1.9961464405059814,-84.81201171875,-14.417648315429688)" opacity="1" style="display: block;"><g opacity="1" transform="matrix(1,0,0,1,79.71600341796875,100)"><path fill="rgb(255,255,255)" fill-opacity="1" d=" M7.099999904632568,20.388999938964844 C5.031000137329102,19.615999221801758 3.0339999198913574,18.663000106811523 1.1319999694824219,17.540000915527344 C1.6319999694824219,17.177000045776367 2.121999979019165,16.80299949645996 2.5950000286102295,16.440000534057617 C2.813999891281128,16.542999267578125 3.0390000343322754,16.631000518798828 3.259999990463257,16.729999542236328 C-0.9739999771118164,12.42199993133545 -3.5889999866485596,6.517000198364258 -3.5889999866485596,0 C-3.5889999866485596,-10.864999771118164 3.671999931335449,-20.027999877929688 13.604000091552734,-22.917999267578125 C13.159000396728516,-22.86199951171875 12.71399974822998,-22.80900001525879 12.270000457763672,-22.742000579833984 C11.720000267028809,-24.025999069213867 11.102999687194824,-25.280000686645508 10.42199993133545,-26.499000549316406 C5.436999797821045,-25.64900016784668 0.5830000042915344,-24.152999877929688 -4.015999794006348,-22.048999786376953 C-9.125,-14.489999771118164 -12.147000312805176,-7.035999774932861 -13.604000091552734,0.33899998664855957 C-13.513999938964844,9.482000350952148 -9.807000160217285,17.756999969482422 -3.8420000076293945,23.80299949645996 C-1.5230000019073486,24.854999542236328 0.8650000095367432,25.757999420166016 3.309999942779541,26.499000549316406 C4.743000030517578,24.57200050354004 6.011000156402588,22.52899932861328 7.099999904632568,20.388999938964844z"></path></g><g opacity="1" transform="matrix(1,0,0,1,120.29000091552734,100)"><path fill="rgb(255,255,255)" fill-opacity="1" d=" M3.9820001125335693,-22.059999465942383 C-0.6119999885559082,-24.163000106811523 -5.4629998207092285,-25.6560001373291 -10.444999694824219,-26.499000549316406 C-11.126999855041504,-25.280000686645508 -11.744000434875488,-24.025999069213867 -12.293000221252441,-22.742000579833984 C-12.72700023651123,-22.80699920654297 -13.16100025177002,-22.858999252319336 -13.595999717712402,-22.913999557495117 C-3.6710000038146973,-20.018999099731445 3.5820000171661377,-10.859999656677246 3.5820000171661377,0 C3.5820000171661377,6.517000198364258 0.9679999947547913,12.42199993133545 -3.2660000324249268,16.729999542236328 C-3.0450000762939453,16.631000518798828 -2.821000099182129,16.542999267578125 -2.6019999980926514,16.440000534057617 C-2.122999906539917,16.83099937438965 -1.6339999437332153,17.20400047302246 -1.1390000581741333,17.540000915527344 C-3.0439999103546143,18.665000915527344 -5.044000148773193,19.618999481201172 -7.117000102996826,20.393999099731445 C-6.0289998054504395,22.533000946044922 -4.76200008392334,24.575000762939453 -3.328000068664551,26.499000549316406 C-0.8809999823570251,25.76099967956543 1.5089999437332153,24.858999252319336 3.8299999237060547,23.80900001525879 C9.782999992370605,17.77899932861328 13.487000465393066,9.529999732971191 13.595999717712402,0.4129999876022339 C12.01200008392334,-7.681000232696533 8.715999603271484,-15.137999534606934 3.9820001125335693,-22.059999465942383z"></path></g></g><g transform="matrix(2.019752264022827,-0.0928456112742424,0.0928456112742424,2.019752264022827,150,150)" opacity="1" style="display: block;"><g opacity="1" transform="matrix(1,0,0,1,0,0)"><path fill="rgb(255,255,255)" fill-opacity="1" d=" M-6.678999900817871,-22.917999267578125 C-16.611000061035156,-20.027999877929688 -23.871999740600586,-10.864999771118164 -23.871999740600586,0 C-23.871999740600586,6.517000198364258 -21.257999420166016,12.42199993133545 -17.02400016784668,16.729999542236328 C-6.193999767303467,21.5939998626709 6.193999767303467,21.5939998626709 17.02400016784668,16.729999542236328 C21.257999420166016,12.42199993133545 23.871999740600586,6.517000198364258 23.871999740600586,0 C23.871999740600586,-10.859999656677246 16.618999481201172,-20.018999099731445 6.693999767303467,-22.913999557495117 C2.253000020980835,-23.472000122070312 -2.23799991607666,-23.474000930786133 -6.678999900817871,-22.917999267578125z M-11.616000175476074,9.630000114440918 C-15.064000129699707,9.630000114440918 -17.913999557495117,6.500999927520752 -17.913999557495117,2.6510000228881836 C-17.913999557495117,-1.1990000009536743 -15.163000106811523,-4.355999946594238 -11.626999855041504,-4.355999946594238 C-8.090999603271484,-4.355999946594238 -5.263000011444092,-1.1990000009536743 -5.323999881744385,2.6510000228881836 C-5.383999824523926,6.500999927520752 -8.10099983215332,9.630000114440918 -11.616000175476074,9.630000114440918z M11.616000175476074,-4.355999946594238 C15.157999992370605,-4.355999946594238 17.96299934387207,-1.1990000009536743 17.902000427246094,2.6510000228881836 C17.841999053955078,6.500999927520752 15.130999565124512,9.630000114440918 11.616000175476074,9.630000114440918 C8.161999702453613,9.630000114440918 5.323999881744385,6.500999927520752 5.323999881744385,2.6510000228881836 C5.323999881744385,-1.1990000009536743 8.074000358581543,-4.355999946594238 11.616000175476074,-4.355999946594238z"></path></g></g><g transform="matrix(2.0156049728393555,-0.09265496581792831,0.09265496581792831,2.0156049728393555,150,150)" opacity="0.000002300119689806479" style="display: block;"><g opacity="1" transform="matrix(1,0,0,1,0,0)"><path fill="rgb(255,255,255)" fill-opacity="1" d=" M24.270999908447266,-22.06100082397461 C19.677000045776367,-24.163999557495117 14.82699966430664,-25.6560001373291 9.845000267028809,-26.499000549316406 C9.163000106811523,-25.280000686645508 8.545999526977539,-24.025999069213867 7.997000217437744,-22.742000579833984 C2.690000057220459,-23.54199981689453 -2.7070000171661377,-23.54199981689453 -8.013999938964844,-22.742000579833984 C-8.564000129699707,-24.025999069213867 -9.180999755859375,-25.280000686645508 -9.862000465393066,-26.499000549316406 C-14.847000122070312,-25.64900016784668 -19.700000762939453,-24.152999877929688 -24.298999786376953,-22.048999786376953 C-33.42900085449219,-8.541000366210938 -35.904998779296875,4.63100004196167 -34.66699981689453,17.617000579833984 C-34.66699981689453,17.617000579833984 -34.66699981689453,17.617000579833984 -34.66699981689453,17.617000579833984 C-29.31999969482422,21.566999435424805 -23.334999084472656,24.570999145507812 -16.972999572753906,26.499000549316406 C-15.539999961853027,24.57200050354004 -14.27299976348877,22.52899932861328 -13.184000015258789,20.388999938964844 C-15.253000259399414,19.615999221801758 -17.249000549316406,18.663000106811523 -19.150999069213867,17.540000915527344 C-18.649999618530273,17.177000045776367 -18.160999298095703,16.802000045776367 -17.687999725341797,16.43899917602539 C-6.485000133514404,21.70800018310547 6.485000133514404,21.70800018310547 17.687999725341797,16.43899917602539 C18.16699981689453,16.829999923706055 18.6560001373291,17.204999923706055 19.150999069213867,17.540000915527344 C17.246000289916992,18.665000915527344 15.244999885559082,19.618999481201172 13.17199993133545,20.393999099731445 C14.260000228881836,22.533000946044922 15.527999877929688,24.575000762939453 16.961999893188477,26.499000549316406 C23.329999923706055,24.57900047302246 29.31800079345703,21.576000213623047 34.66600036621094,17.621999740600586 C34.66600036621094,17.621999740600586 34.66600036621094,17.621999740600586 34.66600036621094,17.621999740600586 C36.11800003051758,2.562999963760376 32.18600082397461,-10.48900032043457 24.270999908447266,-22.06100082397461z M-11.616000175476074,9.630999565124512 C-15.0649995803833,9.630999565124512 -17.913999557495117,6.500999927520752 -17.913999557495117,2.6510000228881836 C-17.913999557495117,-1.1990000009536743 -15.163000106811523,-4.355999946594238 -11.626999855041504,-4.355999946594238 C-8.090999603271484,-4.355999946594238 -5.263000011444092,-1.1990000009536743 -5.323999881744385,2.6510000228881836 C-5.385000228881836,6.500999927520752 -8.10200023651123,9.630999565124512 -11.616000175476074,9.630999565124512z M11.616000175476074,9.630999565124512 C8.161999702453613,9.630999565124512 5.323999881744385,6.500999927520752 5.323999881744385,2.6510000228881836 C5.323999881744385,-1.1990000009536743 8.074000358581543,-4.355999946594238 11.616000175476074,-4.355999946594238 C15.157999992370605,-4.355999946594238 17.96299934387207,-1.1990000009536743 17.902000427246094,2.6510000228881836 C17.840999603271484,6.500999927520752 15.130000114440918,9.630999565124512 11.616000175476074,9.630999565124512z"></path></g></g><g style="display: none;"><g><path></path></g><g><path></path></g></g><g style="display: none;"><g><path></path></g><g><path></path></g></g><g style="display: none;"><g><path></path></g></g><g style="display: none;"><g><path></path></g></g><g style="display: none;"><g><path></path></g><g><path></path></g></g><g style="display: none;"><g><path></path></g><g><path></path></g></g><g style="display: none;"><g><path></path></g></g><g style="display: none;"><g><path></path></g></g></g><g style="display: none;"><g><path></path></g></g><g style="display: none;"><g><path></path></g></g><g style="display: none;"><g><path></path></g></g><g style="display: none;"><g><path></path></g></g><g style="display: none;"><g><path></path></g></g><g style="display: none;"><g><path></path></g></g><g style="display: none;"><g><path></path></g></g><g style="display: none;"><g><path></path></g></g><g style="display: none;"><g><path></path></g></g><g style="display: none;"><g><path></path></g></g><g style="display: none;"><g><path></path></g></g><g style="display: none;"><g><path></path><path stroke-linecap="butt" stroke-linejoin="miter" fill-opacity="0" stroke-miterlimit="4"></path></g></g><g style="display: none;"><g><path></path><path stroke-linecap="butt" stroke-linejoin="miter" fill-opacity="0" stroke-miterlimit="4"></path></g></g><g style="display: none;"><g><path></path><path stroke-linecap="butt" stroke-linejoin="miter" fill-opacity="0" stroke-miterlimit="4"></path></g></g><g transform="matrix(1.7014331817626953,-0.48787811398506165,0.48787811398506165,1.7014331817626953,-130.55889892578125,415.59832763671875)" opacity="1" style="display: block;"><g opacity="1" transform="matrix(1,0,0,1,0,0)"><g opacity="0.15" transform="matrix(1,0,0,1,298.62799072265625,248.1999969482422)"><path stroke-linecap="round" stroke-linejoin="round" fill-opacity="0" stroke="rgb(255,255,255)" stroke-opacity="1" stroke-width="7" d=" M-47.43199920654297,-38.90599822998047 C-47.43199920654297,-38.90599822998047 47.43199920654297,38.90599822998047 47.43199920654297,38.90599822998047"></path></g><g opacity="0.38" transform="matrix(1,0,0,1,298.62799072265625,248.1999969482422)"><path stroke-linecap="round" stroke-linejoin="round" fill-opacity="0" stroke="rgb(255,255,255)" stroke-opacity="1" stroke-width="4" d=" M-47.43199920654297,-38.90599822998047 C-47.43199920654297,-38.90599822998047 47.43199920654297,38.90599822998047 47.43199920654297,38.90599822998047"></path></g></g><g opacity="1" transform="matrix(1,0,0,1,298.62799072265625,248.1999969482422)"><path stroke-linecap="round" stroke-linejoin="round" fill-opacity="0" stroke="rgb(255,255,255)" stroke-opacity="1" stroke-width="2" d=" M47.43199920654297,38.90599822998047 C47.43199920654297,38.90599822998047 -47.43199920654297,-38.90599822998047 -47.43199920654297,-38.90599822998047"></path></g></g><g transform="matrix(1.7014331817626953,-0.48787811398506165,0.48787811398506165,1.7014331817626953,-130.55889892578125,415.59832763671875)" opacity="1" style="display: block;"><g opacity="1" transform="matrix(1,0,0,1,0,0)"><g opacity="1" transform="matrix(1,0,0,1,0,0)"><g opacity="0.15" transform="matrix(1,0,0,1,401.0710144042969,302.1960144042969)"><path stroke-linecap="round" stroke-linejoin="round" fill-opacity="0" stroke="rgb(255,255,255)" stroke-opacity="1" stroke-width="7" d=" M-7.10699987411499,-0.07199999690055847 C-7.10699987411499,-0.07199999690055847 7.10699987411499,0.07199999690055847 7.10699987411499,0.07199999690055847"></path></g><g opacity="0.38" transform="matrix(1,0,0,1,401.0710144042969,302.1960144042969)"><path stroke-linecap="round" stroke-linejoin="round" fill-opacity="0" stroke="rgb(255,255,255)" stroke-opacity="1" stroke-width="4" d=" M-7.10699987411499,-0.07199999690055847 C-7.10699987411499,-0.07199999690055847 7.10699987411499,0.07199999690055847 7.10699987411499,0.07199999690055847"></path></g></g><g opacity="1" transform="matrix(1,0,0,1,401.0710144042969,302.1960144042969)"><path stroke-linecap="round" stroke-linejoin="round" fill-opacity="0" stroke="rgb(255,255,255)" stroke-opacity="1" stroke-width="2" d=" M7.10699987411499,0.07199999690055847 C7.10699987411499,0.07199999690055847 -7.10699987411499,-0.07199999690055847 -7.10699987411499,-0.07199999690055847"></path></g></g><g opacity="1" transform="matrix(1,0,0,1,0,0)"><g opacity="1" transform="matrix(1,0,0,1,0,0)"><g opacity="0.15" transform="matrix(1,0,0,1,508.8009948730469,300.156005859375)"><path stroke-linecap="round" stroke-linejoin="round" fill-opacity="0" stroke="rgb(255,255,255)" stroke-opacity="1" stroke-width="7" d=" M-7.10699987411499,-0.07199999690055847 C-7.10699987411499,-0.07199999690055847 7.10699987411499,0.07199999690055847 7.10699987411499,0.07199999690055847"></path></g><g opacity="0.38" transform="matrix(1,0,0,1,508.8009948730469,300.156005859375)"><path stroke-linecap="round" stroke-linejoin="round" fill-opacity="0" stroke="rgb(255,255,255)" stroke-opacity="1" stroke-width="4" d=" M-7.10699987411499,-0.07199999690055847 C-7.10699987411499,-0.07199999690055847 7.10699987411499,0.07199999690055847 7.10699987411499,0.07199999690055847"></path></g></g><g opacity="1" transform="matrix(1,0,0,1,508.8009948730469,300.156005859375)"><path stroke-linecap="round" stroke-linejoin="round" fill-opacity="0" stroke="rgb(255,255,255)" stroke-opacity="1" stroke-width="2" d=" M7.10699987411499,0.07199999690055847 C7.10699987411499,0.07199999690055847 -7.10699987411499,-0.07199999690055847 -7.10699987411499,-0.07199999690055847"></path></g></g></g><g transform="matrix(1.7014331817626953,-0.48787811398506165,0.48787811398506165,1.7014331817626953,-130.55889892578125,415.59832763671875)" opacity="0.64" style="display: block;"><g opacity="0.727743324777779" transform="matrix(1,0,0,1,194.3000030517578,242.8769989013672)"><path fill="url(#__lottie_element_346)" fill-opacity="1" d=" M48.87099838256836,-41.26900100708008 C48.87099838256836,-41.26900100708008 104.25900268554688,3.257999897003174 104.25900268554688,3.257999897003174 C104.25900268554688,3.257999897003174 -36.92499923706055,41.26900100708008 -36.92499923706055,41.26900100708008 C-36.92499923706055,41.26900100708008 -104.25900268554688,-33.66699981689453 -104.25900268554688,-33.66699981689453 C-104.25900268554688,-33.66699981689453 48.87099838256836,-41.26900100708008 48.87099838256836,-41.26900100708008z"></path></g><g opacity="0.33550349999999557" transform="matrix(1,0,0,1,439.4049987792969,355.0979919433594)"><path fill="url(#__lottie_element_347)" fill-opacity="1" d=" M-45.76300048828125,-52.90599822998047 C-45.76300048828125,-52.90599822998047 -2.1500000953674316,52.749000549316406 -2.1500000953674316,52.749000549316406 C-2.1500000953674316,52.749000549316406 45.76300048828125,53.36399841308594 45.76300048828125,53.36399841308594 C45.76300048828125,53.36399841308594 -29.886999130249023,-53.36399841308594 -29.886999130249023,-53.36399841308594 C-29.886999130249023,-53.36399841308594 -45.76300048828125,-52.90599822998047 -45.76300048828125,-52.90599822998047z"></path></g><g opacity="0.30057399999999673" transform="matrix(1,0,0,1,263.385009765625,318.8630065917969)"><path fill="url(#__lottie_element_348)" fill-opacity="1" d=" M49.45600128173828,-58.3380012512207 C49.45600128173828,-58.3380012512207 82.86100006103516,-31.003000259399414 82.86100006103516,-31.003000259399414 C82.86100006103516,-31.003000259399414 -18.06999969482422,58.3380012512207 -18.06999969482422,58.3380012512207 C-18.06999969482422,58.3380012512207 -82.86100006103516,-10.343999862670898 -82.86100006103516,-10.343999862670898 C-82.86100006103516,-10.343999862670898 49.45600128173828,-58.3380012512207 49.45600128173828,-58.3380012512207z"></path></g><g opacity="0.26149550000000576" transform="matrix(1,0,0,1,546.8040161132812,355.0979919433594)"><path fill="url(#__lottie_element_349)" fill-opacity="1" d=" M-45.76300048828125,-52.90599822998047 C-45.76300048828125,-52.90599822998047 -2.1500000953674316,52.749000549316406 -2.1500000953674316,52.749000549316406 C-2.1500000953674316,52.749000549316406 45.76300048828125,53.36399841308594 45.76300048828125,53.36399841308594 C45.76300048828125,53.36399841308594 -29.886999130249023,-53.36399841308594 -29.886999130249023,-53.36399841308594 C-29.886999130249023,-53.36399841308594 -45.76300048828125,-52.90599822998047 -45.76300048828125,-52.90599822998047z"></path></g></g><g transform="matrix(1.7014331817626953,-0.48787811398506165,0.48787811398506165,1.7014331817626953,-130.55889892578125,415.59832763671875)" opacity="0.54" style="display: block;"><g opacity="0.64" transform="matrix(1,0,0,1,267.85699462890625,306.5929870605469)"><path fill="url(#__lottie_element_338)" fill-opacity="1" d=" M53.5099983215332,-38.73500061035156 C53.5099983215332,-38.73500061035156 -69.21299743652344,11.220000267028809 -69.21299743652344,11.220000267028809 C-69.21299743652344,11.220000267028809 -38.96200180053711,38.73500061035156 -38.96200180053711,38.73500061035156 C-38.96200180053711,38.73500061035156 69.21299743652344,-25.493000030517578 69.21299743652344,-25.493000030517578 C69.21299743652344,-25.493000030517578 53.5099983215332,-38.73500061035156 53.5099983215332,-38.73500061035156z"></path></g><g opacity="0.32" transform="matrix(1,0,0,1,227.34800720214844,262.6700134277344)"><path fill="url(#__lottie_element_339)" fill-opacity="1" d=" M51.52799987792969,-29.54599952697754 C51.52799987792969,-29.54599952697754 75.12100219726562,-10.489999771118164 75.12100219726562,-10.489999771118164 C75.12100219726562,-10.489999771118164 -38.19200134277344,29.78499984741211 -38.19200134277344,29.78499984741211 C-38.19200134277344,29.78499984741211 -75.12100219726562,-9.473999977111816 -75.12100219726562,-9.473999977111816 C-75.12100219726562,-9.473999977111816 51.52799987792969,-29.54599952697754 51.52799987792969,-29.54599952697754z"></path></g><g opacity="0.54" transform="matrix(1,0,0,1,180.29200744628906,229.9340057373047)"><path fill="url(#__lottie_element_340)" fill-opacity="1" d=" M81.49099731445312,-11.291999816894531 C81.49099731445312,-11.291999816894531 -68.99800109863281,17.959999084472656 -68.99800109863281,17.959999084472656 C-68.99800109863281,17.959999084472656 -91.95700073242188,-15.944999694824219 -91.95700073242188,-15.944999694824219 C-91.95700073242188,-15.944999694824219 69.16799926757812,-22.072999954223633 69.16799926757812,-22.072999954223633 C69.16799926757812,-22.072999954223633 77.79900360107422,-14.312999725341797 81.49099731445312,-11.291999816894531z"></path></g><g opacity="0.54" transform="matrix(1,0,0,1,414.3389892578125,350.4010009765625)"><path fill="url(#__lottie_element_341)" fill-opacity="1" d=" M-20.69700050354004,-48.20899963378906 C-20.69700050354004,-48.20899963378906 0.3880000114440918,46.79999923706055 0.3880000114440918,46.79999923706055 C0.3880000114440918,46.79999923706055 30.860000610351562,48.56399917602539 30.860000610351562,48.56399917602539 C30.860000610351562,48.56399917602539 -17.076000213623047,-48.020999908447266 -17.076000213623047,-48.020999908447266 C-17.076000213623047,-48.020999908447266 -20.69700050354004,-48.20899963378906 -20.69700050354004,-48.20899963378906z"></path></g><g opacity="0.54" transform="matrix(1,0,0,1,532.3289794921875,341.1390075683594)"><path fill="url(#__lottie_element_342)" fill-opacity="1" d=" M-30.041000366210938,-41.30699920654297 C-30.041000366210938,-41.30699920654297 2.2669999599456787,41.810001373291016 2.2669999599456787,41.810001373291016 C2.2669999599456787,41.810001373291016 35.165000915527344,39.83700180053711 35.165000915527344,39.83700180053711 C35.165000915527344,39.83700180053711 -20.156999588012695,-41.012001037597656 -20.156999588012695,-41.012001037597656 C-20.156999588012695,-41.012001037597656 -30.041000366210938,-41.30699920654297 -30.041000366210938,-41.30699920654297z"></path></g></g><g style="display: none;"><g><path fill="url(#__lottie_element_329)"></path></g><g><path fill="url(#__lottie_element_330)"></path></g><g><path fill="url(#__lottie_element_331)"></path></g></g><g style="display: none;"><g><path fill="url(#__lottie_element_323)" mask="url(#__lottie_element_325)"></path></g></g><g style="display: none;"><g><path fill="url(#__lottie_element_317)" mask="url(#__lottie_element_319)"></path></g></g><g style="display: none;"><g><path stroke-linecap="butt" stroke-linejoin="miter" fill-opacity="0" stroke-miterlimit="10"></path></g></g><g style="display: none;"><g><path stroke-linecap="butt" stroke-linejoin="miter" fill-opacity="0" stroke-miterlimit="10"></path></g></g><g style="display: none;"><g><path></path></g></g><g style="display: none;"><g><path></path></g></g><g style="display: none;"><g><g><path></path></g></g><g><path stroke-linecap="round" stroke-linejoin="miter" fill-opacity="0" stroke-miterlimit="4"></path></g></g><g style="display: none;"><g><g><path></path></g></g><g><path stroke-linecap="round" stroke-linejoin="miter" fill-opacity="0" stroke-miterlimit="4"></path></g></g><g style="display: none;"><g><g><path></path></g></g><g><path stroke-linecap="round" stroke-linejoin="miter" fill-opacity="0" stroke-miterlimit="4"></path></g></g><g transform="matrix(1,0,0,1,473.79534912109375,822.2596435546875)" opacity="0.015369230769251204" style="display: none;"><g opacity="1" transform="matrix(1,0,0,1,0,0)"><path stroke-linecap="butt" stroke-linejoin="miter" fill-opacity="0" stroke-miterlimit="10" stroke="rgb(255,255,255)" stroke-opacity="1" stroke-width="2.766" d=" M0,-8.218000411987305 C-4.539000034332275,-8.218000411987305 -8.218000411987305,-4.539000034332275 -8.218000411987305,0 C-8.218000411987305,4.539000034332275 -4.539000034332275,8.218000411987305 0,8.218000411987305 C4.539000034332275,8.218000411987305 8.218000411987305,4.539000034332275 8.218000411987305,0 C8.218000411987305,-4.539000034332275 4.539000034332275,-8.218000411987305 0,-8.218000411987305z"></path></g></g><g style="display: block;" transform="matrix(1,0,0,1,421.0115661621094,710.4992065429688)" opacity="0.015376923076932912"><g opacity="1" transform="matrix(1,0,0,1,0,0)"><path stroke-linecap="butt" stroke-linejoin="miter" fill-opacity="0" stroke-miterlimit="10" stroke="rgb(255,255,255)" stroke-opacity="1" stroke-width="2.766" d=" M0,-8.218000411987305 C-4.539000034332275,-8.218000411987305 -8.218000411987305,-4.539000034332275 -8.218000411987305,0 C-8.218000411987305,4.539000034332275 -4.539000034332275,8.218000411987305 0,8.218000411987305 C4.539000034332275,8.218000411987305 8.218000411987305,4.539000034332275 8.218000411987305,0 C8.218000411987305,-4.539000034332275 4.539000034332275,-8.218000411987305 0,-8.218000411987305z"></path></g></g><g style="display: block;" transform="matrix(1,0,0,1,747.6524658203125,789.0354614257812)" opacity="0.22000666666665816"><g opacity="1" transform="matrix(1,0,0,1,0,0)"><path stroke-linecap="butt" stroke-linejoin="miter" fill-opacity="0" stroke-miterlimit="10" stroke="rgb(255,255,255)" stroke-opacity="1" stroke-width="2.766" d=" M0,-8.218000411987305 C-4.539000034332275,-8.218000411987305 -8.218000411987305,-4.539000034332275 -8.218000411987305,0 C-8.218000411987305,4.539000034332275 -4.539000034332275,8.218000411987305 0,8.218000411987305 C4.539000034332275,8.218000411987305 8.218000411987305,4.539000034332275 8.218000411987305,0 C8.218000411987305,-4.539000034332275 4.539000034332275,-8.218000411987305 0,-8.218000411987305z"></path></g></g><g style="display: block;" transform="matrix(1,0,0,1,518.6119384765625,819.2044677734375)" opacity="0.48453954545455297"><g opacity="1" transform="matrix(1,0,0,1,0,0)"><path fill="rgb(255,255,255)" fill-opacity="1" d=" M0,-4.875999927520752 C-2.693000078201294,-4.875999927520752 -4.875999927520752,-2.693000078201294 -4.875999927520752,0 C-4.875999927520752,2.693000078201294 -2.693000078201294,4.875999927520752 0,4.875999927520752 C2.693000078201294,4.875999927520752 4.875999927520752,2.693000078201294 4.875999927520752,0 C4.875999927520752,-2.693000078201294 2.693000078201294,-4.875999927520752 0,-4.875999927520752z"></path></g></g><g style="display: block;" transform="matrix(1,0,0,1,329.76654052734375,671.7677001953125)" opacity="0.5590840909090996"><g opacity="1" transform="matrix(1,0,0,1,0,0)"><path fill="rgb(255,255,255)" fill-opacity="1" d=" M0,-4.875999927520752 C-2.693000078201294,-4.875999927520752 -4.875999927520752,-2.693000078201294 -4.875999927520752,0 C-4.875999927520752,2.693000078201294 -2.693000078201294,4.875999927520752 0,4.875999927520752 C2.693000078201294,4.875999927520752 4.875999927520752,2.693000078201294 4.875999927520752,0 C4.875999927520752,-2.693000078201294 2.693000078201294,-4.875999927520752 0,-4.875999927520752z"></path></g></g><g style="display: block;" transform="matrix(1,0,0,1,813.600341796875,847.6491088867188)" opacity="0.34665583333334715"><g opacity="1" transform="matrix(1,0,0,1,0,0)"><path fill="rgb(255,255,255)" fill-opacity="1" d=" M0,-4.875999927520752 C-2.693000078201294,-4.875999927520752 -4.875999927520752,-2.693000078201294 -4.875999927520752,0 C-4.875999927520752,2.693000078201294 -2.693000078201294,4.875999927520752 0,4.875999927520752 C2.693000078201294,4.875999927520752 4.875999927520752,2.693000078201294 4.875999927520752,0 C4.875999927520752,-2.693000078201294 2.693000078201294,-4.875999927520752 0,-4.875999927520752z"></path></g></g><g style="display: block;" transform="matrix(1,0,0,1,959.1295166015625,730.5780639648438)" opacity="0.2694652631579054"><g opacity="1" transform="matrix(1,0,0,1,0,0)"><path fill="rgb(255,255,255)" fill-opacity="1" d=" M0,-4.875999927520752 C-2.693000078201294,-4.875999927520752 -4.875999927520752,-2.693000078201294 -4.875999927520752,0 C-4.875999927520752,2.693000078201294 -2.693000078201294,4.875999927520752 0,4.875999927520752 C2.693000078201294,4.875999927520752 4.875999927520752,2.693000078201294 4.875999927520752,0 C4.875999927520752,-2.693000078201294 2.693000078201294,-4.875999927520752 0,-4.875999927520752z"></path></g></g><g style="display: block;" transform="matrix(0.25,0,0,0.25,516.059814453125,783.7872314453125)" opacity="1"><g opacity="0" transform="matrix(2.199347972869873,-0.05355886369943619,0.05355886369943619,2.199347972869873,-338.2012939453125,-108.45049285888672)"><g opacity="1" transform="matrix(0.9991366863250732,0.04154432937502861,-0.04154432937502861,0.9991366863250732,183.73899841308594,83.31500244140625)"><path fill="rgb(255,233,154)" fill-opacity="1" d=" M-29.152000427246094,0.9300000071525574 C-29.152000427246094,0.9300000071525574 -3.552999973297119,-0.3499999940395355 -0.4519999921321869,-43.14699935913086 C-0.4519999921321869,-43.14699935913086 0.6200000047683716,-7.132999897003174 29.152000427246094,0.3100000023841858 C29.152000427246094,0.3100000023841858 0.6990000009536743,6.730999946594238 1.3200000524520874,45.1870002746582 C1.3200000524520874,45.1870002746582 3.7219998836517334,7.752999782562256 -29.152000427246094,0.9300000071525574z"></path></g></g><g opacity="1" transform="matrix(1,0,0,1,100.36700439453125,123.72900390625)"><path stroke-linecap="round" stroke-linejoin="miter" fill-opacity="0" stroke-miterlimit="4" stroke="rgb(255,234,155)" stroke-opacity="1" stroke-width="16" d=" M-29.327999114990234,22.391000747680664 C-29.327999114990234,23.336999893188477 -29.32900047302246,24.23900032043457 -29.329999923706055,25.094999313354492 M-29.79599952697754,-133.01699829101562 C-29.80299949645996,-133.91400146484375 -29.80900001525879,-134.77000427246094 -29.81399917602539,-135.58099365234375 M-110.48400115966797,-57.215999603271484 C-111.44599914550781,-57.2140007019043 -112.36499786376953,-57.2130012512207 -113.23600006103516,-57.21099853515625 M60.893001556396484,-57.36899948120117 C61.96099853515625,-57.36899948120117 62.981998443603516,-57.36899948120117 63.948001861572266,-57.36899948120117"></path></g></g><g transform="matrix(0.25,0,0,0.25,328.85028076171875,699.7369384765625)" opacity="1" style="display: block;"><g opacity="0" transform="matrix(2.199347972869873,-0.05355886369943619,0.05355886369943619,2.199347972869873,-338.2012939453125,-108.45049285888672)"><g opacity="1" transform="matrix(0.9991366863250732,0.04154432937502861,-0.04154432937502861,0.9991366863250732,183.73899841308594,83.31500244140625)"><path fill="rgb(255,233,154)" fill-opacity="1" d=" M-29.152000427246094,0.9300000071525574 C-29.152000427246094,0.9300000071525574 -3.552999973297119,-0.3499999940395355 -0.4519999921321869,-43.14699935913086 C-0.4519999921321869,-43.14699935913086 0.6200000047683716,-7.132999897003174 29.152000427246094,0.3100000023841858 C29.152000427246094,0.3100000023841858 0.6990000009536743,6.730999946594238 1.3200000524520874,45.1870002746582 C1.3200000524520874,45.1870002746582 3.7219998836517334,7.752999782562256 -29.152000427246094,0.9300000071525574z"></path></g></g><g opacity="1" transform="matrix(1,0,0,1,100.36700439453125,123.72900390625)"><path stroke-linecap="round" stroke-linejoin="miter" fill-opacity="0" stroke-miterlimit="4" stroke="rgb(255,234,155)" stroke-opacity="1" stroke-width="16" d="M0 0"></path></g></g><g style="display: block;" transform="matrix(0.20000000298023224,0,0,0.20000000298023224,740.0624389648438,803.5436401367188)" opacity="1"><g opacity="0" transform="matrix(2.199347972869873,-0.05355886369943619,0.05355886369943619,2.199347972869873,-338.2012939453125,-108.45049285888672)"><g opacity="1" transform="matrix(0.9991366863250732,0.04154432937502861,-0.04154432937502861,0.9991366863250732,183.73899841308594,83.31500244140625)"><path fill="rgb(255,233,154)" fill-opacity="1" d=" M-29.152000427246094,0.9300000071525574 C-29.152000427246094,0.9300000071525574 -3.552999973297119,-0.3499999940395355 -0.4519999921321869,-43.14699935913086 C-0.4519999921321869,-43.14699935913086 0.6200000047683716,-7.132999897003174 29.152000427246094,0.3100000023841858 C29.152000427246094,0.3100000023841858 0.6990000009536743,6.730999946594238 1.3200000524520874,45.1870002746582 C1.3200000524520874,45.1870002746582 3.7219998836517334,7.752999782562256 -29.152000427246094,0.9300000071525574z"></path></g></g><g opacity="1" transform="matrix(1,0,0,1,100.36700439453125,123.72900390625)"><path stroke-linecap="round" stroke-linejoin="miter" fill-opacity="0" stroke-miterlimit="4" stroke="rgb(255,234,155)" stroke-opacity="1" stroke-width="16" d="M0 0"></path></g></g></g><g style="display: none;"><g><path></path></g></g><g style="display: none;"><g><path></path></g></g><g style="display: none;"><g><path></path></g></g><g style="display: none;"><g><path></path></g></g><g transform="matrix(0.20000000298023224,0,0,0.20000000298023224,603.9948120117188,516.5570068359375)" opacity="1" style="display: none;"><g opacity="1" transform="matrix(0,0,0,0,72.19999694824219,66.66100311279297)"><g opacity="1" transform="matrix(0.9991366863250732,0.04154432937502861,-0.04154432937502861,0.9991366863250732,183.73899841308594,83.31500244140625)"><path fill="rgb(255,233,154)" fill-opacity="1" d=" M-29.152000427246094,0.9300000071525574 C-29.152000427246094,0.9300000071525574 -3.552999973297119,-0.3499999940395355 -0.4519999921321869,-43.14699935913086 C-0.4519999921321869,-43.14699935913086 0.6200000047683716,-7.132999897003174 29.152000427246094,0.3100000023841858 C29.152000427246094,0.3100000023841858 0.6990000009536743,6.730999946594238 1.3200000524520874,45.1870002746582 C1.3200000524520874,45.1870002746582 3.7219998836517334,7.752999782562256 -29.152000427246094,0.9300000071525574z"></path></g></g><g opacity="0" transform="matrix(1,0,0,1,100.36700439453125,123.72900390625)"><path stroke-linecap="round" stroke-linejoin="miter" fill-opacity="0" stroke-miterlimit="4" stroke="rgb(255,234,155)" stroke-opacity="1" stroke-width="16" d=" M-29.305999755859375,-6.823999881744385 C-29.308000564575195,-3.7130000591278076 -29.309999465942383,-0.6299999952316284 -29.312999725341797,2.367000102996826 M-29.60300064086914,-105.30799865722656 C-29.62299919128418,-108.25900268554688 -29.643999099731445,-111.18299865722656 -29.663999557495117,-114.0250015258789 M-80.73500061035156,-57.27199935913086 C-83.90299987792969,-57.26599884033203 -87.04199981689453,-57.2599983215332 -90.09300231933594,-57.255001068115234 M27.868000030517578,-57.36899948120117 C31.385000228881836,-57.36899948120117 34.869998931884766,-57.36899948120117 38.25699996948242,-57.36899948120117"></path></g></g><g style="display: none;"><g><path></path></g></g><g style="display: none;"><g><path></path></g></g><g style="display: none;"><g><path></path></g></g><g style="display: none;"><g><path></path></g></g><g style="display: none;"><g><path></path></g></g><g style="display: none;"><g><path></path></g></g><g style="display: none;"><g><g><path></path></g></g><g><path stroke-linecap="round" stroke-linejoin="miter" fill-opacity="0" stroke-miterlimit="4"></path></g></g><g transform="matrix(0.5,0,0,0.5,773.8740234375,676.4144897460938)" opacity="1" style="display: none;"><g opacity="0" transform="matrix(2.199347972869873,-0.05355886369943619,0.05355886369943619,2.199347972869873,-338.2012939453125,-108.45049285888672)"><g opacity="1" transform="matrix(0.9991366863250732,0.04154432937502861,-0.04154432937502861,0.9991366863250732,183.73899841308594,83.31500244140625)"><path fill="rgb(255,233,154)" fill-opacity="1" d=" M-29.152000427246094,0.9300000071525574 C-29.152000427246094,0.9300000071525574 -3.552999973297119,-0.3499999940395355 -0.4519999921321869,-43.14699935913086 C-0.4519999921321869,-43.14699935913086 0.6200000047683716,-7.132999897003174 29.152000427246094,0.3100000023841858 C29.152000427246094,0.3100000023841858 0.6990000009536743,6.730999946594238 1.3200000524520874,45.1870002746582 C1.3200000524520874,45.1870002746582 3.7219998836517334,7.752999782562256 -29.152000427246094,0.9300000071525574z"></path></g></g><g opacity="1" transform="matrix(1,0,0,1,100.36700439453125,123.72900390625)"><path stroke-linecap="round" stroke-linejoin="miter" fill-opacity="0" stroke-miterlimit="4" stroke="rgb(255,234,155)" stroke-opacity="1" stroke-width="16" d="M0 0"></path></g></g><g style="display: none;"><g><g><path></path></g></g><g><path stroke-linecap="round" stroke-linejoin="miter" fill-opacity="0" stroke-miterlimit="4"></path></g></g><g style="display: none;"><g><g><path></path></g></g><g><path stroke-linecap="round" stroke-linejoin="miter" fill-opacity="0" stroke-miterlimit="4"></path></g></g><g style="display: none;"><g><g><path></path></g></g><g><path stroke-linecap="round" stroke-linejoin="miter" fill-opacity="0" stroke-miterlimit="4"></path></g></g></g><g class="lootbox-animation-item-image" style="display: none;"><image width="1568px" height="1475px" preserveAspectRatio="xMidYMid slice" xlink:href=""></image></g></g></svg></div><div class="body_df6446"><div class="text-md-bold__1e599" data-text-variant="text-md/bold" style="color: white;">Loot Boxes have arrived!</div><div class="text-sm-medium__726be" data-text-variant="text-sm/medium" style="color: white;">Test your luck...</div></div><div class="buttonWrapper__6aa14"><div class="iconButton_d80033 button__4bf3d"><svg class="buttonIcon__4867b" aria-hidden="true" role="img" xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" viewBox="0 0 24 24"><path fill="var(--white)" d="M20.7 12.7a1 1 0 0 0 0-1.4l-8-8a1 1 0 1 0-1.4 1.4l6.29 6.3H4a1 1 0 1 0 0 2h13.59l-6.3 6.3a1 1 0 0 0 1.42 1.4l8-8Z" class=""></path></svg></div></div></div></div></div>

@roddie-digital
Copy link

Yeah, the name would change (the letters at the end), and I can't just block wrapper entirely. If I can get it to pop up on my end, I can try removing it. I searched around in Experiments and found "Packages" which shows a similar-sounding ad on the bottom right: image

I don't have dev mode enabled but that's the exact thing I'm seeing

@TheSunCat
Copy link
Author

Yeah, no clue how to get rid of this one unfortunately. Usually they have some class to brand it as "premium" but I didn't spot anything obvious this time.

@roddie-digital
Copy link

No worries, maybe it will develop into something more squashable :D

Thanks for all your work on this, I love this project

@TheSunCat
Copy link
Author

Thank you! It is very motivating to hear it's useful to people other than me :)

Given this one is (as of writing) a one-time dismiss, it might not be too bad to leave it unblocked. I would prefer to get rid of it, but as long as it doesn't start nagging...

@TheSunCat
Copy link
Author

Looks like it was an april fool's thing, false alarm hahaha

@roddie-digital
Copy link

Ha, no way! Their normal Nitro shilling is such a joke I couldn't even tell the difference 😅

@SmaugTD
Copy link

SmaugTD commented Apr 9, 2024

Thanks for this, all the paid spam was getting unbearable.

@LavenderAndChamomile
Copy link

how do I hide the "shop" on the left-hand side below "friends" of the screen menu for Discoed?

@TheSunCat
Copy link
Author

Thanks for this, all the paid spam was getting unbearable.

You're welcome! Discord really has become something haha, happy we can still block most of it via CSS.

how do I hide the "shop" on the left-hand side below "friends" of the screen menu for Discoed?

The shop tab is hidden on my end:
image
Is your client set to a different language that american English? The way the shop element is selected relies on the aria-label property, which is different depending on language unfortunately.

@LockBlock-dev
Copy link

LockBlock-dev commented Apr 27, 2024

New quests badge just dropped, I think it would be a great addition alongside Nitro badges:

/* Completed quest profile badge */
a[aria-label^="Completed a Quest"] { display: none; }

Additionally I'm not too fond of hiding the whole Gift inventory so here's something to only hide quests there. The new container is responsible for the margin between the redeem section and the rest so we can't just hide it.

/* Hide quests from the gift inventory */
div[class^="questsContainer"] > * { display: none; }

@LavenderAndChamomile
Copy link

Thanks for this, all the paid spam was getting unbearable.

You're welcome! Discord really has become something haha, happy we can still block most of it via CSS.

how do I hide the "shop" on the left-hand side below "friends" of the screen menu for Discoed?

The shop tab is hidden on my end: image Is your client set to a different language that american English? The way the shop element is selected relies on the aria-label property, which is different depending on language unfortunately.

I'm using British English

@Kupie
Copy link

Kupie commented Apr 28, 2024

Say, anyone have an idea on how to hide this? The Div IDs are all the same as users in a server, so I'm having issues trying to distinguish them from others in order to hide them in CSS
image

@TheSunCat
Copy link
Author

Thanks @LockBlock-dev, implemented both suggestions. Unlike the Nitro badge, I decided to hide the Quests one entirely as I can't think of a reason to have it enabled besides serving as another ad (unlike the Nitro ones which I would want to see for the same reason as people who pay for checkmarks on Twitter want to hide them).

@LavenderAndChamomile I found a more reliable way to block both the Nitro and Shop tabs, could you try it again?

Where do you see this panel @Kupie ? I see a similar-looking one in the friends list, but it is labeled as "Active Now" and has no settings icon. That one does look selectable via nowPlayingColumn.

@peldas
Copy link

peldas commented May 1, 2024

@TheSunCat not really that important but just checking, did you mix up lines 31 and 33?

Edit: also it seems the boost progress bar has slightly changed with the latest update. I've managed to get it work by adding an li element as below.
Before:
ul[aria-label="Channels"] > div[role="button"][class^="container"] { display: none; }

After:
ul[aria-label="Channels"] > li > div[role="button"][class^="container"] { display: none; }

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment