Merge pull request #8 from nurRiyad/v2

Add about & 404 page and redesign the home page
This commit is contained in:
Al Asad Nur Riyad
2023-05-06 16:25:47 +06:00
committed by GitHub
41 changed files with 4243 additions and 1546 deletions

3
.eslintrc Normal file
View File

@@ -0,0 +1,3 @@
{
"extends": "@antfu"
}

View File

@@ -1,5 +0,0 @@
{
"printWidth": 100,
"semi": false,
"singleQuote": true
}

View File

@@ -1,6 +1,9 @@
{ {
"editor.formatOnSave": true, "prettier.enable": false,
"editor.defaultFormatter": "esbenp.prettier-vscode", "editor.formatOnSave": false,
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
},
"tailwindCSS.files.exclude": [ "tailwindCSS.files.exclude": [
"**/.git/**", "**/.git/**",
"**/node_modules/**", "**/node_modules/**",

27
app.vue
View File

@@ -1,12 +1,12 @@
<script setup> <script setup>
const description = const description
'Riyad, Software Engineer at AppsCode working on ByteBuilders, with over 1.5 years experience in Frontend development.' = 'Riyad, Software Engineer at AppsCode working on ByteBuilders, with over 1.5 years experience in Frontend development.'
const ogTitle = const ogTitle
'Riyad codes and helps others learn Javascript, Typescript, Vue, Nuxt, & Problem Solving' = 'Riyad codes and helps others learn Javascript, Typescript, Vue, Nuxt, & Problem Solving'
const twitterDescription = const twitterDescription
'My blog website, where I play around with Nuxt, Vue, and more and showcase my blog, resources, etc' = 'My blog website, where I play around with Nuxt, Vue, and more and showcase my blog, resources, etc'
const image = const image
'https://res.cloudinary.com/dmecmyphj/image/upload/v1673548905/nuxt-blog/cover_ntgs6u.webp' = 'https://res.cloudinary.com/dmecmyphj/image/upload/v1673548905/nuxt-blog/cover_ntgs6u.webp'
const mySite = 'https://blog-nurriyad.vercel.app/' const mySite = 'https://blog-nurriyad.vercel.app/'
useHead({ useHead({
htmlAttrs: { htmlAttrs: {
@@ -67,6 +67,7 @@ useHead({
</NuxtLayout> </NuxtLayout>
</div> </div>
</template> </template>
<style> <style>
.page-enter-active, .page-enter-active,
.page-leave-active { .page-leave-active {
@@ -77,4 +78,14 @@ useHead({
opacity: 0; opacity: 0;
filter: blur(1rem); filter: blur(1rem);
} }
.layout-enter-active,
.layout-leave-active {
transition: all 0.4s;
}
.layout-enter-from,
.layout-leave-to {
opacity: 0;
filter: blur(1rem);
}
</style> </style>

View File

@@ -31,14 +31,14 @@ withDefaults(defineProps<Props>(), {
<NuxtLink :to="path" class="grid grid-cols-1 sm:grid-cols-10 gap-1"> <NuxtLink :to="path" class="grid grid-cols-1 sm:grid-cols-10 gap-1">
<div class="sm:col-span-3"> <div class="sm:col-span-3">
<NuxtImg <NuxtImg
class="h-full w-full object-cover object-center rounded-t-2xl sm:rounded-l-2xl sm:rounded-t-none shadow-lg group-hover:scale-[1.05] transition-all duration-500" class="h-full w-full object-cover object-center rounded-t-2xl sm:rounded-l-2xl sm:rounded-t-none shadow-lg group-hover:scale-[1.02] transition-all duration-500"
:provider="provider" :provider="provider"
:src="image" :src="image"
:alt="alt" :alt="alt"
/> />
</div> </div>
<div class="sm:col-span-7 p-5"> <div class="sm:col-span-7 p-5">
<h2 class="text-2xl font-semibold text-black pb-1 group-hover:text-sky-700"> <h2 class="text-xl font-semibold text-black pb-1 group-hover:text-sky-700">
{{ title }} {{ title }}
</h2> </h2>
<p class="text-ellipsis line-clamp-2"> <p class="text-ellipsis line-clamp-2">

View File

@@ -2,7 +2,9 @@
<div class="container mx-auto mb-5"> <div class="container mx-auto mb-5">
<div class="grid grid-cols-1 sm:grid-cols-2 items-center"> <div class="grid grid-cols-1 sm:grid-cols-2 items-center">
<div class="px-6"> <div class="px-6">
<h1 class="text-black font-semibold leading-tight text-4xl md:text-5xl my-5">Archive</h1> <h1 class="text-black font-semibold leading-tight text-4xl md:text-5xl my-5">
All Blogs
</h1>
<p>Here you will find all the blog posts I have written & published on this site.</p> <p>Here you will find all the blog posts I have written & published on this site.</p>
</div> </div>
<div class="px-6 justify-self-center"> <div class="px-6 justify-self-center">

View File

@@ -27,16 +27,16 @@ withDefaults(defineProps<Props>(), {
</script> </script>
<template> <template>
<article class="group border m-2 overflow-hidden rounded-2xl shadow-lg text-zinc-700"> <article class="group border m-2 overflow-hidden rounded-2xl shadow-md text-zinc-700">
<NuxtLink :to="path"> <NuxtLink :to="path">
<NuxtImg <NuxtImg
:provider="provider" :provider="provider"
class="lg:h-48 md:h-36 w-full object-cover object-center rounded-t-2xl shadow-lg group-hover:scale-[1.05] transition-all duration-500" class="lg:h-48 md:h-36 w-full object-cover object-center rounded-t-2xl shadow-lg group-hover:scale-[1.02] transition-all duration-500"
:src="image" :src="image"
:alt="alt" :alt="alt"
/> />
<div class="p-5"> <div class="px-3 pb-4">
<div class="text-black text-sm pt-4 pb-2"> <div class="text-black pt-3 pb-2">
<div class="flex items-center"> <div class="flex items-center">
<LogoDate /> <LogoDate />
{{ date }} {{ date }}
@@ -48,13 +48,13 @@ withDefaults(defineProps<Props>(), {
</template> </template>
</div> </div>
</div> </div>
<h2 class="text-2xl font-semibold text-black pb-1 group-hover:text-sky-700"> <h2 class="text-xl font-semibold text-black pb-1 group-hover:text-sky-700">
{{ title }} {{ title }}
</h2> </h2>
<p class="text-ellipsis line-clamp-3"> <p class="text-ellipsis line-clamp-2 text-base">
{{ description }} {{ description }}
</p> </p>
<div class="flex group-hover:underline text-sky-700 items-center pt-2"> <div class="flex group-hover:underline text-sky-700 items-center py-2">
<p>Read More</p> <p>Read More</p>
<LogoArrow /> <LogoArrow />
</div> </div>

View File

@@ -22,7 +22,7 @@ const color = [
] ]
// get a random number // get a random number
const getRandomInt = (min: number, max: number) => { function getRandomInt(min: number, max: number) {
min = Math.ceil(min) min = Math.ceil(min)
max = Math.floor(max) max = Math.floor(max)
return Math.floor(Math.random() * (max - min + 1)) + min return Math.floor(Math.random() * (max - min + 1)) + min

View File

@@ -2,7 +2,9 @@
<div class="container mx-auto"> <div class="container mx-auto">
<div class="grid grid-cols-1 sm:grid-cols-2 items-center"> <div class="grid grid-cols-1 sm:grid-cols-2 items-center">
<div class="px-6"> <div class="px-6">
<h1 class="text-black font-semibold leading-tight text-4xl md:text-5xl my-5">Categories</h1> <h1 class="text-black font-semibold leading-tight text-4xl md:text-5xl my-5">
Categories
</h1>
<p> <p>
Blow All the topics are listed on which either I have written a blog or will write a blog Blow All the topics are listed on which either I have written a blog or will write a blog
in near future. in near future.

View File

@@ -5,10 +5,11 @@ const route = useRoute()
// take category from route params & make first char upper // take category from route params & make first char upper
const category = computed(() => { const category = computed(() => {
let name = route.params.category || '' const name = route.params.category || ''
let strName = '' let strName = ''
if (name instanceof Array) strName = name.at(0) || '' if (Array.isArray(name))
strName = name.at(0) || ''
else strName = name else strName = name
return makeFirstCharUpper(strName) return makeFirstCharUpper(strName)
}) })

View File

@@ -0,0 +1,18 @@
<template>
<div>
<p class="text-black text-base font-semibold">
Connect With Me
</p>
<p>
I have a fair amount of knowledge of Javascript, Typescript, VueJs, and Nuxt. If you
have an interesting idea, either open source or paid let's connect.
</p>
<a
href="mailto: alasadnurriyad4@gmail.com"
class="block text-center w-full bg-sky-700 p-2 rounded-lg text-white mt-3 text-sm"
>
Sent Mail
</a>
</div>
</template>

View File

@@ -0,0 +1,45 @@
<template>
<div>
<p class="text-black text-2xl py-1 font-semibold">
Al Asad Nur Riyad
</p>
<p class="py-2">
Hi! I am Riyad, a Tech enthusiast, problem solver and software engineer. Currently
working at Appscode Inc.
</p>
<div class="my-3 space-x-3 pb-3">
<NuxtLink
to="https://github.com/nurRiyad"
target="_blank"
class="p-2 bg-gray-300 rounded-md"
aria-label="Github"
>
<Icon name="fa:github" size="1em" />
</NuxtLink>
<NuxtLink
to="https://www.linkedin.com/in/nur-riyad/"
target="_blank"
class="p-2 bg-gray-300 rounded-md"
aria-label="LinkedIn"
>
<Icon name="fa:linkedin-square" size="1em" />
</NuxtLink>
<NuxtLink
to="https://twitter.com/qdnvubp"
target="_blank"
class="p-2 bg-gray-300 rounded-md"
aria-label="Twitter"
>
<Icon name="fa:twitter-square" size="1em" />
</NuxtLink>
<NuxtLink
to="https://stackoverflow.com/users/16781395/nur-riyad"
target="_blank"
class="p-2 bg-gray-300 rounded-md"
aria-label="StackOverflow"
>
<Icon name="fa:stack-overflow" size="1em" />
</NuxtLink>
</div>
</div>
</template>

View File

@@ -0,0 +1,19 @@
<template>
<div class="flex flex-col my-5 md:my-0 md:justify-self-center">
<p class="text-black text-base font-semibold">
Quick Link
</p>
<NuxtLink to="/" class="hover:underline">
Home
</NuxtLink>
<NuxtLink to="/blogs" class="hover:underline">
Blogs
</NuxtLink>
<NuxtLink to="/categories" class="hover:underline">
Categories
</NuxtLink>
<NuxtLink to="/about" class="hover:underline">
About Me
</NuxtLink>
</div>
</template>

View File

@@ -0,0 +1,10 @@
<template>
<div>
<p class="text-black text-base py-1 font-semibold">
About This Site
</p>
<p class="py-2">
This is a personal blog site built with Nuxt3, TailwindCSS, NuxtContent, Nuxt Icon. Currently it's deployed in Vercel.
</p>
</div>
</template>

388
components/logo/404.vue Normal file
View File

@@ -0,0 +1,388 @@
<template>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 500 500">
<defs>
<clipPath id="freepik--clip-path--inject-16">
<path
d="M86.28,404.22v22.52A4.84,4.84,0,0,0,88.9,431l36.2,18.69a4.81,4.81,0,0,0,4.19.12l53.33-20.33a4.84,4.84,0,0,0,2.86-4.41V397.85l-61,18.43Z"
style="fill:#92E3A9;stroke:#263238;stroke-linecap:round;stroke-linejoin:round;stroke-width:1.1930027515339008px"
/>
</clipPath>
<clipPath id="freepik--clip-path-2--inject-16">
<path
d="M142,366.2,83.5,385a2.26,2.26,0,0,0-1.57,2.16v16.68a2.27,2.27,0,0,0,1.29,2L124,425.25a2.27,2.27,0,0,0,1.77.08L187,402.42a2.27,2.27,0,0,0,1.48-2.12l.11-15.65a2.29,2.29,0,0,0-1.79-2.22l-43.64-16.29A2.36,2.36,0,0,0,142,366.2Z"
style="fill:#fff;stroke:#263238;stroke-linecap:round;stroke-linejoin:round;stroke-width:1.1930027515339008px"
/>
</clipPath>
<clipPath id="freepik--clip-path-3--inject-16">
<path
d="M97.34,290.27S95,304,96.67,310.72a28.62,28.62,0,0,0,4.69,10.39s-8.38,12.4-6.7,22.78,6,11.73,6,11.73-3.68,19.11,3,25.81,21.45,14.07,37.87,11.06,27.48-3.69,30.83-9.39,1.34-30.83,1.34-30.83-.67-27.81-1.34-44.91-3-30.83-11.06-37.53-43.57,3.69-54.29,10.72S97.34,290.27,97.34,290.27Z"
style="fill:#92E3A9;stroke:#263238;stroke-linecap:round;stroke-linejoin:round;stroke-width:1.1930027515339008px"
/>
</clipPath>
<clipPath id="freepik--clip-path-4--inject-16">
<path
d="M167.38,273.85s-6.36-9.72-15.08-15.08-31.16-9.38-40.21-11.06-18.77-1-21.45,9-2.35,26.81.33,34.18,13.74,11.73,22.46,6.71,32.84-24.47,41.22-25.47S166.71,277.54,167.38,273.85Z"
style="fill:#757575;stroke:#263238;stroke-linecap:round;stroke-linejoin:round;stroke-width:1.1930027515339008px"
/>
</clipPath>
<clipPath id="freepik--clip-path-5--inject-16">
<path
d="M153.31,273.85c7.37-2.68,16.76-1,20.11,8.38s6.36,36.86,6.36,36.86,8.38,1,11.73,4.7,5,13.07,4.36,17.76-12.4,13.4-25.8,13.74-23.13-6-27.82-23.13S139.42,289,139.42,289s1.7-7.67,4.26-9.38"
style="fill:#92E3A9;stroke:#263238;stroke-linecap:round;stroke-linejoin:round;stroke-width:1.1930027515339008px"
/>
</clipPath>
</defs>
<g id="freepik--background-simple--inject-16">
<path
d="M44.31,258.15s2.35,73,63.27,121.6,145.32,52.12,213.65,56.74S442,402.43,450,344s-44.3-75.63-72.63-142.2-25.81-88.44-85.75-129.38S137.86,56.57,88.7,126.71,44.31,258.15,44.31,258.15Z"
style="fill:#92E3A9"
/>
<path
d="M44.31,258.15s2.35,73,63.27,121.6,145.32,52.12,213.65,56.74S442,402.43,450,344s-44.3-75.63-72.63-142.2-25.81-88.44-85.75-129.38S137.86,56.57,88.7,126.71,44.31,258.15,44.31,258.15Z"
style="fill:#fff;opacity:0.7000000000000001"
/>
</g>
<g id="freepik--Hole--inject-16">
<ellipse
cx="341.49" cy="385.79" rx="72.2" ry="21.42"
style="fill:#263238;stroke:#263238;stroke-linecap:round;stroke-linejoin:round;stroke-width:1.1930027515339008px"
/>
<path
d="M341.49,374.22c34.15,0,62.75,7,70.26,16.49a8,8,0,0,0,1.94-4.92c0-11.84-32.33-21.43-72.2-21.43s-72.21,9.59-72.21,21.43a8,8,0,0,0,1.94,4.92C278.73,381.26,307.33,374.22,341.49,374.22Z"
style="fill:#fff;stroke:#263238;stroke-linecap:round;stroke-linejoin:round;stroke-width:1.1930027515339008px"
/>
<path
d="M331.63,404.52c-24.12-1.09-42.32-6-42.32-12a3.33,3.33,0,0,1,.59-1.83"
style="fill:none;stroke:#fff;stroke-linecap:round;stroke-linejoin:round;stroke-width:1.1930027515339008px"
/>
<path
d="M387.6,386.68c4.13,1.75,6.49,3.75,6.49,5.88,0,6.73-23.46,12.18-52.39,12.18h-1.25"
style="fill:none;stroke:#fff;stroke-linecap:round;stroke-linejoin:round;stroke-width:1.1930027515339008px"
/>
<path
d="M296.36,386.45c9.07-3.63,26-6.08,45.34-6.08a184.43,184.43,0,0,1,32.84,2.69"
style="fill:none;stroke:#fff;stroke-linecap:round;stroke-linejoin:round;stroke-width:1.1930027515339008px"
/>
<path
d="M330.94,396.74c-6.11-.85-10.2-2.4-10.2-4.18,0-2.69,9.39-4.87,21-4.87s20.95,2.18,20.95,4.87c0,2.31-6.9,4.24-16.16,4.74"
style="fill:none;stroke:#fff;stroke-linecap:round;stroke-linejoin:round;stroke-width:1.1930027515339008px"
/>
</g>
<g id="freepik--Landscape--inject-16">
<path
d="M51.52,299.68c31.49-8.95,97.75-26.61,134.32-27.94C235,270,318,305.68,369.82,311.93s86.64,4.47,86.64,4.47"
style="fill:none;stroke:#263238;stroke-linecap:round;stroke-linejoin:round;stroke-width:1.1930027515339008px"
/>
<path
d="M34,304.79s2.72-.83,7.49-2.22"
style="fill:none;stroke:#263238;stroke-linecap:round;stroke-linejoin:round;stroke-width:1.1930027515339008px"
/>
<path
d="M442.47,249.12a228.34,228.34,0,0,0-55.3-5.23c-38.42,1.29-80,6.37-131.41,13s-124.62-30-174.4-16.41-46,17.68-46,17.68"
style="fill:none;stroke:#263238;stroke-linecap:round;stroke-linejoin:round;stroke-width:1.1930027515339008px"
/>
<path
d="M456.63,252.8s-1.94-.64-5.45-1.57"
style="fill:none;stroke:#263238;stroke-linecap:round;stroke-linejoin:round;stroke-width:1.1930027515339008px"
/>
</g>
<g id="freepik--Clouds--inject-16">
<path
d="M364.45,158.35a10.35,10.35,0,0,0-20.1,0Z"
style="fill:none;stroke:#263238;stroke-linecap:round;stroke-linejoin:round;stroke-width:1.1930027515339008px"
/>
<path
d="M466,158.35a12.81,12.81,0,0,0-11-9.77A30,30,0,0,0,425.42,113a30.08,30.08,0,0,0-29.61,24.79,19.22,19.22,0,0,0-31.06,15.16,19.41,19.41,0,0,0,.79,5.42Z"
style="fill:none;stroke:#263238;stroke-linecap:round;stroke-linejoin:round;stroke-width:1.1930027515339008px"
/>
<path
d="M185.57,182.49a5.25,5.25,0,0,0-10.21,0Z"
style="fill:none;stroke:#263238;stroke-linecap:round;stroke-linejoin:round;stroke-width:1.1930027515339008px"
/>
<path
d="M237.12,182.49a6.52,6.52,0,0,0-5.59-5,15.27,15.27,0,1,0-30-5.48,9.76,9.76,0,0,0-15.77,7.69,10.06,10.06,0,0,0,.4,2.76Z"
style="fill:none;stroke:#263238;stroke-linecap:round;stroke-linejoin:round;stroke-width:1.1930027515339008px"
/>
<path
d="M231.93,198.63a3.31,3.31,0,0,0-6.44,0Z"
style="fill:none;stroke:#263238;stroke-linecap:round;stroke-linejoin:round;stroke-width:1.1930027515339008px"
/>
<path
d="M264.47,198.63a4.1,4.1,0,0,0-3.53-3.13,9.48,9.48,0,0,0,.16-1.77A9.64,9.64,0,0,0,242,192a6.16,6.16,0,0,0-9.95,4.86,6.25,6.25,0,0,0,.25,1.74Z"
style="fill:none;stroke:#263238;stroke-linecap:round;stroke-linejoin:round;stroke-width:1.1930027515339008px"
/>
</g>
<g id="freepik--Character--inject-16">
<path
d="M162.65,313.83a1.89,1.89,0,0,1-1-.27,2,2,0,0,1-.7-2.67c.49-.86,124.13-135.69,180.7-185.13a1,1,0,0,1,1.36.1,1,1,0,0,1-.1,1.38C286.62,176.47,164.81,312,164.32,312.85A1.92,1.92,0,0,1,162.65,313.83Z"
style="fill:#263238"
/>
<path
d="M169.48,287s6.13-6.54,9.81-6.54,10.63,6.13,10.22,9.4-6.54.41-6.54.41-5.73,7.77-11.45,6.54S169.48,287,169.48,287Z"
style="fill:#92E3A9;stroke:#263238;stroke-linecap:round;stroke-linejoin:round;stroke-width:1.1930027515339008px"
/>
<path
d="M183,290.25s3.75,2.6,4.08,4.43-4.16,7-9.15,8.16-7.66-1.67-6.16-4.33S179.22,290.49,183,290.25Z"
style="fill:#92E3A9;stroke:#263238;stroke-linecap:round;stroke-linejoin:round;stroke-width:1.1930027515339008px"
/>
<path
d="M337,266.56V131.27s-2.73,9.79-2.73,10.5"
style="fill:none;stroke:#263238;stroke-linecap:round;stroke-linejoin:round;stroke-width:1.1930027515339008px"
/>
<rect
x="289.68" y="273.69" width="103.74" height="83.12"
style="fill:#92E3A9;stroke:#263238;stroke-linecap:round;stroke-linejoin:round;stroke-width:1.1930027515339008px"
/>
<path d="M338.48,273.34v-4.76a1.19,1.19,0,0,0-2.38,0v4.76Z" style="fill:#263238" />
<path
d="M348,261.76l0,.24a1.15,1.15,0,0,0-1-.61,1.2,1.2,0,0,0-1.2,1.2V275.3a3.67,3.67,0,0,1-3.66,3.67,3.57,3.57,0,0,1-1.46-.31,2,2,0,0,0,.3,2.58,6.34,6.34,0,0,0,1.16.11,6.05,6.05,0,0,0,6.05-6.05v-5.89h2.74Z"
style="fill:#263238"
/>
<path
d="M337.1,130s2.12-7.53.24-6.83S337.1,130,337.1,130Z"
style="fill:none;stroke:#263238;stroke-linecap:round;stroke-linejoin:round;stroke-width:1.1930027515339008px"
/>
<path
d="M337.1,130s-8-2.83-7.29-.24S337.1,130,337.1,130Z"
style="fill:none;stroke:#263238;stroke-linecap:round;stroke-linejoin:round;stroke-width:1.1930027515339008px"
/>
<path
d="M164.59,195.63s-9.87-5.53-29.23-2.76-23.05,18.73-19.89,35.32,21.47,30.64,24.24,29.46-.79-38.32,5.53-45.43,26.86-5.92,28-11.45S164.59,195.63,164.59,195.63Z"
style="fill:#263238;stroke:#263238;stroke-linecap:round;stroke-linejoin:round;stroke-width:1.1930027515339008px"
/>
<path
d="M130.18,205.48l2,13.07s-12.4,33.85-10.39,38.55,20.77,6.36,20.77,6.36,30.5,3.69,39.55,0,4.36-14.41,3.35-17.42-6.7-27.15-6.7-27.15,2-5.7,2-8.71-.34-11.4-1.68-13.41-24.8-4.36-35.19-2.68S128.84,198.45,130.18,205.48Z"
style="fill:#757575;stroke:#263238;stroke-linecap:round;stroke-linejoin:round;stroke-width:1.1930027515339008px"
/>
<path
d="M135.55,220.57s-.34,29.15,1.34,34.85,8.38,12.4,22.45,10.72,15.42-15.08,15.42-15.08l-1-31.16Z"
style="fill:#fff;stroke:#263238;stroke-linecap:round;stroke-linejoin:round;stroke-width:1.1930027515339008px"
/>
<path
d="M159.68,241.51a2.52,2.52,0,1,1-2.52-2.51A2.51,2.51,0,0,1,159.68,241.51Z"
style="fill:none;stroke:#263238;stroke-miterlimit:10;stroke-width:1.1930027515339008px"
/>
<path d="M159.34,252.07a1.68,1.68,0,1,1-1.67-1.68A1.67,1.67,0,0,1,159.34,252.07Z" style="fill:#263238" />
<path
d="M149.22,230.76c1.07,1.16,1.44,2.55.84,3.12s-2,.09-3.05-1.06-1.45-2.54-.84-3.11S148.15,229.61,149.22,230.76Z"
style="fill:#263238"
/>
<path
d="M162.83,230.76c-1.07,1.16-1.45,2.55-.84,3.12s2,.09,3-1.06,1.45-2.54.84-3.11S163.9,229.61,162.83,230.76Z"
style="fill:#263238"
/>
<path
d="M142.06,226.81a6.4,6.4,0,0,1,7-2.58"
style="fill:none;stroke:#263238;stroke-linecap:round;stroke-linejoin:round;stroke-width:1.1930027515339008px"
/>
<path
d="M162.3,224.6s4.78-1.47,6.26,2.58"
style="fill:none;stroke:#263238;stroke-linecap:round;stroke-linejoin:round;stroke-width:1.1930027515339008px"
/>
<path
d="M178.44,411.62s5.27-3.16,8.19-4.4a8,8,0,0,1,.84-.33c2.58-.86,9.89-.43,16.76-4.73s3.44-9.46-1.72-10.75-10.74-3-10.74-3l-1.29-20.21s-15.48,4.3-20.64,6.45-2.15,32.67-1.72,35.25S168.55,414.2,178.44,411.62Z"
style="fill:#263238;stroke:#263238;stroke-linecap:round;stroke-linejoin:round;stroke-width:1.1930027515339008px"
/>
<path
d="M195.64,402.16c-9,1.72-9,3.44-18.92,5.16a38.38,38.38,0,0,1-8.83.72c.1.92.18,1.57.23,1.86.43,2.58.43,4.3,10.32,1.72,0,0,5.27-3.16,8.19-4.4a8,8,0,0,1,.84-.33c2.58-.86,9.89-.43,16.76-4.73,2.21-1.37,3.34-2.84,3.71-4.24A51.56,51.56,0,0,1,195.64,402.16Z"
style="fill:#fff;stroke:#263238;stroke-linecap:round;stroke-linejoin:round;stroke-width:1.1930027515339008px"
/>
<path
d="M199.22,391.15s-.33,23.46-1,28.48.33,11.4,8,11.4,22.79-5,28.15-6,14.08-3.36,17.76-11.73-18.76-7.38-18.76-7.38l1.34-17.09S211.62,393.49,199.22,391.15Z"
style="fill:#263238;stroke:#263238;stroke-linecap:round;stroke-linejoin:round;stroke-width:1.1930027515339008px"
/>
<path
d="M252.17,413.27a3.74,3.74,0,0,0,.28-2.63,21,21,0,0,1-9,7c-8,3.35-23.13,7-34.52,8.72-5.21.76-8.51-.09-10.58-1.23.74,3.25,2.91,5.92,7.9,5.92,7.71,0,22.79-5,28.15-6S248.49,421.64,252.17,413.27Z"
style="fill:#fff;stroke:#263238;stroke-linecap:round;stroke-linejoin:round;stroke-width:1.1930027515339008px"
/>
<path
d="M233.41,405.89s1.67,5.7-3,9.39"
style="fill:none;stroke:#fff;stroke-linecap:round;stroke-linejoin:round;stroke-width:1.1930027515339008px"
/>
<path
d="M196.88,378.75s-.52,10.19.05,12.23c2.14,7.74,2.82,5.93,18.91,5.59s22.59-6.76,24.27-10.78,0-12.74-.67-15.76-6-4-8.05-3.68S197.88,375.4,196.88,378.75Z"
style="fill:#757575;stroke:#263238;stroke-linecap:round;stroke-linejoin:round;stroke-width:1.1930027515339008px"
/>
<path
d="M86.28,404.22v22.52A4.84,4.84,0,0,0,88.9,431l36.2,18.69a4.81,4.81,0,0,0,4.19.12l53.33-20.33a4.84,4.84,0,0,0,2.86-4.41V397.85l-61,18.43Z"
style="fill:#92E3A9"
/>
<g style="clip-path:url(#freepik--clip-path--inject-16)">
<path
d="M127.17,415.47l-2.68.81L86.28,404.22v22.52A4.84,4.84,0,0,0,88.9,431l36.2,18.69a4.76,4.76,0,0,0,2.07.54Z"
style="opacity:0.18"
/>
</g>
<path
d="M86.28,404.22v22.52A4.84,4.84,0,0,0,88.9,431l36.2,18.69a4.81,4.81,0,0,0,4.19.12l53.33-20.33a4.84,4.84,0,0,0,2.86-4.41V397.85l-61,18.43Z"
style="fill:none;stroke:#263238;stroke-linecap:round;stroke-linejoin:round;stroke-width:1.1930027515339008px"
/>
<path
d="M142,366.2,83.5,385a2.26,2.26,0,0,0-1.57,2.16v16.68a2.27,2.27,0,0,0,1.29,2L124,425.25a2.27,2.27,0,0,0,1.77.08L187,402.42a2.27,2.27,0,0,0,1.48-2.12l.11-15.65a2.29,2.29,0,0,0-1.79-2.22l-43.64-16.29A2.36,2.36,0,0,0,142,366.2Z"
style="fill:#fff"
/>
<g style="clip-path:url(#freepik--clip-path-2--inject-16)">
<path
d="M123.93,425.24h0a2.27,2.27,0,0,0,1.77.08L187,402.42a2.27,2.27,0,0,0,1.48-2.12l.11-15.65a2.2,2.2,0,0,0-.54-1.45l-63.25,23.36Z"
style="fill:#92E3A9"
/>
<path
d="M123.93,425.24h0a2.27,2.27,0,0,0,1.77.08L187,402.42a2.27,2.27,0,0,0,1.48-2.12l.11-15.65a2.2,2.2,0,0,0-.54-1.45l-63.25,23.36Z"
style="fill:#fff;opacity:0.5"
/>
<path
d="M81.93,387.11v16.68a2.27,2.27,0,0,0,1.29,2L124,425.25a2.24,2.24,0,0,0,.87.22V406.56L82,386.72A1.67,1.67,0,0,0,81.93,387.11Z"
style="fill:#92E3A9"
/>
</g>
<path
d="M142,366.2,83.5,385a2.26,2.26,0,0,0-1.57,2.16v16.68a2.27,2.27,0,0,0,1.29,2L124,425.25a2.27,2.27,0,0,0,1.77.08L187,402.42a2.27,2.27,0,0,0,1.48-2.12l.11-15.65a2.29,2.29,0,0,0-1.79-2.22l-43.64-16.29A2.36,2.36,0,0,0,142,366.2Z"
style="fill:none;stroke:#263238;stroke-linecap:round;stroke-linejoin:round;stroke-width:1.1930027515339008px"
/>
<path
d="M222.35,335.52s7.7,3.68,11.73,11.06,1,21.44-1.35,25.8-18.09,6.37-23.45,6.37-6.37-.67-6.37-.67-17.09,3.35-27.82,5.36-8-23.12-4.69-34.52,22.12-17.09,29.83-17.09S222.35,335.52,222.35,335.52Z"
style="fill:#263238;stroke:#263238;stroke-linecap:round;stroke-linejoin:round;stroke-width:1.1930027515339008px"
/>
<path
d="M202.91,378.08s14.41-5,20.44-17.76"
style="fill:none;stroke:#fff;stroke-linecap:round;stroke-linejoin:round;stroke-width:1.1930027515339008px"
/>
<path
d="M216.65,370.7a38.27,38.27,0,0,0,12.4-8.37"
style="fill:none;stroke:#fff;stroke-linecap:round;stroke-linejoin:round;stroke-width:1.1930027515339008px"
/>
<path
d="M182.8,346.58s4,21.11,2,29.82-13.74,10.06-16.42,9.05-1.34-21.78-1.34-32.17S177.44,343.56,182.8,346.58Z"
style="fill:#757575;stroke:#263238;stroke-linecap:round;stroke-linejoin:round;stroke-width:1.1930027515339008px"
/>
<path
d="M97.34,290.27S95,304,96.67,310.72a28.62,28.62,0,0,0,4.69,10.39s-8.38,12.4-6.7,22.78,6,11.73,6,11.73-3.68,19.11,3,25.81,21.45,14.07,37.87,11.06,27.48-3.69,30.83-9.39,1.34-30.83,1.34-30.83-.67-27.81-1.34-44.91-3-30.83-11.06-37.53-43.57,3.69-54.29,10.72S97.34,290.27,97.34,290.27Z"
style="fill:#92E3A9"
/>
<g style="clip-path:url(#freepik--clip-path-3--inject-16)">
<path
d="M99.73,290.27s-2.35,13.74-.67,20.45a28.43,28.43,0,0,0,4.69,10.39s-8.38,12.4-6.7,22.78,6,11.73,6,11.73-3.69,19.11,3,25.81S127.54,395.5,144,392.49s27.49-3.69,30.84-9.39,1.34-30.83,1.34-30.83-.67-27.81-1.34-44.91-3-30.83-11.06-37.53-43.57,3.69-54.29,10.72S99.73,290.27,99.73,290.27Z"
style="opacity:0.30000000000000004"
/>
</g>
<path
d="M97.34,290.27S95,304,96.67,310.72a28.62,28.62,0,0,0,4.69,10.39s-8.38,12.4-6.7,22.78,6,11.73,6,11.73-3.68,19.11,3,25.81,21.45,14.07,37.87,11.06,27.48-3.69,30.83-9.39,1.34-30.83,1.34-30.83-.67-27.81-1.34-44.91-3-30.83-11.06-37.53-43.57,3.69-54.29,10.72S97.34,290.27,97.34,290.27Z"
style="fill:none;stroke:#263238;stroke-linecap:round;stroke-linejoin:round;stroke-width:1.1930027515339008px"
/>
<path
d="M101.36,321.11a40.77,40.77,0,0,0,35.86,5"
style="fill:none;stroke:#263238;stroke-linecap:round;stroke-linejoin:round;stroke-width:1.1930027515339008px"
/>
<path
d="M100.69,355.62s17.09,16.76,45.25.67"
style="fill:none;stroke:#263238;stroke-linecap:round;stroke-linejoin:round;stroke-width:1.1930027515339008px"
/>
<path
d="M167.38,273.85s-6.36-9.72-15.08-15.08-31.16-9.38-40.21-11.06-18.77-1-21.45,9-2.35,26.81.33,34.18,13.74,11.73,22.46,6.71,32.84-24.47,41.22-25.47S166.71,277.54,167.38,273.85Z"
style="fill:#757575"
/>
<g style="clip-path:url(#freepik--clip-path-4--inject-16)">
<path
d="M148.79,272c5.11-2.13-7.67,1.7-8.52.42s8.94-7.66,11.07-8.51-12.35,2.13-11.92,0,14.05-2.56,4.68-4.69-40-7.67-46-9.8a4.94,4.94,0,0,1-1.29-.64,11.92,11.92,0,0,0-6.17,8c-2.68,10.05-2.35,26.81.33,34.18,2.34,6.42,11,10.55,19,8.2,3.69-3,7.1-6.94,12.87-10.57C134.31,281.33,143.68,274.09,148.79,272Z"
style="opacity:0.30000000000000004"
/>
</g>
<path
d="M167.38,273.85s-6.36-9.72-15.08-15.08-31.16-9.38-40.21-11.06-18.77-1-21.45,9-2.35,26.81.33,34.18,13.74,11.73,22.46,6.71,32.84-24.47,41.22-25.47S166.71,277.54,167.38,273.85Z"
style="fill:none;stroke:#263238;stroke-linecap:round;stroke-linejoin:round;stroke-width:1.1930027515339008px"
/>
<path
d="M203.58,319.43s7.71,1,12.73,3,8.38,14.41,6.37,16.08-6-.33-6-.33a49.07,49.07,0,0,1-9.72,2.34C202.91,340.88,198.55,321.78,203.58,319.43Z"
style="fill:#92E3A9;stroke:#263238;stroke-linecap:round;stroke-linejoin:round;stroke-width:1.1930027515339008px"
/>
<path
d="M178.11,318.42s1.34,0,8.71-3.35,13.41-3.35,18.1,4,6.7,16.43,4,21.79-12.73,9.05-18.1,9.05-6-7-6-7-.67-11.06-4-15.08S176.77,319.43,178.11,318.42Z"
style="fill:#757575;stroke:#263238;stroke-linecap:round;stroke-linejoin:round;stroke-width:1.1930027515339008px"
/>
<path
d="M153.31,273.85c7.37-2.68,16.76-1,20.11,8.38s6.36,36.86,6.36,36.86,8.38,1,11.73,4.7,5,13.07,4.36,17.76-12.4,13.4-25.8,13.74-23.13-6-27.82-23.13S139.42,289,139.42,289s1.7-7.67,4.26-9.38"
style="fill:#92E3A9"
/>
<g style="clip-path:url(#freepik--clip-path-5--inject-16)">
<path
d="M195.87,341.55c.67-4.69-1-14.08-4.36-17.76-.13-.15-.29-.29-.43-.43a85.25,85.25,0,0,1,.72,9.08c.67,19.67-26.82,16.38-32.36,2.13-3-7.67-3.84-41.32-12.78-43.87-5.16-1.47-6.92,2.57-7.48,6.26-.18,9.65.14,24.52,3.07,35.2,4.69,17.1,14.41,23.46,27.82,23.13S195.2,346.24,195.87,341.55Z"
style="opacity:0.30000000000000004"
/>
</g>
<path
d="M153.31,273.85c7.37-2.68,16.76-1,20.11,8.38s6.36,36.86,6.36,36.86,8.38,1,11.73,4.7,5,13.07,4.36,17.76-12.4,13.4-25.8,13.74-23.13-6-27.82-23.13S139.42,289,139.42,289s1.7-7.67,4.26-9.38"
style="fill:none;stroke:#263238;stroke-linecap:round;stroke-linejoin:round;stroke-width:1.1930027515339008px"
/>
<path
d="M179.78,319.09S182.4,331.3,168.94,338"
style="fill:none;stroke:#263238;stroke-linecap:round;stroke-linejoin:round;stroke-width:1.1930027515339008px"
/>
</g>
<g id="freepik--Text--inject-16">
<path
d="M113.1,106.25c0-2.78,1.28-4.83,4.17-4.83s4.23,2,4.23,4.83V116c0,2.78-1.29,4.83-4.23,4.83s-4.17-2-4.17-4.83Zm1.25,9.84c0,2.08.82,3.6,2.92,3.6s3-1.52,3-3.6v-9.92c0-2.07-.84-3.6-3-3.6s-2.92,1.53-2.92,3.6Z"
style="fill:#263238"
/>
<path
d="M123.49,106.25c0-2.78,1.28-4.83,4.17-4.83s4.23,2,4.23,4.83V116c0,2.78-1.28,4.83-4.23,4.83s-4.17-2-4.17-4.83Zm1.25,9.84c0,2.08.82,3.6,2.92,3.6s3-1.52,3-3.6v-9.92c0-2.07-.84-3.6-3-3.6s-2.92,1.53-2.92,3.6Z"
style="fill:#263238"
/>
<path
d="M137.92,101.59c2.94,0,4.09,1.85,4.09,4.63v2.08c0,3-1.4,4.52-4.42,4.52h-2.37v7.86H134V101.59Zm-.33,10.09c2.21,0,3.16-1,3.16-3.3v-2.24c0-2.07-.71-3.41-2.83-3.41h-2.7v9Z"
style="fill:#263238"
/>
<path
d="M151.93,106.2v.4h-1.2v-.49c0-2-.76-3.54-2.83-3.54s-2.84,1.5-2.84,3.52c0,4.63,6.9,4.71,6.9,10,0,2.75-1.2,4.77-4.12,4.77s-4.11-2-4.11-4.77v-1h1.2v1.06c0,2,.79,3.52,2.89,3.52s2.89-1.48,2.89-3.52c0-4.58-6.9-4.66-6.9-10,0-2.86,1.25-4.72,4.06-4.75S151.93,103.44,151.93,106.2Z"
style="fill:#263238"
/>
<path d="M155.07,118.28v2.4h-1.22v-2.4Z" style="fill:#263238" />
<path d="M158.48,118.28v2.4h-1.22v-2.4Z" style="fill:#263238" />
<path d="M161.89,118.28v2.4h-1.23v-2.4Z" style="fill:#263238" />
<path
d="M117.13,129.36c3,0,4.09,1.85,4.09,4.64v2.07c0,3-1.39,4.53-4.41,4.53h-2.38v7.85h-1.25V129.36Zm-.32,10.09c2.2,0,3.16-1,3.16-3.3v-2.24c0-2.07-.71-3.4-2.84-3.4h-2.7v8.94Z"
style="fill:#263238"
/>
<path
d="M124.58,144.22l-1,4.23h-1.15l4.17-19.12h1.83l4.25,19.12h-1.25l-1-4.23Zm.19-1.09h5.56l-2.81-12.35Z"
style="fill:#263238"
/>
<path
d="M142.77,134v1.42h-1.2v-1.5c0-2-.79-3.6-2.89-3.6s-2.89,1.56-2.89,3.6v9.93c0,2,.79,3.57,2.89,3.57s2.89-1.53,2.89-3.57v-4.12H139v-1.14h3.73v5.18c0,2.75-1.2,4.82-4.12,4.82s-4.11-2.07-4.11-4.82V134c0-2.75,1.2-4.82,4.11-4.82S142.77,131.27,142.77,134Z"
style="fill:#263238"
/>
<path d="M151.34,138.2v1.14h-5.21v8h6.27v1.15h-7.53V129.36h7.53v1.15h-6.27v7.69Z" style="fill:#263238" />
<path d="M159.82,148.45h-1.15V129.36h1.64L166,145.48V129.36h1.14v19.09h-1.39l-6-17Z" style="fill:#263238" />
<path
d="M169.26,134c0-2.78,1.28-4.82,4.17-4.82s4.23,2,4.23,4.82v9.77c0,2.78-1.29,4.82-4.23,4.82s-4.17-2-4.17-4.82Zm1.25,9.85c0,2.07.82,3.6,2.92,3.6s3-1.53,3-3.6v-9.93c0-2.07-.84-3.6-3-3.6s-2.92,1.53-2.92,3.6Z"
style="fill:#263238"
/>
<path d="M183,148.45V130.51h-3.87v-1.15h9v1.15h-3.9v17.94Z" style="fill:#263238" />
<path d="M200.08,138.66v1.14h-4.94v8.65h-1.25V129.36h7.25v1.15h-6v8.15Z" style="fill:#263238" />
<path
d="M203,134c0-2.78,1.28-4.82,4.17-4.82s4.23,2,4.23,4.82v9.77c0,2.78-1.28,4.82-4.23,4.82s-4.17-2-4.17-4.82Zm1.25,9.85c0,2.07.82,3.6,2.92,3.6s3-1.53,3-3.6v-9.93c0-2.07-.84-3.6-3-3.6s-2.92,1.53-2.92,3.6Z"
style="fill:#263238"
/>
<path
d="M214.64,143.84c0,2,.77,3.63,2.87,3.63s2.86-1.58,2.86-3.63V129.36h1.17v14.43c0,2.72-1.14,4.82-4.06,4.82s-4.09-2.1-4.09-4.82V129.36h1.25Z"
style="fill:#263238"
/>
<path d="M224.84,148.45H223.7V129.36h1.63l5.73,16.12V129.36h1.15v19.09h-1.4l-6-17Z" style="fill:#263238" />
<path
d="M238.56,129.36c2.95,0,4.23,1.94,4.23,4.75v9.59c0,2.81-1.28,4.75-4.23,4.75h-4.2V129.36Zm0,17.94c2.13,0,3-1.44,3-3.54v-9.71c0-2.1-.9-3.54-3-3.54h-2.91V147.3Z"
style="fill:#263238"
/>
<path
d="M302,325.13,315.61,293h8.15v32.13h3.53v6.79h-3.53v8.63h-7.34v-8.63H302Zm14.4,0V307.27l-7.54,17.86Z"
style="fill:#263238"
/>
<path
d="M330.08,304.41c0-7.6,4-12,11.34-12s11.34,4.35,11.34,12v24.72c0,7.61-4,12-11.34,12s-11.34-4.35-11.34-12Zm7.47,25.2c0,3.4,1.49,4.69,3.87,4.69s3.87-1.29,3.87-4.69V303.94c0-3.4-1.5-4.69-3.87-4.69s-3.87,1.29-3.87,4.69Z"
style="fill:#263238"
/>
<path
d="M355.82,325.13,369.4,293h8.15v32.13h3.53v6.79h-3.53v8.63h-7.34v-8.63H355.82Zm14.39,0V307.27l-7.53,17.86Z"
style="fill:#263238"
/>
</g>
</svg>
</template>

View File

@@ -8,7 +8,7 @@
stroke-linejoin="round" stroke-linejoin="round"
class="w-4 h-4 ml-2 transform group-hover:translate-x-2 duration-500" class="w-4 h-4 ml-2 transform group-hover:translate-x-2 duration-500"
> >
<path d="M5 12h14"></path> <path d="M5 12h14" />
<path d="M12 5l7 7-7 7"></path> <path d="M12 5l7 7-7 7" />
</svg> </svg>
</template> </template>

View File

@@ -11,80 +11,80 @@
<path <path
d="M351.92,265.46s-12.78,6.39-21.79,13.9-20.29,6.76-20.29,6.76,4.13,4.51,3.75,7.89-1.88,9.77-1.88,9.77-9.76,31.94-10.89,35-.75,9,0,15-1.88,13.53-4.14,16.91,1.13,14.28,1.13,20.66-4.88,13.53-10.14,14.66a15,15,0,0,1-9.77-1.51s-.38,1.13-5.64.38-5.63-3.38-5.63-3.38-5.27-1.88-5.27-5.26,3-9,9.4-10.9,9.77-8.26,10.52-14.65,5.64-34.2,6.39-44-2.26-22.54-2.63-21.41-13.91,25.17-19.54,35.32-6,9.39-6,13.15-4.14,9-8.27,10.52-4.89,7.51-7.14,11.65-8.64,7.14-14.65,9-9.4,0-9.4,0a9.13,9.13,0,0,1-5.26-1.88,10.2,10.2,0,0,1-3-4.14,6.39,6.39,0,0,1-.38-9.39c4.51-5.26,15.78-4.88,20.29-5.64s2.63-.75,8.64-6.76,21.8-47.34,21.8-53.73-28.94-46.22-31.57-52.61,3-19.53,1.13-25.55S214,201.58,214,201.58l38.33-10.52s8.64,12.4,17.28,14.65,21,6.77,34.19.76,28.94-16.91,44-18.79" d="M351.92,265.46s-12.78,6.39-21.79,13.9-20.29,6.76-20.29,6.76,4.13,4.51,3.75,7.89-1.88,9.77-1.88,9.77-9.76,31.94-10.89,35-.75,9,0,15-1.88,13.53-4.14,16.91,1.13,14.28,1.13,20.66-4.88,13.53-10.14,14.66a15,15,0,0,1-9.77-1.51s-.38,1.13-5.64.38-5.63-3.38-5.63-3.38-5.27-1.88-5.27-5.26,3-9,9.4-10.9,9.77-8.26,10.52-14.65,5.64-34.2,6.39-44-2.26-22.54-2.63-21.41-13.91,25.17-19.54,35.32-6,9.39-6,13.15-4.14,9-8.27,10.52-4.89,7.51-7.14,11.65-8.64,7.14-14.65,9-9.4,0-9.4,0a9.13,9.13,0,0,1-5.26-1.88,10.2,10.2,0,0,1-3-4.14,6.39,6.39,0,0,1-.38-9.39c4.51-5.26,15.78-4.88,20.29-5.64s2.63-.75,8.64-6.76,21.8-47.34,21.8-53.73-28.94-46.22-31.57-52.61,3-19.53,1.13-25.55S214,201.58,214,201.58l38.33-10.52s8.64,12.4,17.28,14.65,21,6.77,34.19.76,28.94-16.91,44-18.79"
style="fill: #fff; stroke: #263238; stroke-linecap: round; stroke-linejoin: round" style="fill: #fff; stroke: #263238; stroke-linecap: round; stroke-linejoin: round"
></path> />
</clipPath> </clipPath>
</defs> </defs>
<g id="freepik--background-simple--inject-47"> <g id="freepik--background-simple--inject-47">
<path <path
d="M81.28,287.58c5.82,8.22-3.18-20.07-3.18-20.07L88,283.79V255c0-16.27,19.26-45.7,19.26-45.7s1.1,19.41,1.65,33.81-5,41.32-5,41.32a59.69,59.69,0,0,1,14.31-30.05C130.92,240,136.43,235,136.43,235s1.1,19.41-4.4,30.68-16,35.05-16,35.05l14.85-13.14-7.7,17.53,18.71-18.16,6.6,14.4,1.65-13.15L154,298.82s2.2-15,0-21.29-4.41-13.77-4.41-13.77,11.56,8.14,14.31,15,4.4,18.78,4.4,18.78,1.1-17.52,10.46-29.42S208,245,208,245s-1.1,21.28-5.5,29.42-12.1,25-12.1,25L208,287.55l-7.15,13.14s1.1-2.5,6.05-4.38,13.76-1.88,13.76-1.88l-1.65,10,7.15-12.52,7.16,10.64-.55-14.4,5,9.39s3.85-8.13,5.5-12.52,8.81-8.13,8.81-8.13-2.76,14.39-2.76,17.52V302l6.06-10.65,3.85,9.39.55-8.13,5.5,8.13.55-10.64L300.41,307l3.3-15.66L314.17,307l8.25-12.53,1.1,10.65,8.26-10,2.2,10,7.15-10.65,2.2,7.52,8.26-6.89s6-71.69-14.71-176.12c0,0-35.92,16.48-65.08,5.84S152.94,95.36,102.31,137.3c-21.06,17.45-31.64,45.23-34.24,74.09C65.79,236.6,66.58,266.84,81.28,287.58Z" d="M81.28,287.58c5.82,8.22-3.18-20.07-3.18-20.07L88,283.79V255c0-16.27,19.26-45.7,19.26-45.7s1.1,19.41,1.65,33.81-5,41.32-5,41.32a59.69,59.69,0,0,1,14.31-30.05C130.92,240,136.43,235,136.43,235s1.1,19.41-4.4,30.68-16,35.05-16,35.05l14.85-13.14-7.7,17.53,18.71-18.16,6.6,14.4,1.65-13.15L154,298.82s2.2-15,0-21.29-4.41-13.77-4.41-13.77,11.56,8.14,14.31,15,4.4,18.78,4.4,18.78,1.1-17.52,10.46-29.42S208,245,208,245s-1.1,21.28-5.5,29.42-12.1,25-12.1,25L208,287.55l-7.15,13.14s1.1-2.5,6.05-4.38,13.76-1.88,13.76-1.88l-1.65,10,7.15-12.52,7.16,10.64-.55-14.4,5,9.39s3.85-8.13,5.5-12.52,8.81-8.13,8.81-8.13-2.76,14.39-2.76,17.52V302l6.06-10.65,3.85,9.39.55-8.13,5.5,8.13.55-10.64L300.41,307l3.3-15.66L314.17,307l8.25-12.53,1.1,10.65,8.26-10,2.2,10,7.15-10.65,2.2,7.52,8.26-6.89s6-71.69-14.71-176.12c0,0-35.92,16.48-65.08,5.84S152.94,95.36,102.31,137.3c-21.06,17.45-31.64,45.23-34.24,74.09C65.79,236.6,66.58,266.84,81.28,287.58Z"
style="fill: #92e3a9" style="fill: #92e3a9"
></path> />
<path <path
d="M81.28,287.58c5.82,8.22-3.18-20.07-3.18-20.07L88,283.79V255c0-16.27,19.26-45.7,19.26-45.7s1.1,19.41,1.65,33.81-5,41.32-5,41.32a59.69,59.69,0,0,1,14.31-30.05C130.92,240,136.43,235,136.43,235s1.1,19.41-4.4,30.68-16,35.05-16,35.05l14.85-13.14-7.7,17.53,18.71-18.16,6.6,14.4,1.65-13.15L154,298.82s2.2-15,0-21.29-4.41-13.77-4.41-13.77,11.56,8.14,14.31,15,4.4,18.78,4.4,18.78,1.1-17.52,10.46-29.42S208,245,208,245s-1.1,21.28-5.5,29.42-12.1,25-12.1,25L208,287.55l-7.15,13.14s1.1-2.5,6.05-4.38,13.76-1.88,13.76-1.88l-1.65,10,7.15-12.52,7.16,10.64-.55-14.4,5,9.39s3.85-8.13,5.5-12.52,8.81-8.13,8.81-8.13-2.76,14.39-2.76,17.52V302l6.06-10.65,3.85,9.39.55-8.13,5.5,8.13.55-10.64L300.41,307l3.3-15.66L314.17,307l8.25-12.53,1.1,10.65,8.26-10,2.2,10,7.15-10.65,2.2,7.52,8.26-6.89s6-71.69-14.71-176.12c0,0-35.92,16.48-65.08,5.84S152.94,95.36,102.31,137.3c-21.06,17.45-31.64,45.23-34.24,74.09C65.79,236.6,66.58,266.84,81.28,287.58Z" d="M81.28,287.58c5.82,8.22-3.18-20.07-3.18-20.07L88,283.79V255c0-16.27,19.26-45.7,19.26-45.7s1.1,19.41,1.65,33.81-5,41.32-5,41.32a59.69,59.69,0,0,1,14.31-30.05C130.92,240,136.43,235,136.43,235s1.1,19.41-4.4,30.68-16,35.05-16,35.05l14.85-13.14-7.7,17.53,18.71-18.16,6.6,14.4,1.65-13.15L154,298.82s2.2-15,0-21.29-4.41-13.77-4.41-13.77,11.56,8.14,14.31,15,4.4,18.78,4.4,18.78,1.1-17.52,10.46-29.42S208,245,208,245s-1.1,21.28-5.5,29.42-12.1,25-12.1,25L208,287.55l-7.15,13.14s1.1-2.5,6.05-4.38,13.76-1.88,13.76-1.88l-1.65,10,7.15-12.52,7.16,10.64-.55-14.4,5,9.39s3.85-8.13,5.5-12.52,8.81-8.13,8.81-8.13-2.76,14.39-2.76,17.52V302l6.06-10.65,3.85,9.39.55-8.13,5.5,8.13.55-10.64L300.41,307l3.3-15.66L314.17,307l8.25-12.53,1.1,10.65,8.26-10,2.2,10,7.15-10.65,2.2,7.52,8.26-6.89s6-71.69-14.71-176.12c0,0-35.92,16.48-65.08,5.84S152.94,95.36,102.31,137.3c-21.06,17.45-31.64,45.23-34.24,74.09C65.79,236.6,66.58,266.84,81.28,287.58Z"
style="fill: #fff; opacity: 0.7000000000000001" style="fill: #fff; opacity: 0.7000000000000001"
></path> />
</g> </g>
<g id="freepik--Shadow--inject-47"> <g id="freepik--Shadow--inject-47">
<path <path
d="M343.61,363.49l-9.86-7.9-3.95,5.13-3.55-5.13-6.71,7.5-2-7.89-1.19,7.5a18.87,18.87,0,0,0-9.47-7.11c-6.09-1.83-13.81-.79-13.81-.79l11.44,6.71L293.49,358l-.39,5.13-5.92-3.94-1.58,4.34S284,358,284,356s.4-7.5.4-7.5-4.34,4.34-4.34,7.89v9.08s-.4-5.13-6.71-6.71a52.48,52.48,0,0,0-11.45-1.58l4.74,5.53H260L254,369.8l-3.16-7.1-4.34,5.13-7.1-3.95-1.58,3.95-9.07-5.92-2-5.13v5.52a8.31,8.31,0,0,0-4.73-1.18c-3.16,0-18.94.39-18.94.39l7.89,3.55L206.68,369s-5.53-1.58-7.9-3.55-12.23-4.34-12.23-4.34l5.53,8.68-4.35-1.58-3.15,7.5L182.21,367l-.39,6.71L176.69,369l-.79,4.34-.79-7.5a33.34,33.34,0,0,0-2,5.13,59.69,59.69,0,0,1-3.15,7.5l1.58-9.47v-7.1l-2,6.71-3.94,7.1-7.11-4,2.77,5.13H153l2,4.34-11.84.4s-9.07,1.58-11.44,2-8.29,2.37-8.29,2.37l18.15-.79-7.49,4.34,20.12,3.55-9.47,4.34,15-.39-1.19-2.37,5.92,4.74,4-5.92,1.18,5.52,2.37-3.94,1.58,5.92,9.07-10.27-3.15,11.45,7.1-3.55,2,5.92,3.95-5.13,9.08,6.31V395.45l7.1,4.74.39-4.35s7.5,0,9.08,2.77,2.76,5.13,2.76,5.13l2.47-6.48.69-1.81,7.1-7.89A20.56,20.56,0,0,0,228,397c-.4,5.52-.79,9.08-.79,9.08l7.1-11.05.79,7.1,6.31-4,7.9,6.71.39-6.71,5.53,4.74,2-3.16,3.16,3.16,7.89-2.76.79,3.94,3.55-3.15,1.58,5.13s.39-5.13.39-8.69v-4.73l6.71,16.57L288,399.4l2,5.52,2.76-7.5v6.32l4.35-7.11.39,5.13,8.68-6.31-.79,5.92,9.08-3.55-1.18,5.52,7.49-5.13V403H329l15.39,1.58-10.65-5.13,23.43.2s8.92,2.16,10.11,2.16-22.5-8.28-22.5-8.28l-11-2,13-.79-9.47-3.55S340.85,372.56,343.61,363.49Z" d="M343.61,363.49l-9.86-7.9-3.95,5.13-3.55-5.13-6.71,7.5-2-7.89-1.19,7.5a18.87,18.87,0,0,0-9.47-7.11c-6.09-1.83-13.81-.79-13.81-.79l11.44,6.71L293.49,358l-.39,5.13-5.92-3.94-1.58,4.34S284,358,284,356s.4-7.5.4-7.5-4.34,4.34-4.34,7.89v9.08s-.4-5.13-6.71-6.71a52.48,52.48,0,0,0-11.45-1.58l4.74,5.53H260L254,369.8l-3.16-7.1-4.34,5.13-7.1-3.95-1.58,3.95-9.07-5.92-2-5.13v5.52a8.31,8.31,0,0,0-4.73-1.18c-3.16,0-18.94.39-18.94.39l7.89,3.55L206.68,369s-5.53-1.58-7.9-3.55-12.23-4.34-12.23-4.34l5.53,8.68-4.35-1.58-3.15,7.5L182.21,367l-.39,6.71L176.69,369l-.79,4.34-.79-7.5a33.34,33.34,0,0,0-2,5.13,59.69,59.69,0,0,1-3.15,7.5l1.58-9.47v-7.1l-2,6.71-3.94,7.1-7.11-4,2.77,5.13H153l2,4.34-11.84.4s-9.07,1.58-11.44,2-8.29,2.37-8.29,2.37l18.15-.79-7.49,4.34,20.12,3.55-9.47,4.34,15-.39-1.19-2.37,5.92,4.74,4-5.92,1.18,5.52,2.37-3.94,1.58,5.92,9.07-10.27-3.15,11.45,7.1-3.55,2,5.92,3.95-5.13,9.08,6.31V395.45l7.1,4.74.39-4.35s7.5,0,9.08,2.77,2.76,5.13,2.76,5.13l2.47-6.48.69-1.81,7.1-7.89A20.56,20.56,0,0,0,228,397c-.4,5.52-.79,9.08-.79,9.08l7.1-11.05.79,7.1,6.31-4,7.9,6.71.39-6.71,5.53,4.74,2-3.16,3.16,3.16,7.89-2.76.79,3.94,3.55-3.15,1.58,5.13s.39-5.13.39-8.69v-4.73l6.71,16.57L288,399.4l2,5.52,2.76-7.5v6.32l4.35-7.11.39,5.13,8.68-6.31-.79,5.92,9.08-3.55-1.18,5.52,7.49-5.13V403H329l15.39,1.58-10.65-5.13,23.43.2s8.92,2.16,10.11,2.16-22.5-8.28-22.5-8.28l-11-2,13-.79-9.47-3.55S340.85,372.56,343.61,363.49Z"
style="fill: #92e3a9" style="fill: #92e3a9"
></path> />
<path <path
d="M343.61,363.49l-9.86-7.9-3.95,5.13-3.55-5.13-6.71,7.5-2-7.89-1.19,7.5a18.87,18.87,0,0,0-9.47-7.11c-6.09-1.83-13.81-.79-13.81-.79l11.44,6.71L293.49,358l-.39,5.13-5.92-3.94-1.58,4.34S284,358,284,356s.4-7.5.4-7.5-4.34,4.34-4.34,7.89v9.08s-.4-5.13-6.71-6.71a52.48,52.48,0,0,0-11.45-1.58l4.74,5.53H260L254,369.8l-3.16-7.1-4.34,5.13-7.1-3.95-1.58,3.95-9.07-5.92-2-5.13v5.52a8.31,8.31,0,0,0-4.73-1.18c-3.16,0-18.94.39-18.94.39l7.89,3.55L206.68,369s-5.53-1.58-7.9-3.55-12.23-4.34-12.23-4.34l5.53,8.68-4.35-1.58-3.15,7.5L182.21,367l-.39,6.71L176.69,369l-.79,4.34-.79-7.5a33.34,33.34,0,0,0-2,5.13,59.69,59.69,0,0,1-3.15,7.5l1.58-9.47v-7.1l-2,6.71-3.94,7.1-7.11-4,2.77,5.13H153l2,4.34-11.84.4s-9.07,1.58-11.44,2-8.29,2.37-8.29,2.37l18.15-.79-7.49,4.34,20.12,3.55-9.47,4.34,15-.39-1.19-2.37,5.92,4.74,4-5.92,1.18,5.52,2.37-3.94,1.58,5.92,9.07-10.27-3.15,11.45,7.1-3.55,2,5.92,3.95-5.13,9.08,6.31V395.45l7.1,4.74.39-4.35s7.5,0,9.08,2.77,2.76,5.13,2.76,5.13l2.47-6.48.69-1.81,7.1-7.89A20.56,20.56,0,0,0,228,397c-.4,5.52-.79,9.08-.79,9.08l7.1-11.05.79,7.1,6.31-4,7.9,6.71.39-6.71,5.53,4.74,2-3.16,3.16,3.16,7.89-2.76.79,3.94,3.55-3.15,1.58,5.13s.39-5.13.39-8.69v-4.73l6.71,16.57L288,399.4l2,5.52,2.76-7.5v6.32l4.35-7.11.39,5.13,8.68-6.31-.79,5.92,9.08-3.55-1.18,5.52,7.49-5.13V403H329l15.39,1.58-10.65-5.13,23.43.2s8.92,2.16,10.11,2.16-22.5-8.28-22.5-8.28l-11-2,13-.79-9.47-3.55S340.85,372.56,343.61,363.49Z" d="M343.61,363.49l-9.86-7.9-3.95,5.13-3.55-5.13-6.71,7.5-2-7.89-1.19,7.5a18.87,18.87,0,0,0-9.47-7.11c-6.09-1.83-13.81-.79-13.81-.79l11.44,6.71L293.49,358l-.39,5.13-5.92-3.94-1.58,4.34S284,358,284,356s.4-7.5.4-7.5-4.34,4.34-4.34,7.89v9.08s-.4-5.13-6.71-6.71a52.48,52.48,0,0,0-11.45-1.58l4.74,5.53H260L254,369.8l-3.16-7.1-4.34,5.13-7.1-3.95-1.58,3.95-9.07-5.92-2-5.13v5.52a8.31,8.31,0,0,0-4.73-1.18c-3.16,0-18.94.39-18.94.39l7.89,3.55L206.68,369s-5.53-1.58-7.9-3.55-12.23-4.34-12.23-4.34l5.53,8.68-4.35-1.58-3.15,7.5L182.21,367l-.39,6.71L176.69,369l-.79,4.34-.79-7.5a33.34,33.34,0,0,0-2,5.13,59.69,59.69,0,0,1-3.15,7.5l1.58-9.47v-7.1l-2,6.71-3.94,7.1-7.11-4,2.77,5.13H153l2,4.34-11.84.4s-9.07,1.58-11.44,2-8.29,2.37-8.29,2.37l18.15-.79-7.49,4.34,20.12,3.55-9.47,4.34,15-.39-1.19-2.37,5.92,4.74,4-5.92,1.18,5.52,2.37-3.94,1.58,5.92,9.07-10.27-3.15,11.45,7.1-3.55,2,5.92,3.95-5.13,9.08,6.31V395.45l7.1,4.74.39-4.35s7.5,0,9.08,2.77,2.76,5.13,2.76,5.13l2.47-6.48.69-1.81,7.1-7.89A20.56,20.56,0,0,0,228,397c-.4,5.52-.79,9.08-.79,9.08l7.1-11.05.79,7.1,6.31-4,7.9,6.71.39-6.71,5.53,4.74,2-3.16,3.16,3.16,7.89-2.76.79,3.94,3.55-3.15,1.58,5.13s.39-5.13.39-8.69v-4.73l6.71,16.57L288,399.4l2,5.52,2.76-7.5v6.32l4.35-7.11.39,5.13,8.68-6.31-.79,5.92,9.08-3.55-1.18,5.52,7.49-5.13V403H329l15.39,1.58-10.65-5.13,23.43.2s8.92,2.16,10.11,2.16-22.5-8.28-22.5-8.28l-11-2,13-.79-9.47-3.55S340.85,372.56,343.61,363.49Z"
style="fill: #fff; opacity: 0.5" style="fill: #fff; opacity: 0.5"
></path> />
</g> </g>
<g id="freepik--Dog--inject-47"> <g id="freepik--Dog--inject-47">
<path <path
d="M351.92,265.46s-12.78,6.39-21.79,13.9-20.29,6.76-20.29,6.76,4.13,4.51,3.75,7.89-1.88,9.77-1.88,9.77-9.76,31.94-10.89,35-.75,9,0,15-1.88,13.53-4.14,16.91,1.13,14.28,1.13,20.66-4.88,13.53-10.14,14.66a15,15,0,0,1-9.77-1.51s-.38,1.13-5.64.38-5.63-3.38-5.63-3.38-5.27-1.88-5.27-5.26,3-9,9.4-10.9,9.77-8.26,10.52-14.65,5.64-34.2,6.39-44-2.26-22.54-2.63-21.41-13.91,25.17-19.54,35.32-6,9.39-6,13.15-4.14,9-8.27,10.52-4.89,7.51-7.14,11.65-8.64,7.14-14.65,9-9.4,0-9.4,0a9.13,9.13,0,0,1-5.26-1.88,10.2,10.2,0,0,1-3-4.14,6.39,6.39,0,0,1-.38-9.39c4.51-5.26,15.78-4.88,20.29-5.64s2.63-.75,8.64-6.76,21.8-47.34,21.8-53.73-28.94-46.22-31.57-52.61,3-19.53,1.13-25.55S214,201.58,214,201.58l38.33-10.52s8.64,12.4,17.28,14.65,21,6.77,34.19.76,28.94-16.91,44-18.79" d="M351.92,265.46s-12.78,6.39-21.79,13.9-20.29,6.76-20.29,6.76,4.13,4.51,3.75,7.89-1.88,9.77-1.88,9.77-9.76,31.94-10.89,35-.75,9,0,15-1.88,13.53-4.14,16.91,1.13,14.28,1.13,20.66-4.88,13.53-10.14,14.66a15,15,0,0,1-9.77-1.51s-.38,1.13-5.64.38-5.63-3.38-5.63-3.38-5.27-1.88-5.27-5.26,3-9,9.4-10.9,9.77-8.26,10.52-14.65,5.64-34.2,6.39-44-2.26-22.54-2.63-21.41-13.91,25.17-19.54,35.32-6,9.39-6,13.15-4.14,9-8.27,10.52-4.89,7.51-7.14,11.65-8.64,7.14-14.65,9-9.4,0-9.4,0a9.13,9.13,0,0,1-5.26-1.88,10.2,10.2,0,0,1-3-4.14,6.39,6.39,0,0,1-.38-9.39c4.51-5.26,15.78-4.88,20.29-5.64s2.63-.75,8.64-6.76,21.8-47.34,21.8-53.73-28.94-46.22-31.57-52.61,3-19.53,1.13-25.55S214,201.58,214,201.58l38.33-10.52s8.64,12.4,17.28,14.65,21,6.77,34.19.76,28.94-16.91,44-18.79"
style="fill: #fff" style="fill: #fff"
></path> />
<g style="clip-path: url(#freepik--clip-path--inject-47)"> <g style="clip-path: url(#freepik--clip-path--inject-47)">
<path <path
d="M265.5,340.61c5.63-10.15,19.16-34.2,19.54-35.32.08-.26.31.23.6,1.25-.44-5.54-8.37-7.94-12.89-9.55-5.55-2-12.68-8.72-18.63-17.05S242.23,259.72,241,251.4s-1.19-26.17,7.53-34.1,9.51-16.65,9.51-16.65a90.09,90.09,0,0,0-8.64-8.79L214,201.58s15.78,17.66,17.66,23.67-3.76,19.17-1.13,25.55,31.57,46.22,31.57,52.61-15.79,47.72-21.8,53.73-4.13,6-8.64,6.76c-2.16.36-5.89.47-9.68,1.06a2.84,2.84,0,0,0,1.59,1c9.12,2.38,13.08,4,14.67,8.33.74,2-.15,5-1.2,7.58,3.12-1.62,5.74-3.6,7-5.95,2.25-4.14,3-10.15,7.14-11.65s8.27-6.76,8.27-10.52S259.86,350.75,265.5,340.61Z" d="M265.5,340.61c5.63-10.15,19.16-34.2,19.54-35.32.08-.26.31.23.6,1.25-.44-5.54-8.37-7.94-12.89-9.55-5.55-2-12.68-8.72-18.63-17.05S242.23,259.72,241,251.4s-1.19-26.17,7.53-34.1,9.51-16.65,9.51-16.65a90.09,90.09,0,0,0-8.64-8.79L214,201.58s15.78,17.66,17.66,23.67-3.76,19.17-1.13,25.55,31.57,46.22,31.57,52.61-15.79,47.72-21.8,53.73-4.13,6-8.64,6.76c-2.16.36-5.89.47-9.68,1.06a2.84,2.84,0,0,0,1.59,1c9.12,2.38,13.08,4,14.67,8.33.74,2-.15,5-1.2,7.58,3.12-1.62,5.74-3.6,7-5.95,2.25-4.14,3-10.15,7.14-11.65s8.27-6.76,8.27-10.52S259.86,350.75,265.5,340.61Z"
style="fill: #92e3a9" style="fill: #92e3a9"
></path> />
<path <path
d="M265.5,340.61c5.63-10.15,19.16-34.2,19.54-35.32.08-.26.31.23.6,1.25-.44-5.54-8.37-7.94-12.89-9.55-5.55-2-12.68-8.72-18.63-17.05S242.23,259.72,241,251.4s-1.19-26.17,7.53-34.1,9.51-16.65,9.51-16.65a90.09,90.09,0,0,0-8.64-8.79L214,201.58s15.78,17.66,17.66,23.67-3.76,19.17-1.13,25.55,31.57,46.22,31.57,52.61-15.79,47.72-21.8,53.73-4.13,6-8.64,6.76c-2.16.36-5.89.47-9.68,1.06a2.84,2.84,0,0,0,1.59,1c9.12,2.38,13.08,4,14.67,8.33.74,2-.15,5-1.2,7.58,3.12-1.62,5.74-3.6,7-5.95,2.25-4.14,3-10.15,7.14-11.65s8.27-6.76,8.27-10.52S259.86,350.75,265.5,340.61Z" d="M265.5,340.61c5.63-10.15,19.16-34.2,19.54-35.32.08-.26.31.23.6,1.25-.44-5.54-8.37-7.94-12.89-9.55-5.55-2-12.68-8.72-18.63-17.05S242.23,259.72,241,251.4s-1.19-26.17,7.53-34.1,9.51-16.65,9.51-16.65a90.09,90.09,0,0,0-8.64-8.79L214,201.58s15.78,17.66,17.66,23.67-3.76,19.17-1.13,25.55,31.57,46.22,31.57,52.61-15.79,47.72-21.8,53.73-4.13,6-8.64,6.76c-2.16.36-5.89.47-9.68,1.06a2.84,2.84,0,0,0,1.59,1c9.12,2.38,13.08,4,14.67,8.33.74,2-.15,5-1.2,7.58,3.12-1.62,5.74-3.6,7-5.95,2.25-4.14,3-10.15,7.14-11.65s8.27-6.76,8.27-10.52S259.86,350.75,265.5,340.61Z"
style="fill: #fff; opacity: 0.5" style="fill: #fff; opacity: 0.5"
></path> />
<path <path
d="M343.84,272.28c5.84-4.31,11.77-7.8,11.77-7.8s4.36,0,2.38-19-4.76-58.68-4.76-58.68c-12.9-.29-23.4,5-28,7.85C331.35,204.07,348.36,234.29,343.84,272.28Z" d="M343.84,272.28c5.84-4.31,11.77-7.8,11.77-7.8s4.36,0,2.38-19-4.76-58.68-4.76-58.68c-12.9-.29-23.4,5-28,7.85C331.35,204.07,348.36,234.29,343.84,272.28Z"
style="fill: #92e3a9" style="fill: #92e3a9"
></path> />
<path <path
d="M343.84,272.28c5.84-4.31,11.77-7.8,11.77-7.8s4.36,0,2.38-19-4.76-58.68-4.76-58.68c-12.9-.29-23.4,5-28,7.85C331.35,204.07,348.36,234.29,343.84,272.28Z" d="M343.84,272.28c5.84-4.31,11.77-7.8,11.77-7.8s4.36,0,2.38-19-4.76-58.68-4.76-58.68c-12.9-.29-23.4,5-28,7.85C331.35,204.07,348.36,234.29,343.84,272.28Z"
style="fill: #fff; opacity: 0.5" style="fill: #fff; opacity: 0.5"
></path> />
</g> </g>
<path <path
d="M351.92,265.46s-12.78,6.39-21.79,13.9-20.29,6.76-20.29,6.76,4.13,4.51,3.75,7.89-1.88,9.77-1.88,9.77-9.76,31.94-10.89,35-.75,9,0,15-1.88,13.53-4.14,16.91,1.13,14.28,1.13,20.66-4.88,13.53-10.14,14.66a15,15,0,0,1-9.77-1.51s-.38,1.13-5.64.38-5.63-3.38-5.63-3.38-5.27-1.88-5.27-5.26,3-9,9.4-10.9,9.77-8.26,10.52-14.65,5.64-34.2,6.39-44-2.26-22.54-2.63-21.41-13.91,25.17-19.54,35.32-6,9.39-6,13.15-4.14,9-8.27,10.52-4.89,7.51-7.14,11.65-8.64,7.14-14.65,9-9.4,0-9.4,0a9.13,9.13,0,0,1-5.26-1.88,10.2,10.2,0,0,1-3-4.14,6.39,6.39,0,0,1-.38-9.39c4.51-5.26,15.78-4.88,20.29-5.64s2.63-.75,8.64-6.76,21.8-47.34,21.8-53.73-28.94-46.22-31.57-52.61,3-19.53,1.13-25.55S214,201.58,214,201.58l38.33-10.52s8.64,12.4,17.28,14.65,21,6.77,34.19.76,28.94-16.91,44-18.79" d="M351.92,265.46s-12.78,6.39-21.79,13.9-20.29,6.76-20.29,6.76,4.13,4.51,3.75,7.89-1.88,9.77-1.88,9.77-9.76,31.94-10.89,35-.75,9,0,15-1.88,13.53-4.14,16.91,1.13,14.28,1.13,20.66-4.88,13.53-10.14,14.66a15,15,0,0,1-9.77-1.51s-.38,1.13-5.64.38-5.63-3.38-5.63-3.38-5.27-1.88-5.27-5.26,3-9,9.4-10.9,9.77-8.26,10.52-14.65,5.64-34.2,6.39-44-2.26-22.54-2.63-21.41-13.91,25.17-19.54,35.32-6,9.39-6,13.15-4.14,9-8.27,10.52-4.89,7.51-7.14,11.65-8.64,7.14-14.65,9-9.4,0-9.4,0a9.13,9.13,0,0,1-5.26-1.88,10.2,10.2,0,0,1-3-4.14,6.39,6.39,0,0,1-.38-9.39c4.51-5.26,15.78-4.88,20.29-5.64s2.63-.75,8.64-6.76,21.8-47.34,21.8-53.73-28.94-46.22-31.57-52.61,3-19.53,1.13-25.55S214,201.58,214,201.58l38.33-10.52s8.64,12.4,17.28,14.65,21,6.77,34.19.76,28.94-16.91,44-18.79"
style="fill: none; stroke: #263238; stroke-linecap: round; stroke-linejoin: round" style="fill: none; stroke: #263238; stroke-linecap: round; stroke-linejoin: round"
></path> />
<path <path
d="M247.46,259.45s-2.63,6,1.51,13.15S261.36,291,268.5,295.14s15.79,6,16.54,10.15" d="M247.46,259.45s-2.63,6,1.51,13.15S261.36,291,268.5,295.14s15.79,6,16.54,10.15"
style="fill: none; stroke: #263238; stroke-linecap: round; stroke-linejoin: round" style="fill: none; stroke: #263238; stroke-linecap: round; stroke-linejoin: round"
></path> />
<path <path
d="M320,198.12c-5.66,3-11.14,6-16.22,8.35-9.88,4.51-19.33,3.09-27.09,1.15,2.68,2.47,5.65,7.13,6,15.75.75,16.16-4.88,23.3,0,30.82s10.9,9.77,15,17.28,7.52,12,13.53,12,22.92-18,25.93-37.19C340.21,227.56,326.62,202.72,320,198.12Z" d="M320,198.12c-5.66,3-11.14,6-16.22,8.35-9.88,4.51-19.33,3.09-27.09,1.15,2.68,2.47,5.65,7.13,6,15.75.75,16.16-4.88,23.3,0,30.82s10.9,9.77,15,17.28,7.52,12,13.53,12,22.92-18,25.93-37.19C340.21,227.56,326.62,202.72,320,198.12Z"
style="fill: #263238; stroke: #263238; stroke-linecap: round; stroke-linejoin: round" style="fill: #263238; stroke: #263238; stroke-linecap: round; stroke-linejoin: round"
></path> />
<path <path
d="M220,385s1.88-11.65,9.4-12" d="M220,385s1.88-11.65,9.4-12"
style="fill: none; stroke: #263238; stroke-linecap: round; stroke-linejoin: round" style="fill: none; stroke: #263238; stroke-linecap: round; stroke-linejoin: round"
></path> />
<path <path
d="M211.77,378.93s5.63-9.77,12-9" d="M211.77,378.93s5.63-9.77,12-9"
style="fill: none; stroke: #263238; stroke-linecap: round; stroke-linejoin: round" style="fill: none; stroke: #263238; stroke-linecap: round; stroke-linejoin: round"
></path> />
<path <path
d="M266.63,401.48s-.38-7.89,7.89-13.9" d="M266.63,401.48s-.38-7.89,7.89-13.9"
style="fill: none; stroke: #263238; stroke-linecap: round; stroke-linejoin: round" style="fill: none; stroke: #263238; stroke-linecap: round; stroke-linejoin: round"
></path> />
<path <path
d="M277.9,404.48s-.38-9.76,5.26-14.27" d="M277.9,404.48s-.38-9.76,5.26-14.27"
style="fill: none; stroke: #263238; stroke-linecap: round; stroke-linejoin: round" style="fill: none; stroke: #263238; stroke-linecap: round; stroke-linejoin: round"
></path> />
<path <path
d="M329.65,85.34s44.45,178.42,10,296.74" d="M329.65,85.34s44.45,178.42,10,296.74"
style=" style="
@@ -94,7 +94,7 @@
stroke-linejoin: round; stroke-linejoin: round;
stroke-width: 2px; stroke-width: 2px;
" "
></path> />
<path <path
d="M365.42,203.11c.29,4.17.48,8.15.54,11.82" d="M365.42,203.11c.29,4.17.48,8.15.54,11.82"
style=" style="
@@ -104,7 +104,7 @@
stroke-linejoin: round; stroke-linejoin: round;
stroke-width: 2px; stroke-width: 2px;
" "
></path> />
<path <path
d="M353.44,117.27s8.25,43.42,11.37,78.19" d="M353.44,117.27s8.25,43.42,11.37,78.19"
style=" style="
@@ -114,7 +114,7 @@
stroke-linejoin: round; stroke-linejoin: round;
stroke-width: 2px; stroke-width: 2px;
" "
></path> />
<path <path
d="M372.85,164.85s8.76,55.71,6.88,105.17" d="M372.85,164.85s8.76,55.71,6.88,105.17"
style=" style="
@@ -124,7 +124,7 @@
stroke-linejoin: round; stroke-linejoin: round;
stroke-width: 2px; stroke-width: 2px;
" "
></path> />
<path <path
d="M369.09,245.6s.54,50-4.38,78.26" d="M369.09,245.6s.54,50-4.38,78.26"
style=" style="
@@ -134,7 +134,7 @@
stroke-linejoin: round; stroke-linejoin: round;
stroke-width: 2px; stroke-width: 2px;
" "
></path> />
<path <path
d="M394.53,285.59c-.28,3-.62,6-1,8.84" d="M394.53,285.59c-.28,3-.62,6-1,8.84"
style=" style="
@@ -144,7 +144,7 @@
stroke-linejoin: round; stroke-linejoin: round;
stroke-width: 2px; stroke-width: 2px;
" "
></path> />
<path <path
d="M392.88,192.39s4.56,45.1,2.4,83.22" d="M392.88,192.39s4.56,45.1,2.4,83.22"
style=" style="
@@ -154,81 +154,81 @@
stroke-linejoin: round; stroke-linejoin: round;
stroke-width: 2px; stroke-width: 2px;
" "
></path> />
<path <path
d="M265,151.59s-38.76-16.54-42.07-16.54S218.69,145.45,213,154s-15.6,9.92-17.49,17,3.31,26.94,8.51,32.62,13.7-2.37,18.43,1.89,6.62,10.87,14.18,9,25.53-9.93,27.89-15.6-1.42-17-1.42-26.47S266.9,156.32,265,151.59Z" d="M265,151.59s-38.76-16.54-42.07-16.54S218.69,145.45,213,154s-15.6,9.92-17.49,17,3.31,26.94,8.51,32.62,13.7-2.37,18.43,1.89,6.62,10.87,14.18,9,25.53-9.93,27.89-15.6-1.42-17-1.42-26.47S266.9,156.32,265,151.59Z"
style="fill: #263238; stroke: #263238; stroke-linecap: round; stroke-linejoin: round" style="fill: #263238; stroke: #263238; stroke-linecap: round; stroke-linejoin: round"
></path> />
<path <path
d="M227.48,166.87c-7,0-12.51-5.15-12.74-5.36a1.14,1.14,0,0,1,0-1.6,1.12,1.12,0,0,1,1.59,0c.05,0,5.09,4.74,11.19,4.74a1.13,1.13,0,0,1,0,2.26Z" d="M227.48,166.87c-7,0-12.51-5.15-12.74-5.36a1.14,1.14,0,0,1,0-1.6,1.12,1.12,0,0,1,1.59,0c.05,0,5.09,4.74,11.19,4.74a1.13,1.13,0,0,1,0,2.26Z"
style="fill: #fff" style="fill: #fff"
></path> />
<path <path
d="M252.46,169.79a1.19,1.19,0,0,1-.37-.06,1.13,1.13,0,0,1-.69-1.44,6,6,0,0,0-2-6.46c-3.25-2.6-7.49.44-7.67.57a1.14,1.14,0,0,1-1.58-.25,1.13,1.13,0,0,1,.24-1.57c.24-.17,5.81-4.19,10.42-.51a8.27,8.27,0,0,1,2.75,9A1.14,1.14,0,0,1,252.46,169.79Z" d="M252.46,169.79a1.19,1.19,0,0,1-.37-.06,1.13,1.13,0,0,1-.69-1.44,6,6,0,0,0-2-6.46c-3.25-2.6-7.49.44-7.67.57a1.14,1.14,0,0,1-1.58-.25,1.13,1.13,0,0,1,.24-1.57c.24-.17,5.81-4.19,10.42-.51a8.27,8.27,0,0,1,2.75,9A1.14,1.14,0,0,1,252.46,169.79Z"
style="fill: #fff" style="fill: #fff"
></path> />
<path <path
d="M246.88,178.23a2.13,2.13,0,1,1-2.13-2.12A2.13,2.13,0,0,1,246.88,178.23Z" d="M246.88,178.23a2.13,2.13,0,1,1-2.13-2.12A2.13,2.13,0,0,1,246.88,178.23Z"
style="fill: #fff" style="fill: #fff"
></path> />
<path <path
d="M220.83,168.4a2.13,2.13,0,1,1-2.13-2.13A2.12,2.12,0,0,1,220.83,168.4Z" d="M220.83,168.4a2.13,2.13,0,1,1-2.13-2.13A2.12,2.12,0,0,1,220.83,168.4Z"
style="fill: #fff" style="fill: #fff"
></path> />
<path <path
d="M212.61,204.31s5.92,5.35,11.84,6.2,3.94-4.23,1.41-6.2S210.92,197.54,212.61,204.31Z" d="M212.61,204.31s5.92,5.35,11.84,6.2,3.94-4.23,1.41-6.2S210.92,197.54,212.61,204.31Z"
style="fill: #fff; stroke: #263238; stroke-linecap: round; stroke-linejoin: round" style="fill: #fff; stroke: #263238; stroke-linecap: round; stroke-linejoin: round"
></path> />
<path <path
d="M239.7,185.94s.54-6.38-1.59-10.63-6.12-5.58-10.1-2.39-3.72,3.19-14.09,7.17c-8,3.07-13.71,5.82-16,10.66,1.66,5.46,3.87,10.43,6.08,12.84,5.2,5.67,13.7-2.37,18.43,1.89s6.62,10.87,14.18,9a63,63,0,0,0,7.59-2.59,14.71,14.71,0,0,0,1.58-12.1C244,194.72,240.77,191,239.7,185.94Z" d="M239.7,185.94s.54-6.38-1.59-10.63-6.12-5.58-10.1-2.39-3.72,3.19-14.09,7.17c-8,3.07-13.71,5.82-16,10.66,1.66,5.46,3.87,10.43,6.08,12.84,5.2,5.67,13.7-2.37,18.43,1.89s6.62,10.87,14.18,9a63,63,0,0,0,7.59-2.59,14.71,14.71,0,0,0,1.58-12.1C244,194.72,240.77,191,239.7,185.94Z"
style="fill: #fff; stroke: #263238; stroke-linecap: round; stroke-linejoin: round" style="fill: #fff; stroke: #263238; stroke-linecap: round; stroke-linejoin: round"
></path> />
<path <path
d="M230.93,189.66s-10.1-5-13.56-2.92,1.07,13,6.12,14.89,13.56-.53,14.62-3.46S233.86,191.26,230.93,189.66Z" d="M230.93,189.66s-10.1-5-13.56-2.92,1.07,13,6.12,14.89,13.56-.53,14.62-3.46S233.86,191.26,230.93,189.66Z"
style="fill: #263238; stroke: #263238; stroke-linecap: round; stroke-linejoin: round" style="fill: #263238; stroke: #263238; stroke-linecap: round; stroke-linejoin: round"
></path> />
<path <path
d="M230.93,192.32s-6.64-4-6.91-1.86,6.91,5.58,8.24,4.26S230.93,192.32,230.93,192.32Z" d="M230.93,192.32s-6.64-4-6.91-1.86,6.91,5.58,8.24,4.26S230.93,192.32,230.93,192.32Z"
style="fill: #fff; stroke: #263238; stroke-linecap: round; stroke-linejoin: round" style="fill: #fff; stroke: #263238; stroke-linecap: round; stroke-linejoin: round"
></path> />
<path <path
d="M199.3,124.54s-1.33,11.16,1.86,18.6,4.52,12.76,8.77,12.5,19.14-10.9,22.06-17.28,2.13-11.43-1.86-13.29-10.9-1.6-17.28-2.66S200.89,119.75,199.3,124.54Z" d="M199.3,124.54s-1.33,11.16,1.86,18.6,4.52,12.76,8.77,12.5,19.14-10.9,22.06-17.28,2.13-11.43-1.86-13.29-10.9-1.6-17.28-2.66S200.89,119.75,199.3,124.54Z"
style="fill: #263238; stroke: #263238; stroke-linecap: round; stroke-linejoin: round" style="fill: #263238; stroke: #263238; stroke-linecap: round; stroke-linejoin: round"
></path> />
<path <path
d="M232,138.36s-5.79,14.07-17.71,17.48" d="M232,138.36s-5.79,14.07-17.71,17.48"
style="fill: none; stroke: #fff; stroke-linecap: round; stroke-linejoin: round" style="fill: none; stroke: #fff; stroke-linecap: round; stroke-linejoin: round"
></path> />
<path <path
d="M276.39,152.18s-6.38-6.64-11.17-8.24-9,4.79-9.3,10.63,1.06,21,5.85,23.93,13-2.92,21-7.18,9-8.24,5.58-12.23S276.39,152.18,276.39,152.18Z" d="M276.39,152.18s-6.38-6.64-11.17-8.24-9,4.79-9.3,10.63,1.06,21,5.85,23.93,13-2.92,21-7.18,9-8.24,5.58-12.23S276.39,152.18,276.39,152.18Z"
style="fill: #263238; stroke: #263238; stroke-linecap: round; stroke-linejoin: round" style="fill: #263238; stroke: #263238; stroke-linecap: round; stroke-linejoin: round"
></path> />
<path <path
d="M256.85,148.46s-4.92,16.95,4.92,30" d="M256.85,148.46s-4.92,16.95,4.92,30"
style="fill: none; stroke: #fff; stroke-linecap: round; stroke-linejoin: round" style="fill: none; stroke: #fff; stroke-linecap: round; stroke-linejoin: round"
></path> />
</g> </g>
<g id="freepik--Plants--inject-47"> <g id="freepik--Plants--inject-47">
<path <path
d="M389.64,338.49s3.06-7.34,5.51-7.34,9.18,7.34,9.18,7.34-2.45-8.57,1.83-14.07,22,8.56,22.64,11-9.18-1.22-14.07,4.89A39.71,39.71,0,0,0,408,353.17s6.73-8.56,14.07,0,9.79,24.47,9.79,24.47-12.85-10.4-17.74-10.4H401.88s6.12,6.12,6.12,12.85a104,104,0,0,0,.61,11.62l-7.95-11.62-1.84,13.46s-9.18-7.95-11.62-10.4-8.57-9.79-8.57-9.79-1.83,3.06-.61,10.4-5.51,22-5.51,22-1.22-6.73-3.67-15.3a96.39,96.39,0,0,1-3.06-17.13,54.41,54.41,0,0,1-6.73,19c-5.5,9.17-14.07,20.8-14.07,20.8l4.29-23.25s-4.29,3.06-8.57,5.5S326,400.89,326,400.89L341.92,377s-13.46-.61-16.51,2.45-14.08,11.62-14.08,11.62,5.51-20.19,11.63-26.92,23.25-10.4,23.25-10.4l-18.36-2.44s12.85-11.63,19.58-12.24,17.74,1.22,17.74,1.22Z" d="M389.64,338.49s3.06-7.34,5.51-7.34,9.18,7.34,9.18,7.34-2.45-8.57,1.83-14.07,22,8.56,22.64,11-9.18-1.22-14.07,4.89A39.71,39.71,0,0,0,408,353.17s6.73-8.56,14.07,0,9.79,24.47,9.79,24.47-12.85-10.4-17.74-10.4H401.88s6.12,6.12,6.12,12.85a104,104,0,0,0,.61,11.62l-7.95-11.62-1.84,13.46s-9.18-7.95-11.62-10.4-8.57-9.79-8.57-9.79-1.83,3.06-.61,10.4-5.51,22-5.51,22-1.22-6.73-3.67-15.3a96.39,96.39,0,0,1-3.06-17.13,54.41,54.41,0,0,1-6.73,19c-5.5,9.17-14.07,20.8-14.07,20.8l4.29-23.25s-4.29,3.06-8.57,5.5S326,400.89,326,400.89L341.92,377s-13.46-.61-16.51,2.45-14.08,11.62-14.08,11.62,5.51-20.19,11.63-26.92,23.25-10.4,23.25-10.4l-18.36-2.44s12.85-11.63,19.58-12.24,17.74,1.22,17.74,1.22Z"
style="fill: #263238" style="fill: #263238"
></path> />
<path <path
d="M359.05,339.71S347.43,325,335.19,325s-16.51,36.09-16.51,36.09S345.59,339.71,359.05,339.71Z" d="M359.05,339.71S347.43,325,335.19,325s-16.51,36.09-16.51,36.09S345.59,339.71,359.05,339.71Z"
style="fill: #92e3a9" style="fill: #92e3a9"
></path> />
<path <path
d="M359.05,339.71s12.85-11,24.48-10.4,15.9,22,11.62,31.2a153.38,153.38,0,0,1-8.57,15.91S374.35,345.22,359.05,339.71Z" d="M359.05,339.71s12.85-11,24.48-10.4,15.9,22,11.62,31.2a153.38,153.38,0,0,1-8.57,15.91S374.35,345.22,359.05,339.71Z"
style="fill: #92e3a9" style="fill: #92e3a9"
></path> />
<path <path
d="M367,351.34s-9.18-10.4-16.52-10.4-11.63,9.17-12.24,21.41-.61,25.69-.61,25.69,27.53-28.14,30.59-29.36S367,351.34,367,351.34Z" d="M367,351.34s-9.18-10.4-16.52-10.4-11.63,9.17-12.24,21.41-.61,25.69-.61,25.69,27.53-28.14,30.59-29.36S367,351.34,367,351.34Z"
style="fill: #92e3a9" style="fill: #92e3a9"
></path> />
<path <path
d="M406.16,324.42s2.45-6.73,7.34-6.73,18.36.61,19,12.23.61,23.86.61,23.86S419.62,323.19,406.16,324.42Z" d="M406.16,324.42s2.45-6.73,7.34-6.73,18.36.61,19,12.23.61,23.86.61,23.86S419.62,323.19,406.16,324.42Z"
style="fill: #92e3a9" style="fill: #92e3a9"
></path> />
</g> </g>
</svg> </svg>
</template> </template>

View File

@@ -11,6 +11,6 @@
stroke-linejoin="round" stroke-linejoin="round"
stroke-width="2" stroke-width="2"
d="M8 7V3m8 4V3m-9 8h10M5 21h14a2 2 0 002-2V7a2 2 0 00-2-2H5a2 2 0 00-2 2v12a2 2 0 002 2z" d="M8 7V3m8 4V3m-9 8h10M5 21h14a2 2 0 002-2V7a2 2 0 00-2-2H5a2 2 0 00-2 2v12a2 2 0 002 2z"
></path> />
</svg> </svg>
</template> </template>

View File

@@ -4,485 +4,485 @@
<path <path
d="M449,256.48a11.74,11.74,0,0,1-2.92,3.92,8,8,0,0,1-6.85,1.67,11.79,11.79,0,0,1-6.14-3,41.17,41.17,0,0,0-5.19-4,16.94,16.94,0,0,0-6.53-2.42c-1.63-.27-3.26-.45-4.89-.61a12.23,12.23,0,0,1-6.1-2.21,8.17,8.17,0,0,1-3.65-8.38,10.76,10.76,0,0,1,6.28-8.34c1.76-.87,3.64-1.53,5.47-2.28.83-.34,1.66-.66,2.49-1a10.68,10.68,0,0,0,3.67-2.85c.61-.67,1.22-1.34,1.84-2a9.23,9.23,0,0,1,8.72-2.79,14.42,14.42,0,0,1,7.07,3.23,9,9,0,0,1,3.47,7.51c0,.89-.06,1.79-.15,2.67a12.36,12.36,0,0,0,1.06,6.49C447.48,244,448.3,246,449,248a11.63,11.63,0,0,1,.5,6.75C449.37,255.31,449.16,255.89,449,256.48Z" d="M449,256.48a11.74,11.74,0,0,1-2.92,3.92,8,8,0,0,1-6.85,1.67,11.79,11.79,0,0,1-6.14-3,41.17,41.17,0,0,0-5.19-4,16.94,16.94,0,0,0-6.53-2.42c-1.63-.27-3.26-.45-4.89-.61a12.23,12.23,0,0,1-6.1-2.21,8.17,8.17,0,0,1-3.65-8.38,10.76,10.76,0,0,1,6.28-8.34c1.76-.87,3.64-1.53,5.47-2.28.83-.34,1.66-.66,2.49-1a10.68,10.68,0,0,0,3.67-2.85c.61-.67,1.22-1.34,1.84-2a9.23,9.23,0,0,1,8.72-2.79,14.42,14.42,0,0,1,7.07,3.23,9,9,0,0,1,3.47,7.51c0,.89-.06,1.79-.15,2.67a12.36,12.36,0,0,0,1.06,6.49C447.48,244,448.3,246,449,248a11.63,11.63,0,0,1,.5,6.75C449.37,255.31,449.16,255.89,449,256.48Z"
style="fill: #f5f5f5" style="fill: #f5f5f5"
></path> />
<path <path
d="M440.53,215.4a8.36,8.36,0,0,1-3.83,4.24,6.06,6.06,0,0,1-2.4.69,6.48,6.48,0,0,1-5.11-2,7.67,7.67,0,0,1-1.87-2.83c-1.71-4.85-.79-8.87,2.83-12a6.5,6.5,0,0,1,2-1.08,6.41,6.41,0,0,1,7,2.22,9.4,9.4,0,0,1,2.11,5A10.89,10.89,0,0,1,440.53,215.4Z" d="M440.53,215.4a8.36,8.36,0,0,1-3.83,4.24,6.06,6.06,0,0,1-2.4.69,6.48,6.48,0,0,1-5.11-2,7.67,7.67,0,0,1-1.87-2.83c-1.71-4.85-.79-8.87,2.83-12a6.5,6.5,0,0,1,2-1.08,6.41,6.41,0,0,1,7,2.22,9.4,9.4,0,0,1,2.11,5A10.89,10.89,0,0,1,440.53,215.4Z"
style="fill: #f5f5f5" style="fill: #f5f5f5"
></path> />
<path <path
d="M458.34,221a11.08,11.08,0,0,1-6.68,5.33,9.39,9.39,0,0,1-2.63.33,6,6,0,0,1-5.84-4.23,7.47,7.47,0,0,1,.17-4.76,10.88,10.88,0,0,1,6.22-6.55,8.66,8.66,0,0,1,3.84-.71,6.07,6.07,0,0,1,5.73,4.17,7.48,7.48,0,0,1-.1,4.69C458.83,220,458.51,220.63,458.34,221Z" d="M458.34,221a11.08,11.08,0,0,1-6.68,5.33,9.39,9.39,0,0,1-2.63.33,6,6,0,0,1-5.84-4.23,7.47,7.47,0,0,1,.17-4.76,10.88,10.88,0,0,1,6.22-6.55,8.66,8.66,0,0,1,3.84-.71,6.07,6.07,0,0,1,5.73,4.17,7.48,7.48,0,0,1-.1,4.69C458.83,220,458.51,220.63,458.34,221Z"
style="fill: #f5f5f5" style="fill: #f5f5f5"
></path> />
<path <path
d="M409.85,215.2a8.07,8.07,0,0,1,2.41-3.26c2.68-2.06,6.27-1.52,8.65,1.32a10,10,0,0,1,2.37,6,9.24,9.24,0,0,1-2.39,7.35,6.81,6.81,0,0,1-1.39,1.1,6,6,0,0,1-7.26-1,9.47,9.47,0,0,1-2.72-4.62A10.64,10.64,0,0,1,409.85,215.2Z" d="M409.85,215.2a8.07,8.07,0,0,1,2.41-3.26c2.68-2.06,6.27-1.52,8.65,1.32a10,10,0,0,1,2.37,6,9.24,9.24,0,0,1-2.39,7.35,6.81,6.81,0,0,1-1.39,1.1,6,6,0,0,1-7.26-1,9.47,9.47,0,0,1-2.72-4.62A10.64,10.64,0,0,1,409.85,215.2Z"
style="fill: #f5f5f5" style="fill: #f5f5f5"
></path> />
<path <path
d="M464.25,238.48a10.75,10.75,0,0,1-7.35,5.9,7.72,7.72,0,0,1-4.1,0,5.68,5.68,0,0,1-4-3.59,6.56,6.56,0,0,1,.09-4.82,10.5,10.5,0,0,1,7-6.47,7.76,7.76,0,0,1,5.8.25,5.53,5.53,0,0,1,3,3.38A7.55,7.55,0,0,1,464.25,238.48Z" d="M464.25,238.48a10.75,10.75,0,0,1-7.35,5.9,7.72,7.72,0,0,1-4.1,0,5.68,5.68,0,0,1-4-3.59,6.56,6.56,0,0,1,.09-4.82,10.5,10.5,0,0,1,7-6.47,7.76,7.76,0,0,1,5.8.25,5.53,5.53,0,0,1,3,3.38A7.55,7.55,0,0,1,464.25,238.48Z"
style="fill: #f5f5f5" style="fill: #f5f5f5"
></path> />
<path <path
d="M389,135a20.36,20.36,0,0,1-6.33,5.71c-3.9,2.29-8.07,2-12.3.52a20.57,20.57,0,0,1-9.51-7.2,72.94,72.94,0,0,0-7.51-8.61A29.56,29.56,0,0,0,343,119.05c-2.69-1-5.43-1.89-8.17-2.72a21.31,21.31,0,0,1-9.69-5.86c-4.28-4.65-5.52-9.8-3.39-15.59,2.36-6.41,7-10.37,13.6-12.13,3.31-.89,6.76-1.38,10.14-2l4.6-.88a18.47,18.47,0,0,0,7.27-3.64c1.27-.93,2.55-1.87,3.83-2.79,4.83-3.47,10.14-3.94,15.88-1.8a25.05,25.05,0,0,1,11,7.94,15.68,15.68,0,0,1,3.38,14c-.35,1.52-.71,3-1.18,4.52a21.69,21.69,0,0,0-.39,11.48c.8,3.6,1.53,7.22,2.08,10.86a20.17,20.17,0,0,1-1.43,11.72C390.08,133.13,389.52,134.05,389,135Z" d="M389,135a20.36,20.36,0,0,1-6.33,5.71c-3.9,2.29-8.07,2-12.3.52a20.57,20.57,0,0,1-9.51-7.2,72.94,72.94,0,0,0-7.51-8.61A29.56,29.56,0,0,0,343,119.05c-2.69-1-5.43-1.89-8.17-2.72a21.31,21.31,0,0,1-9.69-5.86c-4.28-4.65-5.52-9.8-3.39-15.59,2.36-6.41,7-10.37,13.6-12.13,3.31-.89,6.76-1.38,10.14-2l4.6-.88a18.47,18.47,0,0,0,7.27-3.64c1.27-.93,2.55-1.87,3.83-2.79,4.83-3.47,10.14-3.94,15.88-1.8a25.05,25.05,0,0,1,11,7.94,15.68,15.68,0,0,1,3.38,14c-.35,1.52-.71,3-1.18,4.52a21.69,21.69,0,0,0-.39,11.48c.8,3.6,1.53,7.22,2.08,10.86a20.17,20.17,0,0,1-1.43,11.72C390.08,133.13,389.52,134.05,389,135Z"
style="fill: #ebebeb" style="fill: #ebebeb"
></path> />
<path <path
d="M388.56,61.77a14.71,14.71,0,0,1-8,6,10.5,10.5,0,0,1-4.34.36A11.29,11.29,0,0,1,368.13,63a13.05,13.05,0,0,1-2.23-5.48c-1.28-8.89,1.67-15.46,8.93-19.57a10.94,10.94,0,0,1,3.86-1.14c4.51-.63,8.91,1.82,11.26,6.18a16.5,16.5,0,0,1,1.91,9.29A19.25,19.25,0,0,1,388.56,61.77Z" d="M388.56,61.77a14.71,14.71,0,0,1-8,6,10.5,10.5,0,0,1-4.34.36A11.29,11.29,0,0,1,368.13,63a13.05,13.05,0,0,1-2.23-5.48c-1.28-8.89,1.67-15.46,8.93-19.57a10.94,10.94,0,0,1,3.86-1.14c4.51-.63,8.91,1.82,11.26,6.18a16.5,16.5,0,0,1,1.91,9.29A19.25,19.25,0,0,1,388.56,61.77Z"
style="fill: #ebebeb" style="fill: #ebebeb"
></path> />
<path <path
d="M417.12,77.5c-3.63,3.92-7.71,6.43-13.25,6.86a16.28,16.28,0,0,1-4.62-.34,10.46,10.46,0,0,1-8.55-9.23,13,13,0,0,1,1.91-8.09,19,19,0,0,1,12.88-9.09,15,15,0,0,1,6.82.09,10.58,10.58,0,0,1,8.38,9.09,13,13,0,0,1-1.77,8C418.31,75.88,417.55,76.87,417.12,77.5Z" d="M417.12,77.5c-3.63,3.92-7.71,6.43-13.25,6.86a16.28,16.28,0,0,1-4.62-.34,10.46,10.46,0,0,1-8.55-9.23,13,13,0,0,1,1.91-8.09,19,19,0,0,1,12.88-9.09,15,15,0,0,1,6.82.09,10.58,10.58,0,0,1,8.38,9.09,13,13,0,0,1-1.77,8C418.31,75.88,417.55,76.87,417.12,77.5Z"
style="fill: #ebebeb" style="fill: #ebebeb"
></path> />
<path <path
d="M336.09,51a13.82,13.82,0,0,1,5.24-4.76c5.29-2.62,11.24-.47,14.36,5.2a17.57,17.57,0,0,1,2,11c-.63,4.85-2.59,8.94-6.61,11.77a11.49,11.49,0,0,1-2.75,1.4c-4.37,1.56-9.08-.1-12.07-4.23a16.55,16.55,0,0,1-3.09-8.84A18.55,18.55,0,0,1,336.09,51Z" d="M336.09,51a13.82,13.82,0,0,1,5.24-4.76c5.29-2.62,11.24-.47,14.36,5.2a17.57,17.57,0,0,1,2,11c-.63,4.85-2.59,8.94-6.61,11.77a11.49,11.49,0,0,1-2.75,1.4c-4.37,1.56-9.08-.1-12.07-4.23a16.55,16.55,0,0,1-3.09-8.84A18.55,18.55,0,0,1,336.09,51Z"
style="fill: #ebebeb" style="fill: #ebebeb"
></path> />
<path <path
d="M421.29,109.39A18.72,18.72,0,0,1,406.7,117a13.49,13.49,0,0,1-7-1.47,10,10,0,0,1-5.63-7.51,11.56,11.56,0,0,1,1.8-8.23A18.31,18.31,0,0,1,410,91.07a13.39,13.39,0,0,1,9.84,2.4,9.61,9.61,0,0,1,4.05,6.81C424.29,103.6,423.22,106.4,421.29,109.39Z" d="M421.29,109.39A18.72,18.72,0,0,1,406.7,117a13.49,13.49,0,0,1-7-1.47,10,10,0,0,1-5.63-7.51,11.56,11.56,0,0,1,1.8-8.23A18.31,18.31,0,0,1,410,91.07a13.39,13.39,0,0,1,9.84,2.4,9.61,9.61,0,0,1,4.05,6.81C424.29,103.6,423.22,106.4,421.29,109.39Z"
style="fill: #ebebeb" style="fill: #ebebeb"
></path> />
<path <path
d="M261.79,109.54a13.79,13.79,0,0,1,.89,5.69c-.14,3-1.82,5.31-4.24,7.14a13.86,13.86,0,0,1-7.58,2.72,48.15,48.15,0,0,0-7.63,1.07,19.8,19.8,0,0,0-7.43,3.51c-1.56,1.14-3.07,2.37-4.55,3.61a14.35,14.35,0,0,1-6.89,3.31c-4.21.71-7.57-.49-10.06-3.83a12.67,12.67,0,0,1-1.84-12.16c.72-2.2,1.71-4.33,2.59-6.49.39-1,.81-2,1.2-2.92a12.66,12.66,0,0,0,.62-5.45c-.06-1.07-.12-2.13-.16-3.2a10.84,10.84,0,0,1,4.84-9.64,17,17,0,0,1,8.55-3.29,10.56,10.56,0,0,1,9.18,3.27c.73.76,1.46,1.52,2.12,2.33a14.65,14.65,0,0,0,6.35,4.46c2.33.87,4.64,1.8,6.9,2.83a13.53,13.53,0,0,1,6.1,5.13C261.13,108.24,261.44,108.9,261.79,109.54Z" d="M261.79,109.54a13.79,13.79,0,0,1,.89,5.69c-.14,3-1.82,5.31-4.24,7.14a13.86,13.86,0,0,1-7.58,2.72,48.15,48.15,0,0,0-7.63,1.07,19.8,19.8,0,0,0-7.43,3.51c-1.56,1.14-3.07,2.37-4.55,3.61a14.35,14.35,0,0,1-6.89,3.31c-4.21.71-7.57-.49-10.06-3.83a12.67,12.67,0,0,1-1.84-12.16c.72-2.2,1.71-4.33,2.59-6.49.39-1,.81-2,1.2-2.92a12.66,12.66,0,0,0,.62-5.45c-.06-1.07-.12-2.13-.16-3.2a10.84,10.84,0,0,1,4.84-9.64,17,17,0,0,1,8.55-3.29,10.56,10.56,0,0,1,9.18,3.27c.73.76,1.46,1.52,2.12,2.33a14.65,14.65,0,0,0,6.35,4.46c2.33.87,4.64,1.8,6.9,2.83a13.53,13.53,0,0,1,6.1,5.13C261.13,108.24,261.44,108.9,261.79,109.54Z"
style="fill: #f5f5f5" style="fill: #f5f5f5"
></path> />
<path <path
d="M220.23,82.78a9.91,9.91,0,0,1,.41,6.73,7,7,0,0,1-1.4,2.59,7.64,7.64,0,0,1-5.87,2.67,8.78,8.78,0,0,1-3.92-.76c-5.5-2.55-8.12-6.65-7.77-12.27a7.42,7.42,0,0,1,.77-2.6,7.56,7.56,0,0,1,7.66-4.08,11.15,11.15,0,0,1,5.95,2.34A13,13,0,0,1,220.23,82.78Z" d="M220.23,82.78a9.91,9.91,0,0,1,.41,6.73,7,7,0,0,1-1.4,2.59,7.64,7.64,0,0,1-5.87,2.67,8.78,8.78,0,0,1-3.92-.76c-5.5-2.55-8.12-6.65-7.77-12.27a7.42,7.42,0,0,1,.77-2.6,7.56,7.56,0,0,1,7.66-4.08,11.15,11.15,0,0,1,5.95,2.34A13,13,0,0,1,220.23,82.78Z"
style="fill: #f5f5f5" style="fill: #f5f5f5"
></path> />
<path <path
d="M239.66,72.44a13.08,13.08,0,0,1-1,10,11.05,11.05,0,0,1-1.9,2.49,7.06,7.06,0,0,1-8.37,1.42,8.78,8.78,0,0,1-3.87-4.05,12.87,12.87,0,0,1-.39-10.64,10.09,10.09,0,0,1,2.57-3.82,7.13,7.13,0,0,1,8.23-1.39,8.77,8.77,0,0,1,3.87,4C239.18,71.17,239.45,72,239.66,72.44Z" d="M239.66,72.44a13.08,13.08,0,0,1-1,10,11.05,11.05,0,0,1-1.9,2.49,7.06,7.06,0,0,1-8.37,1.42,8.78,8.78,0,0,1-3.87-4.05,12.87,12.87,0,0,1-.39-10.64,10.09,10.09,0,0,1,2.57-3.82,7.13,7.13,0,0,1,8.23-1.39,8.77,8.77,0,0,1,3.87,4C239.18,71.17,239.45,72,239.66,72.44Z"
style="fill: #f5f5f5" style="fill: #f5f5f5"
></path> />
<path <path
d="M194.77,108.46a9.36,9.36,0,0,1-.75-4.72c.47-4,3.88-6.53,8.24-6.2a12,12,0,0,1,7,2.94,10.92,10.92,0,0,1,4.21,8.08,8.2,8.2,0,0,1-.22,2.07,7.05,7.05,0,0,1-6.85,5.26,11.06,11.06,0,0,1-6.13-1.52A12.49,12.49,0,0,1,194.77,108.46Z" d="M194.77,108.46a9.36,9.36,0,0,1-.75-4.72c.47-4,3.88-6.53,8.24-6.2a12,12,0,0,1,7,2.94,10.92,10.92,0,0,1,4.21,8.08,8.2,8.2,0,0,1-.22,2.07,7.05,7.05,0,0,1-6.85,5.26,11.06,11.06,0,0,1-6.13-1.52A12.49,12.49,0,0,1,194.77,108.46Z"
style="fill: #f5f5f5" style="fill: #f5f5f5"
></path> />
<path <path
d="M259.22,81.85a12.64,12.64,0,0,1-1.09,11,9.2,9.2,0,0,1-3.42,3.42,6.71,6.71,0,0,1-6.32.41,7.73,7.73,0,0,1-4-4,12.36,12.36,0,0,1,.29-11.19,9,9,0,0,1,5-4.68A6.49,6.49,0,0,1,255,77,8.9,8.9,0,0,1,259.22,81.85Z" d="M259.22,81.85a12.64,12.64,0,0,1-1.09,11,9.2,9.2,0,0,1-3.42,3.42,6.71,6.71,0,0,1-6.32.41,7.73,7.73,0,0,1-4-4,12.36,12.36,0,0,1,.29-11.19,9,9,0,0,1,5-4.68A6.49,6.49,0,0,1,255,77,8.9,8.9,0,0,1,259.22,81.85Z"
style="fill: #f5f5f5" style="fill: #f5f5f5"
></path> />
<path <path
d="M140.35,224.16a15.41,15.41,0,0,1,1,6.37c-.15,3.42-2,6-4.73,8a15.53,15.53,0,0,1-8.49,3.09,54.16,54.16,0,0,0-8.56,1.23,22.27,22.27,0,0,0-8.31,4c-1.75,1.29-3.43,2.67-5.09,4.07a16.21,16.21,0,0,1-7.71,3.75c-4.72.81-8.5-.52-11.3-4.26a14.18,14.18,0,0,1-2.12-13.63c.8-2.47,1.9-4.86,2.87-7.29.44-1.1.9-2.19,1.33-3.29a14,14,0,0,0,.68-6.11c-.07-1.2-.14-2.39-.2-3.59-.21-4.49,1.67-8.06,5.39-10.83a19,19,0,0,1,9.58-3.73A11.83,11.83,0,0,1,115,205.57c.82.85,1.64,1.7,2.39,2.6a16.42,16.42,0,0,0,7.14,5c2.62,1,5.22,2,7.75,3.14a15.2,15.2,0,0,1,6.86,5.73C139.61,222.71,140,223.44,140.35,224.16Z" d="M140.35,224.16a15.41,15.41,0,0,1,1,6.37c-.15,3.42-2,6-4.73,8a15.53,15.53,0,0,1-8.49,3.09,54.16,54.16,0,0,0-8.56,1.23,22.27,22.27,0,0,0-8.31,4c-1.75,1.29-3.43,2.67-5.09,4.07a16.21,16.21,0,0,1-7.71,3.75c-4.72.81-8.5-.52-11.3-4.26a14.18,14.18,0,0,1-2.12-13.63c.8-2.47,1.9-4.86,2.87-7.29.44-1.1.9-2.19,1.33-3.29a14,14,0,0,0,.68-6.11c-.07-1.2-.14-2.39-.2-3.59-.21-4.49,1.67-8.06,5.39-10.83a19,19,0,0,1,9.58-3.73A11.83,11.83,0,0,1,115,205.57c.82.85,1.64,1.7,2.39,2.6a16.42,16.42,0,0,0,7.14,5c2.62,1,5.22,2,7.75,3.14a15.2,15.2,0,0,1,6.86,5.73C139.61,222.71,140,223.44,140.35,224.16Z"
style="fill: #f5f5f5" style="fill: #f5f5f5"
></path> />
<path <path
d="M93.62,194.32a11.1,11.1,0,0,1,.49,7.55,7.88,7.88,0,0,1-1.56,2.91,8.55,8.55,0,0,1-6.58,3,10,10,0,0,1-4.4-.83c-6.17-2.84-9.13-7.42-8.77-13.73a8.6,8.6,0,0,1,.86-2.92,8.48,8.48,0,0,1,8.57-4.62,12.58,12.58,0,0,1,6.69,2.61A14.59,14.59,0,0,1,93.62,194.32Z" d="M93.62,194.32a11.1,11.1,0,0,1,.49,7.55,7.88,7.88,0,0,1-1.56,2.91,8.55,8.55,0,0,1-6.58,3,10,10,0,0,1-4.4-.83c-6.17-2.84-9.13-7.42-8.77-13.73a8.6,8.6,0,0,1,.86-2.92,8.48,8.48,0,0,1,8.57-4.62,12.58,12.58,0,0,1,6.69,2.61A14.59,14.59,0,0,1,93.62,194.32Z"
style="fill: #f5f5f5" style="fill: #f5f5f5"
></path> />
<path <path
d="M115.36,182.64a14.68,14.68,0,0,1-1.08,11.25,12.56,12.56,0,0,1-2.12,2.79,7.92,7.92,0,0,1-9.38,1.64,9.74,9.74,0,0,1-4.36-4.54,14.39,14.39,0,0,1-.48-11.93,11.16,11.16,0,0,1,2.86-4.29A8,8,0,0,1,110,176a9.87,9.87,0,0,1,4.36,4.41C114.83,181.22,115.14,182.11,115.36,182.64Z" d="M115.36,182.64a14.68,14.68,0,0,1-1.08,11.25,12.56,12.56,0,0,1-2.12,2.79,7.92,7.92,0,0,1-9.38,1.64,9.74,9.74,0,0,1-4.36-4.54,14.39,14.39,0,0,1-.48-11.93,11.16,11.16,0,0,1,2.86-4.29A8,8,0,0,1,110,176a9.87,9.87,0,0,1,4.36,4.41C114.83,181.22,115.14,182.11,115.36,182.64Z"
style="fill: #f5f5f5" style="fill: #f5f5f5"
></path> />
<path <path
d="M65.18,223.24a10.41,10.41,0,0,1-.87-5.29c.51-4.44,4.32-7.34,9.21-7a13.37,13.37,0,0,1,7.86,3.26,12.24,12.24,0,0,1,4.76,9,8.79,8.79,0,0,1-.24,2.33c-.81,3.42-3.8,5.73-7.66,5.93a12.53,12.53,0,0,1-6.89-1.67A14.07,14.07,0,0,1,65.18,223.24Z" d="M65.18,223.24a10.41,10.41,0,0,1-.87-5.29c.51-4.44,4.32-7.34,9.21-7a13.37,13.37,0,0,1,7.86,3.26,12.24,12.24,0,0,1,4.76,9,8.79,8.79,0,0,1-.24,2.33c-.81,3.42-3.8,5.73-7.66,5.93a12.53,12.53,0,0,1-6.89-1.67A14.07,14.07,0,0,1,65.18,223.24Z"
style="fill: #f5f5f5" style="fill: #f5f5f5"
></path> />
<path <path
d="M137.35,193.1a14.2,14.2,0,0,1-1.18,12.4,10.22,10.22,0,0,1-3.82,3.85,7.55,7.55,0,0,1-7.09.49,8.74,8.74,0,0,1-4.49-4.53,13.89,13.89,0,0,1,.28-12.56,10.16,10.16,0,0,1,5.58-5.26,7.24,7.24,0,0,1,6,.23A10,10,0,0,1,137.35,193.1Z" d="M137.35,193.1a14.2,14.2,0,0,1-1.18,12.4,10.22,10.22,0,0,1-3.82,3.85,7.55,7.55,0,0,1-7.09.49,8.74,8.74,0,0,1-4.49-4.53,13.89,13.89,0,0,1,.28-12.56,10.16,10.16,0,0,1,5.58-5.26,7.24,7.24,0,0,1,6,.23A10,10,0,0,1,137.35,193.1Z"
style="fill: #f5f5f5" style="fill: #f5f5f5"
></path> />
<path <path
d="M135.91,136a17.94,17.94,0,0,1-3.39,6.72c-2.48,3.12-6,4.24-10,4.33a18.08,18.08,0,0,1-10.1-2.89,64.2,64.2,0,0,0-8.92-4.69,26,26,0,0,0-10.55-2c-2.53,0-5.06.18-7.58.36a18.71,18.71,0,0,1-9.83-1.74c-5-2.46-7.65-6.3-7.74-11.73-.1-6,2.46-10.76,7.32-14.31,2.45-1.78,5.12-3.28,7.7-4.9,1.16-.73,2.34-1.45,3.5-2.19a16.47,16.47,0,0,0,4.82-5.29c.75-1.18,1.5-2.36,2.26-3.52,2.87-4.39,7.09-6.46,12.49-6.52a22.05,22.05,0,0,1,11.57,3,13.83,13.83,0,0,1,7.25,10.47c.19,1.36.38,2.73.46,4.09a19.2,19.2,0,0,0,3.33,9.57c1.81,2.7,3.56,5.45,5.17,8.26a17.78,17.78,0,0,1,2.54,10.1C136.2,134.12,136,135.06,135.91,136Z" d="M135.91,136a17.94,17.94,0,0,1-3.39,6.72c-2.48,3.12-6,4.24-10,4.33a18.08,18.08,0,0,1-10.1-2.89,64.2,64.2,0,0,0-8.92-4.69,26,26,0,0,0-10.55-2c-2.53,0-5.06.18-7.58.36a18.71,18.71,0,0,1-9.83-1.74c-5-2.46-7.65-6.3-7.74-11.73-.1-6,2.46-10.76,7.32-14.31,2.45-1.78,5.12-3.28,7.7-4.9,1.16-.73,2.34-1.45,3.5-2.19a16.47,16.47,0,0,0,4.82-5.29c.75-1.18,1.5-2.36,2.26-3.52,2.87-4.39,7.09-6.46,12.49-6.52a22.05,22.05,0,0,1,11.57,3,13.83,13.83,0,0,1,7.25,10.47c.19,1.36.38,2.73.46,4.09a19.2,19.2,0,0,0,3.33,9.57c1.81,2.7,3.56,5.45,5.17,8.26a17.78,17.78,0,0,1,2.54,10.1C136.2,134.12,136,135.06,135.91,136Z"
style="fill: #ebebeb" style="fill: #ebebeb"
></path> />
<path <path
d="M112.26,75.93a13,13,0,0,1-4.69,7.45,9.3,9.3,0,0,1-3.46,1.67,9.93,9.93,0,0,1-8.27-1.65,11.55,11.55,0,0,1-3.58-3.79c-3.88-6.9-3.54-13.24,1.12-18.94a9.64,9.64,0,0,1,2.81-2.16A9.85,9.85,0,0,1,107.42,60a14.67,14.67,0,0,1,4.52,7A17,17,0,0,1,112.26,75.93Z" d="M112.26,75.93a13,13,0,0,1-4.69,7.45,9.3,9.3,0,0,1-3.46,1.67,9.93,9.93,0,0,1-8.27-1.65,11.55,11.55,0,0,1-3.58-3.79c-3.88-6.9-3.54-13.24,1.12-18.94a9.64,9.64,0,0,1,2.81-2.16A9.85,9.85,0,0,1,107.42,60a14.67,14.67,0,0,1,4.52,7A17,17,0,0,1,112.26,75.93Z"
style="fill: #ebebeb" style="fill: #ebebeb"
></path> />
<path <path
d="M140.74,79.78c-1.73,4.38-4.29,7.74-8.71,9.85a14.38,14.38,0,0,1-3.91,1.2,9.22,9.22,0,0,1-10-4.88,11.39,11.39,0,0,1-1-7.25,16.81,16.81,0,0,1,7.7-11.58A13.27,13.27,0,0,1,130.49,65a9.31,9.31,0,0,1,9.78,4.81A11.43,11.43,0,0,1,141.36,77C141.21,78.07,140.89,79.12,140.74,79.78Z" d="M140.74,79.78c-1.73,4.38-4.29,7.74-8.71,9.85a14.38,14.38,0,0,1-3.91,1.2,9.22,9.22,0,0,1-10-4.88,11.39,11.39,0,0,1-1-7.25,16.81,16.81,0,0,1,7.7-11.58A13.27,13.27,0,0,1,130.49,65a9.31,9.31,0,0,1,9.78,4.81A11.43,11.43,0,0,1,141.36,77C141.21,78.07,140.89,79.12,140.74,79.78Z"
style="fill: #ebebeb" style="fill: #ebebeb"
></path> />
<path <path
d="M65.68,83.74a12.2,12.2,0,0,1,2.8-5.58c3.51-3.84,9.09-4,13.46-.29a15.52,15.52,0,0,1,5.17,8.44c1,4.19.72,8.17-1.69,11.78a10.21,10.21,0,0,1-1.81,2c-3.11,2.67-7.5,2.8-11.28.36A14.65,14.65,0,0,1,67,94.19,16.36,16.36,0,0,1,65.68,83.74Z" d="M65.68,83.74a12.2,12.2,0,0,1,2.8-5.58c3.51-3.84,9.09-4,13.46-.29a15.52,15.52,0,0,1,5.17,8.44c1,4.19.72,8.17-1.69,11.78a10.21,10.21,0,0,1-1.81,2c-3.11,2.67-7.5,2.8-11.28.36A14.65,14.65,0,0,1,67,94.19,16.36,16.36,0,0,1,65.68,83.74Z"
style="fill: #ebebeb" style="fill: #ebebeb"
></path> />
<path <path
d="M154.31,104.68a16.49,16.49,0,0,1-9.59,10.87,12,12,0,0,1-6.23,1,8.77,8.77,0,0,1-7-4.39,10.17,10.17,0,0,1-1.14-7.34,16.14,16.14,0,0,1,8.85-11.64,11.85,11.85,0,0,1,8.86-1.15,8.5,8.5,0,0,1,5.49,4.31C154.93,99,155,101.6,154.31,104.68Z" d="M154.31,104.68a16.49,16.49,0,0,1-9.59,10.87,12,12,0,0,1-6.23,1,8.77,8.77,0,0,1-7-4.39,10.17,10.17,0,0,1-1.14-7.34,16.14,16.14,0,0,1,8.85-11.64,11.85,11.85,0,0,1,8.86-1.15,8.5,8.5,0,0,1,5.49,4.31C154.93,99,155,101.6,154.31,104.68Z"
style="fill: #ebebeb" style="fill: #ebebeb"
></path> />
</g> </g>
<g id="freepik--Table--inject-64"> <g id="freepik--Table--inject-64">
<path <path
d="M470.2,456.79c0,.14-98.59.26-220.19.26s-220.21-.12-220.21-.26,98.57-.26,220.21-.26S470.2,456.64,470.2,456.79Z" d="M470.2,456.79c0,.14-98.59.26-220.19.26s-220.21-.12-220.21-.26,98.57-.26,220.21-.26S470.2,456.64,470.2,456.79Z"
style="fill: #263238" style="fill: #263238"
></path> />
</g> </g>
<g id="freepik--paw-2--inject-64"> <g id="freepik--paw-2--inject-64">
<path <path
d="M218.45,357.32a19.38,19.38,0,0,0-4.19-5.62s-.78-9.1-4.38-14.47-9-9.71-15.48-5.61l.87-.5c-3.27-2.51-8.53-2.78-12.42-1.39a16.42,16.42,0,0,0-5.31,3,38.48,38.48,0,0,0-7.49,8.82s-6.34.4-8.85,10.41a181.72,181.72,0,0,0-3.2,18.86s.75,18.35,1.84,23.88-2.48,17.21-2.68,19.56-1.31,4.13-2.88,13.37-4.35,28.91-4.35,28.91h56.42s1.41-25.57,1.27-28.37a103.9,103.9,0,0,1,2.2-20c1.56-6.47,7.6-26.87,7.6-26.87C219.63,371.74,220.28,360.93,218.45,357.32Z" d="M218.45,357.32a19.38,19.38,0,0,0-4.19-5.62s-.78-9.1-4.38-14.47-9-9.71-15.48-5.61l.87-.5c-3.27-2.51-8.53-2.78-12.42-1.39a16.42,16.42,0,0,0-5.31,3,38.48,38.48,0,0,0-7.49,8.82s-6.34.4-8.85,10.41a181.72,181.72,0,0,0-3.2,18.86s.75,18.35,1.84,23.88-2.48,17.21-2.68,19.56-1.31,4.13-2.88,13.37-4.35,28.91-4.35,28.91h56.42s1.41-25.57,1.27-28.37a103.9,103.9,0,0,1,2.2-20c1.56-6.47,7.6-26.87,7.6-26.87C219.63,371.74,220.28,360.93,218.45,357.32Z"
style="fill: #455a64" style="fill: #455a64"
></path> />
<g style="opacity: 0.30000000000000004"> <g style="opacity: 0.30000000000000004">
<path <path
d="M174.58,353.27l-7.15-.36a15.53,15.53,0,0,0-5.17,7.33,4.22,4.22,0,0,0,0,3.36c.73,1.3,2.45,1.62,3.94,1.67a14.28,14.28,0,0,0,6.63-1.18,7.7,7.7,0,0,0,4.26-5A5.31,5.31,0,0,0,174.58,353.27Z" d="M174.58,353.27l-7.15-.36a15.53,15.53,0,0,0-5.17,7.33,4.22,4.22,0,0,0,0,3.36c.73,1.3,2.45,1.62,3.94,1.67a14.28,14.28,0,0,0,6.63-1.18,7.7,7.7,0,0,0,4.26-5A5.31,5.31,0,0,0,174.58,353.27Z"
></path> />
</g> </g>
<g style="opacity: 0.30000000000000004"> <g style="opacity: 0.30000000000000004">
<path <path
d="M208.14,347.06l-2.5-2-8.59-1.21a4.1,4.1,0,0,0-2.06.06,3.08,3.08,0,0,0-1.63,2,6.64,6.64,0,0,0,1.71,6.68,8.68,8.68,0,0,0,6.68,2.29,7.85,7.85,0,0,0,5.2-2.35A5.39,5.39,0,0,0,208.14,347.06Z" d="M208.14,347.06l-2.5-2-8.59-1.21a4.1,4.1,0,0,0-2.06.06,3.08,3.08,0,0,0-1.63,2,6.64,6.64,0,0,0,1.71,6.68,8.68,8.68,0,0,0,6.68,2.29,7.85,7.85,0,0,0,5.2-2.35A5.39,5.39,0,0,0,208.14,347.06Z"
></path> />
</g> </g>
<path <path
d="M201.21,333.54a5.17,5.17,0,0,1,3.34.74c1.83,1.1,4.94,3.43,4.87,6.62-.09,4.51-.22,9.78-5.58,11s-12-2.51-9.1-10.21C197,335.69,198.93,333.85,201.21,333.54Z" d="M201.21,333.54a5.17,5.17,0,0,1,3.34.74c1.83,1.1,4.94,3.43,4.87,6.62-.09,4.51-.22,9.78-5.58,11s-12-2.51-9.1-10.21C197,335.69,198.93,333.85,201.21,333.54Z"
style="fill: #263238" style="fill: #263238"
></path> />
<g style="opacity: 0.30000000000000004"> <g style="opacity: 0.30000000000000004">
<path <path
d="M189.62,343.72l-3.69-4.43a15.61,15.61,0,0,0-3.66-.4,5.21,5.21,0,0,0-3.37,1.29,5.38,5.38,0,0,0-1.48,3.66,7.84,7.84,0,0,0,3.17,6.8,6.51,6.51,0,0,0,7.35.05A5.6,5.6,0,0,0,189.62,343.72Z" d="M189.62,343.72l-3.69-4.43a15.61,15.61,0,0,0-3.66-.4,5.21,5.21,0,0,0-3.37,1.29,5.38,5.38,0,0,0-1.48,3.66,7.84,7.84,0,0,0,3.17,6.8,6.51,6.51,0,0,0,7.35.05A5.6,5.6,0,0,0,189.62,343.72Z"
></path> />
</g> </g>
<path <path
d="M187,331.18a5,5,0,0,1,5.49,1,1.81,1.81,0,0,1,.48.73c.29,1.11-.41,9.76-4.92,14.19s-10.5-1.11-10-5.65C178.41,337.74,182.69,333,187,331.18Z" d="M187,331.18a5,5,0,0,1,5.49,1,1.81,1.81,0,0,1,.48.73c.29,1.11-.41,9.76-4.92,14.19s-10.5-1.11-10-5.65C178.41,337.74,182.69,333,187,331.18Z"
style="fill: #263238" style="fill: #263238"
></path> />
<path <path
d="M171.65,345.34s-3-3.08-6,2.39-4,13.57-.85,14.11,10.39-1.22,10.67-5.61S173.42,346.31,171.65,345.34Z" d="M171.65,345.34s-3-3.08-6,2.39-4,13.57-.85,14.11,10.39-1.22,10.67-5.61S173.42,346.31,171.65,345.34Z"
style="fill: #263238" style="fill: #263238"
></path> />
<g style="opacity: 0.30000000000000004"> <g style="opacity: 0.30000000000000004">
<path <path
d="M211.57,363.14a58.27,58.27,0,0,0-5.87-4,3.37,3.37,0,0,0-1.56-.6c-1.25,0-2.13,1.23-2.51,2.41a8.62,8.62,0,0,0,.69,7,7.39,7.39,0,0,0,6,3.63,6.5,6.5,0,0,0,6-3.45Z" d="M211.57,363.14a58.27,58.27,0,0,0-5.87-4,3.37,3.37,0,0,0-1.56-.6c-1.25,0-2.13,1.23-2.51,2.41a8.62,8.62,0,0,0,.69,7,7.39,7.39,0,0,0,6,3.63,6.5,6.5,0,0,0,6-3.45Z"
></path> />
</g> </g>
<path <path
d="M217.94,361.2a7.77,7.77,0,0,0-12.05-6.56c-.21.15-.42.31-.62.48-3,2.62-3.55,7.88-.94,10.63s8.24,7.66,12.17.43A11.18,11.18,0,0,0,217.94,361.2Z" d="M217.94,361.2a7.77,7.77,0,0,0-12.05-6.56c-.21.15-.42.31-.62.48-3,2.62-3.55,7.88-.94,10.63s8.24,7.66,12.17.43A11.18,11.18,0,0,0,217.94,361.2Z"
style="fill: #263238" style="fill: #263238"
></path> />
<g style="opacity: 0.30000000000000004"> <g style="opacity: 0.30000000000000004">
<path <path
d="M187.7,378.73a20.8,20.8,0,0,0-14.2,1,7,7,0,0,0-3.32,2.59c-1.47,2.55.28,6,2.9,7.33s5.74,1.13,8.66.78,6-.8,8.75.13a28.54,28.54,0,0,1,4.6,2.36,9,9,0,0,0,4.9,1.38,4,4,0,0,0,3.72-3Z" d="M187.7,378.73a20.8,20.8,0,0,0-14.2,1,7,7,0,0,0-3.32,2.59c-1.47,2.55.28,6,2.9,7.33s5.74,1.13,8.66.78,6-.8,8.75.13a28.54,28.54,0,0,1,4.6,2.36,9,9,0,0,0,4.9,1.38,4,4,0,0,0,3.72-3Z"
></path> />
</g> </g>
<path <path
d="M207.25,378.45a12.54,12.54,0,0,0-4.93-5.15c-2-1.17-5.06-3.27-6.64-6-2.46-4.2-1.9-7.38-6.86-7.65s-4.63,4.06-10.69,6.05c-9.69,3.17-11.81,5.51-12.74,9.78s.08,6.37,2.49,9.19,10.46-1.5,16.91-1.27,11.32,6.93,15.23,8.84,7.7-2,8.32-8.12A10.44,10.44,0,0,0,207.25,378.45Z" d="M207.25,378.45a12.54,12.54,0,0,0-4.93-5.15c-2-1.17-5.06-3.27-6.64-6-2.46-4.2-1.9-7.38-6.86-7.65s-4.63,4.06-10.69,6.05c-9.69,3.17-11.81,5.51-12.74,9.78s.08,6.37,2.49,9.19,10.46-1.5,16.91-1.27,11.32,6.93,15.23,8.84,7.7-2,8.32-8.12A10.44,10.44,0,0,0,207.25,378.45Z"
style="fill: #263238" style="fill: #263238"
></path> />
<path <path
d="M183.57,441.29c2.2-.37,4.7-1,5.71-2.93a5.1,5.1,0,0,0-.42-4.75c-1.9-3.33-6-5-9.81-4.78a10,10,0,0,0-5.45,1.86,6.56,6.56,0,0,0-2.68,5,3.9,3.9,0,0,0,1.88,3.56,7.9,7.9,0,0,0,3.57.36,12,12,0,0,1,6.11,1.61" d="M183.57,441.29c2.2-.37,4.7-1,5.71-2.93a5.1,5.1,0,0,0-.42-4.75c-1.9-3.33-6-5-9.81-4.78a10,10,0,0,0-5.45,1.86,6.56,6.56,0,0,0-2.68,5,3.9,3.9,0,0,0,1.88,3.56,7.9,7.9,0,0,0,3.57.36,12,12,0,0,1,6.11,1.61"
style="fill: #263238" style="fill: #263238"
></path> />
<path <path
d="M170.79,409.22a7.69,7.69,0,0,1,1.26-.22c.83-.13,2-.34,3.54-.7a39.53,39.53,0,0,0,11.72-4.88l1.13-.7-.83,1-4.4,5.56a1.85,1.85,0,0,0-.35.74.43.43,0,0,0,.26.49,3.62,3.62,0,0,0,1.73-.31,19.83,19.83,0,0,0,7.24-4.2l1.26-1.15-.86,1.47a26.41,26.41,0,0,0-2.34,5.21,25.82,25.82,0,0,0-.71,2.6,9,9,0,0,0-.32,2.5,1.56,1.56,0,0,0,.39,1,1,1,0,0,0,.93.24,5.58,5.58,0,0,0,1.88-1.14c1.17-.92,2.22-1.81,3.14-2.66a52.93,52.93,0,0,0,4.12-4.26l1-1.21a2.77,2.77,0,0,1,.38-.41,2.47,2.47,0,0,1-.3.46c-.21.3-.53.74-1,1.28a46.67,46.67,0,0,1-4,4.39c-.92.87-2,1.79-3.13,2.73a5.92,5.92,0,0,1-2,1.25,1.46,1.46,0,0,1-1.33-.35,2,2,0,0,1-.54-1.27,9.86,9.86,0,0,1,.31-2.65c.19-.87.42-1.76.71-2.66a27,27,0,0,1,2.37-5.31l.39.32a20.62,20.62,0,0,1-3.72,2.7,20.13,20.13,0,0,1-3.71,1.61l-1,.28a1.86,1.86,0,0,1-1.1,0,.94.94,0,0,1-.59-1,2.23,2.23,0,0,1,.44-1l4.45-5.55.3.34a37.94,37.94,0,0,1-11.9,4.76,33.75,33.75,0,0,1-3.58.57c-.42.05-.74.06-.95.08Z" d="M170.79,409.22a7.69,7.69,0,0,1,1.26-.22c.83-.13,2-.34,3.54-.7a39.53,39.53,0,0,0,11.72-4.88l1.13-.7-.83,1-4.4,5.56a1.85,1.85,0,0,0-.35.74.43.43,0,0,0,.26.49,3.62,3.62,0,0,0,1.73-.31,19.83,19.83,0,0,0,7.24-4.2l1.26-1.15-.86,1.47a26.41,26.41,0,0,0-2.34,5.21,25.82,25.82,0,0,0-.71,2.6,9,9,0,0,0-.32,2.5,1.56,1.56,0,0,0,.39,1,1,1,0,0,0,.93.24,5.58,5.58,0,0,0,1.88-1.14c1.17-.92,2.22-1.81,3.14-2.66a52.93,52.93,0,0,0,4.12-4.26l1-1.21a2.77,2.77,0,0,1,.38-.41,2.47,2.47,0,0,1-.3.46c-.21.3-.53.74-1,1.28a46.67,46.67,0,0,1-4,4.39c-.92.87-2,1.79-3.13,2.73a5.92,5.92,0,0,1-2,1.25,1.46,1.46,0,0,1-1.33-.35,2,2,0,0,1-.54-1.27,9.86,9.86,0,0,1,.31-2.65c.19-.87.42-1.76.71-2.66a27,27,0,0,1,2.37-5.31l.39.32a20.62,20.62,0,0,1-3.72,2.7,20.13,20.13,0,0,1-3.71,1.61l-1,.28a1.86,1.86,0,0,1-1.1,0,.94.94,0,0,1-.59-1,2.23,2.23,0,0,1,.44-1l4.45-5.55.3.34a37.94,37.94,0,0,1-11.9,4.76,33.75,33.75,0,0,1-3.58.57c-.42.05-.74.06-.95.08Z"
style="fill: #263238" style="fill: #263238"
></path> />
</g> </g>
<g id="freepik--paw-1--inject-64"> <g id="freepik--paw-1--inject-64">
<path <path
d="M111,312.07a23.82,23.82,0,0,1,6,6c2.87,4.05,4.26,17.43,3.57,29.56,0,0-3,26.25-3.57,34.51a133.83,133.83,0,0,0,1.41,25c.73,3.4,3.69,49.28,3.69,49.28H56.26s-.73-27.19-.72-38.84,1-14.08.72-17,1.64-18-.75-24.51-6.94-28.89-6.94-28.89-2.93-14.5,0-23.77,4.55-6.08,4.55-6.08S59,302.79,64,296.48a19.82,19.82,0,0,1,5.64-4.79,14.17,14.17,0,0,1,14-.08h0c6.81-6.38,14-2.17,19.33,3.65S111,312.07,111,312.07Z" d="M111,312.07a23.82,23.82,0,0,1,6,6c2.87,4.05,4.26,17.43,3.57,29.56,0,0-3,26.25-3.57,34.51a133.83,133.83,0,0,0,1.41,25c.73,3.4,3.69,49.28,3.69,49.28H56.26s-.73-27.19-.72-38.84,1-14.08.72-17,1.64-18-.75-24.51-6.94-28.89-6.94-28.89-2.93-14.5,0-23.77,4.55-6.08,4.55-6.08S59,302.79,64,296.48a19.82,19.82,0,0,1,5.64-4.79,14.17,14.17,0,0,1,14-.08h0c6.81-6.38,14-2.17,19.33,3.65S111,312.07,111,312.07Z"
style="fill: #ff725e" style="fill: #ff725e"
></path> />
<g style="opacity: 0.30000000000000004"> <g style="opacity: 0.30000000000000004">
<path <path
d="M62.19,322.25a6.61,6.61,0,0,1,4.27,6.59,9.54,9.54,0,0,1-4.17,7,17.62,17.62,0,0,1-7.88,2.83c-1.84.25-4,.22-5.18-1.22a5.2,5.2,0,0,1-.68-4.12,19.21,19.21,0,0,1,4.81-10.06" d="M62.19,322.25a6.61,6.61,0,0,1,4.27,6.59,9.54,9.54,0,0,1-4.17,7,17.62,17.62,0,0,1-7.88,2.83c-1.84.25-4,.22-5.18-1.22a5.2,5.2,0,0,1-.68-4.12,19.21,19.21,0,0,1,4.81-10.06"
></path> />
</g> </g>
<g style="opacity: 0.30000000000000004"> <g style="opacity: 0.30000000000000004">
<path <path
d="M102,307.66a6.7,6.7,0,0,1-.33,6.89,9.73,9.73,0,0,1-5.89,3.95,10.7,10.7,0,0,1-8.65-1.42,8.21,8.21,0,0,1-3.49-7.83,3.81,3.81,0,0,1,1.59-2.72,5.1,5.1,0,0,1,2.51-.51l10.78-.29" d="M102,307.66a6.7,6.7,0,0,1-.33,6.89,9.73,9.73,0,0,1-5.89,3.95,10.7,10.7,0,0,1-8.65-1.42,8.21,8.21,0,0,1-3.49-7.83,3.81,3.81,0,0,1,1.59-2.72,5.1,5.1,0,0,1,2.51-.51l10.78-.29"
></path> />
</g> </g>
<path <path
d="M93.22,292.17s8.26,2.13,9.09,7.67,1.77,12-4.55,14.64-15.17-.59-13.28-10.62S89.2,292.29,93.22,292.17Z" d="M93.22,292.17s8.26,2.13,9.09,7.67,1.77,12-4.55,14.64-15.17-.59-13.28-10.62S89.2,292.29,93.22,292.17Z"
style="fill: #263238" style="fill: #263238"
></path> />
<g style="opacity: 0.30000000000000004"> <g style="opacity: 0.30000000000000004">
<path <path
d="M78.63,307.43a7,7,0,0,1-.6,8.89,8.11,8.11,0,0,1-9,1.46,9.74,9.74,0,0,1-5.3-7.67,6.73,6.73,0,0,1,1.05-4.79A6.48,6.48,0,0,1,68.62,303a19.33,19.33,0,0,1,4.56-.27" d="M78.63,307.43a7,7,0,0,1-.6,8.89,8.11,8.11,0,0,1-9,1.46,9.74,9.74,0,0,1-5.3-7.67,6.73,6.73,0,0,1,1.05-4.79A6.48,6.48,0,0,1,68.62,303a19.33,19.33,0,0,1,4.56-.27"
></path> />
</g> </g>
<path <path
d="M76.22,291.11s3.66,1.06,4.25,2.36,1.53,12-3.07,18.41-13.1.83-13.46-4.83S70.08,292.53,76.22,291.11Z" d="M76.22,291.11s3.66,1.06,4.25,2.36,1.53,12-3.07,18.41-13.1.83-13.46-4.83S70.08,292.53,76.22,291.11Z"
style="fill: #263238" style="fill: #263238"
></path> />
<path <path
d="M55,312.48s-2.36-2.48-4.84,4.83S48,334.78,52,334.78s12.49-3.65,11.91-9.08S57.33,313.3,55,312.48Z" d="M55,312.48s-2.36-2.48-4.84,4.83S48,334.78,52,334.78s12.49-3.65,11.91-9.08S57.33,313.3,55,312.48Z"
style="fill: #263238" style="fill: #263238"
></path> />
<g style="opacity: 0.30000000000000004"> <g style="opacity: 0.30000000000000004">
<path <path
d="M113.87,332.25a8.08,8.08,0,0,1-6.58,5.47,9.2,9.2,0,0,1-8.05-3.21,10.75,10.75,0,0,1-2.31-8.45c.23-1.54,1-3.27,2.58-3.48a4.24,4.24,0,0,1,2,.4,73.59,73.59,0,0,1,8,3.67" d="M113.87,332.25a8.08,8.08,0,0,1-6.58,5.47,9.2,9.2,0,0,1-8.05-3.21,10.75,10.75,0,0,1-2.31-8.45c.23-1.54,1-3.27,2.58-3.48a4.24,4.24,0,0,1,2,.4,73.59,73.59,0,0,1,8,3.67"
></path> />
</g> </g>
<path <path
d="M110.1,314.13c1.06-.12,9.44,5.55,6.14,15.22s-11.22,4.84-15,2-4.48-9.68-1.06-13.22S110.1,314.13,110.1,314.13Z" d="M110.1,314.13c1.06-.12,9.44,5.55,6.14,15.22s-11.22,4.84-15,2-4.48-9.68-1.06-13.22S110.1,314.13,110.1,314.13Z"
style="fill: #263238" style="fill: #263238"
></path> />
<g style="opacity: 0.30000000000000004"> <g style="opacity: 0.30000000000000004">
<path <path
d="M62.85,358.77a8.62,8.62,0,0,1,3.52-3.88,25.92,25.92,0,0,1,17.19-4.16l22.23,12c0,2.14-1.84,4-3.92,4.48a11.11,11.11,0,0,1-6.3-.67,36.53,36.53,0,0,0-6.12-1.94c-3.62-.56-7.24.63-10.75,1.67s-7.28,1.94-10.77.85S61.57,362.19,62.85,358.77Z" d="M62.85,358.77a8.62,8.62,0,0,1,3.52-3.88,25.92,25.92,0,0,1,17.19-4.16l22.23,12c0,2.14-1.84,4-3.92,4.48a11.11,11.11,0,0,1-6.3-.67,36.53,36.53,0,0,0-6.12-1.94c-3.62-.56-7.24.63-10.75,1.67s-7.28,1.94-10.77.85S61.57,362.19,62.85,358.77Z"
></path> />
</g> </g>
<path <path
d="M102.9,341.87c.59.71,6.61,4.21,7.08,11.21.51,7.6-3.31,13.22-8.5,11.69S88.91,356,81,357.09s-16.91,8-20.45,5.08-5.2-5.31-5-10.74,2.36-8.74,13.58-14.64c7-3.69,5.69-8.92,11.83-9.63s6.11,3.31,10,7.95S102.9,341.87,102.9,341.87Z" d="M102.9,341.87c.59.71,6.61,4.21,7.08,11.21.51,7.6-3.31,13.22-8.5,11.69S88.91,356,81,357.09s-16.91,8-20.45,5.08-5.2-5.31-5-10.74,2.36-8.74,13.58-14.64c7-3.69,5.69-8.92,11.83-9.63s6.11,3.31,10,7.95S102.9,341.87,102.9,341.87Z"
style="fill: #263238" style="fill: #263238"
></path> />
<path <path
d="M111.29,313.66c.74-2.31-.16-5.85-1.58-8.21a.87.87,0,0,0-1.54.09,16.69,16.69,0,0,0-1.2,8.32" d="M111.29,313.66c.74-2.31-.16-5.85-1.58-8.21a.87.87,0,0,0-1.54.09,16.69,16.69,0,0,0-1.2,8.32"
style="fill: #e0e0e0" style="fill: #e0e0e0"
></path> />
<path <path
d="M107,313.86a7.35,7.35,0,0,1-.27-2.78,16.77,16.77,0,0,1,.39-3c.13-.56.29-1.14.49-1.74.11-.29.23-.59.36-.89a1.11,1.11,0,0,1,1-.66,1.17,1.17,0,0,1,1,.6c.16.28.31.57.45.85a12.86,12.86,0,0,1,.68,1.68,12.57,12.57,0,0,1,.61,3,4.87,4.87,0,0,1-.41,2.77,12.1,12.1,0,0,0,0-2.74,13.73,13.73,0,0,0-.69-2.87,14.7,14.7,0,0,0-.69-1.61c-.13-.27-.28-.54-.44-.81a.58.58,0,0,0-.56-.34.59.59,0,0,0-.54.35c-.13.28-.24.56-.35.85a17.33,17.33,0,0,0-.5,1.67,20,20,0,0,0-.49,2.94C106.91,312.8,107.06,313.85,107,313.86Z" d="M107,313.86a7.35,7.35,0,0,1-.27-2.78,16.77,16.77,0,0,1,.39-3c.13-.56.29-1.14.49-1.74.11-.29.23-.59.36-.89a1.11,1.11,0,0,1,1-.66,1.17,1.17,0,0,1,1,.6c.16.28.31.57.45.85a12.86,12.86,0,0,1,.68,1.68,12.57,12.57,0,0,1,.61,3,4.87,4.87,0,0,1-.41,2.77,12.1,12.1,0,0,0,0-2.74,13.73,13.73,0,0,0-.69-2.87,14.7,14.7,0,0,0-.69-1.61c-.13-.27-.28-.54-.44-.81a.58.58,0,0,0-.56-.34.59.59,0,0,0-.54.35c-.13.28-.24.56-.35.85a17.33,17.33,0,0,0-.5,1.67,20,20,0,0,0-.49,2.94C106.91,312.8,107.06,313.85,107,313.86Z"
style="fill: #263238" style="fill: #263238"
></path> />
<path <path
d="M108.79,305.69a8.48,8.48,0,0,1,.57,7.57c-.15,0,.26-1.73.09-3.81S108.65,305.75,108.79,305.69Z" d="M108.79,305.69a8.48,8.48,0,0,1,.57,7.57c-.15,0,.26-1.73.09-3.81S108.65,305.75,108.79,305.69Z"
style="fill: #263238" style="fill: #263238"
></path> />
<path <path
d="M91.94,292.66c.73-2.31-.16-5.85-1.59-8.21a.87.87,0,0,0-1.54.09,16.58,16.58,0,0,0-1.19,8.32" d="M91.94,292.66c.73-2.31-.16-5.85-1.59-8.21a.87.87,0,0,0-1.54.09,16.58,16.58,0,0,0-1.19,8.32"
style="fill: #e0e0e0" style="fill: #e0e0e0"
></path> />
<path <path
d="M87.62,292.86a6.88,6.88,0,0,1-.27-2.78,17.39,17.39,0,0,1,.38-3,15.32,15.32,0,0,1,.5-1.74c.1-.3.22-.6.35-.9a1.13,1.13,0,0,1,2-.06c.17.29.32.57.46.85a16.43,16.43,0,0,1,.68,1.68,12.51,12.51,0,0,1,.6,3,4.93,4.93,0,0,1-.4,2.77,13.4,13.4,0,0,0,0-2.74,13.13,13.13,0,0,0-.69-2.87,14.59,14.59,0,0,0-.68-1.61c-.14-.27-.29-.54-.44-.81a.63.63,0,0,0-.57-.34.61.61,0,0,0-.54.35c-.12.28-.24.57-.34.85a16.8,16.8,0,0,0-.51,1.68,19.84,19.84,0,0,0-.49,2.93C87.56,291.8,87.7,292.85,87.62,292.86Z" d="M87.62,292.86a6.88,6.88,0,0,1-.27-2.78,17.39,17.39,0,0,1,.38-3,15.32,15.32,0,0,1,.5-1.74c.1-.3.22-.6.35-.9a1.13,1.13,0,0,1,2-.06c.17.29.32.57.46.85a16.43,16.43,0,0,1,.68,1.68,12.51,12.51,0,0,1,.6,3,4.93,4.93,0,0,1-.4,2.77,13.4,13.4,0,0,0,0-2.74,13.13,13.13,0,0,0-.69-2.87,14.59,14.59,0,0,0-.68-1.61c-.14-.27-.29-.54-.44-.81a.63.63,0,0,0-.57-.34.61.61,0,0,0-.54.35c-.12.28-.24.57-.34.85a16.8,16.8,0,0,0-.51,1.68,19.84,19.84,0,0,0-.49,2.93C87.56,291.8,87.7,292.85,87.62,292.86Z"
style="fill: #263238" style="fill: #263238"
></path> />
<path <path
d="M89.44,284.69a8.52,8.52,0,0,1,.56,7.57c-.15,0,.26-1.72.09-3.81S89.29,284.75,89.44,284.69Z" d="M89.44,284.69a8.52,8.52,0,0,1,.56,7.57c-.15,0,.26-1.72.09-3.81S89.29,284.75,89.44,284.69Z"
style="fill: #263238" style="fill: #263238"
></path> />
<path <path
d="M80,291.88c.74-2.31-.16-5.84-1.58-8.21a.87.87,0,0,0-1.54.09,16.73,16.73,0,0,0-1.2,8.33" d="M80,291.88c.74-2.31-.16-5.84-1.58-8.21a.87.87,0,0,0-1.54.09,16.73,16.73,0,0,0-1.2,8.33"
style="fill: #e0e0e0" style="fill: #e0e0e0"
></path> />
<path <path
d="M75.66,292.09a7.48,7.48,0,0,1-.27-2.79,16.67,16.67,0,0,1,.39-3c.13-.56.29-1.15.49-1.74.11-.3.23-.59.36-.9a1.11,1.11,0,0,1,1-.65,1.15,1.15,0,0,1,1,.6c.16.28.31.56.45.85a13.29,13.29,0,0,1,1.29,4.67,4.71,4.71,0,0,1-.41,2.77,12,12,0,0,0,0-2.73,13.66,13.66,0,0,0-.69-2.88,15.45,15.45,0,0,0-.68-1.61q-.21-.41-.45-.81a.6.6,0,0,0-.56-.34.59.59,0,0,0-.54.35c-.12.28-.24.57-.35.85a17.5,17.5,0,0,0-.5,1.68,20,20,0,0,0-.49,2.94C75.6,291,75.75,292.08,75.66,292.09Z" d="M75.66,292.09a7.48,7.48,0,0,1-.27-2.79,16.67,16.67,0,0,1,.39-3c.13-.56.29-1.15.49-1.74.11-.3.23-.59.36-.9a1.11,1.11,0,0,1,1-.65,1.15,1.15,0,0,1,1,.6c.16.28.31.56.45.85a13.29,13.29,0,0,1,1.29,4.67,4.71,4.71,0,0,1-.41,2.77,12,12,0,0,0,0-2.73,13.66,13.66,0,0,0-.69-2.88,15.45,15.45,0,0,0-.68-1.61q-.21-.41-.45-.81a.6.6,0,0,0-.56-.34.59.59,0,0,0-.54.35c-.12.28-.24.57-.35.85a17.5,17.5,0,0,0-.5,1.68,20,20,0,0,0-.49,2.94C75.6,291,75.75,292.08,75.66,292.09Z"
style="fill: #263238" style="fill: #263238"
></path> />
<path <path
d="M77.48,283.92a8.45,8.45,0,0,1,.57,7.56c-.15,0,.26-1.72.09-3.81S77.34,284,77.48,283.92Z" d="M77.48,283.92a8.45,8.45,0,0,1,.57,7.56c-.15,0,.26-1.72.09-3.81S77.34,284,77.48,283.92Z"
style="fill: #263238" style="fill: #263238"
></path> />
<path <path
d="M60,313c.74-2.31-.16-5.85-1.59-8.21a.86.86,0,0,0-1.53.09,16.69,16.69,0,0,0-1.2,8.32" d="M60,313c.74-2.31-.16-5.85-1.59-8.21a.86.86,0,0,0-1.53.09,16.69,16.69,0,0,0-1.2,8.32"
style="fill: #e0e0e0" style="fill: #e0e0e0"
></path> />
<path <path
d="M55.63,313.23a6.88,6.88,0,0,1-.27-2.78,16.56,16.56,0,0,1,.39-3,13.88,13.88,0,0,1,.49-1.74c.11-.3.22-.6.36-.9a1.12,1.12,0,0,1,2-.05c.17.28.32.56.46.84a15.18,15.18,0,0,1,.68,1.68,12,12,0,0,1,.6,3A4.83,4.83,0,0,1,60,313a12.81,12.81,0,0,0,0-2.73,13.66,13.66,0,0,0-.69-2.88,14.7,14.7,0,0,0-.69-1.61c-.13-.27-.28-.54-.44-.81a.61.61,0,0,0-.56-.34.58.58,0,0,0-.54.35c-.13.28-.25.57-.35.85a14.44,14.44,0,0,0-.5,1.68,18.6,18.6,0,0,0-.49,2.93C55.57,312.17,55.71,313.22,55.63,313.23Z" d="M55.63,313.23a6.88,6.88,0,0,1-.27-2.78,16.56,16.56,0,0,1,.39-3,13.88,13.88,0,0,1,.49-1.74c.11-.3.22-.6.36-.9a1.12,1.12,0,0,1,2-.05c.17.28.32.56.46.84a15.18,15.18,0,0,1,.68,1.68,12,12,0,0,1,.6,3A4.83,4.83,0,0,1,60,313a12.81,12.81,0,0,0,0-2.73,13.66,13.66,0,0,0-.69-2.88,14.7,14.7,0,0,0-.69-1.61c-.13-.27-.28-.54-.44-.81a.61.61,0,0,0-.56-.34.58.58,0,0,0-.54.35c-.13.28-.25.57-.35.85a14.44,14.44,0,0,0-.5,1.68,18.6,18.6,0,0,0-.49,2.93C55.57,312.17,55.71,313.22,55.63,313.23Z"
style="fill: #263238" style="fill: #263238"
></path> />
<path <path
d="M57.45,305.07a8.54,8.54,0,0,1,.57,7.56c-.15,0,.25-1.72.09-3.81S57.3,305.13,57.45,305.07Z" d="M57.45,305.07a8.54,8.54,0,0,1,.57,7.56c-.15,0,.25-1.72.09-3.81S57.3,305.13,57.45,305.07Z"
style="fill: #263238" style="fill: #263238"
></path> />
<path <path
d="M91.52,428.23c2.61-.91,5.56-2.14,6.39-4.78a6.4,6.4,0,0,0-1.51-5.73c-3-3.68-8.37-4.88-13-3.81a12.36,12.36,0,0,0-6.29,3.41A8.13,8.13,0,0,0,74.85,424a4.81,4.81,0,0,0,3,4c1.43.45,3,0,4.45-.3a15,15,0,0,1,7.82.71" d="M91.52,428.23c2.61-.91,5.56-2.14,6.39-4.78a6.4,6.4,0,0,0-1.51-5.73c-3-3.68-8.37-4.88-13-3.81a12.36,12.36,0,0,0-6.29,3.41A8.13,8.13,0,0,0,74.85,424a4.81,4.81,0,0,0,3,4c1.43.45,3,0,4.45-.3a15,15,0,0,1,7.82.71"
style="fill: #263238" style="fill: #263238"
></path> />
<path <path
d="M69.18,391.59a2,2,0,0,1,.38-.14l1.13-.37c1-.33,2.42-.82,4.2-1.57a49.44,49.44,0,0,0,13.37-8.41l1-.88-.65,1.16-4.24,7.73a2.22,2.22,0,0,0-.28,1,.58.58,0,0,0,.47.61,4.44,4.44,0,0,0,2.09-.75,23.93,23.93,0,0,0,4.11-2.68,24.94,24.94,0,0,0,3.92-4l1-1.34-.6,1.59a33.26,33.26,0,0,0-1.79,6.88,32.39,32.39,0,0,0-.32,3.35,11.2,11.2,0,0,0,.13,3.14,2,2,0,0,0,.71,1.17,1.3,1.3,0,0,0,1.24.11,7,7,0,0,0,2.08-1.81c1.24-1.37,2.34-2.69,3.29-3.92a63.55,63.55,0,0,0,4.15-6.08l1-1.72a3.62,3.62,0,0,1,.36-.58,3.43,3.43,0,0,1-.28.63c-.2.41-.51,1-.93,1.76a55.63,55.63,0,0,1-4,6.19c-.94,1.26-2,2.6-3.27,4a7.15,7.15,0,0,1-2.22,1.94,1.74,1.74,0,0,1-1.65-.14,2.5,2.5,0,0,1-.9-1.41,11.72,11.72,0,0,1-.17-3.29c0-1.12.15-2.25.31-3.4a34,34,0,0,1,1.8-7l.44.25a24.71,24.71,0,0,1-4,4.07,24.39,24.39,0,0,1-4.2,2.74c-.37.2-.74.37-1.11.54a2.26,2.26,0,0,1-1.31.26,1.12,1.12,0,0,1-.89-1.1,3,3,0,0,1,.33-1.25l4.3-7.72.36.28A47.63,47.63,0,0,1,75,389.76a42.15,42.15,0,0,1-4.25,1.46c-.5.14-.89.23-1.16.3S69.19,391.61,69.18,391.59Z" d="M69.18,391.59a2,2,0,0,1,.38-.14l1.13-.37c1-.33,2.42-.82,4.2-1.57a49.44,49.44,0,0,0,13.37-8.41l1-.88-.65,1.16-4.24,7.73a2.22,2.22,0,0,0-.28,1,.58.58,0,0,0,.47.61,4.44,4.44,0,0,0,2.09-.75,23.93,23.93,0,0,0,4.11-2.68,24.94,24.94,0,0,0,3.92-4l1-1.34-.6,1.59a33.26,33.26,0,0,0-1.79,6.88,32.39,32.39,0,0,0-.32,3.35,11.2,11.2,0,0,0,.13,3.14,2,2,0,0,0,.71,1.17,1.3,1.3,0,0,0,1.24.11,7,7,0,0,0,2.08-1.81c1.24-1.37,2.34-2.69,3.29-3.92a63.55,63.55,0,0,0,4.15-6.08l1-1.72a3.62,3.62,0,0,1,.36-.58,3.43,3.43,0,0,1-.28.63c-.2.41-.51,1-.93,1.76a55.63,55.63,0,0,1-4,6.19c-.94,1.26-2,2.6-3.27,4a7.15,7.15,0,0,1-2.22,1.94,1.74,1.74,0,0,1-1.65-.14,2.5,2.5,0,0,1-.9-1.41,11.72,11.72,0,0,1-.17-3.29c0-1.12.15-2.25.31-3.4a34,34,0,0,1,1.8-7l.44.25a24.71,24.71,0,0,1-4,4.07,24.39,24.39,0,0,1-4.2,2.74c-.37.2-.74.37-1.11.54a2.26,2.26,0,0,1-1.31.26,1.12,1.12,0,0,1-.89-1.1,3,3,0,0,1,.33-1.25l4.3-7.72.36.28A47.63,47.63,0,0,1,75,389.76a42.15,42.15,0,0,1-4.25,1.46c-.5.14-.89.23-1.16.3S69.19,391.61,69.18,391.59Z"
style="fill: #263238" style="fill: #263238"
></path> />
</g> </g>
<g id="freepik--Dog--inject-64"> <g id="freepik--Dog--inject-64">
<path <path
d="M453.41,415.72l-28.19-73.18-6.08,17.36L368.08,248.82,341.77,194.1l-48.09-21L239,192.46s-13.81,37-15.47,45.85,4.42,38.14,4.42,38.14l15.47,37,9.83,53.26s-3.75,29.09-3.22,44,7.53,45.76,7.53,45.76H462.25Z" d="M453.41,415.72l-28.19-73.18-6.08,17.36L368.08,248.82,341.77,194.1l-48.09-21L239,192.46s-13.81,37-15.47,45.85,4.42,38.14,4.42,38.14l15.47,37,9.83,53.26s-3.75,29.09-3.22,44,7.53,45.76,7.53,45.76H462.25Z"
style="fill: #ff725e" style="fill: #ff725e"
></path> />
<g style="opacity: 0.5"> <g style="opacity: 0.5">
<path <path
d="M386.08,436.44c.3-29.16-5.93-50.9-14.09-72.64a8.48,8.48,0,0,0-5.59-4.88c-4.61-1.28-8.63,3.08-11.76,6.68s-8.49,7.08-12.26,4.15c-4.19-3.26-1.12-9.89,2.15-14.08,6.32-8.08,12.68-16.34,16.41-25.9s7.52-20.75,2.78-29.85c-10.11,13.24-24.68,24.77-49.28,32.55-20.89,6.75-44.8,5.06-62.57,0,13,7.41,25.06,18.35,36,28.55,4.24,4,8.65,9.67,6.39,15-1.69,4-6.45,5.73-10.77,6.19s-8.86.16-12.82,2c-6.95,3.16-9.72,11.73-9.67,19.37.09,17.6,6.25,40.35,19.16,53H385.38C386.63,450.06,386,440.53,386.08,436.44Z" d="M386.08,436.44c.3-29.16-5.93-50.9-14.09-72.64a8.48,8.48,0,0,0-5.59-4.88c-4.61-1.28-8.63,3.08-11.76,6.68s-8.49,7.08-12.26,4.15c-4.19-3.26-1.12-9.89,2.15-14.08,6.32-8.08,12.68-16.34,16.41-25.9s7.52-20.75,2.78-29.85c-10.11,13.24-24.68,24.77-49.28,32.55-20.89,6.75-44.8,5.06-62.57,0,13,7.41,25.06,18.35,36,28.55,4.24,4,8.65,9.67,6.39,15-1.69,4-6.45,5.73-10.77,6.19s-8.86.16-12.82,2c-6.95,3.16-9.72,11.73-9.67,19.37.09,17.6,6.25,40.35,19.16,53H385.38C386.63,450.06,386,440.53,386.08,436.44Z"
style="fill: #fff" style="fill: #fff"
></path> />
</g> </g>
<path <path
d="M362.63,309.3s-.13.1-.41.25l-1.21.62c-.53.26-1.18.59-1.91,1s-1.59.84-2.49,1.39c-1.83,1.06-3.94,2.43-6.21,4.07a70.57,70.57,0,0,0-13.12,12.49,73.31,73.31,0,0,0-4.37,6c-.6.87-1.07,1.71-1.51,2.42s-.8,1.34-1.09,1.86l-.68,1.18c-.16.27-.25.41-.27.4a2.13,2.13,0,0,1,.18-.44l.59-1.24c.26-.53.59-1.18,1-1.91s.87-1.58,1.45-2.47a65.28,65.28,0,0,1,4.31-6.1,71.9,71.9,0,0,1,6.17-6.75,73,73,0,0,1,7-5.83,63.84,63.84,0,0,1,6.31-4c.91-.54,1.78-.95,2.53-1.33s1.42-.69,2-.92l1.26-.53A2.27,2.27,0,0,1,362.63,309.3Z" d="M362.63,309.3s-.13.1-.41.25l-1.21.62c-.53.26-1.18.59-1.91,1s-1.59.84-2.49,1.39c-1.83,1.06-3.94,2.43-6.21,4.07a70.57,70.57,0,0,0-13.12,12.49,73.31,73.31,0,0,0-4.37,6c-.6.87-1.07,1.71-1.51,2.42s-.8,1.34-1.09,1.86l-.68,1.18c-.16.27-.25.41-.27.4a2.13,2.13,0,0,1,.18-.44l.59-1.24c.26-.53.59-1.18,1-1.91s.87-1.58,1.45-2.47a65.28,65.28,0,0,1,4.31-6.1,71.9,71.9,0,0,1,6.17-6.75,73,73,0,0,1,7-5.83,63.84,63.84,0,0,1,6.31-4c.91-.54,1.78-.95,2.53-1.33s1.42-.69,2-.92l1.26-.53A2.27,2.27,0,0,1,362.63,309.3Z"
style="fill: #263238" style="fill: #263238"
></path> />
<path <path
d="M381.33,235.86a59.3,59.3,0,0,0-29.41-33.59s-3.7-5.57-15.5-16.56S303,167.12,287.16,165.6c-.63-.06-1.27-.1-1.93-.12-15.89-.41-39.9,11.2-39.9,11.2-15.27,4.23-35.19,33.08-39,44.46s-1.41,32.69-1.41,32.69-8.28,18.88-3.09,37.29C211,323.55,267,349.56,321.77,328.65S389.49,260.15,381.33,235.86Z" d="M381.33,235.86a59.3,59.3,0,0,0-29.41-33.59s-3.7-5.57-15.5-16.56S303,167.12,287.16,165.6c-.63-.06-1.27-.1-1.93-.12-15.89-.41-39.9,11.2-39.9,11.2-15.27,4.23-35.19,33.08-39,44.46s-1.41,32.69-1.41,32.69-8.28,18.88-3.09,37.29C211,323.55,267,349.56,321.77,328.65S389.49,260.15,381.33,235.86Z"
style="fill: #ff725e" style="fill: #ff725e"
></path> />
<g style="opacity: 0.5"> <g style="opacity: 0.5">
<path <path
d="M321.35,330.23c21.38-8,43.34-26.49,52.63-43.54,3.3-12.49,7-26.57,7-26.57l-15.45-48.43a61.29,61.29,0,0,0-6.92-5.52c-5.34.83-10.33,4.56-13.45,9.15-4.13,6.08-5.82,13.42-7.95,20.45s-5,14.24-10.71,18.87c-6.12,5-16.3,3.82-24.16,3.16.76,7.18,3.27,16.65,4,23.83l-14.59,4.43a71,71,0,0,1-10.9-22c-3.07,3.67-6.17,7.37-10,10.19s-8.61,4.7-13.36,4.22c-6.65-.67-11.92-5.66-17.77-8.92a36.77,36.77,0,0,0-28.27-3A36.4,36.4,0,0,0,200,272.4a76.75,76.75,0,0,0,1.81,18.72c3.61,17.55,22.63,33.09,44.7,39.8C266.86,337.11,294.92,340.07,321.35,330.23Z" d="M321.35,330.23c21.38-8,43.34-26.49,52.63-43.54,3.3-12.49,7-26.57,7-26.57l-15.45-48.43a61.29,61.29,0,0,0-6.92-5.52c-5.34.83-10.33,4.56-13.45,9.15-4.13,6.08-5.82,13.42-7.95,20.45s-5,14.24-10.71,18.87c-6.12,5-16.3,3.82-24.16,3.16.76,7.18,3.27,16.65,4,23.83l-14.59,4.43a71,71,0,0,1-10.9-22c-3.07,3.67-6.17,7.37-10,10.19s-8.61,4.7-13.36,4.22c-6.65-.67-11.92-5.66-17.77-8.92a36.77,36.77,0,0,0-28.27-3A36.4,36.4,0,0,0,200,272.4a76.75,76.75,0,0,0,1.81,18.72c3.61,17.55,22.63,33.09,44.7,39.8C266.86,337.11,294.92,340.07,321.35,330.23Z"
style="fill: #fff" style="fill: #fff"
></path> />
</g> </g>
<path <path
d="M305.74,277.65a29.93,29.93,0,0,0-11,2.24,16.6,16.6,0,0,0-8.23,7.42,8,8,0,0,0-.9,5.31c.8,3.47,4.5,5.3,7.78,6.67s7.1,2.85,10.68,1.95c2.69-.67,4.89-2.58,6.79-4.6,2.56-2.72,4.89-6,5.06-9.72s-1.57-9.34-10.18-9.27" d="M305.74,277.65a29.93,29.93,0,0,0-11,2.24,16.6,16.6,0,0,0-8.23,7.42,8,8,0,0,0-.9,5.31c.8,3.47,4.5,5.3,7.78,6.67s7.1,2.85,10.68,1.95c2.69-.67,4.89-2.58,6.79-4.6,2.56-2.72,4.89-6,5.06-9.72s-1.57-9.34-10.18-9.27"
style="fill: #263238" style="fill: #263238"
></path> />
<path <path
d="M304.54,298.64a10.86,10.86,0,0,1,.6,1.6,27.81,27.81,0,0,1,1.17,4.54,12.61,12.61,0,0,1-.66,6.91,8.09,8.09,0,0,1-2.5,3.33,9.87,9.87,0,0,1-4.08,1.81,20,20,0,0,1-8.51-.25,21.44,21.44,0,0,1-6.4-2.73,19.41,19.41,0,0,1-3.64-3,11.7,11.7,0,0,1-.84-.95,1.49,1.49,0,0,1-.26-.36,28.42,28.42,0,0,0,4.94,4,21.84,21.84,0,0,0,6.31,2.57,20,20,0,0,0,8.29.21,9.61,9.61,0,0,0,3.88-1.7,7.77,7.77,0,0,0,2.37-3.12,12.53,12.53,0,0,0,.73-6.67,34.3,34.3,0,0,0-1-4.53A10.93,10.93,0,0,1,304.54,298.64Z" d="M304.54,298.64a10.86,10.86,0,0,1,.6,1.6,27.81,27.81,0,0,1,1.17,4.54,12.61,12.61,0,0,1-.66,6.91,8.09,8.09,0,0,1-2.5,3.33,9.87,9.87,0,0,1-4.08,1.81,20,20,0,0,1-8.51-.25,21.44,21.44,0,0,1-6.4-2.73,19.41,19.41,0,0,1-3.64-3,11.7,11.7,0,0,1-.84-.95,1.49,1.49,0,0,1-.26-.36,28.42,28.42,0,0,0,4.94,4,21.84,21.84,0,0,0,6.31,2.57,20,20,0,0,0,8.29.21,9.61,9.61,0,0,0,3.88-1.7,7.77,7.77,0,0,0,2.37-3.12,12.53,12.53,0,0,0,.73-6.67,34.3,34.3,0,0,0-1-4.53A10.93,10.93,0,0,1,304.54,298.64Z"
style="fill: #263238" style="fill: #263238"
></path> />
<path <path
d="M305.56,302.47c0-.1.57.22,1.44.83a42.52,42.52,0,0,0,3.77,2.44,14.39,14.39,0,0,0,6.3,1.77,11.43,11.43,0,0,0,7.59-2.06,14.41,14.41,0,0,0,4.69-6.43,25.38,25.38,0,0,0,1.46-6.46c.2-1.89.26-3.43.32-4.49a11.19,11.19,0,0,1,.13-1.66,9.43,9.43,0,0,1,.07,1.66c0,1.07,0,2.62-.15,4.53a24.82,24.82,0,0,1-1.38,6.6,14.61,14.61,0,0,1-4.83,6.67A11.85,11.85,0,0,1,317,308a14.35,14.35,0,0,1-6.45-1.93,33.41,33.41,0,0,1-3.72-2.6A11.08,11.08,0,0,0,305.56,302.47Z" d="M305.56,302.47c0-.1.57.22,1.44.83a42.52,42.52,0,0,0,3.77,2.44,14.39,14.39,0,0,0,6.3,1.77,11.43,11.43,0,0,0,7.59-2.06,14.41,14.41,0,0,0,4.69-6.43,25.38,25.38,0,0,0,1.46-6.46c.2-1.89.26-3.43.32-4.49a11.19,11.19,0,0,1,.13-1.66,9.43,9.43,0,0,1,.07,1.66c0,1.07,0,2.62-.15,4.53a24.82,24.82,0,0,1-1.38,6.6,14.61,14.61,0,0,1-4.83,6.67A11.85,11.85,0,0,1,317,308a14.35,14.35,0,0,1-6.45-1.93,33.41,33.41,0,0,1-3.72-2.6A11.08,11.08,0,0,0,305.56,302.47Z"
style="fill: #263238" style="fill: #263238"
></path> />
<path <path
d="M264.47,252.45a9,9,0,0,0-6.65-3.21,6.19,6.19,0,0,0-4.28,1.69h0a8.5,8.5,0,0,0-4,7.75,8.59,8.59,0,0,0,6.44,7.49,8.72,8.72,0,0,0,9.14-3.83A8.83,8.83,0,0,0,264.47,252.45Z" d="M264.47,252.45a9,9,0,0,0-6.65-3.21,6.19,6.19,0,0,0-4.28,1.69h0a8.5,8.5,0,0,0-4,7.75,8.59,8.59,0,0,0,6.44,7.49,8.72,8.72,0,0,0,9.14-3.83A8.83,8.83,0,0,0,264.47,252.45Z"
style="fill: #263238" style="fill: #263238"
></path> />
<path <path
d="M324.61,237.64a8.09,8.09,0,0,0-6.39-2.86,9.19,9.19,0,0,0-4.54,1.34h0a8.47,8.47,0,0,0-4,7.75,8.57,8.57,0,0,0,6.44,7.48,8.71,8.71,0,0,0,9.13-3.82A8.83,8.83,0,0,0,324.61,237.64Z" d="M324.61,237.64a8.09,8.09,0,0,0-6.39-2.86,9.19,9.19,0,0,0-4.54,1.34h0a8.47,8.47,0,0,0-4,7.75,8.57,8.57,0,0,0,6.44,7.48,8.71,8.71,0,0,0,9.13-3.82A8.83,8.83,0,0,0,324.61,237.64Z"
style="fill: #263238" style="fill: #263238"
></path> />
<g style="opacity: 0.5"> <g style="opacity: 0.5">
<path <path
d="M257.56,213.11l-2-1c-6.73-1.91-13.64,4.76-17.7,10a9.46,9.46,0,0,0-2.34,5.41c0,2.7,2,5,4.32,6.42,4.66,2.73,10.57,2.43,15.7.73,2.13-.71,4.31-1.75,5.5-3.66a9.17,9.17,0,0,0,1.11-4.92A21.29,21.29,0,0,0,257.56,213.11Z" d="M257.56,213.11l-2-1c-6.73-1.91-13.64,4.76-17.7,10a9.46,9.46,0,0,0-2.34,5.41c0,2.7,2,5,4.32,6.42,4.66,2.73,10.57,2.43,15.7.73,2.13-.71,4.31-1.75,5.5-3.66a9.17,9.17,0,0,0,1.11-4.92A21.29,21.29,0,0,0,257.56,213.11Z"
style="fill: #fff" style="fill: #fff"
></path> />
</g> </g>
<g style="opacity: 0.5"> <g style="opacity: 0.5">
<path <path
d="M303.28,201l2-1c6.73-1.91,13.64,4.76,17.7,10.06a9.28,9.28,0,0,1,2.34,5.4c0,2.71-2,5.06-4.32,6.42-4.65,2.74-10.57,2.44-15.69.73-2.14-.71-4.32-1.75-5.51-3.65a9.09,9.09,0,0,1-1.1-4.93A21.22,21.22,0,0,1,303.28,201Z" d="M303.28,201l2-1c6.73-1.91,13.64,4.76,17.7,10.06a9.28,9.28,0,0,1,2.34,5.4c0,2.71-2,5.06-4.32,6.42-4.65,2.74-10.57,2.44-15.69.73-2.14-.71-4.32-1.75-5.51-3.65a9.09,9.09,0,0,1-1.1-4.93A21.22,21.22,0,0,1,303.28,201Z"
style="fill: #fff" style="fill: #fff"
></path> />
</g> </g>
<path <path
d="M274.28,297.6a8.2,8.2,0,0,1-1.08-1.17,32.1,32.1,0,0,1-2.62-3.47,14.68,14.68,0,0,1-2.41-6,10.57,10.57,0,0,1,.21-3.86,23,23,0,0,1,1.37-3.88A69.26,69.26,0,0,1,277,266.83l2.5-3.53a9.48,9.48,0,0,1,1-1.27,8.64,8.64,0,0,1-.8,1.38c-.54.87-1.36,2.1-2.37,3.63a78.17,78.17,0,0,0-7,12.38,22.37,22.37,0,0,0-1.35,3.79,10.31,10.31,0,0,0-.24,3.68,15,15,0,0,0,2.25,5.87,43,43,0,0,0,2.46,3.55A9.94,9.94,0,0,1,274.28,297.6Z" d="M274.28,297.6a8.2,8.2,0,0,1-1.08-1.17,32.1,32.1,0,0,1-2.62-3.47,14.68,14.68,0,0,1-2.41-6,10.57,10.57,0,0,1,.21-3.86,23,23,0,0,1,1.37-3.88A69.26,69.26,0,0,1,277,266.83l2.5-3.53a9.48,9.48,0,0,1,1-1.27,8.64,8.64,0,0,1-.8,1.38c-.54.87-1.36,2.1-2.37,3.63a78.17,78.17,0,0,0-7,12.38,22.37,22.37,0,0,0-1.35,3.79,10.31,10.31,0,0,0-.24,3.68,15,15,0,0,0,2.25,5.87,43,43,0,0,0,2.46,3.55A9.94,9.94,0,0,1,274.28,297.6Z"
style="fill: #263238" style="fill: #263238"
></path> />
<path <path
d="M332,275.93a12.05,12.05,0,0,1-.06-1.66,20.39,20.39,0,0,0-.48-4.47,8.63,8.63,0,0,0-1.21-2.8,7.24,7.24,0,0,0-2.59-2.29,18.15,18.15,0,0,0-3.65-1.44L319.93,262c-5.59-1.74-10.64-3.33-14.29-4.51l-4.32-1.43a10.11,10.11,0,0,1-1.56-.59,10.82,10.82,0,0,1,1.62.4l4.37,1.26c3.67,1.09,8.75,2.64,14.34,4.37l4.08,1.27a19.28,19.28,0,0,1,3.73,1.51,7.63,7.63,0,0,1,2.71,2.47,8.82,8.82,0,0,1,1.21,2.95,18.51,18.51,0,0,1,.32,4.56c0,.54-.05,1-.08,1.24S332,275.94,332,275.93Z" d="M332,275.93a12.05,12.05,0,0,1-.06-1.66,20.39,20.39,0,0,0-.48-4.47,8.63,8.63,0,0,0-1.21-2.8,7.24,7.24,0,0,0-2.59-2.29,18.15,18.15,0,0,0-3.65-1.44L319.93,262c-5.59-1.74-10.64-3.33-14.29-4.51l-4.32-1.43a10.11,10.11,0,0,1-1.56-.59,10.82,10.82,0,0,1,1.62.4l4.37,1.26c3.67,1.09,8.75,2.64,14.34,4.37l4.08,1.27a19.28,19.28,0,0,1,3.73,1.51,7.63,7.63,0,0,1,2.71,2.47,8.82,8.82,0,0,1,1.21,2.95,18.51,18.51,0,0,1,.32,4.56c0,.54-.05,1-.08,1.24S332,275.94,332,275.93Z"
style="fill: #263238" style="fill: #263238"
></path> />
<path <path
d="M201.57,162.36c-6.31-1.64-14-1.89-18.36,2.93s-3.52,12.05-2,18.24a120.52,120.52,0,0,0,23.34,46.65l32.81-49.42C226.14,173.32,214.63,165.75,201.57,162.36Z" d="M201.57,162.36c-6.31-1.64-14-1.89-18.36,2.93s-3.52,12.05-2,18.24a120.52,120.52,0,0,0,23.34,46.65l32.81-49.42C226.14,173.32,214.63,165.75,201.57,162.36Z"
style="fill: #ff725e" style="fill: #ff725e"
></path> />
<g style="opacity: 0.5"> <g style="opacity: 0.5">
<path <path
d="M199.7,169.88c-3.83-1.36-8.8-1.85-11.31,1.35-2.27,2.9-1.15,7.12.29,10.52,5.1,12,12.09,25.19,22.09,33.52,4.85-10,10.5-19,17.56-26.26C220.17,181.65,210.06,173.55,199.7,169.88Z" d="M199.7,169.88c-3.83-1.36-8.8-1.85-11.31,1.35-2.27,2.9-1.15,7.12.29,10.52,5.1,12,12.09,25.19,22.09,33.52,4.85-10,10.5-19,17.56-26.26C220.17,181.65,210.06,173.55,199.7,169.88Z"
style="fill: #fff" style="fill: #fff"
></path> />
</g> </g>
<path <path
d="M217.56,203.18a6.08,6.08,0,0,1-.95-.94l-2.45-2.65c-2.15-2.32-5-5.36-8.14-8.73s-6-6.53-8-8.84c-1-1.16-1.8-2.1-2.33-2.77a6.24,6.24,0,0,1-.79-1.07,6,6,0,0,1,.94.93l2.45,2.66,8.14,8.73c3.19,3.41,6,6.53,8,8.84,1,1.15,1.79,2.1,2.33,2.77A7,7,0,0,1,217.56,203.18Z" d="M217.56,203.18a6.08,6.08,0,0,1-.95-.94l-2.45-2.65c-2.15-2.32-5-5.36-8.14-8.73s-6-6.53-8-8.84c-1-1.16-1.8-2.1-2.33-2.77a6.24,6.24,0,0,1-.79-1.07,6,6,0,0,1,.94.93l2.45,2.66,8.14,8.73c3.19,3.41,6,6.53,8,8.84,1,1.15,1.79,2.1,2.33,2.77A7,7,0,0,1,217.56,203.18Z"
style="fill: #263238" style="fill: #263238"
></path> />
<path <path
d="M331.06,138.07c-2.62-5.82-6.54-12.07-12.84-13.11S305.93,128.84,302,134c-8.15,10.75-12.51,23.82-16.73,36.63l53.44,18.07C337.25,170.27,338.25,154.05,331.06,138.07Z" d="M331.06,138.07c-2.62-5.82-6.54-12.07-12.84-13.11S305.93,128.84,302,134c-8.15,10.75-12.51,23.82-16.73,36.63l53.44,18.07C337.25,170.27,338.25,154.05,331.06,138.07Z"
style="fill: #ff725e" style="fill: #ff725e"
></path> />
<g style="opacity: 0.5"> <g style="opacity: 0.5">
<path <path
d="M308.11,138.78c2.17-3.44,5.77-6.9,9.72-5.94,3.58.87,5.31,4.88,6.28,8.43,3.41,12.56,6.07,26.74,3.38,39.47-8.47-5-18.36-8.58-29-11.48C300.29,158.43,302.25,148.08,308.11,138.78Z" d="M308.11,138.78c2.17-3.44,5.77-6.9,9.72-5.94,3.58.87,5.31,4.88,6.28,8.43,3.41,12.56,6.07,26.74,3.38,39.47-8.47-5-18.36-8.58-29-11.48C300.29,158.43,302.25,148.08,308.11,138.78Z"
style="fill: #fff" style="fill: #fff"
></path> />
</g> </g>
<path <path
d="M314.8,174.63a5.88,5.88,0,0,1-.05-1.28c0-.82,0-2,.11-3.47.13-2.93.42-7,.8-11.44s.7-8.38.95-11.41c.11-1.38.2-2.54.27-3.46a6.71,6.71,0,0,1,.16-1.27,5.88,5.88,0,0,1,0,1.28c0,.82,0,2-.11,3.47-.13,2.94-.42,7-.8,11.44s-.7,8.38-.95,11.41c-.11,1.38-.2,2.54-.27,3.46A5.81,5.81,0,0,1,314.8,174.63Z" d="M314.8,174.63a5.88,5.88,0,0,1-.05-1.28c0-.82,0-2,.11-3.47.13-2.93.42-7,.8-11.44s.7-8.38.95-11.41c.11-1.38.2-2.54.27-3.46a6.71,6.71,0,0,1,.16-1.27,5.88,5.88,0,0,1,0,1.28c0,.82,0,2-.11,3.47-.13,2.94-.42,7-.8,11.44s-.7,8.38-.95,11.41c-.11,1.38-.2,2.54-.27,3.46A5.81,5.81,0,0,1,314.8,174.63Z"
style="fill: #263238" style="fill: #263238"
></path> />
<path <path
d="M362.63,301.52a6.19,6.19,0,0,1-.66,1.11,22.73,22.73,0,0,1-2.4,2.84c-1.11,1.16-2.54,2.52-4.27,4-.86.75-1.8,1.54-2.81,2.36l-3.14,2.64a96.75,96.75,0,0,1-16.91,11.07,101.92,101.92,0,0,1-23.22,8.55,112.84,112.84,0,0,1-24.58,2.94,116.16,116.16,0,0,1-20.16-1.59,97.9,97.9,0,0,1-13.26-3.2c-1.52-.51-2.71-.91-3.49-1.23l-.9-.36-.3-.13a1.6,1.6,0,0,1,.32.08l.91.31c.8.29,2,.66,3.52,1.14a105.22,105.22,0,0,0,13.26,3,118.48,118.48,0,0,0,20.09,1.48,114.43,114.43,0,0,0,24.47-3,103.11,103.11,0,0,0,23.12-8.46,99.59,99.59,0,0,0,16.9-10.93l6-4.94c1.74-1.48,3.19-2.81,4.32-3.94a27.11,27.11,0,0,0,2.46-2.76C362.4,301.9,362.61,301.5,362.63,301.52Z" d="M362.63,301.52a6.19,6.19,0,0,1-.66,1.11,22.73,22.73,0,0,1-2.4,2.84c-1.11,1.16-2.54,2.52-4.27,4-.86.75-1.8,1.54-2.81,2.36l-3.14,2.64a96.75,96.75,0,0,1-16.91,11.07,101.92,101.92,0,0,1-23.22,8.55,112.84,112.84,0,0,1-24.58,2.94,116.16,116.16,0,0,1-20.16-1.59,97.9,97.9,0,0,1-13.26-3.2c-1.52-.51-2.71-.91-3.49-1.23l-.9-.36-.3-.13a1.6,1.6,0,0,1,.32.08l.91.31c.8.29,2,.66,3.52,1.14a105.22,105.22,0,0,0,13.26,3,118.48,118.48,0,0,0,20.09,1.48,114.43,114.43,0,0,0,24.47-3,103.11,103.11,0,0,0,23.12-8.46,99.59,99.59,0,0,0,16.9-10.93l6-4.94c1.74-1.48,3.19-2.81,4.32-3.94a27.11,27.11,0,0,0,2.46-2.76C362.4,301.9,362.61,301.5,362.63,301.52Z"
style="fill: #263238" style="fill: #263238"
></path> />
<g style="opacity: 0.5"> <g style="opacity: 0.5">
<path <path
d="M305.73,280.2a16.06,16.06,0,0,0-14,7,2,2,0,0,0-.44,1.78,1.43,1.43,0,0,0,1.45.77,4.14,4.14,0,0,0,1.64-.58l10.54-5.49a3.74,3.74,0,0,0,1.74-1.43c.35-.68.08-1.72-.67-1.86" d="M305.73,280.2a16.06,16.06,0,0,0-14,7,2,2,0,0,0-.44,1.78,1.43,1.43,0,0,0,1.45.77,4.14,4.14,0,0,0,1.64-.58l10.54-5.49a3.74,3.74,0,0,0,1.74-1.43c.35-.68.08-1.72-.67-1.86"
style="fill: #fff" style="fill: #fff"
></path> />
</g> </g>
<path <path
d="M331.35,183a8.16,8.16,0,0,1-1.37-.71c-.85-.49-2.1-1.19-3.66-2a119.65,119.65,0,0,0-25.54-10.25c-1.7-.47-3.08-.83-4-1.07a7.77,7.77,0,0,1-1.48-.43,9.51,9.51,0,0,1,1.52.23c1,.18,2.38.48,4.1.91A101.58,101.58,0,0,1,326.5,180c1.54.88,2.76,1.63,3.59,2.18A8.83,8.83,0,0,1,331.35,183Z" d="M331.35,183a8.16,8.16,0,0,1-1.37-.71c-.85-.49-2.1-1.19-3.66-2a119.65,119.65,0,0,0-25.54-10.25c-1.7-.47-3.08-.83-4-1.07a7.77,7.77,0,0,1-1.48-.43,9.51,9.51,0,0,1,1.52.23c1,.18,2.38.48,4.1.91A101.58,101.58,0,0,1,326.5,180c1.54.88,2.76,1.63,3.59,2.18A8.83,8.83,0,0,1,331.35,183Z"
style="fill: #263238" style="fill: #263238"
></path> />
<path <path
d="M318.58,311.15a6.47,6.47,0,0,1-1.51,1.34,32.34,32.34,0,0,1-4.09,2.63,33.45,33.45,0,0,1-4.43,2,7,7,0,0,1-1.95.53c-.05-.15,2.83-1.18,6.13-3S318.48,311,318.58,311.15Z" d="M318.58,311.15a6.47,6.47,0,0,1-1.51,1.34,32.34,32.34,0,0,1-4.09,2.63,33.45,33.45,0,0,1-4.43,2,7,7,0,0,1-1.95.53c-.05-.15,2.83-1.18,6.13-3S318.48,311,318.58,311.15Z"
style="fill: #263238" style="fill: #263238"
></path> />
<path <path
d="M232.24,185.85a8.57,8.57,0,0,1-1.11,1.23c-.75.77-1.81,1.89-3.09,3.31a105.93,105.93,0,0,0-16.67,24.55c-.84,1.71-1.5,3.11-1.94,4.08a9.77,9.77,0,0,1-.73,1.49,10,10,0,0,1,.55-1.56c.38-1,1-2.43,1.79-4.17a93,93,0,0,1,16.73-24.64c1.32-1.39,2.42-2.48,3.21-3.2A11.2,11.2,0,0,1,232.24,185.85Z" d="M232.24,185.85a8.57,8.57,0,0,1-1.11,1.23c-.75.77-1.81,1.89-3.09,3.31a105.93,105.93,0,0,0-16.67,24.55c-.84,1.71-1.5,3.11-1.94,4.08a9.77,9.77,0,0,1-.73,1.49,10,10,0,0,1,.55-1.56c.38-1,1-2.43,1.79-4.17a93,93,0,0,1,16.73-24.64c1.32-1.39,2.42-2.48,3.21-3.2A11.2,11.2,0,0,1,232.24,185.85Z"
style="fill: #263238" style="fill: #263238"
></path> />
<path <path
d="M440.63,436.11s-.2,0-.58-.13l-1.68-.45c-1.46-.41-3.6-1-6.29-2a130.23,130.23,0,0,1-21.56-9.68l.26-.35A97.14,97.14,0,0,1,424.91,441l.48.78-.81-.42a78.8,78.8,0,0,1-14-9.09,80.58,80.58,0,0,1-11.28-11.17l.43-.27,7.8,18.51.31.74-.65-.46A69.8,69.8,0,0,1,389.25,421a54.84,54.84,0,0,1-4.71-8.65l.09.14c.06.12.13.26.23.44l.88,1.69c.8,1.48,2,3.63,3.73,6.23a70.61,70.61,0,0,0,17.95,18.45l-.34.27c-2.39-5.63-5-11.85-7.84-18.49l-.68-1.6,1.11,1.34a79.55,79.55,0,0,0,25.14,20.14l-.33.36a98.37,98.37,0,0,0-14-17.46l-1.18-1.16,1.44.82a137.34,137.34,0,0,0,21.42,9.83c2.68.95,4.8,1.62,6.25,2.08l1.65.51Z" d="M440.63,436.11s-.2,0-.58-.13l-1.68-.45c-1.46-.41-3.6-1-6.29-2a130.23,130.23,0,0,1-21.56-9.68l.26-.35A97.14,97.14,0,0,1,424.91,441l.48.78-.81-.42a78.8,78.8,0,0,1-14-9.09,80.58,80.58,0,0,1-11.28-11.17l.43-.27,7.8,18.51.31.74-.65-.46A69.8,69.8,0,0,1,389.25,421a54.84,54.84,0,0,1-4.71-8.65l.09.14c.06.12.13.26.23.44l.88,1.69c.8,1.48,2,3.63,3.73,6.23a70.61,70.61,0,0,0,17.95,18.45l-.34.27c-2.39-5.63-5-11.85-7.84-18.49l-.68-1.6,1.11,1.34a79.55,79.55,0,0,0,25.14,20.14l-.33.36a98.37,98.37,0,0,0-14-17.46l-1.18-1.16,1.44.82a137.34,137.34,0,0,0,21.42,9.83c2.68.95,4.8,1.62,6.25,2.08l1.65.51Z"
style="fill: #263238" style="fill: #263238"
></path> />
<path <path
d="M364,291.63c-.81,7-3,16.65-3.34,23.62l3.91-5.95c1.17,18.18,4,40.65,6.59,58.68" d="M364,291.63c-.81,7-3,16.65-3.34,23.62l3.91-5.95c1.17,18.18,4,40.65,6.59,58.68"
style="fill: #ff725e" style="fill: #ff725e"
></path> />
<path <path
d="M371.2,368a.67.67,0,0,1-.06-.23c0-.18-.08-.4-.12-.67-.11-.63-.25-1.5-.42-2.59-.35-2.25-.83-5.51-1.39-9.55-1.11-8.07-2.55-19.24-3.73-31.62-.46-4.89-.84-9.61-1.12-14l.46.12c-1.38,2.07-2.69,4.06-3.93,5.94l-.47.7.05-.84a89.74,89.74,0,0,1,1.17-9.69c.5-2.85.94-5.35,1.3-7.43s.64-3.68.81-4.79c.08-.52.15-.94.2-1.27a2.72,2.72,0,0,1,.09-.43,1.34,1.34,0,0,1,0,.44c0,.29-.06.72-.13,1.28-.12,1.12-.35,2.75-.68,4.82s-.73,4.58-1.19,7.44a91.37,91.37,0,0,0-1.09,9.65l-.42-.14,3.89-5.95.41-.62.05.74c.29,4.38.68,9.09,1.14,14,1.18,12.37,2.56,23.54,3.58,31.62.51,4,.92,7.27,1.22,9.57.13,1.1.24,2,.32,2.61l.07.68A1,1,0,0,1,371.2,368Z" d="M371.2,368a.67.67,0,0,1-.06-.23c0-.18-.08-.4-.12-.67-.11-.63-.25-1.5-.42-2.59-.35-2.25-.83-5.51-1.39-9.55-1.11-8.07-2.55-19.24-3.73-31.62-.46-4.89-.84-9.61-1.12-14l.46.12c-1.38,2.07-2.69,4.06-3.93,5.94l-.47.7.05-.84a89.74,89.74,0,0,1,1.17-9.69c.5-2.85.94-5.35,1.3-7.43s.64-3.68.81-4.79c.08-.52.15-.94.2-1.27a2.72,2.72,0,0,1,.09-.43,1.34,1.34,0,0,1,0,.44c0,.29-.06.72-.13,1.28-.12,1.12-.35,2.75-.68,4.82s-.73,4.58-1.19,7.44a91.37,91.37,0,0,0-1.09,9.65l-.42-.14,3.89-5.95.41-.62.05.74c.29,4.38.68,9.09,1.14,14,1.18,12.37,2.56,23.54,3.58,31.62.51,4,.92,7.27,1.22,9.57.13,1.1.24,2,.32,2.61l.07.68A1,1,0,0,1,371.2,368Z"
style="fill: #263238" style="fill: #263238"
></path> />
<g style="opacity: 0.30000000000000004"> <g style="opacity: 0.30000000000000004">
<path <path
d="M385,412.91c-2.86-7.31-4-14.28-6.88-21.6.95,13.95,7.3,26.9,13.91,39.22a59.82,59.82,0,0,0,7.51,11.62c3.06,3.46,7,6.29,11.58,7.17a3.32,3.32,0,0,0,2.45-.23c1.45-.95.87-3.19,0-4.7s-2.46-7.75-2.46-7.75c7.4,5.18,18,11.37,26.95,12.31q-3.57-5.71-7.12-11.44A21.26,21.26,0,0,0,448,438.67c-11.35-4.39-24.85-9.4-36.19-13.79a85.89,85.89,0,0,1,12.87,16.29c-8.68-4-19.56-11.31-25.22-20.21,3.33,7.44,6.86,15.49,7.57,18.53-10.37-8-17.9-15.51-22.5-27.74" d="M385,412.91c-2.86-7.31-4-14.28-6.88-21.6.95,13.95,7.3,26.9,13.91,39.22a59.82,59.82,0,0,0,7.51,11.62c3.06,3.46,7,6.29,11.58,7.17a3.32,3.32,0,0,0,2.45-.23c1.45-.95.87-3.19,0-4.7s-2.46-7.75-2.46-7.75c7.4,5.18,18,11.37,26.95,12.31q-3.57-5.71-7.12-11.44A21.26,21.26,0,0,0,448,438.67c-11.35-4.39-24.85-9.4-36.19-13.79a85.89,85.89,0,0,1,12.87,16.29c-8.68-4-19.56-11.31-25.22-20.21,3.33,7.44,6.86,15.49,7.57,18.53-10.37-8-17.9-15.51-22.5-27.74"
></path> />
</g> </g>
<path <path
d="M355.05,242.71a77.08,77.08,0,0,0,1.84,16.71c5.86,26.32,16.05,106,16.88,107,1,1.2,64.83,3.33,64.83,3.33l-10.44-13.39,9.16,3s-1.68-2.59-9.16-9.25c-10-8.9-24.15-117.66-24.15-117.66h0c1.82-14.85,3.64-29.74,3.5-44.69s-2.31-30-8.2-43.87a40.44,40.44,0,0,0-7.57-12.32c-3.37-3.53-7.47-3.38-12.21-4.89-8.5-2.7-13.93,1.18-18.3,6.1-3,3.35-3.22,7.28-5,11.37a12.3,12.3,0,0,0-4.13,5.83c-2.58,6.85-4.62,14-4.91,21.27s1.42,14.84,6,20.63l-4.35-2.4,7.93,8.7-2,3.81a12.17,12.17,0,0,0-1.41,7.31l3.28-3.48c-2,4.17-2.24,8.17-2.91,14.47-.31,2.82-.47,5.66-.51,8.49l-.14,9.87,1.91-1.6Z" d="M355.05,242.71a77.08,77.08,0,0,0,1.84,16.71c5.86,26.32,16.05,106,16.88,107,1,1.2,64.83,3.33,64.83,3.33l-10.44-13.39,9.16,3s-1.68-2.59-9.16-9.25c-10-8.9-24.15-117.66-24.15-117.66h0c1.82-14.85,3.64-29.74,3.5-44.69s-2.31-30-8.2-43.87a40.44,40.44,0,0,0-7.57-12.32c-3.37-3.53-7.47-3.38-12.21-4.89-8.5-2.7-13.93,1.18-18.3,6.1-3,3.35-3.22,7.28-5,11.37a12.3,12.3,0,0,0-4.13,5.83c-2.58,6.85-4.62,14-4.91,21.27s1.42,14.84,6,20.63l-4.35-2.4,7.93,8.7-2,3.81a12.17,12.17,0,0,0-1.41,7.31l3.28-3.48c-2,4.17-2.24,8.17-2.91,14.47-.31,2.82-.47,5.66-.51,8.49l-.14,9.87,1.91-1.6Z"
style="fill: #ff725e" style="fill: #ff725e"
></path> />
<g style="opacity: 0.5"> <g style="opacity: 0.5">
<path <path
d="M379.7,251.3c6.66-.15,13.8,2.78,17.72,8,2.14,2.86,2.86,6.46,3.53,9.94q4.8,25.14,9.61,50.27c3.2,16.76,6.4,33.54,8.52,50.46,1.06,8.43,1.76,17.37-2,25.06-1.43,2.94-3.71,5.76-6.93,6.67-3.57,1-7.49-.63-10.08-3.22s-4.11-6-5.51-9.33a374.43,374.43,0,0,1-17-52.06c-7.17-28.09-6.61-42.58-9.42-71.38C368.22,265.72,367.84,251.56,379.7,251.3Z" d="M379.7,251.3c6.66-.15,13.8,2.78,17.72,8,2.14,2.86,2.86,6.46,3.53,9.94q4.8,25.14,9.61,50.27c3.2,16.76,6.4,33.54,8.52,50.46,1.06,8.43,1.76,17.37-2,25.06-1.43,2.94-3.71,5.76-6.93,6.67-3.57,1-7.49-.63-10.08-3.22s-4.11-6-5.51-9.33a374.43,374.43,0,0,1-17-52.06c-7.17-28.09-6.61-42.58-9.42-71.38C368.22,265.72,367.84,251.56,379.7,251.3Z"
style="fill: #fff" style="fill: #fff"
></path> />
</g> </g>
<path <path
d="M374,133.46c-1.89-1.72-5.06-1.55-7.18-.1a10.57,10.57,0,0,0-3.92,6.32,12,12,0,0,0-.1,6,7.44,7.44,0,0,0,3.67,4.74,5.64,5.64,0,0,0,5.92-.41c1.48-1.18,2.09-3.09,2.49-4.91.78-3.56,1.88-9.29-.88-11.69" d="M374,133.46c-1.89-1.72-5.06-1.55-7.18-.1a10.57,10.57,0,0,0-3.92,6.32,12,12,0,0,0-.1,6,7.44,7.44,0,0,0,3.67,4.74,5.64,5.64,0,0,0,5.92-.41c1.48-1.18,2.09-3.09,2.49-4.91.78-3.56,1.88-9.29-.88-11.69"
style="fill: #263238" style="fill: #263238"
></path> />
<path <path
d="M357.38,151.11c-.32,0-4.31.7-5.75,5.89s-2.06,11.68,2.05,12.18,7.81.29,8.32-5.09S360.67,151,357.38,151.11Z" d="M357.38,151.11c-.32,0-4.31.7-5.75,5.89s-2.06,11.68,2.05,12.18,7.81.29,8.32-5.09S360.67,151,357.38,151.11Z"
style="fill: #263238" style="fill: #263238"
></path> />
<path <path
d="M386.67,135.33c-.24,0-4.07-.77-5.82,2.65s-4.25,9.36-2.31,13.13,6.49,8.14,10.07,2.9,4.12-10.73,3.4-13.44S386.67,135.33,386.67,135.33Z" d="M386.67,135.33c-.24,0-4.07-.77-5.82,2.65s-4.25,9.36-2.31,13.13,6.49,8.14,10.07,2.9,4.12-10.73,3.4-13.44S386.67,135.33,386.67,135.33Z"
style="fill: #263238" style="fill: #263238"
></path> />
<path <path
d="M396.83,159c-.52.08-10.08,5-11.77,9.68s-.46,5.48,3.34,7.88a7.92,7.92,0,0,0,10.89-2.4C401.86,170.57,403.3,157.9,396.83,159Z" d="M396.83,159c-.52.08-10.08,5-11.77,9.68s-.46,5.48,3.34,7.88a7.92,7.92,0,0,0,10.89-2.4C401.86,170.57,403.3,157.9,396.83,159Z"
style="fill: #263238" style="fill: #263238"
></path> />
<g style="opacity: 0.5"> <g style="opacity: 0.5">
<path <path
d="M381,188.14c-.71-1.3-2.15-1.83-3.47-2.26l-8.4-2.74c-1.68-.55-3.69-1-5,.27l-2,.55a46.81,46.81,0,0,0,1.25,9.25,14.35,14.35,0,0,0,4.63,7.62,7.08,7.08,0,0,0,8,.75c2.59-1.61,3.8-5,4.82-8.08C381.32,191.76,381.87,189.73,381,188.14Z" d="M381,188.14c-.71-1.3-2.15-1.83-3.47-2.26l-8.4-2.74c-1.68-.55-3.69-1-5,.27l-2,.55a46.81,46.81,0,0,0,1.25,9.25,14.35,14.35,0,0,0,4.63,7.62,7.08,7.08,0,0,0,8,.75c2.59-1.61,3.8-5,4.82-8.08C381.32,191.76,381.87,189.73,381,188.14Z"
style="fill: #fff" style="fill: #fff"
></path> />
</g> </g>
<path <path
d="M370.71,167.85c-1.64,2.05-4.36,2.91-6.9,3.75s-5.23,1.89-6.61,4.12a7.91,7.91,0,0,0-.39,6.63,6.83,6.83,0,0,0,2.85,3.88c2.65,1.52,6.07.26,9.09.85,4.38.86,7.17,5.43,11.53,6.43,3.74.86,7.74-1.34,9.72-4.55a7,7,0,0,0,1.05-5.53c-.71-2.39-3-3.92-5.26-5.14s-4.64-2.48-5.8-4.69a21.13,21.13,0,0,1-1.19-3.92,5.08,5.08,0,0,0-2.33-3.28c-1.86-.91-4.13.15-5.6,1.58" d="M370.71,167.85c-1.64,2.05-4.36,2.91-6.9,3.75s-5.23,1.89-6.61,4.12a7.91,7.91,0,0,0-.39,6.63,6.83,6.83,0,0,0,2.85,3.88c2.65,1.52,6.07.26,9.09.85,4.38.86,7.17,5.43,11.53,6.43,3.74.86,7.74-1.34,9.72-4.55a7,7,0,0,0,1.05-5.53c-.71-2.39-3-3.92-5.26-5.14s-4.64-2.48-5.8-4.69a21.13,21.13,0,0,1-1.19-3.92,5.08,5.08,0,0,0-2.33-3.28c-1.86-.91-4.13.15-5.6,1.58"
style="fill: #263238" style="fill: #263238"
></path> />
<g style="opacity: 0.30000000000000004"> <g style="opacity: 0.30000000000000004">
<path <path
d="M382.94,238.18q-2.64-3.09-5.49-6L368.71,237a16.49,16.49,0,0,0,5.11,5.92,9.2,9.2,0,0,0,7.62,1.34c1.52-.47,3-1.69,2.95-3.23A4.74,4.74,0,0,0,382.94,238.18Z" d="M382.94,238.18q-2.64-3.09-5.49-6L368.71,237a16.49,16.49,0,0,0,5.11,5.92,9.2,9.2,0,0,0,7.62,1.34c1.52-.47,3-1.69,2.95-3.23A4.74,4.74,0,0,0,382.94,238.18Z"
></path> />
</g> </g>
<path <path
d="M376.75,231.94a6.48,6.48,0,0,0-5.65.38,4.82,4.82,0,0,0-2.31,4.88,6.33,6.33,0,0,0,2.84,3.78,11.66,11.66,0,0,0,8.87,1.69c1.58-.34,3.26-1.24,3.53-2.78a5.85,5.85,0,0,0-1.23-3.6,14.41,14.41,0,0,0-6.05-4.35" d="M376.75,231.94a6.48,6.48,0,0,0-5.65.38,4.82,4.82,0,0,0-2.31,4.88,6.33,6.33,0,0,0,2.84,3.78,11.66,11.66,0,0,0,8.87,1.69c1.58-.34,3.26-1.24,3.53-2.78a5.85,5.85,0,0,0-1.23-3.6,14.41,14.41,0,0,0-6.05-4.35"
style="fill: #263238" style="fill: #263238"
></path> />
<path <path
d="M381.69,224.48s-.13-.07-.33-.24-.52-.42-.89-.77a32.55,32.55,0,0,1-3-3.15,36.5,36.5,0,0,1-6.76-12.53l.51-.07v0c0,1.39-.07,2.75-.11,4.06,0,.66,0,1.3-.06,1.93l0,.94a2.44,2.44,0,0,1-.17,1,1.19,1.19,0,0,1-.33.46.79.79,0,0,1-.61.14,1.29,1.29,0,0,1-.79-.65c-.31-.49-.61-1-.86-1.45a19.26,19.26,0,0,1-1.2-2.76,17.64,17.64,0,0,1-.88-4.26,10.85,10.85,0,0,1,0-1.18,1.2,1.2,0,0,1,0-.41,24.27,24.27,0,0,0,1.23,5.72,19.62,19.62,0,0,0,1.23,2.69c.26.46.55.92.86,1.4s.72.63.91.12a6.31,6.31,0,0,0,.15-1.75c0-.63,0-1.28,0-1.93,0-1.32.06-2.68.1-4.07v0l0-1.6.47,1.53a38.24,38.24,0,0,0,6.55,12.46c1.12,1.42,2.12,2.5,2.82,3.24A10.58,10.58,0,0,1,381.69,224.48Z" d="M381.69,224.48s-.13-.07-.33-.24-.52-.42-.89-.77a32.55,32.55,0,0,1-3-3.15,36.5,36.5,0,0,1-6.76-12.53l.51-.07v0c0,1.39-.07,2.75-.11,4.06,0,.66,0,1.3-.06,1.93l0,.94a2.44,2.44,0,0,1-.17,1,1.19,1.19,0,0,1-.33.46.79.79,0,0,1-.61.14,1.29,1.29,0,0,1-.79-.65c-.31-.49-.61-1-.86-1.45a19.26,19.26,0,0,1-1.2-2.76,17.64,17.64,0,0,1-.88-4.26,10.85,10.85,0,0,1,0-1.18,1.2,1.2,0,0,1,0-.41,24.27,24.27,0,0,0,1.23,5.72,19.62,19.62,0,0,0,1.23,2.69c.26.46.55.92.86,1.4s.72.63.91.12a6.31,6.31,0,0,0,.15-1.75c0-.63,0-1.28,0-1.93,0-1.32.06-2.68.1-4.07v0l0-1.6.47,1.53a38.24,38.24,0,0,0,6.55,12.46c1.12,1.42,2.12,2.5,2.82,3.24A10.58,10.58,0,0,1,381.69,224.48Z"
style="fill: #263238" style="fill: #263238"
></path> />
<path <path
d="M382.53,162.85a10.17,10.17,0,0,1-1.21-1.49l-3.07-4.15.37-.11c0,1.46-.07,3.09-.11,4.83v.61l-.41-.45a11.4,11.4,0,0,1-2.4-4.17l.48,0c-.32.73-.66,1.49-1,2.27l-.92,2.05-.17.38-.26-.32a5,5,0,0,1-.77-5l.37.28a29.66,29.66,0,0,1-5.34,3.32l-.46.23.21-.46a11.81,11.81,0,0,1,2.36-3.42,7.51,7.51,0,0,1,.84-.75c.2-.16.31-.23.33-.22s-.39.39-1,1.11a12.56,12.56,0,0,0-2.17,3.42l-.25-.23a32.84,32.84,0,0,0,5.2-3.38l.72-.57-.34.85a4.53,4.53,0,0,0,.71,4.47l-.43.06.91-2.05,1-2.27.28-.62.2.64a11.22,11.22,0,0,0,2.27,4l-.42.15c.07-1.75.13-3.37.19-4.83l0-.61.34.49,2.93,4.26A13.85,13.85,0,0,1,382.53,162.85Z" d="M382.53,162.85a10.17,10.17,0,0,1-1.21-1.49l-3.07-4.15.37-.11c0,1.46-.07,3.09-.11,4.83v.61l-.41-.45a11.4,11.4,0,0,1-2.4-4.17l.48,0c-.32.73-.66,1.49-1,2.27l-.92,2.05-.17.38-.26-.32a5,5,0,0,1-.77-5l.37.28a29.66,29.66,0,0,1-5.34,3.32l-.46.23.21-.46a11.81,11.81,0,0,1,2.36-3.42,7.51,7.51,0,0,1,.84-.75c.2-.16.31-.23.33-.22s-.39.39-1,1.11a12.56,12.56,0,0,0-2.17,3.42l-.25-.23a32.84,32.84,0,0,0,5.2-3.38l.72-.57-.34.85a4.53,4.53,0,0,0,.71,4.47l-.43.06.91-2.05,1-2.27.28-.62.2.64a11.22,11.22,0,0,0,2.27,4l-.42.15c.07-1.75.13-3.37.19-4.83l0-.61.34.49,2.93,4.26A13.85,13.85,0,0,1,382.53,162.85Z"
style="fill: #263238" style="fill: #263238"
></path> />
<path <path
d="M373.76,127.74a1.74,1.74,0,0,0-2.06,0,2.4,2.4,0,0,0-1.14,1.58.92.92,0,0,0,.26.91,1.68,1.68,0,0,0,1.27.36,2.34,2.34,0,0,0,1.8-.92A1.48,1.48,0,0,0,373.76,127.74Z" d="M373.76,127.74a1.74,1.74,0,0,0-2.06,0,2.4,2.4,0,0,0-1.14,1.58.92.92,0,0,0,.26.91,1.68,1.68,0,0,0,1.27.36,2.34,2.34,0,0,0,1.8-.92A1.48,1.48,0,0,0,373.76,127.74Z"
style="fill: #e0e0e0" style="fill: #e0e0e0"
></path> />
<path <path
d="M389.7,132.9a3.9,3.9,0,0,0-1.6-1.9.7.7,0,0,0-.57-.13c-.16.06-.52.18-.61.32a1.68,1.68,0,0,0-.23,1.39,2.34,2.34,0,0,0,2.4,1.44.9.9,0,0,0,.62-.3A.85.85,0,0,0,389.7,132.9Z" d="M389.7,132.9a3.9,3.9,0,0,0-1.6-1.9.7.7,0,0,0-.57-.13c-.16.06-.52.18-.61.32a1.68,1.68,0,0,0-.23,1.39,2.34,2.34,0,0,0,2.4,1.44.9.9,0,0,0,.62-.3A.85.85,0,0,0,389.7,132.9Z"
style="fill: #e0e0e0" style="fill: #e0e0e0"
></path> />
<g style="opacity: 0.30000000000000004"> <g style="opacity: 0.30000000000000004">
<path d="M365.28,316.82A98.72,98.72,0,0,0,371.21,365c-1.15-16.59-4-32.17-5.4-49.22"></path> <path d="M365.28,316.82A98.72,98.72,0,0,0,371.21,365c-1.15-16.59-4-32.17-5.4-49.22" />
</g> </g>
<g style="opacity: 0.30000000000000004"> <g style="opacity: 0.30000000000000004">
<path <path
d="M380.37,223.62A56.65,56.65,0,0,1,371,208.3a23.25,23.25,0,0,1-.33,6.33c-.06.43,0,1.31-.45,1.39s-1-.67-1.19-1a18.18,18.18,0,0,1-2.89-7.91l-.21.92a11.78,11.78,0,0,0,2.89,9.41,2.5,2.5,0,0,0,1.9,1,1.84,1.84,0,0,0,1.49-1.37,5.17,5.17,0,0,0,0-2.11A13.69,13.69,0,0,0,380.37,223.62Z" d="M380.37,223.62A56.65,56.65,0,0,1,371,208.3a23.25,23.25,0,0,1-.33,6.33c-.06.43,0,1.31-.45,1.39s-1-.67-1.19-1a18.18,18.18,0,0,1-2.89-7.91l-.21.92a11.78,11.78,0,0,0,2.89,9.41,2.5,2.5,0,0,0,1.9,1,1.84,1.84,0,0,0,1.49-1.37,5.17,5.17,0,0,0,0-2.11A13.69,13.69,0,0,0,380.37,223.62Z"
></path> />
</g> </g>
<path <path
d="M395.78,310.27a2.39,2.39,0,0,1-.44-.34c-.27-.23-.69-.57-1.18-1.05a42.57,42.57,0,0,1-4-4.3,46.31,46.31,0,0,1-8.88-17.43l.51-.09c.07.85.14,1.76.22,2.67a112.93,112.93,0,0,1,.18,11.81l0,.71-.4-.58A38.75,38.75,0,0,1,376,289.62a33.36,33.36,0,0,1-.82-3.73c-.07-.44-.1-.78-.13-1a1.82,1.82,0,0,1,0-.35,9.77,9.77,0,0,1,.31,1.33c.18.87.47,2.13.94,3.68a40.59,40.59,0,0,0,5.82,11.85l-.44.13c.11-3.61.06-7.59-.22-11.75-.08-.91-.15-1.81-.21-2.66l.5-.09a47.69,47.69,0,0,0,8.66,17.34,48.91,48.91,0,0,0,3.86,4.38c.47.5.87.86,1.12,1.12A3,3,0,0,1,395.78,310.27Z" d="M395.78,310.27a2.39,2.39,0,0,1-.44-.34c-.27-.23-.69-.57-1.18-1.05a42.57,42.57,0,0,1-4-4.3,46.31,46.31,0,0,1-8.88-17.43l.51-.09c.07.85.14,1.76.22,2.67a112.93,112.93,0,0,1,.18,11.81l0,.71-.4-.58A38.75,38.75,0,0,1,376,289.62a33.36,33.36,0,0,1-.82-3.73c-.07-.44-.1-.78-.13-1a1.82,1.82,0,0,1,0-.35,9.77,9.77,0,0,1,.31,1.33c.18.87.47,2.13.94,3.68a40.59,40.59,0,0,0,5.82,11.85l-.44.13c.11-3.61.06-7.59-.22-11.75-.08-.91-.15-1.81-.21-2.66l.5-.09a47.69,47.69,0,0,0,8.66,17.34,48.91,48.91,0,0,0,3.86,4.38c.47.5.87.86,1.12,1.12A3,3,0,0,1,395.78,310.27Z"
style="fill: #263238" style="fill: #263238"
></path> />
<path <path
d="M437.9,390.59a6.31,6.31,0,0,1,.22,1.3c.11.85.2,2.07.27,3.58A64,64,0,0,1,435,418.82c-.49,1.43-.94,2.58-1.28,3.35a5.93,5.93,0,0,1-.58,1.19,6.87,6.87,0,0,1,.39-1.26c.28-.8.67-2,1.12-3.4a75.22,75.22,0,0,0,2.62-11.47,76.46,76.46,0,0,0,.76-11.75c0-1.5-.07-2.73-.12-3.57A7.11,7.11,0,0,1,437.9,390.59Z" d="M437.9,390.59a6.31,6.31,0,0,1,.22,1.3c.11.85.2,2.07.27,3.58A64,64,0,0,1,435,418.82c-.49,1.43-.94,2.58-1.28,3.35a5.93,5.93,0,0,1-.58,1.19,6.87,6.87,0,0,1,.39-1.26c.28-.8.67-2,1.12-3.4a75.22,75.22,0,0,0,2.62-11.47,76.46,76.46,0,0,0,.76-11.75c0-1.5-.07-2.73-.12-3.57A7.11,7.11,0,0,1,437.9,390.59Z"
style="fill: #263238" style="fill: #263238"
></path> />
</g> </g>
</svg> </svg>
</template> </template>

View File

@@ -4,192 +4,192 @@
<path <path
d="M267.69,52.19c37.37,7.52,79.84,28.31,97.2,64.35,26.24,54.46,73.44,53.91,85.57,157a209.06,209.06,0,0,1,.59,45.34,173,173,0,0,1-3.59,21.93c-14.65,63.73-63,103.49-118.41,115C256.18,471.05,213,425.43,187.16,395.42S75.52,338,62.8,236.71a202.32,202.32,0,0,1-.64-46.6c3.74-35.37,18.51-73.07,45-97.85q3-2.79,6.15-5.4C154.45,52.78,216.74,41.94,267.69,52.19Z" d="M267.69,52.19c37.37,7.52,79.84,28.31,97.2,64.35,26.24,54.46,73.44,53.91,85.57,157a209.06,209.06,0,0,1,.59,45.34,173,173,0,0,1-3.59,21.93c-14.65,63.73-63,103.49-118.41,115C256.18,471.05,213,425.43,187.16,395.42S75.52,338,62.8,236.71a202.32,202.32,0,0,1-.64-46.6c3.74-35.37,18.51-73.07,45-97.85q3-2.79,6.15-5.4C154.45,52.78,216.74,41.94,267.69,52.19Z"
style="fill: #92e3a9" style="fill: #92e3a9"
></path> />
<path <path
d="M267.69,52.19c37.37,7.52,79.84,28.31,97.2,64.35,26.24,54.46,73.44,53.91,85.57,157a209.06,209.06,0,0,1,.59,45.34,173,173,0,0,1-3.59,21.93c-14.65,63.73-63,103.49-118.41,115C256.18,471.05,213,425.43,187.16,395.42S75.52,338,62.8,236.71a202.32,202.32,0,0,1-.64-46.6c3.74-35.37,18.51-73.07,45-97.85q3-2.79,6.15-5.4C154.45,52.78,216.74,41.94,267.69,52.19Z" d="M267.69,52.19c37.37,7.52,79.84,28.31,97.2,64.35,26.24,54.46,73.44,53.91,85.57,157a209.06,209.06,0,0,1,.59,45.34,173,173,0,0,1-3.59,21.93c-14.65,63.73-63,103.49-118.41,115C256.18,471.05,213,425.43,187.16,395.42S75.52,338,62.8,236.71a202.32,202.32,0,0,1-.64-46.6c3.74-35.37,18.51-73.07,45-97.85q3-2.79,6.15-5.4C154.45,52.78,216.74,41.94,267.69,52.19Z"
style="fill: #fff; opacity: 0.7000000000000001" style="fill: #fff; opacity: 0.7000000000000001"
></path> />
</g> </g>
<g id="freepik--paw-prints--inject-24"> <g id="freepik--paw-prints--inject-24">
<g style="opacity: 0.30000000000000004"> <g style="opacity: 0.30000000000000004">
<path <path
d="M363.29,46.88a120.86,120.86,0,0,1-20.83,9c-11.6,3.72-21.36,14-15,27.73s12.68,27,18.06,35.31,19,13.36,28.94,5.38,6.72-15.48,11.39-30,13.61-20.38,14.73-29-5.25-22.44-17.26-23.77A28.33,28.33,0,0,0,363.29,46.88Z" d="M363.29,46.88a120.86,120.86,0,0,1-20.83,9c-11.6,3.72-21.36,14-15,27.73s12.68,27,18.06,35.31,19,13.36,28.94,5.38,6.72-15.48,11.39-30,13.61-20.38,14.73-29-5.25-22.44-17.26-23.77A28.33,28.33,0,0,0,363.29,46.88Z"
></path> />
<path <path
d="M307.71,101.31s-9.95,1.12-15.11,7.37S296,123.34,304.33,128s22.37,1.83,28-5,.93-17.78-4.43-19.93S307.71,101.31,307.71,101.31Z" d="M307.71,101.31s-9.95,1.12-15.11,7.37S296,123.34,304.33,128s22.37,1.83,28-5,.93-17.78-4.43-19.93S307.71,101.31,307.71,101.31Z"
></path> />
<path <path
d="M272.5,73.62S279.24,87,288.68,92.84s20.39,6,26.68-2,.14-18.31-6.9-24-21.28-9-29-7.87S271.61,70.61,272.5,73.62Z" d="M272.5,73.62S279.24,87,288.68,92.84s20.39,6,26.68-2,.14-18.31-6.9-24-21.28-9-29-7.87S271.61,70.61,272.5,73.62Z"
></path> />
<path <path
d="M282.44,42.88s4.64,5.56,16.28,10.68,21.37,4.66,27.35.91,8.51-13.63,3-21.47-21.23-11.22-28.49-9.39-16.92,7-19,10.86S279.86,40.49,282.44,42.88Z" d="M282.44,42.88s4.64,5.56,16.28,10.68,21.37,4.66,27.35.91,8.51-13.63,3-21.47-21.23-11.22-28.49-9.39-16.92,7-19,10.86S279.86,40.49,282.44,42.88Z"
></path> />
<path <path
d="M327.9,21.08s8.26,14,17.36,18.66,19.49-.42,21.42-5.85.88-14.87-9.76-22.82-26.48-4-28.67-.63S327.9,21.08,327.9,21.08Z" d="M327.9,21.08s8.26,14,17.36,18.66,19.49-.42,21.42-5.85.88-14.87-9.76-22.82-26.48-4-28.67-.63S327.9,21.08,327.9,21.08Z"
></path> />
</g> </g>
<g style="opacity: 0.30000000000000004"> <g style="opacity: 0.30000000000000004">
<path <path
d="M450.14,367.06a120.54,120.54,0,0,1-9.24-20.73c-3.84-11.56-14.19-21.21-27.88-14.69s-26.89,13-35.11,18.45-13.15,19.14-5.07,29,15.56,6.55,30.11,11.06,20.53,13.38,29.2,14.41,22.38-5.5,23.58-17.53A28.34,28.34,0,0,0,450.14,367.06Z" d="M450.14,367.06a120.54,120.54,0,0,1-9.24-20.73c-3.84-11.56-14.19-21.21-27.88-14.69s-26.89,13-35.11,18.45-13.15,19.14-5.07,29,15.56,6.55,30.11,11.06,20.53,13.38,29.2,14.41,22.38-5.5,23.58-17.53A28.34,28.34,0,0,0,450.14,367.06Z"
></path> />
<path <path
d="M395.09,312.08s-1.23-9.94-7.53-15-14.62,3.52-19.22,11.94-1.58,22.38,5.3,27.92,17.8.73,19.89-4.65S395.09,312.08,395.09,312.08Z" d="M395.09,312.08s-1.23-9.94-7.53-15-14.62,3.52-19.22,11.94-1.58,22.38,5.3,27.92,17.8.73,19.89-4.65S395.09,312.08,395.09,312.08Z"
></path> />
<path <path
d="M422.39,276.57s-13.33,6.88-19,16.39-5.8,20.45,2.32,26.65,18.31-.06,23.92-7.16,8.79-21.37,7.55-29.12S425.39,275.64,422.39,276.57Z" d="M422.39,276.57s-13.33,6.88-19,16.39-5.8,20.45,2.32,26.65,18.31-.06,23.92-7.16,8.79-21.37,7.55-29.12S425.39,275.64,422.39,276.57Z"
></path> />
<path <path
d="M453.24,286.17s-5.51,4.7-10.5,16.4-4.41,21.41-.6,27.35,13.72,8.37,21.5,2.74,11-21.35,9.08-28.59-7.15-16.84-11.08-18.92S455.6,283.57,453.24,286.17Z" d="M453.24,286.17s-5.51,4.7-10.5,16.4-4.41,21.41-.6,27.35,13.72,8.37,21.5,2.74,11-21.35,9.08-28.59-7.15-16.84-11.08-18.92S455.6,283.57,453.24,286.17Z"
></path> />
<path <path
d="M475.54,331.38S461.68,339.8,457.08,349s.63,19.48,6.09,21.36,14.87.71,22.7-10,3.73-26.53.32-28.67S475.54,331.38,475.54,331.38Z" d="M475.54,331.38S461.68,339.8,457.08,349s.63,19.48,6.09,21.36,14.87.71,22.7-10,3.73-26.53.32-28.67S475.54,331.38,475.54,331.38Z"
></path> />
</g> </g>
<g style="opacity: 0.30000000000000004"> <g style="opacity: 0.30000000000000004">
<path <path
d="M138.05,372.16a120.85,120.85,0,0,0-9.14,20.77c-3.78,11.58-14.09,21.27-27.82,14.81S74.15,394.89,65.9,389.45s-13.23-19.09-5.19-29,15.53-6.63,30.06-11.19,20.47-13.48,29.14-14.54,22.4,5.4,23.65,17.42A28.32,28.32,0,0,1,138.05,372.16Z" d="M138.05,372.16a120.85,120.85,0,0,0-9.14,20.77c-3.78,11.58-14.09,21.27-27.82,14.81S74.15,394.89,65.9,389.45s-13.23-19.09-5.19-29,15.53-6.63,30.06-11.19,20.47-13.48,29.14-14.54,22.4,5.4,23.65,17.42A28.32,28.32,0,0,1,138.05,372.16Z"
></path> />
<path <path
d="M83.25,427.38s-1.18,9.94-7.46,15.06S61.15,439,56.52,430.58s-1.68-22.38,5.18-27.94,17.79-.82,19.9,4.55S83.25,427.38,83.25,427.38Z" d="M83.25,427.38s-1.18,9.94-7.46,15.06S61.15,439,56.52,430.58s-1.68-22.38,5.18-27.94,17.79-.82,19.9,4.55S83.25,427.38,83.25,427.38Z"
></path> />
<path <path
d="M110.71,462.77s-13.37-6.83-19.11-16.31S85.72,426,93.81,419.8s18.31,0,24,7.06,8.89,21.33,7.67,29.08S113.71,463.68,110.71,462.77Z" d="M110.71,462.77s-13.37-6.83-19.11-16.31S85.72,426,93.81,419.8s18.31,0,24,7.06,8.89,21.33,7.67,29.08S113.71,463.68,110.71,462.77Z"
></path> />
<path <path
d="M141.52,453S136,448.36,131,436.68s-4.52-21.39-.73-27.35,13.68-8.42,21.49-2.84,11.08,21.31,9.2,28.56-7.07,16.87-11,19S143.89,455.63,141.52,453Z" d="M141.52,453S136,448.36,131,436.68s-4.52-21.39-.73-27.35,13.68-8.42,21.49-2.84,11.08,21.31,9.2,28.56-7.07,16.87-11,19S143.89,455.63,141.52,453Z"
></path> />
<path <path
d="M163.62,407.72s-13.9-8.35-18.54-17.48.54-19.49,6-21.39,14.88-.77,22.75,9.92,3.85,26.51.45,28.67S163.62,407.72,163.62,407.72Z" d="M163.62,407.72s-13.9-8.35-18.54-17.48.54-19.49,6-21.39,14.88-.77,22.75,9.92,3.85,26.51.45,28.67S163.62,407.72,163.62,407.72Z"
></path> />
</g> </g>
</g> </g>
<g id="freepik--paw-2--inject-24"> <g id="freepik--paw-2--inject-24">
<path <path
d="M235.41,195.61s-.1-14.37,3.12-15.45,7.88,7.16,8.95,9.67S235.41,195.61,235.41,195.61Z" d="M235.41,195.61s-.1-14.37,3.12-15.45,7.88,7.16,8.95,9.67S235.41,195.61,235.41,195.61Z"
style="fill: #263238" style="fill: #263238"
></path> />
<path <path
d="M234.92,196.25v-.64c0-2.46.07-14.79,3.47-15.92,3.83-1.28,8.75,8.05,9.56,9.94a1.29,1.29,0,0,1-.05,1.13c-1.24,2.5-11.22,5.05-12.36,5.34Zm4.22-15.69a1.42,1.42,0,0,0-.45.08c-2,.67-2.76,8.88-2.78,14.33,4.14-1.08,10.34-3.16,11.09-4.66a.32.32,0,0,0,0-.28C245.84,187.26,241.79,180.56,239.14,180.56Z" d="M234.92,196.25v-.64c0-2.46.07-14.79,3.47-15.92,3.83-1.28,8.75,8.05,9.56,9.94a1.29,1.29,0,0,1-.05,1.13c-1.24,2.5-11.22,5.05-12.36,5.34Zm4.22-15.69a1.42,1.42,0,0,0-.45.08c-2,.67-2.76,8.88-2.78,14.33,4.14-1.08,10.34-3.16,11.09-4.66a.32.32,0,0,0,0-.28C245.84,187.26,241.79,180.56,239.14,180.56Z"
style="fill: #263238" style="fill: #263238"
></path> />
<path <path
d="M280.38,162.92s3.1-14,6.48-14.37,6.09,8.73,6.57,11.42S280.38,162.92,280.38,162.92Z" d="M280.38,162.92s3.1-14,6.48-14.37,6.09,8.73,6.57,11.42S280.38,162.92,280.38,162.92Z"
style="fill: #263238" style="fill: #263238"
></path> />
<path <path
d="M279.76,163.43l.13-.62c.53-2.4,3.36-14.41,6.92-14.76,4-.38,6.75,9.8,7.12,11.83a1.33,1.33,0,0,1-.3,1.08c-1.78,2.17-12.07,2.43-13.24,2.46ZM287,149h-.13c-2.12.2-4.67,8-5.9,13.35,4.28-.13,10.78-.78,11.84-2.07a.32.32,0,0,0,.09-.27C292.38,157,289.74,149,287,149Z" d="M279.76,163.43l.13-.62c.53-2.4,3.36-14.41,6.92-14.76,4-.38,6.75,9.8,7.12,11.83a1.33,1.33,0,0,1-.3,1.08c-1.78,2.17-12.07,2.43-13.24,2.46ZM287,149h-.13c-2.12.2-4.67,8-5.9,13.35,4.28-.13,10.78-.78,11.84-2.07a.32.32,0,0,0,.09-.27C292.38,157,289.74,149,287,149Z"
style="fill: #263238" style="fill: #263238"
></path> />
<path <path
d="M349.48,196.93s3.1-14,6.48-14.37,6.09,8.74,6.58,11.42S349.48,196.93,349.48,196.93Z" d="M349.48,196.93s3.1-14,6.48-14.37,6.09,8.74,6.58,11.42S349.48,196.93,349.48,196.93Z"
style="fill: #263238" style="fill: #263238"
></path> />
<path <path
d="M348.86,197.44l.13-.62c.53-2.4,3.36-14.41,6.92-14.75,4-.4,6.75,9.8,7.12,11.82a1.32,1.32,0,0,1-.3,1.08c-1.78,2.17-12.07,2.44-13.24,2.46Zm7.28-14.39H356c-2.12.21-4.67,8.05-5.9,13.35,4.28-.13,10.78-.77,11.84-2.07a.32.32,0,0,0,.09-.27C361.48,191,358.84,183.05,356.14,183.05Z" d="M348.86,197.44l.13-.62c.53-2.4,3.36-14.41,6.92-14.75,4-.4,6.75,9.8,7.12,11.82a1.32,1.32,0,0,1-.3,1.08c-1.78,2.17-12.07,2.44-13.24,2.46Zm7.28-14.39H356c-2.12.21-4.67,8.05-5.9,13.35,4.28-.13,10.78-.77,11.84-2.07a.32.32,0,0,0,.09-.27C361.48,191,358.84,183.05,356.14,183.05Z"
style="fill: #263238" style="fill: #263238"
></path> />
<path <path
d="M312.6,159.34s3.1-14,6.48-14.37,6.09,8.73,6.58,11.42S312.6,159.34,312.6,159.34Z" d="M312.6,159.34s3.1-14,6.48-14.37,6.09,8.73,6.58,11.42S312.6,159.34,312.6,159.34Z"
style="fill: #263238" style="fill: #263238"
></path> />
<path <path
d="M312,159.85l.13-.62c.53-2.4,3.36-14.41,6.92-14.76,4-.39,6.75,9.8,7.12,11.83a1.33,1.33,0,0,1-.3,1.08c-1.77,2.17-12.07,2.43-13.24,2.46Zm7.28-14.39h-.13c-2.11.2-4.67,8-5.9,13.35,4.28-.13,10.78-.78,11.84-2.07a.34.34,0,0,0,.1-.27C324.6,153.39,322,145.46,319.26,145.46Z" d="M312,159.85l.13-.62c.53-2.4,3.36-14.41,6.92-14.76,4-.39,6.75,9.8,7.12,11.83a1.33,1.33,0,0,1-.3,1.08c-1.77,2.17-12.07,2.43-13.24,2.46Zm7.28-14.39h-.13c-2.11.2-4.67,8-5.9,13.35,4.28-.13,10.78-.78,11.84-2.07a.34.34,0,0,0,.1-.27C324.6,153.39,322,145.46,319.26,145.46Z"
style="fill: #263238" style="fill: #263238"
></path> />
<path <path
d="M255.71,487.47s7.08-82.5,7.08-92.72S258.07,361,258.07,361s-3.93-13.35-5.5-17.28-7.86-14.93-4.71-19.65,7.07,1.57,7.07,1.57a79.71,79.71,0,0,0-1.57-14.92c-1.58-7.08-2-18-2-18-3.86-11.59-4.83-34.28-5.8-36.7s-9.65-11.59-14-26.56,3.86-33.8,3.86-33.8-.48-4.83,6.28-7.24S260,197.06,260,197.06s6.74-29,20.74-37.66,19.25,6.72,20.7,10.1c0,0,11.2-16.87,19.89-14.45s19.32,18.35,22.21,25.11,1.94,16.42,1.94,16.42,8.69-11.11,16.41-3.38,11.59,26.07,9.18,40.56-16.9,25.11-16.9,25.11,2.9,26.08-4.35,37.67q-1.29,2.07-2.34,3.85s-2.23,18.93-3,29.14,1.58,50.29,1.58,67.58,9.42,88.79,9.42,88.79" d="M255.71,487.47s7.08-82.5,7.08-92.72S258.07,361,258.07,361s-3.93-13.35-5.5-17.28-7.86-14.93-4.71-19.65,7.07,1.57,7.07,1.57a79.71,79.71,0,0,0-1.57-14.92c-1.58-7.08-2-18-2-18-3.86-11.59-4.83-34.28-5.8-36.7s-9.65-11.59-14-26.56,3.86-33.8,3.86-33.8-.48-4.83,6.28-7.24S260,197.06,260,197.06s6.74-29,20.74-37.66,19.25,6.72,20.7,10.1c0,0,11.2-16.87,19.89-14.45s19.32,18.35,22.21,25.11,1.94,16.42,1.94,16.42,8.69-11.11,16.41-3.38,11.59,26.07,9.18,40.56-16.9,25.11-16.9,25.11,2.9,26.08-4.35,37.67q-1.29,2.07-2.34,3.85s-2.23,18.93-3,29.14,1.58,50.29,1.58,67.58,9.42,88.79,9.42,88.79"
style="fill: #92e3a9" style="fill: #92e3a9"
></path> />
<path <path
d="M256.21,487.51l-1-.08c.07-.83,7.07-82.6,7.07-92.68s-4.66-33.45-4.71-33.69c0-.09-3.93-13.34-5.47-17.2-.28-.69-.71-1.62-1.21-2.7-2.47-5.3-6.19-13.3-3.46-17.4a3.8,3.8,0,0,1,3.11-2c1.56,0,3,1.28,3.85,2.29a78.07,78.07,0,0,0-1.53-13.29c-1.5-6.73-2-17.06-2-18-2.54-7.68-3.83-20.16-4.69-28.42a66.18,66.18,0,0,0-1.07-8.18,23,23,0,0,0-2-3.08c-3.06-4.3-8.76-12.32-12-23.53-4.17-14.37,3.17-32.43,3.84-34,0-.85.12-5.31,6.61-7.62,6.13-2.2,15.68,5.9,18.24,8.21,1.23-4.9,7.91-29.16,20.76-37.14,4.11-2.55,7.87-3.29,11.2-2.22,5.75,1.87,8.61,8.64,9.87,11.71,2.36-3.35,12-16.1,19.92-13.9,8.56,2.38,19.37,18,22.53,25.4,2.27,5.28,2.23,12.17,2.08,15.17,1.65-1.74,5.19-4.9,9.3-5.15a8.75,8.75,0,0,1,6.87,2.86c7.63,7.63,11.81,26,9.31,41-2.25,13.51-15,23.8-16.86,25.26.31,3,2.48,26.61-4.45,37.7-.85,1.35-1.6,2.59-2.28,3.75-.18,1.53-2.26,19.33-3,29-.45,5.83.14,21.72.72,37.08.42,11.35.86,23.08.86,30.46,0,17.06,9.33,88,9.42,88.72l-1,.13c-.1-.71-9.43-71.73-9.43-88.85,0-7.36-.44-19.08-.86-30.42-.58-15.39-1.17-31.31-.71-37.19.77-10.11,3-29,3-29.17l.07-.2c.7-1.19,1.48-2.47,2.35-3.86,7.07-11.31,4.3-37.09,4.27-37.34l0-.29.23-.17c.15-.11,14.35-10.68,16.71-24.79,2.45-14.7-1.61-32.7-9-40.13a7.79,7.79,0,0,0-6.1-2.57c-5.12.3-9.53,5.85-9.57,5.9l-1.06,1.36.17-1.71c0-.1.92-9.61-1.9-16.18-3.09-7.22-13.62-22.53-21.88-24.82S302,169.61,301.9,169.78l-.52.77-.36-.85-.29-.7c-1.17-2.86-3.91-9.54-9.32-11.3-3-1-6.52-.26-10.36,2.12-13.67,8.48-20.45,37.06-20.52,37.35l-.2.86-.63-.61c-.12-.11-11.44-10.86-17.84-8.58s-6,6.54-6,6.72v.13l0,.12c-.08.19-8.08,18.84-3.84,33.46,3.21,11,8.84,19,11.87,23.23a22.14,22.14,0,0,1,2.12,3.29c.34.85.62,3.48,1.14,8.45.85,8.24,2.14,20.7,4.66,28.28l0,.13c0,.11.45,11,2,17.92a80.75,80.75,0,0,1,1.59,15v1.74l-.93-1.47s-1.94-3.06-4-3.09h0a2.81,2.81,0,0,0-2.24,1.53c-2.42,3.63,1.31,11.64,3.53,16.43.51,1.09.95,2,1.23,2.75,1.57,3.91,5.36,16.79,5.52,17.33.06.28,4.74,23.78,4.74,33.93S256.28,486.69,256.21,487.51Z" d="M256.21,487.51l-1-.08c.07-.83,7.07-82.6,7.07-92.68s-4.66-33.45-4.71-33.69c0-.09-3.93-13.34-5.47-17.2-.28-.69-.71-1.62-1.21-2.7-2.47-5.3-6.19-13.3-3.46-17.4a3.8,3.8,0,0,1,3.11-2c1.56,0,3,1.28,3.85,2.29a78.07,78.07,0,0,0-1.53-13.29c-1.5-6.73-2-17.06-2-18-2.54-7.68-3.83-20.16-4.69-28.42a66.18,66.18,0,0,0-1.07-8.18,23,23,0,0,0-2-3.08c-3.06-4.3-8.76-12.32-12-23.53-4.17-14.37,3.17-32.43,3.84-34,0-.85.12-5.31,6.61-7.62,6.13-2.2,15.68,5.9,18.24,8.21,1.23-4.9,7.91-29.16,20.76-37.14,4.11-2.55,7.87-3.29,11.2-2.22,5.75,1.87,8.61,8.64,9.87,11.71,2.36-3.35,12-16.1,19.92-13.9,8.56,2.38,19.37,18,22.53,25.4,2.27,5.28,2.23,12.17,2.08,15.17,1.65-1.74,5.19-4.9,9.3-5.15a8.75,8.75,0,0,1,6.87,2.86c7.63,7.63,11.81,26,9.31,41-2.25,13.51-15,23.8-16.86,25.26.31,3,2.48,26.61-4.45,37.7-.85,1.35-1.6,2.59-2.28,3.75-.18,1.53-2.26,19.33-3,29-.45,5.83.14,21.72.72,37.08.42,11.35.86,23.08.86,30.46,0,17.06,9.33,88,9.42,88.72l-1,.13c-.1-.71-9.43-71.73-9.43-88.85,0-7.36-.44-19.08-.86-30.42-.58-15.39-1.17-31.31-.71-37.19.77-10.11,3-29,3-29.17l.07-.2c.7-1.19,1.48-2.47,2.35-3.86,7.07-11.31,4.3-37.09,4.27-37.34l0-.29.23-.17c.15-.11,14.35-10.68,16.71-24.79,2.45-14.7-1.61-32.7-9-40.13a7.79,7.79,0,0,0-6.1-2.57c-5.12.3-9.53,5.85-9.57,5.9l-1.06,1.36.17-1.71c0-.1.92-9.61-1.9-16.18-3.09-7.22-13.62-22.53-21.88-24.82S302,169.61,301.9,169.78l-.52.77-.36-.85-.29-.7c-1.17-2.86-3.91-9.54-9.32-11.3-3-1-6.52-.26-10.36,2.12-13.67,8.48-20.45,37.06-20.52,37.35l-.2.86-.63-.61c-.12-.11-11.44-10.86-17.84-8.58s-6,6.54-6,6.72v.13l0,.12c-.08.19-8.08,18.84-3.84,33.46,3.21,11,8.84,19,11.87,23.23a22.14,22.14,0,0,1,2.12,3.29c.34.85.62,3.48,1.14,8.45.85,8.24,2.14,20.7,4.66,28.28l0,.13c0,.11.45,11,2,17.92a80.75,80.75,0,0,1,1.59,15v1.74l-.93-1.47s-1.94-3.06-4-3.09h0a2.81,2.81,0,0,0-2.24,1.53c-2.42,3.63,1.31,11.64,3.53,16.43.51,1.09.95,2,1.23,2.75,1.57,3.91,5.36,16.79,5.52,17.33.06.28,4.74,23.78,4.74,33.93S256.28,486.69,256.21,487.51Z"
style="fill: #263238" style="fill: #263238"
></path> />
<path <path
d="M260.33,309.27a.87.87,0,0,1-.28,0c-1.15-.38-4.39-7.29-6.22-11.38l.91-.41c2.15,4.8,4.75,10,5.57,10.78a11.06,11.06,0,0,0,.51-3.91v-1l2.79,2.1-.36-2.54,3.86,2.71v-3.12h1v5L264.57,305l.38,2.65-3.15-2.36c-.06,1.39-.27,3.3-1,3.81A.83.83,0,0,1,260.33,309.27Z" d="M260.33,309.27a.87.87,0,0,1-.28,0c-1.15-.38-4.39-7.29-6.22-11.38l.91-.41c2.15,4.8,4.75,10,5.57,10.78a11.06,11.06,0,0,0,.51-3.91v-1l2.79,2.1-.36-2.54,3.86,2.71v-3.12h1v5L264.57,305l.38,2.65-3.15-2.36c-.06,1.39-.27,3.3-1,3.81A.83.83,0,0,1,260.33,309.27Z"
style="fill: #263238" style="fill: #263238"
></path> />
<polygon <polygon
points="326.63 327.15 327.05 320.95 321.91 322.79 321.91 314.3 322.91 314.3 322.91 321.37 328.15 319.5 327.82 324.41 332.08 319.82 334.13 322.55 337.67 313.91 338.69 317.34 340.45 311.2 341.41 311.48 338.72 320.89 337.52 316.91 334.39 324.56 332 321.38 326.63 327.15" points="326.63 327.15 327.05 320.95 321.91 322.79 321.91 314.3 322.91 314.3 322.91 321.37 328.15 319.5 327.82 324.41 332.08 319.82 334.13 322.55 337.67 313.91 338.69 317.34 340.45 311.2 341.41 311.48 338.72 320.89 337.52 316.91 334.39 324.56 332 321.38 326.63 327.15"
style="fill: #263238" style="fill: #263238"
></polygon> />
<path <path
d="M333.45,245.75A120.71,120.71,0,0,1,318,229.14c-7.38-9.69-20.3-15.46-31.15-4.85s-21.22,21-27.22,28.84-6.23,22.38,4.61,29.07,16.84,1.15,32.07.69,23.76,6,32.3,4.16,19.38-12.46,16.61-24.23A28.34,28.34,0,0,0,333.45,245.75Z" d="M333.45,245.75A120.71,120.71,0,0,1,318,229.14c-7.38-9.69-20.3-15.46-31.15-4.85s-21.22,21-27.22,28.84-6.23,22.38,4.61,29.07,16.84,1.15,32.07.69,23.76,6,32.3,4.16,19.38-12.46,16.61-24.23A28.34,28.34,0,0,0,333.45,245.75Z"
style="fill: #263238" style="fill: #263238"
></path> />
<path <path
d="M263.55,211.61s-4.38-9-12-11.77-12.68,8.07-14.3,17.53,5.77,21.69,14.07,24.69,17.08-5.08,17.31-10.84S263.55,211.61,263.55,211.61Z" d="M263.55,211.61s-4.38-9-12-11.77-12.68,8.07-14.3,17.53,5.77,21.69,14.07,24.69,17.08-5.08,17.31-10.84S263.55,211.61,263.55,211.61Z"
style="fill: #263238" style="fill: #263238"
></path> />
<path <path
d="M277.85,169.16S267.47,180,265.17,190.84s1.15,21.23,10.84,24.46,17.3-6,20.3-14.54,1.39-23.07-2.31-30S280.39,167.31,277.85,169.16Z" d="M277.85,169.16S267.47,180,265.17,190.84s1.15,21.23,10.84,24.46,17.3-6,20.3-14.54,1.39-23.07-2.31-30S280.39,167.31,277.85,169.16Z"
style="fill: #263238" style="fill: #263238"
></path> />
<path <path
d="M310.15,168.23s-3.69,6.23-4.61,18.92,2.77,21.69,8.3,26.07,15.69,3.46,21.23-4.38,3.46-23.77-.69-30-12.23-13.62-16.61-14.31S311.54,165,310.15,168.23Z" d="M310.15,168.23s-3.69,6.23-4.61,18.92,2.77,21.69,8.3,26.07,15.69,3.46,21.23-4.38,3.46-23.77-.69-30-12.23-13.62-16.61-14.31S311.54,165,310.15,168.23Z"
style="fill: #263238" style="fill: #263238"
></path> />
<path <path
d="M345.91,203.76s-10.38,12.46-11.76,22.61,6.92,18.23,12.69,18.23,14.3-4.16,18.22-16.85-5.07-26.3-9-27.22S345.91,203.76,345.91,203.76Z" d="M345.91,203.76s-10.38,12.46-11.76,22.61,6.92,18.23,12.69,18.23,14.3-4.16,18.22-16.85-5.07-26.3-9-27.22S345.91,203.76,345.91,203.76Z"
style="fill: #263238" style="fill: #263238"
></path> />
</g> </g>
<g id="freepik--paw-1--inject-24"> <g id="freepik--paw-1--inject-24">
<path <path
d="M112,300.56s5.16,7.29,7.9,7.29,4-7.59,4-8.81S112,300.56,112,300.56Z" d="M112,300.56s5.16,7.29,7.9,7.29,4-7.59,4-8.81S112,300.56,112,300.56Z"
style="fill: #263238" style="fill: #263238"
></path> />
<path <path
d="M161.21,319.7s5.17,7.3,7.9,7.3,3.95-7.6,3.95-8.82S161.21,319.7,161.21,319.7Z" d="M161.21,319.7s5.17,7.3,7.9,7.3,3.95-7.6,3.95-8.82S161.21,319.7,161.21,319.7Z"
style="fill: #263238" style="fill: #263238"
></path> />
<path <path
d="M192.2,306.33s5.17,7.3,7.9,7.3,4-7.6,4-8.82S192.2,306.33,192.2,306.33Z" d="M192.2,306.33s5.17,7.3,7.9,7.3,4-7.6,4-8.82S192.2,306.33,192.2,306.33Z"
style="fill: #263238" style="fill: #263238"
></path> />
<path <path
d="M215.6,264.4s5.17,7.29,7.9,7.29,3.95-7.59,3.95-8.81S215.6,264.4,215.6,264.4Z" d="M215.6,264.4s5.17,7.29,7.9,7.29,3.95-7.59,3.95-8.81S215.6,264.4,215.6,264.4Z"
style="fill: #263238" style="fill: #263238"
></path> />
<path <path
d="M127.6,16.28S153.92,116.76,156.19,124s21.31,50.32,27.65,55.76,27.66,33.1,35.37,43.07,10,25.85,8.61,37.63-10.43,6.35-10.43,6.35v5.89c0,2.72.46,2.72-3.17,14.06s-6.8,19-13.15,22.21-18.59-3.62-18.59-3.62-4.53,12.69-12.24,16.32-23.57-5.9-28.56-9.07-11.79-15.41-11.79-15.41-7.24,8.09-15.53,5.32-17.28-19.35-21.43-28.33,7.6-22.12,9.68-40.1-6.22-47.69-6.22-47.69-5.94-25.21-8.66-31.56-6.8-2.72-7.25-17.23S46.28,55,43.56,50.42" d="M127.6,16.28S153.92,116.76,156.19,124s21.31,50.32,27.65,55.76,27.66,33.1,35.37,43.07,10,25.85,8.61,37.63-10.43,6.35-10.43,6.35v5.89c0,2.72.46,2.72-3.17,14.06s-6.8,19-13.15,22.21-18.59-3.62-18.59-3.62-4.53,12.69-12.24,16.32-23.57-5.9-28.56-9.07-11.79-15.41-11.79-15.41-7.24,8.09-15.53,5.32-17.28-19.35-21.43-28.33,7.6-22.12,9.68-40.1-6.22-47.69-6.22-47.69-5.94-25.21-8.66-31.56-6.8-2.72-7.25-17.23S46.28,55,43.56,50.42"
style="fill: #92e3a9" style="fill: #92e3a9"
></path> />
<path <path
d="M166.14,323c-8.09,0-19.56-6.66-24.73-10-4.46-2.84-10.18-12.49-11.62-15-1.78,1.77-8.22,7.43-15.59,5-9.34-3.12-19-22.68-21.72-28.6-2.37-5.14.13-11.3,3.31-19.09,2.53-6.21,5.39-13.24,6.32-21.27,2-17.67-6.12-47.21-6.21-47.5s-6-25.27-8.63-31.5a10.36,10.36,0,0,0-3-4c-2.07-1.9-4-3.7-4.33-13.43C79.53,123.36,45.75,55,43.13,50.68l.86-.52c2.68,4.47,36.52,72.62,37,87.44.29,9.31,2.1,11,4,12.72a11.37,11.37,0,0,1,3.2,4.32c2.71,6.32,8.44,30.61,8.68,31.65.08.27,8.29,30,6.23,47.86-.94,8.17-3.83,15.27-6.39,21.54-3.08,7.57-5.51,13.55-3.33,18.29,5.55,12,14,25.7,21.14,28.07,7.87,2.62,14.93-5.11,15-5.19l.47-.52.34.61c.07.13,6.8,12.17,11.62,15.24,6,3.84,20.88,12.43,28.08,9,7.43-3.5,11.94-15.92,12-16l.2-.56.52.29c.12.07,12.08,6.63,18.12,3.62,5.88-3,9.07-10,12.89-21.92,3.22-10.07,3.2-11.08,3.16-13.11,0-.25,0-.51,0-.8v-6.77l.76.45s3.53,2.08,6.28.72c1.84-.91,3-3.16,3.39-6.69,1.32-11.37-.81-27.3-8.51-37.27l-.62-.81c-7.8-10.09-28.53-36.92-34.67-42.19-6.34-5.43-25.39-48.25-27.81-56-2.24-7.18-28.33-106.75-28.6-107.75l1-.26c.26,1,26.35,100.55,28.59,107.71,2.35,7.54,21.45,50.35,27.5,55.54,6.22,5.33,26.26,31.26,34.81,42.33l.62.81c7.88,10.19,10.05,26.42,8.72,38-.45,3.89-1.78,6.41-3.95,7.48-2.42,1.19-5.17.23-6.48-.37v5.07c0,.29,0,.54,0,.78,0,2.14.07,3.21-3.2,13.43s-6.58,19.1-13.4,22.51c-5.84,2.92-16.12-2.09-18.55-3.36-1,2.51-5.31,12.78-12.29,16.06A10.13,10.13,0,0,1,166.14,323Z" d="M166.14,323c-8.09,0-19.56-6.66-24.73-10-4.46-2.84-10.18-12.49-11.62-15-1.78,1.77-8.22,7.43-15.59,5-9.34-3.12-19-22.68-21.72-28.6-2.37-5.14.13-11.3,3.31-19.09,2.53-6.21,5.39-13.24,6.32-21.27,2-17.67-6.12-47.21-6.21-47.5s-6-25.27-8.63-31.5a10.36,10.36,0,0,0-3-4c-2.07-1.9-4-3.7-4.33-13.43C79.53,123.36,45.75,55,43.13,50.68l.86-.52c2.68,4.47,36.52,72.62,37,87.44.29,9.31,2.1,11,4,12.72a11.37,11.37,0,0,1,3.2,4.32c2.71,6.32,8.44,30.61,8.68,31.65.08.27,8.29,30,6.23,47.86-.94,8.17-3.83,15.27-6.39,21.54-3.08,7.57-5.51,13.55-3.33,18.29,5.55,12,14,25.7,21.14,28.07,7.87,2.62,14.93-5.11,15-5.19l.47-.52.34.61c.07.13,6.8,12.17,11.62,15.24,6,3.84,20.88,12.43,28.08,9,7.43-3.5,11.94-15.92,12-16l.2-.56.52.29c.12.07,12.08,6.63,18.12,3.62,5.88-3,9.07-10,12.89-21.92,3.22-10.07,3.2-11.08,3.16-13.11,0-.25,0-.51,0-.8v-6.77l.76.45s3.53,2.08,6.28.72c1.84-.91,3-3.16,3.39-6.69,1.32-11.37-.81-27.3-8.51-37.27l-.62-.81c-7.8-10.09-28.53-36.92-34.67-42.19-6.34-5.43-25.39-48.25-27.81-56-2.24-7.18-28.33-106.75-28.6-107.75l1-.26c.26,1,26.35,100.55,28.59,107.71,2.35,7.54,21.45,50.35,27.5,55.54,6.22,5.33,26.26,31.26,34.81,42.33l.62.81c7.88,10.19,10.05,26.42,8.72,38-.45,3.89-1.78,6.41-3.95,7.48-2.42,1.19-5.17.23-6.48-.37v5.07c0,.29,0,.54,0,.78,0,2.14.07,3.21-3.2,13.43s-6.58,19.1-13.4,22.51c-5.84,2.92-16.12-2.09-18.55-3.36-1,2.51-5.31,12.78-12.29,16.06A10.13,10.13,0,0,1,166.14,323Z"
style="fill: #263238" style="fill: #263238"
></path> />
<path <path
d="M112.93,183.23l-5.26-8.32-2.89,2.68-3.18-5.9c-.65.89-1.87,2.26-3.18,2.29a2.1,2.1,0,0,1-1.85-1.12c-1.92-2.87-2.4-9.29-2.42-9.56l1-.08c0,.07.48,6.44,2.25,9.09.45.68.86.67,1,.67,1.08,0,2.43-1.87,2.82-2.52l.45-.75L105,176l2.84-2.62,4.05,6.41v-3.7h1Z" d="M112.93,183.23l-5.26-8.32-2.89,2.68-3.18-5.9c-.65.89-1.87,2.26-3.18,2.29a2.1,2.1,0,0,1-1.85-1.12c-1.92-2.87-2.4-9.29-2.42-9.56l1-.08c0,.07.48,6.44,2.25,9.09.45.68.86.67,1,.67,1.08,0,2.43-1.87,2.82-2.52l.45-.75L105,176l2.84-2.62,4.05,6.41v-3.7h1Z"
style="fill: #263238" style="fill: #263238"
></path> />
<polygon <polygon
points="148.42 125.1 144.55 124.61 144.67 123.62 147 123.91 144.29 115.4 147.74 115.78 144.52 107.03 149.02 111.54 143.76 98.72 144.68 98.34 151.83 115.77 147.03 110.96 149.24 116.95 145.71 116.56 148.42 125.1" points="148.42 125.1 144.55 124.61 144.67 123.62 147 123.91 144.29 115.4 147.74 115.78 144.52 107.03 149.02 111.54 143.76 98.72 144.68 98.34 151.83 115.77 147.03 110.96 149.24 116.95 145.71 116.56 148.42 125.1"
style="fill: #263238" style="fill: #263238"
></polygon> />
<path <path
d="M125.66,245.62c-.29-3.08-.35-5.06-.35-5.08l1,0s.06,2,.34,5Z" d="M125.66,245.62c-.29-3.08-.35-5.06-.35-5.08l1,0s.06,2,.34,5Z"
style="fill: #263238" style="fill: #263238"
></path> />
<path <path
d="M130.35,297.4l-.91-.4c.06-.15,6.2-14.48,1.35-27.28a87.31,87.31,0,0,1-4.56-19.09l1-.13a86.36,86.36,0,0,0,4.5,18.86C136.72,282.55,130.42,297.25,130.35,297.4Z" d="M130.35,297.4l-.91-.4c.06-.15,6.2-14.48,1.35-27.28a87.31,87.31,0,0,1-4.56-19.09l1-.13a86.36,86.36,0,0,0,4.5,18.86C136.72,282.55,130.42,297.25,130.35,297.4Z"
style="fill: #263238" style="fill: #263238"
></path> />
<path <path
d="M182,296.65a61.05,61.05,0,0,0-2.27-11.55c-2.27-7.66-6.79-17.32-10.43-25.08-2.15-4.59-3.85-8.22-4.53-10.27-1.79-5.39-6.3-20.72-6.35-20.87l1-.28c0,.15,4.55,15.46,6.34,20.83.66,2,2.44,5.78,4.49,10.17,3.65,7.79,8.19,17.48,10.48,25.21A62.38,62.38,0,0,1,183,296.56Z" d="M182,296.65a61.05,61.05,0,0,0-2.27-11.55c-2.27-7.66-6.79-17.32-10.43-25.08-2.15-4.59-3.85-8.22-4.53-10.27-1.79-5.39-6.3-20.72-6.35-20.87l1-.28c0,.15,4.55,15.46,6.34,20.83.66,2,2.44,5.78,4.49,10.17,3.65,7.79,8.19,17.48,10.48,25.21A62.38,62.38,0,0,1,183,296.56Z"
style="fill: #263238" style="fill: #263238"
></path> />
<path <path
d="M183,305.44l-1-.17a33.3,33.3,0,0,0,.21-5.88l1,0A33.38,33.38,0,0,1,183,305.44Z" d="M183,305.44l-1-.17a33.3,33.3,0,0,0,.21-5.88l1,0A33.38,33.38,0,0,1,183,305.44Z"
style="fill: #263238" style="fill: #263238"
></path> />
<path <path
d="M198.51,227.33c-1.22-1.54-2.42-2.92-3.47-4.14a34.06,34.06,0,0,1-4.84-6.47l-2.72-5.44.89-.45,2.72,5.44a34.07,34.07,0,0,0,4.71,6.27c1.06,1.22,2.25,2.61,3.5,4.16Z" d="M198.51,227.33c-1.22-1.54-2.42-2.92-3.47-4.14a34.06,34.06,0,0,1-4.84-6.47l-2.72-5.44.89-.45,2.72,5.44a34.07,34.07,0,0,0,4.71,6.27c1.06,1.22,2.25,2.61,3.5,4.16Z"
style="fill: #263238" style="fill: #263238"
></path> />
<path <path
d="M216.91,266.94c0-.1-2.34-9.66-9-24.39a70.06,70.06,0,0,0-7.55-12.88l.8-.59a70.49,70.49,0,0,1,7.66,13c6.74,14.84,9.08,24.48,9.1,24.57Z" d="M216.91,266.94c0-.1-2.34-9.66-9-24.39a70.06,70.06,0,0,0-7.55-12.88l.8-.59a70.49,70.49,0,0,1,7.66,13c6.74,14.84,9.08,24.48,9.1,24.57Z"
style="fill: #263238" style="fill: #263238"
></path> />
</g> </g>
</svg> </svg>
</template> </template>

View File

@@ -5,7 +5,7 @@
id="freepik--floor--inject-38" id="freepik--floor--inject-38"
d="M85.16,261.63c-91,52.56-91,137.78,0,190.34s238.65,52.56,329.68,0,91-137.78,0-190.34S176.19,209.07,85.16,261.63Z" d="M85.16,261.63c-91,52.56-91,137.78,0,190.34s238.65,52.56,329.68,0,91-137.78,0-190.34S176.19,209.07,85.16,261.63Z"
style="fill: #f5f5f5" style="fill: #f5f5f5"
></path> />
</g> </g>
<g id="freepik--Shadows--inject-38"> <g id="freepik--Shadows--inject-38">
<ellipse <ellipse
@@ -15,7 +15,7 @@
rx="113.81" rx="113.81"
ry="65.71" ry="65.71"
style="fill: #e0e0e0" style="fill: #e0e0e0"
></ellipse> />
<ellipse <ellipse
id="freepik--shadow--inject-38" id="freepik--shadow--inject-38"
cx="174.02" cx="174.02"
@@ -23,140 +23,140 @@
rx="113.81" rx="113.81"
ry="65.71" ry="65.71"
style="fill: #e0e0e0" style="fill: #e0e0e0"
></ellipse> />
</g> </g>
<g id="freepik--paw-prints--inject-38"> <g id="freepik--paw-prints--inject-38">
<g id="freepik--Paw--inject-38"> <g id="freepik--Paw--inject-38">
<path <path
d="M199,56.27c-.87,1.42-1.06,3.14-1.73,4.66-1,2.28-3.09,4-4.08,6.27a8.2,8.2,0,0,0,2,8.92,9.42,9.42,0,0,0,9.07,2c2.17-.67,4.15-1.79,6.32-2.47,2-.6,4-.6,5.91-1.57a8,8,0,0,0,3.93-4.17,5.79,5.79,0,0,0,.27-3.49c-.41-2-1.32-4.74-3-6s-3.43-1.42-5.17-2.11-3.3-2.1-4.94-3.16C204.79,53.3,201,53.1,199,56.27Z" d="M199,56.27c-.87,1.42-1.06,3.14-1.73,4.66-1,2.28-3.09,4-4.08,6.27a8.2,8.2,0,0,0,2,8.92,9.42,9.42,0,0,0,9.07,2c2.17-.67,4.15-1.79,6.32-2.47,2-.6,4-.6,5.91-1.57a8,8,0,0,0,3.93-4.17,5.79,5.79,0,0,0,.27-3.49c-.41-2-1.32-4.74-3-6s-3.43-1.42-5.17-2.11-3.3-2.1-4.94-3.16C204.79,53.3,201,53.1,199,56.27Z"
style="fill: #ebebeb" style="fill: #ebebeb"
></path> />
<path <path
d="M192.53,62a9.57,9.57,0,0,0,.5-1.68,3.94,3.94,0,0,0-1.37-4.08,12.28,12.28,0,0,0-3.5-2.21,9.49,9.49,0,0,0-3-.9,2.32,2.32,0,0,0-1.89.61,3.29,3.29,0,0,0-.55,2.8,13.69,13.69,0,0,0,1.36,4.32,7.72,7.72,0,0,0,2.3,2.88,4.1,4.1,0,0,0,3.52.69,4.36,4.36,0,0,0,2.48-2.14A2.59,2.59,0,0,0,192.53,62Z" d="M192.53,62a9.57,9.57,0,0,0,.5-1.68,3.94,3.94,0,0,0-1.37-4.08,12.28,12.28,0,0,0-3.5-2.21,9.49,9.49,0,0,0-3-.9,2.32,2.32,0,0,0-1.89.61,3.29,3.29,0,0,0-.55,2.8,13.69,13.69,0,0,0,1.36,4.32,7.72,7.72,0,0,0,2.3,2.88,4.1,4.1,0,0,0,3.52.69,4.36,4.36,0,0,0,2.48-2.14A2.59,2.59,0,0,0,192.53,62Z"
style="fill: #ebebeb" style="fill: #ebebeb"
></path> />
<path <path
d="M188.12,47.21c-.79-2.26-.85-4.7.94-6.44,2.09-2,5.23-.13,6.71,1.7a11.53,11.53,0,0,1,2.82,7.08c-.08,3.29-3,4.65-5.82,3.35A9.73,9.73,0,0,1,188.12,47.21Z" d="M188.12,47.21c-.79-2.26-.85-4.7.94-6.44,2.09-2,5.23-.13,6.71,1.7a11.53,11.53,0,0,1,2.82,7.08c-.08,3.29-3,4.65-5.82,3.35A9.73,9.73,0,0,1,188.12,47.21Z"
style="fill: #ebebeb" style="fill: #ebebeb"
></path> />
<path <path
d="M214.81,55a10.38,10.38,0,0,1-1.47-1,4,4,0,0,1-1.56-4A12,12,0,0,1,213,46.05a9.9,9.9,0,0,1,1.71-2.61,2.35,2.35,0,0,1,1.85-.74,3.29,3.29,0,0,1,2.22,1.79,14.11,14.11,0,0,1,1.73,4.19,7.77,7.77,0,0,1,.08,3.68,4.12,4.12,0,0,1-2.26,2.79,4.43,4.43,0,0,1-3.28,0Z" d="M214.81,55a10.38,10.38,0,0,1-1.47-1,4,4,0,0,1-1.56-4A12,12,0,0,1,213,46.05a9.9,9.9,0,0,1,1.71-2.61,2.35,2.35,0,0,1,1.85-.74,3.29,3.29,0,0,1,2.22,1.79,14.11,14.11,0,0,1,1.73,4.19,7.77,7.77,0,0,1,.08,3.68,4.12,4.12,0,0,1-2.26,2.79,4.43,4.43,0,0,1-3.28,0Z"
style="fill: #ebebeb" style="fill: #ebebeb"
></path> />
<path <path
d="M209.16,40.1c-.86-2.24-2.4-4.13-4.89-4.29-2.91-.19-4.07,3.28-4,5.64a11.55,11.55,0,0,0,2.43,7.22c2.2,2.45,5.29,1.6,6.61-1.22A9.79,9.79,0,0,0,209.16,40.1Z" d="M209.16,40.1c-.86-2.24-2.4-4.13-4.89-4.29-2.91-.19-4.07,3.28-4,5.64a11.55,11.55,0,0,0,2.43,7.22c2.2,2.45,5.29,1.6,6.61-1.22A9.79,9.79,0,0,0,209.16,40.1Z"
style="fill: #ebebeb" style="fill: #ebebeb"
></path> />
</g> </g>
<g id="freepik--paw--inject-38"> <g id="freepik--paw--inject-38">
<path <path
d="M50,42c-1.4.25-2.6,1.13-4,1.57-2,.66-4.29.32-6.31,1A7,7,0,0,0,35.17,51a8.05,8.05,0,0,0,3.94,6.89c1.67,1,3.52,1.6,5.19,2.59,1.51.9,2.68,2.2,4.39,2.85a6.87,6.87,0,0,0,4.89.1A5,5,0,0,0,56,61.55c1-1.38,2.25-3.55,2.11-5.33s-1.07-3-1.63-4.48a25.6,25.6,0,0,1-.83-5C55.14,44,53.1,41.44,50,42Z" d="M50,42c-1.4.25-2.6,1.13-4,1.57-2,.66-4.29.32-6.31,1A7,7,0,0,0,35.17,51a8.05,8.05,0,0,0,3.94,6.89c1.67,1,3.52,1.6,5.19,2.59,1.51.9,2.68,2.2,4.39,2.85a6.87,6.87,0,0,0,4.89.1A5,5,0,0,0,56,61.55c1-1.38,2.25-3.55,2.11-5.33s-1.07-3-1.63-4.48a25.6,25.6,0,0,1-.83-5C55.14,44,53.1,41.44,50,42Z"
style="fill: #ebebeb" style="fill: #ebebeb"
></path> />
<path <path
d="M42.6,41.17A9.85,9.85,0,0,0,44,40.52a3.38,3.38,0,0,0,1.8-3.21,10.46,10.46,0,0,0-.6-3.49A8.6,8.6,0,0,0,44,31.41a2,2,0,0,0-1.48-.85,2.83,2.83,0,0,0-2.09,1.26,12.07,12.07,0,0,0-2,3.34,6.54,6.54,0,0,0-.5,3.11,3.49,3.49,0,0,0,1.58,2.63,3.74,3.74,0,0,0,2.78.35Z" d="M42.6,41.17A9.85,9.85,0,0,0,44,40.52a3.38,3.38,0,0,0,1.8-3.21,10.46,10.46,0,0,0-.6-3.49A8.6,8.6,0,0,0,44,31.41a2,2,0,0,0-1.48-.85,2.83,2.83,0,0,0-2.09,1.26,12.07,12.07,0,0,0-2,3.34,6.54,6.54,0,0,0-.5,3.11,3.49,3.49,0,0,0,1.58,2.63,3.74,3.74,0,0,0,2.78.35Z"
style="fill: #ebebeb" style="fill: #ebebeb"
></path> />
<path <path
d="M49.44,29.89c1-1.8,2.49-3.23,4.62-3.09C56.55,27,57.15,30,56.83,32A9.89,9.89,0,0,1,54,37.88c-2.13,1.83-4.65.77-5.46-1.77A8.39,8.39,0,0,1,49.44,29.89Z" d="M49.44,29.89c1-1.8,2.49-3.23,4.62-3.09C56.55,27,57.15,30,56.83,32A9.89,9.89,0,0,1,54,37.88c-2.13,1.83-4.65.77-5.46-1.77A8.39,8.39,0,0,1,49.44,29.89Z"
style="fill: #ebebeb" style="fill: #ebebeb"
></path> />
<path <path
d="M59.83,51.26a8.13,8.13,0,0,1-.22-1.48,3.35,3.35,0,0,1,1.64-3.29A10.57,10.57,0,0,1,64.47,45a8.17,8.17,0,0,1,2.64-.4,2,2,0,0,1,1.53.74,2.82,2.82,0,0,1,.14,2.43,11.88,11.88,0,0,1-1.67,3.5,6.52,6.52,0,0,1-2.29,2.17,3.51,3.51,0,0,1-3.06.17,3.77,3.77,0,0,1-1.85-2.11Z" d="M59.83,51.26a8.13,8.13,0,0,1-.22-1.48,3.35,3.35,0,0,1,1.64-3.29A10.57,10.57,0,0,1,64.47,45a8.17,8.17,0,0,1,2.64-.4,2,2,0,0,1,1.53.74,2.82,2.82,0,0,1,.14,2.43,11.88,11.88,0,0,1-1.67,3.5,6.52,6.52,0,0,1-2.29,2.17,3.51,3.51,0,0,1-3.06.17,3.77,3.77,0,0,1-1.85-2.11Z"
style="fill: #ebebeb" style="fill: #ebebeb"
></path> />
<path <path
d="M66,39.16c.92-1.84,1.25-3.9-.08-5.57-1.55-2-4.42-.69-5.88.7A9.9,9.9,0,0,0,56.88,40c-.29,2.79,2,4.27,4.56,3.48A8.32,8.32,0,0,0,66,39.16Z" d="M66,39.16c.92-1.84,1.25-3.9-.08-5.57-1.55-2-4.42-.69-5.88.7A9.9,9.9,0,0,0,56.88,40c-.29,2.79,2,4.27,4.56,3.48A8.32,8.32,0,0,0,66,39.16Z"
style="fill: #ebebeb" style="fill: #ebebeb"
></path> />
</g> </g>
<g id="freepik--paw--inject-38"> <g id="freepik--paw--inject-38">
<path <path
d="M401.17,51c-.5,1.52-.28,3.17-.56,4.74-.43,2.36-2,4.41-2.38,6.78a7.89,7.89,0,0,0,3.88,7.88,9,9,0,0,0,8.91-.21c1.87-1.12,3.47-2.62,5.34-3.74,1.7-1,3.61-1.48,5.16-2.82a7.72,7.72,0,0,0,2.72-4.78,5.65,5.65,0,0,0-.55-3.33c-.83-1.73-2.31-4.11-4.14-4.93s-3.53-.54-5.3-.78-3.56-1.21-5.34-1.84C405.87,46.87,402.29,47.55,401.17,51Z" d="M401.17,51c-.5,1.52-.28,3.17-.56,4.74-.43,2.36-2,4.41-2.38,6.78a7.89,7.89,0,0,0,3.88,7.88,9,9,0,0,0,8.91-.21c1.87-1.12,3.47-2.62,5.34-3.74,1.7-1,3.61-1.48,5.16-2.82a7.72,7.72,0,0,0,2.72-4.78,5.65,5.65,0,0,0-.55-3.33c-.83-1.73-2.31-4.11-4.14-4.93s-3.53-.54-5.3-.78-3.56-1.21-5.34-1.84C405.87,46.87,402.29,47.55,401.17,51Z"
style="fill: #ebebeb" style="fill: #ebebeb"
></path> />
<path <path
d="M396.4,57.78a10.45,10.45,0,0,0,.09-1.68,3.81,3.81,0,0,0-2.21-3.5,11.83,11.83,0,0,0-3.77-1.27,9.44,9.44,0,0,0-3-.16,2.24,2.24,0,0,0-1.62,1,3.13,3.13,0,0,0,.12,2.73,13.65,13.65,0,0,0,2.25,3.73,7.51,7.51,0,0,0,2.81,2.16,3.92,3.92,0,0,0,3.44-.16,4.24,4.24,0,0,0,1.83-2.56Z" d="M396.4,57.78a10.45,10.45,0,0,0,.09-1.68,3.81,3.81,0,0,0-2.21-3.5,11.83,11.83,0,0,0-3.77-1.27,9.44,9.44,0,0,0-3-.16,2.24,2.24,0,0,0-1.62,1,3.13,3.13,0,0,0,.12,2.73,13.65,13.65,0,0,0,2.25,3.73,7.51,7.51,0,0,0,2.81,2.16,3.92,3.92,0,0,0,3.44-.16,4.24,4.24,0,0,0,1.83-2.56Z"
style="fill: #ebebeb" style="fill: #ebebeb"
></path> />
<path <path
d="M388.92,45c-1.25-1.94-1.87-4.2-.59-6.23,1.49-2.37,4.85-1.31,6.65.06a11.18,11.18,0,0,1,4.25,6c.67,3.09-1.73,5-4.67,4.45A9.34,9.34,0,0,1,388.92,45Z" d="M388.92,45c-1.25-1.94-1.87-4.2-.59-6.23,1.49-2.37,4.85-1.31,6.65.06a11.18,11.18,0,0,1,4.25,6c.67,3.09-1.73,5-4.67,4.45A9.34,9.34,0,0,1,388.92,45Z"
style="fill: #ebebeb" style="fill: #ebebeb"
></path> />
<path <path
d="M415.59,46.15a9.93,9.93,0,0,1-1.58-.57,3.79,3.79,0,0,1-2.38-3.39,11.83,11.83,0,0,1,.28-4,9.42,9.42,0,0,1,1-2.82,2.24,2.24,0,0,1,1.55-1.12A3.14,3.14,0,0,1,417,35.45,13.5,13.5,0,0,1,419.52,39a7.46,7.46,0,0,1,.91,3.42A3.92,3.92,0,0,1,419,45.5a4.17,4.17,0,0,1-3.07.7Z" d="M415.59,46.15a9.93,9.93,0,0,1-1.58-.57,3.79,3.79,0,0,1-2.38-3.39,11.83,11.83,0,0,1,.28-4,9.42,9.42,0,0,1,1-2.82,2.24,2.24,0,0,1,1.55-1.12A3.14,3.14,0,0,1,417,35.45,13.5,13.5,0,0,1,419.52,39a7.46,7.46,0,0,1,.91,3.42A3.92,3.92,0,0,1,419,45.5a4.17,4.17,0,0,1-3.07.7Z"
style="fill: #ebebeb" style="fill: #ebebeb"
></path> />
<path <path
d="M406.94,33.56c-1.32-1.89-3.18-3.32-5.54-2.9-2.77.49-3,4-2.46,6.18A11.19,11.19,0,0,0,402.86,43c2.61,1.79,5.3.29,5.89-2.65A9.36,9.36,0,0,0,406.94,33.56Z" d="M406.94,33.56c-1.32-1.89-3.18-3.32-5.54-2.9-2.77.49-3,4-2.46,6.18A11.19,11.19,0,0,0,402.86,43c2.61,1.79,5.3.29,5.89-2.65A9.36,9.36,0,0,0,406.94,33.56Z"
style="fill: #ebebeb" style="fill: #ebebeb"
></path> />
</g> </g>
<g id="freepik--paw--inject-38"> <g id="freepik--paw--inject-38">
<path <path
d="M293.8,77.21c-1.89.81-3.29,2.44-5.05,3.5-2.64,1.6-5.94,1.85-8.56,3.48a10.13,10.13,0,0,0-4.29,10.45,11.61,11.61,0,0,0,7.8,8.41c2.67.85,5.47,1.11,8.15,2,2.42.77,4.49,2.22,7.1,2.57a9.93,9.93,0,0,0,6.94-1.46,7.21,7.21,0,0,0,2.73-3.36c1-2.27,2-5.72,1.23-8.19-.72-2.26-2.48-3.86-3.76-5.78s-1.86-4.46-2.78-6.7C301.74,78.26,298.05,75.38,293.8,77.21Z" d="M293.8,77.21c-1.89.81-3.29,2.44-5.05,3.5-2.64,1.6-5.94,1.85-8.56,3.48a10.13,10.13,0,0,0-4.29,10.45,11.61,11.61,0,0,0,7.8,8.41c2.67.85,5.47,1.11,8.15,2,2.42.77,4.49,2.22,7.1,2.57a9.93,9.93,0,0,0,6.94-1.46,7.21,7.21,0,0,0,2.73-3.36c1-2.27,2-5.72,1.23-8.19-.72-2.26-2.48-3.86-3.76-5.78s-1.86-4.46-2.78-6.7C301.74,78.26,298.05,75.38,293.8,77.21Z"
style="fill: #f5f5f5" style="fill: #f5f5f5"
></path> />
<path <path
d="M283.16,78.42a12.92,12.92,0,0,0,1.7-1.35,4.88,4.88,0,0,0,1.49-5.1,15,15,0,0,0-2-4.73,12.29,12.29,0,0,0-2.4-3,2.92,2.92,0,0,0-2.35-.71A4.08,4.08,0,0,0,277.07,66a17.25,17.25,0,0,0-1.66,5.35,9.42,9.42,0,0,0,.3,4.54A5.08,5.08,0,0,0,278.79,79a5.43,5.43,0,0,0,4-.42A3.79,3.79,0,0,0,283.16,78.42Z" d="M283.16,78.42a12.92,12.92,0,0,0,1.7-1.35,4.88,4.88,0,0,0,1.49-5.1,15,15,0,0,0-2-4.73,12.29,12.29,0,0,0-2.4-3,2.92,2.92,0,0,0-2.35-.71A4.08,4.08,0,0,0,277.07,66a17.25,17.25,0,0,0-1.66,5.35,9.42,9.42,0,0,0,.3,4.54A5.08,5.08,0,0,0,278.79,79a5.43,5.43,0,0,0,4-.42A3.79,3.79,0,0,0,283.16,78.42Z"
style="fill: #f5f5f5" style="fill: #f5f5f5"
></path> />
<path <path
d="M289.12,60.31c.8-2.85,2.45-5.37,5.5-5.87,3.56-.58,5.4,3.55,5.61,6.46s-.28,6.66-2.13,9.18c-2.41,3.28-6.31,2.61-8.27-.71C288.27,66.73,288.32,63.19,289.12,60.31Z" d="M289.12,60.31c.8-2.85,2.45-5.37,5.5-5.87,3.56-.58,5.4,3.55,5.61,6.46s-.28,6.66-2.13,9.18c-2.41,3.28-6.31,2.61-8.27-.71C288.27,66.73,288.32,63.19,289.12,60.31Z"
style="fill: #f5f5f5" style="fill: #f5f5f5"
></path> />
<path <path
d="M310.73,87a11.69,11.69,0,0,1-.8-2,4.86,4.86,0,0,1,1.23-5.17,15.32,15.32,0,0,1,4.07-3.12,12.2,12.2,0,0,1,3.58-1.43,2.92,2.92,0,0,1,2.4.55,4.11,4.11,0,0,1,1,3.38A17.22,17.22,0,0,1,321,84.69a9.65,9.65,0,0,1-2.51,3.79,5.12,5.12,0,0,1-4.26,1.24,5.43,5.43,0,0,1-3.29-2.37A3.79,3.79,0,0,1,310.73,87Z" d="M310.73,87a11.69,11.69,0,0,1-.8-2,4.86,4.86,0,0,1,1.23-5.17,15.32,15.32,0,0,1,4.07-3.12,12.2,12.2,0,0,1,3.58-1.43,2.92,2.92,0,0,1,2.4.55,4.11,4.11,0,0,1,1,3.38A17.22,17.22,0,0,1,321,84.69a9.65,9.65,0,0,1-2.51,3.79,5.12,5.12,0,0,1-4.26,1.24,5.43,5.43,0,0,1-3.29-2.37A3.79,3.79,0,0,1,310.73,87Z"
style="fill: #f5f5f5" style="fill: #f5f5f5"
></path> />
<path <path
d="M315.49,68c.7-2.88.49-5.89-1.93-7.81-2.82-2.25-6.44.46-8,2.89s-3,6-2.63,9.06c.5,4,4.23,5.35,7.56,3.41C313.1,74,314.79,70.85,315.49,68Z" d="M315.49,68c.7-2.88.49-5.89-1.93-7.81-2.82-2.25-6.44.46-8,2.89s-3,6-2.63,9.06c.5,4,4.23,5.35,7.56,3.41C313.1,74,314.79,70.85,315.49,68Z"
style="fill: #f5f5f5" style="fill: #f5f5f5"
></path> />
</g> </g>
<g id="freepik--paw--inject-38"> <g id="freepik--paw--inject-38">
<path <path
d="M464.15,140c-1.36.51-2.42,1.61-3.7,2.31-1.93,1-4.27,1.1-6.18,2.17a7.17,7.17,0,0,0-3.4,7.26,8.25,8.25,0,0,0,5.24,6.24c1.86.69,3.84,1,5.71,1.67,1.69.63,3.11,1.72,4.95,2.06a7,7,0,0,0,5-.79,5.14,5.14,0,0,0,2.06-2.29c.76-1.58,1.61-4,1.14-5.77-.43-1.63-1.62-2.82-2.46-4.23a25.81,25.81,0,0,1-1.74-4.84C469.75,141,467.23,138.83,464.15,140Z" d="M464.15,140c-1.36.51-2.42,1.61-3.7,2.31-1.93,1-4.27,1.1-6.18,2.17a7.17,7.17,0,0,0-3.4,7.26,8.25,8.25,0,0,0,5.24,6.24c1.86.69,3.84,1,5.71,1.67,1.69.63,3.11,1.72,4.95,2.06a7,7,0,0,0,5-.79,5.14,5.14,0,0,0,2.06-2.29c.76-1.58,1.61-4,1.14-5.77-.43-1.63-1.62-2.82-2.46-4.23a25.81,25.81,0,0,1-1.74-4.84C469.75,141,467.23,138.83,464.15,140Z"
style="fill: #f5f5f5" style="fill: #f5f5f5"
></path> />
<path <path
d="M456.57,140.47a8.42,8.42,0,0,0,1.25-.9,3.45,3.45,0,0,0,1.23-3.56,10.83,10.83,0,0,0-1.25-3.42,8.74,8.74,0,0,0-1.59-2.22,2.1,2.1,0,0,0-1.65-.59,2.9,2.9,0,0,0-1.88,1.65,12.46,12.46,0,0,0-1.37,3.74,6.91,6.91,0,0,0,.06,3.23,3.59,3.59,0,0,0,2.08,2.36,3.81,3.81,0,0,0,2.87-.16Z" d="M456.57,140.47a8.42,8.42,0,0,0,1.25-.9,3.45,3.45,0,0,0,1.23-3.56,10.83,10.83,0,0,0-1.25-3.42,8.74,8.74,0,0,0-1.59-2.22,2.1,2.1,0,0,0-1.65-.59,2.9,2.9,0,0,0-1.88,1.65,12.46,12.46,0,0,0-1.37,3.74,6.91,6.91,0,0,0,.06,3.23,3.59,3.59,0,0,0,2.08,2.36,3.81,3.81,0,0,0,2.87-.16Z"
style="fill: #f5f5f5" style="fill: #f5f5f5"
></path> />
<path <path
d="M461.41,127.84c.67-2,1.93-3.73,4.1-4,2.55-.29,3.71,2.71,3.76,4.77a10.13,10.13,0,0,1-1.83,6.44c-1.81,2.24-4.56,1.63-5.84-.79A8.59,8.59,0,0,1,461.41,127.84Z" d="M461.41,127.84c.67-2,1.93-3.73,4.1-4,2.55-.29,3.71,2.71,3.76,4.77a10.13,10.13,0,0,1-1.83,6.44c-1.81,2.24-4.56,1.63-5.84-.79A8.59,8.59,0,0,1,461.41,127.84Z"
style="fill: #f5f5f5" style="fill: #f5f5f5"
></path> />
<path <path
d="M475.82,147.51a9,9,0,0,1-.5-1.46,3.45,3.45,0,0,1,1.05-3.62,10.88,10.88,0,0,1,3-2.07,8.56,8.56,0,0,1,2.59-.89,2,2,0,0,1,1.68.47,2.9,2.9,0,0,1,.59,2.43,12.25,12.25,0,0,1-1.05,3.84,6.7,6.7,0,0,1-1.91,2.6,3.56,3.56,0,0,1-3.06.73,3.81,3.81,0,0,1-2.25-1.78Z" d="M475.82,147.51a9,9,0,0,1-.5-1.46,3.45,3.45,0,0,1,1.05-3.62,10.88,10.88,0,0,1,3-2.07,8.56,8.56,0,0,1,2.59-.89,2,2,0,0,1,1.68.47,2.9,2.9,0,0,1,.59,2.43,12.25,12.25,0,0,1-1.05,3.84,6.7,6.7,0,0,1-1.91,2.6,3.56,3.56,0,0,1-3.06.73,3.81,3.81,0,0,1-2.25-1.78Z"
style="fill: #f5f5f5" style="fill: #f5f5f5"
></path> />
<path <path
d="M479.85,134.15c.59-2,.54-4.15-1.1-5.6-1.93-1.69-4.59.11-5.81,1.78a10.2,10.2,0,0,0-2.17,6.33c.22,2.88,2.82,3.94,5.25,2.68A8.57,8.57,0,0,0,479.85,134.15Z" d="M479.85,134.15c.59-2,.54-4.15-1.1-5.6-1.93-1.69-4.59.11-5.81,1.78a10.2,10.2,0,0,0-2.17,6.33c.22,2.88,2.82,3.94,5.25,2.68A8.57,8.57,0,0,0,479.85,134.15Z"
style="fill: #f5f5f5" style="fill: #f5f5f5"
></path> />
</g> </g>
<g id="freepik--paw--inject-38"> <g id="freepik--paw--inject-38">
<path <path
d="M49.3,221.55c-.78,1.42-.87,3.11-1.45,4.63-.86,2.28-2.79,4-3.63,6.32a8,8,0,0,0,2.4,8.6,9.22,9.22,0,0,0,9,1.45c2.07-.77,3.94-2,6-2.74,1.88-.7,3.88-.81,5.67-1.86a7.85,7.85,0,0,0,3.61-4.27,5.7,5.7,0,0,0,.07-3.42c-.51-1.89-1.54-4.55-3.22-5.7s-3.42-1.2-5.15-1.77-3.33-1.87-5-2.82C54.75,218.34,51.05,218.34,49.3,221.55Z" d="M49.3,221.55c-.78,1.42-.87,3.11-1.45,4.63-.86,2.28-2.79,4-3.63,6.32a8,8,0,0,0,2.4,8.6,9.22,9.22,0,0,0,9,1.45c2.07-.77,3.94-2,6-2.74,1.88-.7,3.88-.81,5.67-1.86a7.85,7.85,0,0,0,3.61-4.27,5.7,5.7,0,0,0,.07-3.42c-.51-1.89-1.54-4.55-3.22-5.7s-3.42-1.2-5.15-1.77-3.33-1.87-5-2.82C54.75,218.34,51.05,218.34,49.3,221.55Z"
style="fill: #f5f5f5" style="fill: #f5f5f5"
></path> />
<path <path
d="M43.26,227.47a9.24,9.24,0,0,0,.4-1.67,3.85,3.85,0,0,0-1.55-3.9,11.77,11.77,0,0,0-3.53-2,9.79,9.79,0,0,0-3-.72,2.31,2.31,0,0,0-1.82.71,3.24,3.24,0,0,0-.39,2.75A13.94,13.94,0,0,0,35,226.81a7.44,7.44,0,0,0,2.39,2.68,4,4,0,0,0,3.47.49,4.32,4.32,0,0,0,2.31-2.22C43.19,227.66,43.23,227.57,43.26,227.47Z" d="M43.26,227.47a9.24,9.24,0,0,0,.4-1.67,3.85,3.85,0,0,0-1.55-3.9,11.77,11.77,0,0,0-3.53-2,9.79,9.79,0,0,0-3-.72,2.31,2.31,0,0,0-1.82.71,3.24,3.24,0,0,0-.39,2.75A13.94,13.94,0,0,0,35,226.81a7.44,7.44,0,0,0,2.39,2.68,4,4,0,0,0,3.47.49,4.32,4.32,0,0,0,2.31-2.22C43.19,227.66,43.23,227.57,43.26,227.47Z"
style="fill: #f5f5f5" style="fill: #f5f5f5"
></path> />
<path <path
d="M38.17,213.3c-.89-2.16-1.08-4.54.57-6.33,1.93-2.09,5.09-.41,6.63,1.3A11.29,11.29,0,0,1,48.51,215c.09,3.21-2.66,4.69-5.5,3.57A9.5,9.5,0,0,1,38.17,213.3Z" d="M38.17,213.3c-.89-2.16-1.08-4.54.57-6.33,1.93-2.09,5.09-.41,6.63,1.3A11.29,11.29,0,0,1,48.51,215c.09,3.21-2.66,4.69-5.5,3.57A9.5,9.5,0,0,1,38.17,213.3Z"
style="fill: #f5f5f5" style="fill: #f5f5f5"
></path> />
<path <path
d="M64.6,219.42a11,11,0,0,1-1.48-.86,3.86,3.86,0,0,1-1.74-3.82,11.89,11.89,0,0,1,1-3.92,9.48,9.48,0,0,1,1.53-2.63,2.31,2.31,0,0,1,1.76-.83A3.24,3.24,0,0,1,68,209a13.84,13.84,0,0,1,1.91,4,7.56,7.56,0,0,1,.28,3.59,4.05,4.05,0,0,1-2,2.84,4.27,4.27,0,0,1-3.2.13Z" d="M64.6,219.42a11,11,0,0,1-1.48-.86,3.86,3.86,0,0,1-1.74-3.82,11.89,11.89,0,0,1,1-3.92,9.48,9.48,0,0,1,1.53-2.63,2.31,2.31,0,0,1,1.76-.83A3.24,3.24,0,0,1,68,209a13.84,13.84,0,0,1,1.91,4,7.56,7.56,0,0,1,.28,3.59,4.05,4.05,0,0,1-2,2.84,4.27,4.27,0,0,1-3.2.13Z"
style="fill: #f5f5f5" style="fill: #f5f5f5"
></path> />
<path <path
d="M58.3,205.24c-1-2.14-2.56-3.91-5-3.93-2.85,0-3.79,3.42-3.6,5.72a11.31,11.31,0,0,0,2.77,6.91c2.27,2.27,5.23,1.28,6.37-1.55A9.56,9.56,0,0,0,58.3,205.24Z" d="M58.3,205.24c-1-2.14-2.56-3.91-5-3.93-2.85,0-3.79,3.42-3.6,5.72a11.31,11.31,0,0,0,2.77,6.91c2.27,2.27,5.23,1.28,6.37-1.55A9.56,9.56,0,0,0,58.3,205.24Z"
style="fill: #f5f5f5" style="fill: #f5f5f5"
></path> />
</g> </g>
</g> </g>
<g id="freepik--dog-2--inject-38"> <g id="freepik--dog-2--inject-38">
@@ -164,192 +164,192 @@
<path <path
d="M236.1,269c-.65-2.16-1.39-4.29-2.24-6.38-2.8-6.84-6.73-13.15-10.65-19.41q-5.57-8.92-11.15-17.84c-3.29-5.27-7.32-10.35-8.74-16.48-5.4-23.16,12.38-35.21,13.79-41.93s-13.05-5.76-23.45,15.14c-7.79,15.65-6.7,31.53,1.49,47.23,6.19,11.86,15,22.23,21.31,33.92,5.57,10.31,5.33,22.71,4.17,34.37-.84,8.36-2.07,16.9-.18,25.09,1.16,5,4.83,13.57,10.42,15,6.5,1.73,10.73-5,10.57-10.61a76.38,76.38,0,0,0-1.12-8.23,91.7,91.7,0,0,1-.39-13.87C240.11,292.94,239.54,280.57,236.1,269Z" d="M236.1,269c-.65-2.16-1.39-4.29-2.24-6.38-2.8-6.84-6.73-13.15-10.65-19.41q-5.57-8.92-11.15-17.84c-3.29-5.27-7.32-10.35-8.74-16.48-5.4-23.16,12.38-35.21,13.79-41.93s-13.05-5.76-23.45,15.14c-7.79,15.65-6.7,31.53,1.49,47.23,6.19,11.86,15,22.23,21.31,33.92,5.57,10.31,5.33,22.71,4.17,34.37-.84,8.36-2.07,16.9-.18,25.09,1.16,5,4.83,13.57,10.42,15,6.5,1.73,10.73-5,10.57-10.61a76.38,76.38,0,0,0-1.12-8.23,91.7,91.7,0,0,1-.39-13.87C240.11,292.94,239.54,280.57,236.1,269Z"
style="fill: #37474f" style="fill: #37474f"
></path> />
<path <path
d="M352.58,268.85a31.14,31.14,0,0,1,4.67,3.16,37.31,37.31,0,0,1,6.44,7c8,11,11.1,26.21,5.36,38.54-6.08,13-21.17,20.55-35.53,19.75,6.28,2.87,13.91.65,20.53,2.7,3.34,1,5.85,4.66,6.49,8.1s-.41,7-4.76,7c0,1.69-3.2,4.77-8.87,3.22-.29,1.24-1,3.49-10.46,1.9s-37.14-12.81-48.4-19.23a65.94,65.94,0,0,1-12.47-8.54c-6.91-6-11.48-14.68-13.56-23.68-2.62-11.38-1.71-23.27-.14-34.84,2.53-18.63,7-40.46,28.14-45.51a16.78,16.78,0,0,1,7.42-.34c3.92.85,7.13,3.76,9.32,7.13,5,7.74,5.21,17.57,4.67,26.78-.44,7.55,5.16,3.83,10,3a62.33,62.33,0,0,1,14.94-.8A40.17,40.17,0,0,1,352.58,268.85Z" d="M352.58,268.85a31.14,31.14,0,0,1,4.67,3.16,37.31,37.31,0,0,1,6.44,7c8,11,11.1,26.21,5.36,38.54-6.08,13-21.17,20.55-35.53,19.75,6.28,2.87,13.91.65,20.53,2.7,3.34,1,5.85,4.66,6.49,8.1s-.41,7-4.76,7c0,1.69-3.2,4.77-8.87,3.22-.29,1.24-1,3.49-10.46,1.9s-37.14-12.81-48.4-19.23a65.94,65.94,0,0,1-12.47-8.54c-6.91-6-11.48-14.68-13.56-23.68-2.62-11.38-1.71-23.27-.14-34.84,2.53-18.63,7-40.46,28.14-45.51a16.78,16.78,0,0,1,7.42-.34c3.92.85,7.13,3.76,9.32,7.13,5,7.74,5.21,17.57,4.67,26.78-.44,7.55,5.16,3.83,10,3a62.33,62.33,0,0,1,14.94-.8A40.17,40.17,0,0,1,352.58,268.85Z"
style="fill: #37474f" style="fill: #37474f"
></path> />
<path <path
d="M355.78,355.07c.67-4,.42-8.79-3.37-10.43s-10.72-1.26-10.72-1.26,9.21-1.39,12.61.76S356.88,352,355.78,355.07Z" d="M355.78,355.07c.67-4,.42-8.79-3.37-10.43s-10.72-1.26-10.72-1.26,9.21-1.39,12.61.76S356.88,352,355.78,355.07Z"
style="fill: #263238" style="fill: #263238"
></path> />
<path <path
d="M346.91,358.26c.67-4,.42-8.79-3.37-10.43s-10.72-1.26-10.72-1.26,9.21-1.38,12.61.76S348,355.2,346.91,358.26Z" d="M346.91,358.26c.67-4,.42-8.79-3.37-10.43s-10.72-1.26-10.72-1.26,9.21-1.38,12.61.76S348,355.2,346.91,358.26Z"
style="fill: #263238" style="fill: #263238"
></path> />
<path <path
d="M326.75,325.58c-1.89.2-4-.73-4.64-2.54,1.65,4.15-1,9.07-4.9,11.23s-8.66,2.1-13.06,1.37c-15.71-2.61-30-14.07-34.56-29.34-2.42-8.13-2.11-16.88-.43-25.2A81,81,0,0,1,285,247.21c6-7.63,13.82-14.4,23.28-16.65s20.68,1.08,25.41,9.58a27.4,27.4,0,0,1,2.87,9.43c1.73,12.08-.61,24.3.86,36.39.94,7.69,2.85,15.58,1.36,23.33C337.53,315.57,334.34,324.77,326.75,325.58Z" d="M326.75,325.58c-1.89.2-4-.73-4.64-2.54,1.65,4.15-1,9.07-4.9,11.23s-8.66,2.1-13.06,1.37c-15.71-2.61-30-14.07-34.56-29.34-2.42-8.13-2.11-16.88-.43-25.2A81,81,0,0,1,285,247.21c6-7.63,13.82-14.4,23.28-16.65s20.68,1.08,25.41,9.58a27.4,27.4,0,0,1,2.87,9.43c1.73,12.08-.61,24.3.86,36.39.94,7.69,2.85,15.58,1.36,23.33C337.53,315.57,334.34,324.77,326.75,325.58Z"
style="fill: #f0f0f0" style="fill: #f0f0f0"
></path> />
<path <path
d="M284.39,291.65c4.38-2.1,9.47-2.28,14.27-1.56,3.5.53,7.19,1.69,9.27,4.55.46-2.35,3.83-3,5.83-1.72s2.95,3.7,3.76,5.95c.55-3.37,1.44-7.21,4.49-8.77s7.29.57,9.4,3a18.11,18.11,0,0,1,3.5,6.88c.53-1.1,2.09-1.08,3.24-.71a8.48,8.48,0,0,1,1,.39,36.32,36.32,0,0,1-.41,9.65c-1.2,6.28-4.39,15.48-12,16.29-1.89.2-4-.73-4.64-2.54,1.65,4.15-1,9.07-4.9,11.23s-8.66,2.1-13.06,1.37a44.7,44.7,0,0,1-13.09-4.38,72,72,0,0,1-12.4-19.06c-1.36-2.94-2.6-6.08-2.43-9.32C276.48,298,280,293.75,284.39,291.65Z" d="M284.39,291.65c4.38-2.1,9.47-2.28,14.27-1.56,3.5.53,7.19,1.69,9.27,4.55.46-2.35,3.83-3,5.83-1.72s2.95,3.7,3.76,5.95c.55-3.37,1.44-7.21,4.49-8.77s7.29.57,9.4,3a18.11,18.11,0,0,1,3.5,6.88c.53-1.1,2.09-1.08,3.24-.71a8.48,8.48,0,0,1,1,.39,36.32,36.32,0,0,1-.41,9.65c-1.2,6.28-4.39,15.48-12,16.29-1.89.2-4-.73-4.64-2.54,1.65,4.15-1,9.07-4.9,11.23s-8.66,2.1-13.06,1.37a44.7,44.7,0,0,1-13.09-4.38,72,72,0,0,1-12.4-19.06c-1.36-2.94-2.6-6.08-2.43-9.32C276.48,298,280,293.75,284.39,291.65Z"
style="fill: #e0e0e0" style="fill: #e0e0e0"
></path> />
<path <path
d="M373.93,198.19c.31.55.61,1.09.91,1.65,4.87,9,8,19.73,4.74,29.84-3.43,10.57-13,19.37-22,25.35-4.91,3.26-19.38,11.21-23.73,3.13-1.18-2.19-1.11-4.8-1.18-7.29-.1-3.16-.54-6.49-2.44-9s-5.67-3.89-8.35-2.21c-2.15,1.35-2.92,4.1-3.17,6.62s-.16,5.18-1.25,7.46a3,3,0,0,1-1.2,1.43c-.79.41-1.75.19-2.61.4-5.51,1.32-3.89,16.27-3.33,20.24.25,1.76.21,4.06-1.45,4.7-1.17.45-2.43-.26-3.52-.87a27.49,27.49,0,0,0-8.09-2.95c-1-.19-2.23-.17-2.59.74s.4,1.67,1,2.37a8.1,8.1,0,0,1,1.7,4.21,1.55,1.55,0,0,1-.25,1.2,1.63,1.63,0,0,1-1.1.39c-2.22.18-4.46-.11-6.69-.05-5.94.13-11.39,5.62-11.11,11.6,14.58-6.14,28.49,3.9,36.42,15.55a34.11,34.11,0,0,1,6,21.81,32,32,0,0,1-6.08,17c-4.26,6.16-16,13.32-22.89,13.12a67.08,67.08,0,0,0,9.79,2.24c10.24,1.74,13.45.67,18.56,2.26,3.35,1,5.86,4.66,6.5,8.1s-.41,7-4.76,7c-.05,1.69-3.2,4.78-8.87,3.22-.29,1.25-1,3.49-10.46,1.9S265.23,376.46,254,370.05a66.69,66.69,0,0,1-12.46-8.54c-6.91-6-11.48-14.68-13.56-23.68-2.62-11.39-1.71-23.27-.14-34.85,6.56-48.28,32.94-72.06,42.85-82.08,7.75-7.83,16.72-13.79,26.27-19.18,8.94-5.05,12.19-7.1,19.26-14.27,3.19-3.22,8.53-11.09,11.39-14.61,2.54-3.12,7.74-8.26,11-13.5,0,0,10.11,9.3,13.43,12.15A100,100,0,0,1,373.93,198.19Z" d="M373.93,198.19c.31.55.61,1.09.91,1.65,4.87,9,8,19.73,4.74,29.84-3.43,10.57-13,19.37-22,25.35-4.91,3.26-19.38,11.21-23.73,3.13-1.18-2.19-1.11-4.8-1.18-7.29-.1-3.16-.54-6.49-2.44-9s-5.67-3.89-8.35-2.21c-2.15,1.35-2.92,4.1-3.17,6.62s-.16,5.18-1.25,7.46a3,3,0,0,1-1.2,1.43c-.79.41-1.75.19-2.61.4-5.51,1.32-3.89,16.27-3.33,20.24.25,1.76.21,4.06-1.45,4.7-1.17.45-2.43-.26-3.52-.87a27.49,27.49,0,0,0-8.09-2.95c-1-.19-2.23-.17-2.59.74s.4,1.67,1,2.37a8.1,8.1,0,0,1,1.7,4.21,1.55,1.55,0,0,1-.25,1.2,1.63,1.63,0,0,1-1.1.39c-2.22.18-4.46-.11-6.69-.05-5.94.13-11.39,5.62-11.11,11.6,14.58-6.14,28.49,3.9,36.42,15.55a34.11,34.11,0,0,1,6,21.81,32,32,0,0,1-6.08,17c-4.26,6.16-16,13.32-22.89,13.12a67.08,67.08,0,0,0,9.79,2.24c10.24,1.74,13.45.67,18.56,2.26,3.35,1,5.86,4.66,6.5,8.1s-.41,7-4.76,7c-.05,1.69-3.2,4.78-8.87,3.22-.29,1.25-1,3.49-10.46,1.9S265.23,376.46,254,370.05a66.69,66.69,0,0,1-12.46-8.54c-6.91-6-11.48-14.68-13.56-23.68-2.62-11.39-1.71-23.27-.14-34.85,6.56-48.28,32.94-72.06,42.85-82.08,7.75-7.83,16.72-13.79,26.27-19.18,8.94-5.05,12.19-7.1,19.26-14.27,3.19-3.22,8.53-11.09,11.39-14.61,2.54-3.12,7.74-8.26,11-13.5,0,0,10.11,9.3,13.43,12.15A100,100,0,0,1,373.93,198.19Z"
style="fill: #455a64" style="fill: #455a64"
></path> />
<path <path
d="M321.7,384.19c.67-4,.41-8.79-3.37-10.43s-10.72-1.26-10.72-1.26,9.21-1.39,12.61.75S322.8,381.12,321.7,384.19Z" d="M321.7,384.19c.67-4,.41-8.79-3.37-10.43s-10.72-1.26-10.72-1.26,9.21-1.39,12.61.75S322.8,381.12,321.7,384.19Z"
style="fill: #263238" style="fill: #263238"
></path> />
<path <path
d="M312.83,387.38c.67-4,.42-8.79-3.37-10.43s-10.72-1.26-10.72-1.26,9.21-1.39,12.61.76S313.93,384.31,312.83,387.38Z" d="M312.83,387.38c.67-4,.42-8.79-3.37-10.43s-10.72-1.26-10.72-1.26,9.21-1.39,12.61.76S313.93,384.31,312.83,387.38Z"
style="fill: #263238" style="fill: #263238"
></path> />
<path <path
d="M422.12,252.43a31.81,31.81,0,0,1,.83,12.16,40.68,40.68,0,0,1-3,9.78,111.92,111.92,0,0,1-14.63,25.09c-.58.76,2.07,1.57,1.12,1.68s-2.81,1.12-3.65.58c-5-3.17-9.32-14.56-12.94-18.74-1.86-2.14-5.44-2.2-8.05-1.07a70.53,70.53,0,0,1-9.17,3.28c-5.15,1.55-7.06,1.51-10.75,2-2.31,10.06-3.67,23.21-4.6,36.56s-6.74,22.89-5.78,30.12,3,19.41,10,27.31c6.59,7.43,12.44,6.53,11.7,14.57-.15.76-1.1,3.86-4.44,3.72-1.09,3.34-5.6,2.75-5.6,2.75s-1.57,4.22-14.69.05c-6.94-2.21-8.22-10.9-9.55-15.22a168.88,168.88,0,0,0-7-18.49,34.87,34.87,0,0,1-3.07-12.77c-1.74-.93-5.3,1.05-5.3,1.05s-.12-4.56,3.73-6.69c-5.14-2.73-3.13-7.27-3.13-7.27s2.75,3.57,5.28.09,1.71-17.21,0-37.81-3.32-28.83-6.55-39.77c-8.62-29.15,20-101.16,39.58-100.12,13.62.88,38.21,3.53,41.18,27.17,1.08,8.55,4.19,16.59,6.76,24.75,1.23,3.93,1.65,8,3,11.94,1.44,4.3,3.33,8.44,5.06,12.62A72.92,72.92,0,0,1,422.12,252.43Z" d="M422.12,252.43a31.81,31.81,0,0,1,.83,12.16,40.68,40.68,0,0,1-3,9.78,111.92,111.92,0,0,1-14.63,25.09c-.58.76,2.07,1.57,1.12,1.68s-2.81,1.12-3.65.58c-5-3.17-9.32-14.56-12.94-18.74-1.86-2.14-5.44-2.2-8.05-1.07a70.53,70.53,0,0,1-9.17,3.28c-5.15,1.55-7.06,1.51-10.75,2-2.31,10.06-3.67,23.21-4.6,36.56s-6.74,22.89-5.78,30.12,3,19.41,10,27.31c6.59,7.43,12.44,6.53,11.7,14.57-.15.76-1.1,3.86-4.44,3.72-1.09,3.34-5.6,2.75-5.6,2.75s-1.57,4.22-14.69.05c-6.94-2.21-8.22-10.9-9.55-15.22a168.88,168.88,0,0,0-7-18.49,34.87,34.87,0,0,1-3.07-12.77c-1.74-.93-5.3,1.05-5.3,1.05s-.12-4.56,3.73-6.69c-5.14-2.73-3.13-7.27-3.13-7.27s2.75,3.57,5.28.09,1.71-17.21,0-37.81-3.32-28.83-6.55-39.77c-8.62-29.15,20-101.16,39.58-100.12,13.62.88,38.21,3.53,41.18,27.17,1.08,8.55,4.19,16.59,6.76,24.75,1.23,3.93,1.65,8,3,11.94,1.44,4.3,3.33,8.44,5.06,12.62A72.92,72.92,0,0,1,422.12,252.43Z"
style="fill: #455a64" style="fill: #455a64"
></path> />
<path <path
d="M363.2,402.24c.65-1.73,1.24-4.59-1.27-5.81s-5.4-2.82-5.4-2.82,5.61,1.85,6.86,2.7S365.05,399.6,363.2,402.24Z" d="M363.2,402.24c.65-1.73,1.24-4.59-1.27-5.81s-5.4-2.82-5.4-2.82,5.61,1.85,6.86,2.7S365.05,399.6,363.2,402.24Z"
style="fill: #37474f" style="fill: #37474f"
></path> />
<path <path
d="M368.8,399.5c.65-1.74,1.24-4.6-1.27-5.81s-5.4-2.82-5.4-2.82,5.61,1.85,6.86,2.7S370.65,396.85,368.8,399.5Z" d="M368.8,399.5c.65-1.74,1.24-4.6-1.27-5.81s-5.4-2.82-5.4-2.82,5.61,1.85,6.86,2.7S370.65,396.85,368.8,399.5Z"
style="fill: #37474f" style="fill: #37474f"
></path> />
<path <path
d="M381.74,208.82a35.27,35.27,0,0,1-4,7.48c-3,4.19-7,7.51-10.52,11.32s-6.46,8.48-6.59,13.64c0-.35,4.62-1.9,5.13-2.08-.79,2-2.49,3.72-3.28,5.89a18.71,18.71,0,0,0-1.1,7.56,20.14,20.14,0,0,1,5.73-5.46c-.89.56-1.33,4.09-1.53,5.08a29.11,29.11,0,0,0-.58,5.51c0,3,.06,6,0,9.06-.22,6.93-.89,13.76-3.06,20.39a40.86,40.86,0,0,0,8.95-1.38,71.82,71.82,0,0,0,15-5.77c8-4.08,11.87-7.79,16.92-15.18,14.08-20.59,6.06-49.37-11.07-65.48a8.7,8.7,0,0,0-2.9-2,3.23,3.23,0,0,0-3.32.56,4.84,4.84,0,0,0-1.05,2.36A64.63,64.63,0,0,1,381.74,208.82Z" d="M381.74,208.82a35.27,35.27,0,0,1-4,7.48c-3,4.19-7,7.51-10.52,11.32s-6.46,8.48-6.59,13.64c0-.35,4.62-1.9,5.13-2.08-.79,2-2.49,3.72-3.28,5.89a18.71,18.71,0,0,0-1.1,7.56,20.14,20.14,0,0,1,5.73-5.46c-.89.56-1.33,4.09-1.53,5.08a29.11,29.11,0,0,0-.58,5.51c0,3,.06,6,0,9.06-.22,6.93-.89,13.76-3.06,20.39a40.86,40.86,0,0,0,8.95-1.38,71.82,71.82,0,0,0,15-5.77c8-4.08,11.87-7.79,16.92-15.18,14.08-20.59,6.06-49.37-11.07-65.48a8.7,8.7,0,0,0-2.9-2,3.23,3.23,0,0,0-3.32.56,4.84,4.84,0,0,0-1.05,2.36A64.63,64.63,0,0,1,381.74,208.82Z"
style="fill: #f0f0f0" style="fill: #f0f0f0"
></path> />
<path <path
d="M416.36,98.89c3.92.9,9,2.2,11.81,5.16a15,15,0,0,1,3.18,5.83,63.73,63.73,0,0,1,2.18,9.76c1.51,9.3,2.41,19.24-1.57,27.77-1.61,3.47-4.09,2.88-7.17,1.64-6.42-2.59-10.52-9-13.05-15.39A237,237,0,0,1,403.58,110c-.39-1.44-.42-3.18-.9-4.54-.56-1.57-2-3.13-2.95-4.51-.37-.57-.73-1.38-.24-1.85a1.44,1.44,0,0,1,1-.29c5.15-.32,10.51-1.17,15.61,0Z" d="M416.36,98.89c3.92.9,9,2.2,11.81,5.16a15,15,0,0,1,3.18,5.83,63.73,63.73,0,0,1,2.18,9.76c1.51,9.3,2.41,19.24-1.57,27.77-1.61,3.47-4.09,2.88-7.17,1.64-6.42-2.59-10.52-9-13.05-15.39A237,237,0,0,1,403.58,110c-.39-1.44-.42-3.18-.9-4.54-.56-1.57-2-3.13-2.95-4.51-.37-.57-.73-1.38-.24-1.85a1.44,1.44,0,0,1,1-.29c5.15-.32,10.51-1.17,15.61,0Z"
></path> />
<path <path
d="M405.18,172.87c-1.37,2.77-2.23,10.7-1.52,19.19-3.64,1.66-25.09,4-39.82-2.57-18-8.07-26-16.22-31.31-22.3C344.71,147.12,344,123.94,344,123.94Z" d="M405.18,172.87c-1.37,2.77-2.23,10.7-1.52,19.19-3.64,1.66-25.09,4-39.82-2.57-18-8.07-26-16.22-31.31-22.3C344.71,147.12,344,123.94,344,123.94Z"
style="fill: #455a64" style="fill: #455a64"
></path> />
<path <path
d="M387.73,98.82c14-1.08,17.54,2.82,22.88,6.82s8.43,9.06,10.6,13,.16,11.76,1,14.53,7.63,9,9.47,13.9.06,9.17-1.52,15.72-6.65,7.37-6.65,7.37a17.06,17.06,0,0,1-9.89,7.27c-6.59,1.61-15.72-2.66-15.72-2.66s-3.95,4.29-13.18,1.4c-13.54-4.26-14.93-2.23-22.14-5.12C350,166,349.12,160,344.3,148.39s-4.46-23.13,9.42-36.59C364.61,101.23,376.06,99.72,387.73,98.82Z" d="M387.73,98.82c14-1.08,17.54,2.82,22.88,6.82s8.43,9.06,10.6,13,.16,11.76,1,14.53,7.63,9,9.47,13.9.06,9.17-1.52,15.72-6.65,7.37-6.65,7.37a17.06,17.06,0,0,1-9.89,7.27c-6.59,1.61-15.72-2.66-15.72-2.66s-3.95,4.29-13.18,1.4c-13.54-4.26-14.93-2.23-22.14-5.12C350,166,349.12,160,344.3,148.39s-4.46-23.13,9.42-36.59C364.61,101.23,376.06,99.72,387.73,98.82Z"
style="fill: #455a64" style="fill: #455a64"
></path> />
<path <path
d="M400.62,161.5a.62.62,0,1,1-.83-.29A.62.62,0,0,1,400.62,161.5Z" d="M400.62,161.5a.62.62,0,1,1-.83-.29A.62.62,0,0,1,400.62,161.5Z"
style="fill: #37474f" style="fill: #37474f"
></path> />
<path <path
d="M406.14,160.52a.63.63,0,0,1-.29.83.62.62,0,1,1,.29-.83Z" d="M406.14,160.52a.63.63,0,0,1-.29.83.62.62,0,1,1,.29-.83Z"
style="fill: #37474f" style="fill: #37474f"
></path> />
<path <path
d="M404.73,165.35a.62.62,0,1,1-.83-.29A.62.62,0,0,1,404.73,165.35Z" d="M404.73,165.35a.62.62,0,1,1-.83-.29A.62.62,0,0,1,404.73,165.35Z"
style="fill: #37474f" style="fill: #37474f"
></path> />
<path <path
d="M415,166.94a8.9,8.9,0,0,1,1.89-1.26,13.92,13.92,0,0,0,1.73-1.18,1,1,0,0,1,.53-.22,1.12,1.12,0,0,1,.71.31,15.53,15.53,0,0,1,3.23,3.49.24.24,0,0,1,.05.16s-.05.06-.09.09a9.42,9.42,0,0,1-8.51,1.27c-.57-.2-1.62-.57-1.1-1.25A9.94,9.94,0,0,1,415,166.94Z" d="M415,166.94a8.9,8.9,0,0,1,1.89-1.26,13.92,13.92,0,0,0,1.73-1.18,1,1,0,0,1,.53-.22,1.12,1.12,0,0,1,.71.31,15.53,15.53,0,0,1,3.23,3.49.24.24,0,0,1,.05.16s-.05.06-.09.09a9.42,9.42,0,0,1-8.51,1.27c-.57-.2-1.62-.57-1.1-1.25A9.94,9.94,0,0,1,415,166.94Z"
></path> />
<path <path
d="M394.65,127.12c-.9-1.59-1.82-3.31-3.42-4.19-2.36-1.29-5.31-.33-7.64,1-3.15,1.83-6,4.51-7.15,8a2.07,2.07,0,0,0-.12,1.15,1.79,1.79,0,0,0,.65.89,8.71,8.71,0,0,0,5.6,1.64,35.9,35.9,0,0,1,6,.14c3.44.62,6.17,2.89,9,4.79,1.05.7,3,2.32,4.28,2.31,1.56,0,1.64-1.4,1.05-2.59C400.56,135.61,397.18,131.65,394.65,127.12Z" d="M394.65,127.12c-.9-1.59-1.82-3.31-3.42-4.19-2.36-1.29-5.31-.33-7.64,1-3.15,1.83-6,4.51-7.15,8a2.07,2.07,0,0,0-.12,1.15,1.79,1.79,0,0,0,.65.89,8.71,8.71,0,0,0,5.6,1.64,35.9,35.9,0,0,1,6,.14c3.44.62,6.17,2.89,9,4.79,1.05.7,3,2.32,4.28,2.31,1.56,0,1.64-1.4,1.05-2.59C400.56,135.61,397.18,131.65,394.65,127.12Z"
style="opacity: 0.1" style="opacity: 0.1"
></path> />
<path <path
d="M422.18,133.18c-.69-2.38.05-5.18.06-7.6s-3.19-3.9-5.15-4.61c-1.29-.48-2.8-.82-4-.12a3.94,3.94,0,0,0-1.57,3.7c.25,4.22,4.22,6.65,7.55,8.56.63.36,1.26.71,1.9,1,.88.48,1.75,1,2.63,1.47A6.84,6.84,0,0,1,422.18,133.18Z" d="M422.18,133.18c-.69-2.38.05-5.18.06-7.6s-3.19-3.9-5.15-4.61c-1.29-.48-2.8-.82-4-.12a3.94,3.94,0,0,0-1.57,3.7c.25,4.22,4.22,6.65,7.55,8.56.63.36,1.26.71,1.9,1,.88.48,1.75,1,2.63,1.47A6.84,6.84,0,0,1,422.18,133.18Z"
style="opacity: 0.1" style="opacity: 0.1"
></path> />
<path <path
d="M410.07,146.83a7.57,7.57,0,0,0-1.78,2.8,6,6,0,0,0,.3,4.69c.91,1.77,2.56,2.48,4.39,3a.22.22,0,0,0,.16,0,.26.26,0,0,0,.13-.14,1.82,1.82,0,0,0,.05-1.53,3.55,3.55,0,0,1-.48-1.12.91.91,0,0,1,.78-.93c1.69-.18,1.44,2,1.42,3a1.45,1.45,0,0,0,.13.8,1.48,1.48,0,0,0,.56.49l3,1.84a1.82,1.82,0,0,0,.86.36,1.91,1.91,0,0,0,.81-.15,5.69,5.69,0,0,0,3.8-4.16c.13-.75.06-1.53.2-2.29a.77.77,0,0,1,.31-.55c.42-.25,1.05.17,1.22.54s0,1.66.54.94a5.8,5.8,0,0,0,.63-2.37c.39-3-.74-6.6-3.89-7.53a11.4,11.4,0,0,0-3.64-.32,30.91,30.91,0,0,0-5.08.61,10.94,10.94,0,0,0-3,1A6.8,6.8,0,0,0,410.07,146.83Z" d="M410.07,146.83a7.57,7.57,0,0,0-1.78,2.8,6,6,0,0,0,.3,4.69c.91,1.77,2.56,2.48,4.39,3a.22.22,0,0,0,.16,0,.26.26,0,0,0,.13-.14,1.82,1.82,0,0,0,.05-1.53,3.55,3.55,0,0,1-.48-1.12.91.91,0,0,1,.78-.93c1.69-.18,1.44,2,1.42,3a1.45,1.45,0,0,0,.13.8,1.48,1.48,0,0,0,.56.49l3,1.84a1.82,1.82,0,0,0,.86.36,1.91,1.91,0,0,0,.81-.15,5.69,5.69,0,0,0,3.8-4.16c.13-.75.06-1.53.2-2.29a.77.77,0,0,1,.31-.55c.42-.25,1.05.17,1.22.54s0,1.66.54.94a5.8,5.8,0,0,0,.63-2.37c.39-3-.74-6.6-3.89-7.53a11.4,11.4,0,0,0-3.64-.32,30.91,30.91,0,0,0-5.08.61,10.94,10.94,0,0,0-3,1A6.8,6.8,0,0,0,410.07,146.83Z"
style="fill: #263238" style="fill: #263238"
></path> />
<path <path
d="M423.26,166.6a21.07,21.07,0,0,1-2.2-1.61,4.54,4.54,0,0,1-.84-2.39c-.1-.88-.08-1.77-.14-2.65,0-.22-.06-.49-.26-.58a.46.46,0,0,0-.56.29,1.72,1.72,0,0,0-.05.68,5.19,5.19,0,0,1-.7,2.85,5,5,0,0,1-2.06,1.6c-3.67,2.06-6.18,5.43-10.57,6.21a11.81,11.81,0,0,1-11.33-4.91c-.88-1.25-1.6-2.6-2.44-3.87-.09-.13-.23-.28-.37-.21a.31.31,0,0,0-.11.31c.07,1.73,1.23,3.33,2.1,4.77a11.84,11.84,0,0,0,4.91,4.78c2.91,1.36,6.3,2.19,9.31,1.07a19,19,0,0,0,5-3.38c1.05-.85,2.14-1.65,3.27-2.41a15.06,15.06,0,0,0,2.85-1.83,4.47,4.47,0,0,0,.29-.35,6.77,6.77,0,0,0,2,2.18,5.59,5.59,0,0,1,1.58,1.67,5.27,5.27,0,0,1,.52,1.35,4.49,4.49,0,0,0,1.73-.69A7.18,7.18,0,0,0,423.26,166.6Z" d="M423.26,166.6a21.07,21.07,0,0,1-2.2-1.61,4.54,4.54,0,0,1-.84-2.39c-.1-.88-.08-1.77-.14-2.65,0-.22-.06-.49-.26-.58a.46.46,0,0,0-.56.29,1.72,1.72,0,0,0-.05.68,5.19,5.19,0,0,1-.7,2.85,5,5,0,0,1-2.06,1.6c-3.67,2.06-6.18,5.43-10.57,6.21a11.81,11.81,0,0,1-11.33-4.91c-.88-1.25-1.6-2.6-2.44-3.87-.09-.13-.23-.28-.37-.21a.31.31,0,0,0-.11.31c.07,1.73,1.23,3.33,2.1,4.77a11.84,11.84,0,0,0,4.91,4.78c2.91,1.36,6.3,2.19,9.31,1.07a19,19,0,0,0,5-3.38c1.05-.85,2.14-1.65,3.27-2.41a15.06,15.06,0,0,0,2.85-1.83,4.47,4.47,0,0,0,.29-.35,6.77,6.77,0,0,0,2,2.18,5.59,5.59,0,0,1,1.58,1.67,5.27,5.27,0,0,1,.52,1.35,4.49,4.49,0,0,0,1.73-.69A7.18,7.18,0,0,0,423.26,166.6Z"
style="fill: #263238" style="fill: #263238"
></path> />
<path <path
d="M367.09,102.14c-2.44-3.13-6.54-2.24-9.65-1.11-4.66,1.7-9.73,2.08-14.42,3.78-4.89,1.77-9.61,4.87-11.73,9.61-1.51,3.35-1.56,7.15-1.49,10.83A83.11,83.11,0,0,0,332,144.18c1.34,5.24,3.24,11.81,7.8,15,1.78,1.26,4,2.27,6.11,1.62,2.36-.75,3.59-3.28,4.42-5.6,4.58-12.67,5.46-26.69,11.86-38.55,1.21-2.25,2.84-4.56,5.31-5.19.94-.24,2.07-.28,2.63-1.08a2.7,2.7,0,0,0,0-2.46A23.49,23.49,0,0,0,367.09,102.14Z" d="M367.09,102.14c-2.44-3.13-6.54-2.24-9.65-1.11-4.66,1.7-9.73,2.08-14.42,3.78-4.89,1.77-9.61,4.87-11.73,9.61-1.51,3.35-1.56,7.15-1.49,10.83A83.11,83.11,0,0,0,332,144.18c1.34,5.24,3.24,11.81,7.8,15,1.78,1.26,4,2.27,6.11,1.62,2.36-.75,3.59-3.28,4.42-5.6,4.58-12.67,5.46-26.69,11.86-38.55,1.21-2.25,2.84-4.56,5.31-5.19.94-.24,2.07-.28,2.63-1.08a2.7,2.7,0,0,0,0-2.46A23.49,23.49,0,0,0,367.09,102.14Z"
></path> />
<path <path
d="M387,171.22c-2.69-1.76-5.92-2.62-9-3.49a64.75,64.75,0,0,1-9-3,19.38,19.38,0,0,1-6.77-4.82,15.29,15.29,0,0,1-2.06-3,24.52,24.52,0,0,1-1.38-4.25c-.09-.3-.78-.89-.94-.32-.72,2.47.63,5.41,1.95,7.45a17.62,17.62,0,0,0,6.67,5.8,41.51,41.51,0,0,0,9.12,3.33c1.77.46,3.56.86,5.34,1.31,2,.5,3.93,1.2,5.94,1.62C387.21,171.92,387.24,171.36,387,171.22Z" d="M387,171.22c-2.69-1.76-5.92-2.62-9-3.49a64.75,64.75,0,0,1-9-3,19.38,19.38,0,0,1-6.77-4.82,15.29,15.29,0,0,1-2.06-3,24.52,24.52,0,0,1-1.38-4.25c-.09-.3-.78-.89-.94-.32-.72,2.47.63,5.41,1.95,7.45a17.62,17.62,0,0,0,6.67,5.8,41.51,41.51,0,0,0,9.12,3.33c1.77.46,3.56.86,5.34,1.31,2,.5,3.93,1.2,5.94,1.62C387.21,171.92,387.24,171.36,387,171.22Z"
style="fill: #263238" style="fill: #263238"
></path> />
<path <path
d="M379.79,114.68c-2.46,1.35-5.15,3.5-6.17,6.21-.3.8-.8,2.24.21,2.73s2.66-.72,3.48-1.33a60,60,0,0,1,5.39-3.13,8.07,8.07,0,0,0,2.21-1.66c2.53-3-2-4.34-4.26-3.26C380.36,114.38,380.07,114.52,379.79,114.68Z" d="M379.79,114.68c-2.46,1.35-5.15,3.5-6.17,6.21-.3.8-.8,2.24.21,2.73s2.66-.72,3.48-1.33a60,60,0,0,1,5.39-3.13,8.07,8.07,0,0,0,2.21-1.66c2.53-3-2-4.34-4.26-3.26C380.36,114.38,380.07,114.52,379.79,114.68Z"
style="fill: #37474f" style="fill: #37474f"
></path> />
<path <path
d="M413.53,110c2.73.67,5.88,2.06,7.56,4.41.5.7,1.35,2,.5,2.69s-2.75,0-3.7-.38a58.76,58.76,0,0,0-6-1.64,8,8,0,0,1-2.56-1c-3.22-2.27.8-4.7,3.28-4.24C412.91,109.84,413.22,109.91,413.53,110Z" d="M413.53,110c2.73.67,5.88,2.06,7.56,4.41.5.7,1.35,2,.5,2.69s-2.75,0-3.7-.38a58.76,58.76,0,0,0-6-1.64,8,8,0,0,1-2.56-1c-3.22-2.27.8-4.7,3.28-4.24C412.91,109.84,413.22,109.91,413.53,110Z"
style="fill: #37474f" style="fill: #37474f"
></path> />
<path <path
d="M393.28,130.59a6.82,6.82,0,0,0-3.63-2.37,8.32,8.32,0,0,0-4.42.3,6,6,0,0,0-2.61,1.71c-.57.65-1.43,1.94-1.28,2.87.25,1.56,3.13-.56,3.78-.87a8.53,8.53,0,0,1,3.55-.84,19.52,19.52,0,0,1,3.68.62C393.52,132.21,394,131.56,393.28,130.59Z" d="M393.28,130.59a6.82,6.82,0,0,0-3.63-2.37,8.32,8.32,0,0,0-4.42.3,6,6,0,0,0-2.61,1.71c-.57.65-1.43,1.94-1.28,2.87.25,1.56,3.13-.56,3.78-.87a8.53,8.53,0,0,1,3.55-.84,19.52,19.52,0,0,1,3.68.62C393.52,132.21,394,131.56,393.28,130.59Z"
style="fill: #263238" style="fill: #263238"
></path> />
<path <path
d="M424.41,127.22a6,6,0,0,0-3.18-2.08,7.15,7.15,0,0,0-3.86.27,5.16,5.16,0,0,0-2.29,1.49,3.87,3.87,0,0,0-1.12,2.51c.23,1.37,2.74-.49,3.31-.76a7.4,7.4,0,0,1,3.11-.74,17.08,17.08,0,0,1,3.22.55C424.62,128.64,425,128.07,424.41,127.22Z" d="M424.41,127.22a6,6,0,0,0-3.18-2.08,7.15,7.15,0,0,0-3.86.27,5.16,5.16,0,0,0-2.29,1.49,3.87,3.87,0,0,0-1.12,2.51c.23,1.37,2.74-.49,3.31-.76a7.4,7.4,0,0,1,3.11-.74,17.08,17.08,0,0,1,3.22.55C424.62,128.64,425,128.07,424.41,127.22Z"
style="fill: #263238" style="fill: #263238"
></path> />
<path <path
d="M335.75,160c7.83,10.55,30.09,20.92,48.44,20.92s20-2.43,20-2.43l-.51,13.58s-7.68,2.64-20.09,2.56-38.54-5.2-53.14-25.06Z" d="M335.75,160c7.83,10.55,30.09,20.92,48.44,20.92s20-2.43,20-2.43l-.51,13.58s-7.68,2.64-20.09,2.56-38.54-5.2-53.14-25.06Z"
style="fill: #ba68c8" style="fill: #ba68c8"
></path> />
<path <path
d="M399.94,297.59a11.23,11.23,0,0,1-.42-3.55c.48-12.89,3.22-26,9.77-37.26,6.77-11.59,15.18-21.48,17.13-35.31.62-4.37.61-9,2.52-12.94.86-1.77,2.06-3.36,2.87-5.15,1.34-3,1.48-6.39,2.18-9.61a13,13,0,0,1,3.27-6.55,7.62,7.62,0,0,1,5.46-2.25c.35-4.44,4.94-7.38,8.73-5.75a6.69,6.69,0,0,1,3.34-2.3,5.7,5.7,0,0,1,3.69.13c2.74.91,4.34,4.4,3.77,7.11a3.35,3.35,0,0,0-.14,1,3.13,3.13,0,0,0,.45,1.07c2.24,4,2.87,9.85-.46,13.38-1,1.08-2.32,1.88-3.26,3-2.16,2.66-1.91,6.52-3.2,9.7-1.12,2.77-3.37,4.9-5.35,7.14-7.73,8.76-10.29,19.19-12.63,30.45-1.26,6.08-2.55,13.11-3.45,19.26A106.91,106.91,0,0,1,429.56,289c-3.23,9.2-10.16,15.46-20.35,14.77a12.94,12.94,0,0,1-5.54-1.47A7.92,7.92,0,0,1,399.94,297.59Z" d="M399.94,297.59a11.23,11.23,0,0,1-.42-3.55c.48-12.89,3.22-26,9.77-37.26,6.77-11.59,15.18-21.48,17.13-35.31.62-4.37.61-9,2.52-12.94.86-1.77,2.06-3.36,2.87-5.15,1.34-3,1.48-6.39,2.18-9.61a13,13,0,0,1,3.27-6.55,7.62,7.62,0,0,1,5.46-2.25c.35-4.44,4.94-7.38,8.73-5.75a6.69,6.69,0,0,1,3.34-2.3,5.7,5.7,0,0,1,3.69.13c2.74.91,4.34,4.4,3.77,7.11a3.35,3.35,0,0,0-.14,1,3.13,3.13,0,0,0,.45,1.07c2.24,4,2.87,9.85-.46,13.38-1,1.08-2.32,1.88-3.26,3-2.16,2.66-1.91,6.52-3.2,9.7-1.12,2.77-3.37,4.9-5.35,7.14-7.73,8.76-10.29,19.19-12.63,30.45-1.26,6.08-2.55,13.11-3.45,19.26A106.91,106.91,0,0,1,429.56,289c-3.23,9.2-10.16,15.46-20.35,14.77a12.94,12.94,0,0,1-5.54-1.47A7.92,7.92,0,0,1,399.94,297.59Z"
style="fill: #455a64" style="fill: #455a64"
></path> />
<path <path
d="M427.9,292.85A19.55,19.55,0,0,1,412.27,304c-4.92.57-11.15-.87-12.66-6.26a13.61,13.61,0,0,1-.42-5.06,90,90,0,0,1,2.94-19.77c3.11-13.25,11.88-23.74,18.27-35.37a48.48,48.48,0,0,0,5.85-18.71c.37-3.28.64-6.7,2-9.86s3.61-5.53,4.2-8.91c.75-3.17.87-6.61,2.32-9.73a8.75,8.75,0,0,1,7.93-5.58l-.23.22a7,7,0,0,1,6-6.26,5.71,5.71,0,0,1,3,.44l-.11,0a6.27,6.27,0,0,1,7.1-2.11,5.69,5.69,0,0,0-3.84,0,7,7,0,0,0-3.16,2.31,5.9,5.9,0,0,0-5.71.71,6.64,6.64,0,0,0-2.83,5.15c-8,.24-8.66,8.82-9.72,15-.51,3.35-2.78,6.13-4.12,9.1-2.38,6.14-1.52,13.21-3.85,19.46-3,9.61-9.14,17.83-14.31,26.29-7.12,11.22-10.21,24.48-11,37.64-.73,5.24,1.86,9.74,7.35,10.55a19.29,19.29,0,0,0,20.57-10.4Z" d="M427.9,292.85A19.55,19.55,0,0,1,412.27,304c-4.92.57-11.15-.87-12.66-6.26a13.61,13.61,0,0,1-.42-5.06,90,90,0,0,1,2.94-19.77c3.11-13.25,11.88-23.74,18.27-35.37a48.48,48.48,0,0,0,5.85-18.71c.37-3.28.64-6.7,2-9.86s3.61-5.53,4.2-8.91c.75-3.17.87-6.61,2.32-9.73a8.75,8.75,0,0,1,7.93-5.58l-.23.22a7,7,0,0,1,6-6.26,5.71,5.71,0,0,1,3,.44l-.11,0a6.27,6.27,0,0,1,7.1-2.11,5.69,5.69,0,0,0-3.84,0,7,7,0,0,0-3.16,2.31,5.9,5.9,0,0,0-5.71.71,6.64,6.64,0,0,0-2.83,5.15c-8,.24-8.66,8.82-9.72,15-.51,3.35-2.78,6.13-4.12,9.1-2.38,6.14-1.52,13.21-3.85,19.46-3,9.61-9.14,17.83-14.31,26.29-7.12,11.22-10.21,24.48-11,37.64-.73,5.24,1.86,9.74,7.35,10.55a19.29,19.29,0,0,0,20.57-10.4Z"
style="fill: #37474f" style="fill: #37474f"
></path> />
<path <path
d="M455.26,198.38c-1.6-3,.46-6,2.85-7.69,1.31-.94,3.2-1.33,4.33.07a4.86,4.86,0,0,1,.93,2.62,6.72,6.72,0,0,1-1,4.51,6.63,6.63,0,0,1-1.94,1.75,4.49,4.49,0,0,1-1.55.65A3.56,3.56,0,0,1,455.26,198.38Z" d="M455.26,198.38c-1.6-3,.46-6,2.85-7.69,1.31-.94,3.2-1.33,4.33.07a4.86,4.86,0,0,1,.93,2.62,6.72,6.72,0,0,1-1,4.51,6.63,6.63,0,0,1-1.94,1.75,4.49,4.49,0,0,1-1.55.65A3.56,3.56,0,0,1,455.26,198.38Z"
style="fill: #37474f" style="fill: #37474f"
></path> />
<path <path
d="M455.26,198.38c-1.32-2.31-.22-5.13,1.54-6.9,1.82-2.19,5.4-3.23,6.67.15a6.76,6.76,0,0,1-1.73,7.29c-2.05,1.88-5,2.12-6.48-.54Zm0,0c1.55,2.63,4.3,2.23,6.15.19,1.72-1.72,1.87-4.47,1.17-6.6-.9-2.7-3.86-1.72-5.45-.15-1.88,1.54-3.18,4.25-1.87,6.56Z" d="M455.26,198.38c-1.32-2.31-.22-5.13,1.54-6.9,1.82-2.19,5.4-3.23,6.67.15a6.76,6.76,0,0,1-1.73,7.29c-2.05,1.88-5,2.12-6.48-.54Zm0,0c1.55,2.63,4.3,2.23,6.15.19,1.72-1.72,1.87-4.47,1.17-6.6-.9-2.7-3.86-1.72-5.45-.15-1.88,1.54-3.18,4.25-1.87,6.56Z"
style="fill: #263238" style="fill: #263238"
></path> />
<path <path
d="M455.89,181a3.47,3.47,0,0,0-.83.44,6.25,6.25,0,0,0-1.75,2.34,16.57,16.57,0,0,0-1.6,5.72,7.12,7.12,0,0,0,.26,3.08c1.12,3.11,5.68,1.87,7.12-.36a7.64,7.64,0,0,0,.86-2,11.34,11.34,0,0,0-.5-7.13,3.66,3.66,0,0,0-1.6-2.06A2.51,2.51,0,0,0,455.89,181Z" d="M455.89,181a3.47,3.47,0,0,0-.83.44,6.25,6.25,0,0,0-1.75,2.34,16.57,16.57,0,0,0-1.6,5.72,7.12,7.12,0,0,0,.26,3.08c1.12,3.11,5.68,1.87,7.12-.36a7.64,7.64,0,0,0,.86-2,11.34,11.34,0,0,0-.5-7.13,3.66,3.66,0,0,0-1.6-2.06A2.51,2.51,0,0,0,455.89,181Z"
style="fill: #37474f" style="fill: #37474f"
></path> />
<path <path
d="M455.89,181c-3.24,1.28-4.83,8.93-3.38,11.78,1.45,2.42,5.58.82,6.56-1.37,1.73-2.47,1.4-11.92-3.18-10.41Zm0,0a2.74,2.74,0,0,1,3.54,1.88c1.47,3.33,2,8.17-1.11,10.79-1.83,1.47-5.31,2-6.53-.51-1.42-3.05.91-10.93,4.1-12.16Z" d="M455.89,181c-3.24,1.28-4.83,8.93-3.38,11.78,1.45,2.42,5.58.82,6.56-1.37,1.73-2.47,1.4-11.92-3.18-10.41Zm0,0a2.74,2.74,0,0,1,3.54,1.88c1.47,3.33,2,8.17-1.11,10.79-1.83,1.47-5.31,2-6.53-.51-1.42-3.05.91-10.93,4.1-12.16Z"
style="fill: #263238" style="fill: #263238"
></path> />
<path <path
d="M446.39,183.6a11,11,0,0,0-2.27,4.17,7.47,7.47,0,0,0,0,4.39c.26.79.51,1.81,1.32,2.2a5.08,5.08,0,0,0,3.8-.2,5.33,5.33,0,0,0,1.61-.82c1.77-1.42,2.06-4.54,2.26-6.63.22-2.34-.95-5.6-3.9-5A5.29,5.29,0,0,0,446.39,183.6Z" d="M446.39,183.6a11,11,0,0,0-2.27,4.17,7.47,7.47,0,0,0,0,4.39c.26.79.51,1.81,1.32,2.2a5.08,5.08,0,0,0,3.8-.2,5.33,5.33,0,0,0,1.61-.82c1.77-1.42,2.06-4.54,2.26-6.63.22-2.34-.95-5.6-3.9-5A5.29,5.29,0,0,0,446.39,183.6Z"
style="fill: #37474f" style="fill: #37474f"
></path> />
<path <path
d="M446.39,183.6c-1.87,2.18-3,5.35-2.18,8.16a6.75,6.75,0,0,0,.86,1.92c.93.95,2.6.53,3.77.12,2.22-.56,3.1-2.46,3.51-4.63a13,13,0,0,0,.37-4.3c-.59-3.85-4.1-4-6.33-1.27Zm0,0c2.28-2.85,5.9-2.72,6.8,1.17a12.83,12.83,0,0,1,0,4.54c-.25,2.32-1.46,4.79-4,5.35-2.88.9-4.85.45-5.39-2.77-.6-3,.74-6,2.64-8.29Z" d="M446.39,183.6c-1.87,2.18-3,5.35-2.18,8.16a6.75,6.75,0,0,0,.86,1.92c.93.95,2.6.53,3.77.12,2.22-.56,3.1-2.46,3.51-4.63a13,13,0,0,0,.37-4.3c-.59-3.85-4.1-4-6.33-1.27Zm0,0c2.28-2.85,5.9-2.72,6.8,1.17a12.83,12.83,0,0,1,0,4.54c-.25,2.32-1.46,4.79-4,5.35-2.88.9-4.85.45-5.39-2.77-.6-3,.74-6,2.64-8.29Z"
style="fill: #263238" style="fill: #263238"
></path> />
<path <path
d="M457.69,200.08a8.43,8.43,0,0,0-.35-2.22c-1.15-3.77-4.95-4.83-8.46-3.81a15.16,15.16,0,0,0-8.84,7.39c-1,1.88-1.44,4.27-.26,6a3.82,3.82,0,0,0,3,1.63c1.81,0,3.49-1.25,5.3-1.08,2.43.23,4.78,2.36,7.07.21a7.48,7.48,0,0,0,1.86-3.62A15.1,15.1,0,0,0,457.69,200.08Z" d="M457.69,200.08a8.43,8.43,0,0,0-.35-2.22c-1.15-3.77-4.95-4.83-8.46-3.81a15.16,15.16,0,0,0-8.84,7.39c-1,1.88-1.44,4.27-.26,6a3.82,3.82,0,0,0,3,1.63c1.81,0,3.49-1.25,5.3-1.08,2.43.23,4.78,2.36,7.07.21a7.48,7.48,0,0,0,1.86-3.62A15.1,15.1,0,0,0,457.69,200.08Z"
style="fill: #263238" style="fill: #263238"
></path> />
<path <path
d="M439.37,199.76c1.78.85,4.93-.91,5.8-2.49a5.58,5.58,0,0,0,.43-1.14,9.11,9.11,0,0,0-.49-5.89,3,3,0,0,0-2.57-1.8c-1.39,0-2.5,1.14-3.23,2.32C438.05,192.78,436.31,198.28,439.37,199.76Z" d="M439.37,199.76c1.78.85,4.93-.91,5.8-2.49a5.58,5.58,0,0,0,.43-1.14,9.11,9.11,0,0,0-.49-5.89,3,3,0,0,0-2.57-1.8c-1.39,0-2.5,1.14-3.23,2.32C438.05,192.78,436.31,198.28,439.37,199.76Z"
style="fill: #37474f" style="fill: #37474f"
></path> />
<path <path
d="M439.37,199.76c2.32.83,5.51-1.25,6-3.57s.23-5.37-1.58-6.85c-4-2.72-8.45,8.7-4.39,10.42Zm0,0c-3.72-1.85-1.08-11.23,2.76-11.74,4.15-.26,4.65,5.35,3.66,8.3-.65,2.32-4.12,4.3-6.42,3.44Z" d="M439.37,199.76c2.32.83,5.51-1.25,6-3.57s.23-5.37-1.58-6.85c-4-2.72-8.45,8.7-4.39,10.42Zm0,0c-3.72-1.85-1.08-11.23,2.76-11.74,4.15-.26,4.65,5.35,3.66,8.3-.65,2.32-4.12,4.3-6.42,3.44Z"
style="fill: #263238" style="fill: #263238"
></path> />
<path <path
d="M435.37,220.79a2.23,2.23,0,0,0-.58,2.15c.37,1,1.63,1.35,2.71,1.53l.78.14a7.16,7.16,0,0,0,2.21.14c2.67-.39,3.91-3.77,1.51-5.43-1.78-1.24-4.6-.31-6.12,1A3.51,3.51,0,0,0,435.37,220.79Z" d="M435.37,220.79a2.23,2.23,0,0,0-.58,2.15c.37,1,1.63,1.35,2.71,1.53l.78.14a7.16,7.16,0,0,0,2.21.14c2.67-.39,3.91-3.77,1.51-5.43-1.78-1.24-4.6-.31-6.12,1A3.51,3.51,0,0,0,435.37,220.79Z"
style="fill: #37474f" style="fill: #37474f"
></path> />
<path <path
d="M443.62,184.39a4.81,4.81,0,0,0,.16-1.2,1,1,0,0,0-.55-.86,1.22,1.22,0,0,0-.91.1,4,4,0,0,0-2.36,2.1,1.92,1.92,0,0,0,2,2.53C442.75,187,443.35,185.56,443.62,184.39Z" d="M443.62,184.39a4.81,4.81,0,0,0,.16-1.2,1,1,0,0,0-.55-.86,1.22,1.22,0,0,0-.91.1,4,4,0,0,0-2.36,2.1,1.92,1.92,0,0,0,2,2.53C442.75,187,443.35,185.56,443.62,184.39Z"
style="fill: #e0e0e0" style="fill: #e0e0e0"
></path> />
<path <path
d="M429.77,211.12a8.91,8.91,0,0,0,1.07-.94c1.1-1,.06-2.72-.43-3.86a6.41,6.41,0,0,0-.73-1.67c-.38-.4-.63-.1-1,.28a3.51,3.51,0,0,0-.7,1.42,10.34,10.34,0,0,0-.38,3.13,3,3,0,0,0,.29,1.32,1.24,1.24,0,0,0,1.11.66A1.83,1.83,0,0,0,429.77,211.12Z" d="M429.77,211.12a8.91,8.91,0,0,0,1.07-.94c1.1-1,.06-2.72-.43-3.86a6.41,6.41,0,0,0-.73-1.67c-.38-.4-.63-.1-1,.28a3.51,3.51,0,0,0-.7,1.42,10.34,10.34,0,0,0-.38,3.13,3,3,0,0,0,.29,1.32,1.24,1.24,0,0,0,1.11.66A1.83,1.83,0,0,0,429.77,211.12Z"
style="fill: #e0e0e0" style="fill: #e0e0e0"
></path> />
<path <path
d="M449.65,180.74a1.43,1.43,0,0,0,.7.18c1.07-.06,1.3-2,1.75-2.77a2,2,0,0,0,.32-.7c.32-1.47-1.57-1.21-2.34-.85a5,5,0,0,0-2.22,1.93C447.24,179.68,448.81,180.39,449.65,180.74Z" d="M449.65,180.74a1.43,1.43,0,0,0,.7.18c1.07-.06,1.3-2,1.75-2.77a2,2,0,0,0,.32-.7c.32-1.47-1.57-1.21-2.34-.85a5,5,0,0,0-2.22,1.93C447.24,179.68,448.81,180.39,449.65,180.74Z"
style="fill: #e0e0e0" style="fill: #e0e0e0"
></path> />
<path <path
d="M459.4,179.58a.85.85,0,0,0,.46-.12,1.4,1.4,0,0,0,.39-.48,12.8,12.8,0,0,1,.68-1.33c.45-.66,1.85-1.87.55-2.42a2,2,0,0,0-1.46,0,9.07,9.07,0,0,0-2,1.21c-.53.37-1.39,1.37-.87,2.06A3.46,3.46,0,0,0,459.4,179.58Z" d="M459.4,179.58a.85.85,0,0,0,.46-.12,1.4,1.4,0,0,0,.39-.48,12.8,12.8,0,0,1,.68-1.33c.45-.66,1.85-1.87.55-2.42a2,2,0,0,0-1.46,0,9.07,9.07,0,0,0-2,1.21c-.53.37-1.39,1.37-.87,2.06A3.46,3.46,0,0,0,459.4,179.58Z"
style="fill: #e0e0e0" style="fill: #e0e0e0"
></path> />
<path <path
d="M465.34,186.27a1.08,1.08,0,0,1-.07.56,11.44,11.44,0,0,1-.44,1.24,1.9,1.9,0,0,1-.6.87c-1.17.8-2.91-.61-2.08-1.86C462.6,186.4,465.05,184.71,465.34,186.27Z" d="M465.34,186.27a1.08,1.08,0,0,1-.07.56,11.44,11.44,0,0,1-.44,1.24,1.9,1.9,0,0,1-.6.87c-1.17.8-2.91-.61-2.08-1.86C462.6,186.4,465.05,184.71,465.34,186.27Z"
style="fill: #e0e0e0" style="fill: #e0e0e0"
></path> />
</g> </g>
</g> </g>
<g id="freepik--dog-1--inject-38"> <g id="freepik--dog-1--inject-38">
@@ -357,242 +357,242 @@
<path <path
d="M36.58,364.14a54.06,54.06,0,0,1-.9-41.93c3.07-7.54,8.6-14.27,16-17.74,1.94-.92,10-3.76,9.93-.3,0,1.38-2.21,2.93-3,3.93-.66.85-1.23,3.34-1.73,3.81a37.8,37.8,0,0,1,25.84-10.12c2.88,0,5.88.42,8.24,2.06s3.87,4.8,2.83,7.48c-.24.61-.58,1.17-.76,1.79-.46,1.63.46,2.33,1.17,3.56a6,6,0,0,1,.94,3.29,19.5,19.5,0,0,1-2,8.27,41.26,41.26,0,0,1-10.6,14.07c3.36,4.95.68,11.19-2.67,15.36a71.72,71.72,0,0,0-6,7.8c-1.69,2.82-2.77,6.16-2.17,9.39,1,5.69,5.6,7.4,10.07,9.84s1.32,5.75-2.55,5.72a49.54,49.54,0,0,1-35-15.07A41.44,41.44,0,0,1,36.58,364.14Z" d="M36.58,364.14a54.06,54.06,0,0,1-.9-41.93c3.07-7.54,8.6-14.27,16-17.74,1.94-.92,10-3.76,9.93-.3,0,1.38-2.21,2.93-3,3.93-.66.85-1.23,3.34-1.73,3.81a37.8,37.8,0,0,1,25.84-10.12c2.88,0,5.88.42,8.24,2.06s3.87,4.8,2.83,7.48c-.24.61-.58,1.17-.76,1.79-.46,1.63.46,2.33,1.17,3.56a6,6,0,0,1,.94,3.29,19.5,19.5,0,0,1-2,8.27,41.26,41.26,0,0,1-10.6,14.07c3.36,4.95.68,11.19-2.67,15.36a71.72,71.72,0,0,0-6,7.8c-1.69,2.82-2.77,6.16-2.17,9.39,1,5.69,5.6,7.4,10.07,9.84s1.32,5.75-2.55,5.72a49.54,49.54,0,0,1-35-15.07A41.44,41.44,0,0,1,36.58,364.14Z"
style="fill: #f0997a" style="fill: #f0997a"
></path> />
<path <path
d="M90.5,333.08c-.57,0-1.14,0-1.71,0,.67-2.47,1.2-5.29-.17-7.46-1.91-3-6.32-3-9.74-2-3.63,1.07-7.53,3.66-7.44,7.44-.49-2-3.09-3-5.1-2.36s-3.45,2.36-4.56,4.15a25.7,25.7,0,0,0-2.08,22.44c-2.06-.19-4.37-.31-5.93,1-2,1.75-1.72,5-.92,7.52,1.51,4.86,4.64,9.73,9.55,11.05-1.27,0-2.1,1.54-1.84,2.78a5.38,5.38,0,0,0,2.28,3c4.57,3.43,9.86,4.09,15.39,3.9a28.81,28.81,0,0,1,3.36.1c-4.41-2.39-8.88-4.12-9.91-9.75-.6-3.23.48-6.57,2.17-9.39a71.72,71.72,0,0,1,6-7.8c3.35-4.17,6-10.41,2.67-15.36A41.28,41.28,0,0,0,90.5,333.08Z" d="M90.5,333.08c-.57,0-1.14,0-1.71,0,.67-2.47,1.2-5.29-.17-7.46-1.91-3-6.32-3-9.74-2-3.63,1.07-7.53,3.66-7.44,7.44-.49-2-3.09-3-5.1-2.36s-3.45,2.36-4.56,4.15a25.7,25.7,0,0,0-2.08,22.44c-2.06-.19-4.37-.31-5.93,1-2,1.75-1.72,5-.92,7.52,1.51,4.86,4.64,9.73,9.55,11.05-1.27,0-2.1,1.54-1.84,2.78a5.38,5.38,0,0,0,2.28,3c4.57,3.43,9.86,4.09,15.39,3.9a28.81,28.81,0,0,1,3.36.1c-4.41-2.39-8.88-4.12-9.91-9.75-.6-3.23.48-6.57,2.17-9.39a71.72,71.72,0,0,1,6-7.8c3.35-4.17,6-10.41,2.67-15.36A41.28,41.28,0,0,0,90.5,333.08Z"
style="fill: #ffbda7" style="fill: #ffbda7"
></path> />
<path <path
d="M197.9,307.9a31,31,0,0,1,4.6,3.11,37.08,37.08,0,0,1,6.33,6.85c7.89,10.81,10.91,25.77,5.26,37.9-6,12.82-20.81,20.2-34.93,19.41,6.18,2.82,13.68.64,20.18,2.66,3.29,1,5.76,4.58,6.39,8s-.4,6.86-4.68,6.86c-.05,1.66-3.15,4.69-8.72,3.16-.29,1.22-1,3.43-10.29,1.87s-36.52-12.6-47.6-18.9a65.64,65.64,0,0,1-12.26-8.4c-6.79-5.88-11.28-14.44-13.33-23.29-2.58-11.19-1.68-22.88-.14-34.26,2.49-18.32,6.86-39.79,27.67-44.75a16.54,16.54,0,0,1,7.3-.33c3.85.84,7,3.7,9.16,7,4.93,7.61,5.13,17.28,4.6,26.33-.43,7.42,5.07,3.77,9.79,3a61.36,61.36,0,0,1,14.7-.79A39.52,39.52,0,0,1,197.9,307.9Z" d="M197.9,307.9a31,31,0,0,1,4.6,3.11,37.08,37.08,0,0,1,6.33,6.85c7.89,10.81,10.91,25.77,5.26,37.9-6,12.82-20.81,20.2-34.93,19.41,6.18,2.82,13.68.64,20.18,2.66,3.29,1,5.76,4.58,6.39,8s-.4,6.86-4.68,6.86c-.05,1.66-3.15,4.69-8.72,3.16-.29,1.22-1,3.43-10.29,1.87s-36.52-12.6-47.6-18.9a65.64,65.64,0,0,1-12.26-8.4c-6.79-5.88-11.28-14.44-13.33-23.29-2.58-11.19-1.68-22.88-.14-34.26,2.49-18.32,6.86-39.79,27.67-44.75a16.54,16.54,0,0,1,7.3-.33c3.85.84,7,3.7,9.16,7,4.93,7.61,5.13,17.28,4.6,26.33-.43,7.42,5.07,3.77,9.79,3a61.36,61.36,0,0,1,14.7-.79A39.52,39.52,0,0,1,197.9,307.9Z"
style="fill: #f0997a" style="fill: #f0997a"
></path> />
<path <path
d="M197.9,307.9a31,31,0,0,1,4.6,3.11,37.08,37.08,0,0,1,6.33,6.85c7.89,10.81,10.91,25.77,5.26,37.9-6,12.82-20.81,20.2-34.93,19.41,6.18,2.82,13.68.64,20.18,2.66,3.29,1,5.76,4.58,6.39,8s-.4,6.86-4.68,6.86c-.05,1.66-3.15,4.69-8.72,3.16-.29,1.22-1,3.43-10.29,1.87s-36.52-12.6-47.6-18.9a65.64,65.64,0,0,1-12.26-8.4c-6.79-5.88-11.28-14.44-13.33-23.29-2.58-11.19-1.68-22.88-.14-34.26,2.49-18.32,6.86-39.79,27.67-44.75a16.54,16.54,0,0,1,7.3-.33c3.85.84,7,3.7,9.16,7,4.93,7.61,5.13,17.28,4.6,26.33-.43,7.42,5.07,3.77,9.79,3a61.36,61.36,0,0,1,14.7-.79A39.52,39.52,0,0,1,197.9,307.9Z" d="M197.9,307.9a31,31,0,0,1,4.6,3.11,37.08,37.08,0,0,1,6.33,6.85c7.89,10.81,10.91,25.77,5.26,37.9-6,12.82-20.81,20.2-34.93,19.41,6.18,2.82,13.68.64,20.18,2.66,3.29,1,5.76,4.58,6.39,8s-.4,6.86-4.68,6.86c-.05,1.66-3.15,4.69-8.72,3.16-.29,1.22-1,3.43-10.29,1.87s-36.52-12.6-47.6-18.9a65.64,65.64,0,0,1-12.26-8.4c-6.79-5.88-11.28-14.44-13.33-23.29-2.58-11.19-1.68-22.88-.14-34.26,2.49-18.32,6.86-39.79,27.67-44.75a16.54,16.54,0,0,1,7.3-.33c3.85.84,7,3.7,9.16,7,4.93,7.61,5.13,17.28,4.6,26.33-.43,7.42,5.07,3.77,9.79,3a61.36,61.36,0,0,1,14.7-.79A39.52,39.52,0,0,1,197.9,307.9Z"
style="opacity: 0.2" style="opacity: 0.2"
></path> />
<path <path
d="M201.05,392.69c.66-3.93.41-8.64-3.31-10.26s-10.54-1.24-10.54-1.24,9.05-1.36,12.4.75S202.13,389.67,201.05,392.69Z" d="M201.05,392.69c.66-3.93.41-8.64-3.31-10.26s-10.54-1.24-10.54-1.24,9.05-1.36,12.4.75S202.13,389.67,201.05,392.69Z"
style="opacity: 0.2" style="opacity: 0.2"
></path> />
<path <path
d="M192.33,395.83c.65-3.93.41-8.64-3.31-10.26s-10.55-1.24-10.55-1.24,9.06-1.36,12.41.75S193.41,392.81,192.33,395.83Z" d="M192.33,395.83c.65-3.93.41-8.64-3.31-10.26s-10.55-1.24-10.55-1.24,9.06-1.36,12.41.75S193.41,392.81,192.33,395.83Z"
style="opacity: 0.2" style="opacity: 0.2"
></path> />
<path <path
d="M172.51,363.69c-1.87.2-4-.72-4.57-2.49,1.62,4.07-1,8.92-4.81,11s-8.52,2.06-12.85,1.34c-15.45-2.57-29.52-13.83-34-28.85-2.38-8-2.07-16.6-.41-24.77a79.69,79.69,0,0,1,15.52-33.33c5.92-7.51,13.59-14.16,22.89-16.38s20.34,1.07,25,9.43A26.91,26.91,0,0,1,182.1,289c1.71,11.87-.6,23.89.85,35.78.92,7.57,2.8,15.32,1.34,22.94C183.1,353.85,180,362.89,172.51,363.69Z" d="M172.51,363.69c-1.87.2-4-.72-4.57-2.49,1.62,4.07-1,8.92-4.81,11s-8.52,2.06-12.85,1.34c-15.45-2.57-29.52-13.83-34-28.85-2.38-8-2.07-16.6-.41-24.77a79.69,79.69,0,0,1,15.52-33.33c5.92-7.51,13.59-14.16,22.89-16.38s20.34,1.07,25,9.43A26.91,26.91,0,0,1,182.1,289c1.71,11.87-.6,23.89.85,35.78.92,7.57,2.8,15.32,1.34,22.94C183.1,353.85,180,362.89,172.51,363.69Z"
style="fill: #f5f5f5" style="fill: #f5f5f5"
></path> />
<path <path
d="M130.85,330.33c4.31-2.07,9.31-2.25,14-1.54,3.44.52,7.07,1.66,9.12,4.47.45-2.3,3.76-3,5.73-1.69s2.9,3.65,3.69,5.86c.55-3.31,1.43-7.1,4.42-8.62s7.17.55,9.25,2.92a17.92,17.92,0,0,1,3.44,6.76c.51-1.07,2.05-1.06,3.19-.69.33.1.65.25,1,.38a36.38,36.38,0,0,1-.4,9.49c-1.19,6.18-4.32,15.22-11.78,16-1.87.2-4-.72-4.57-2.49,1.62,4.07-1,8.92-4.81,11s-8.52,2.06-12.85,1.34a43.88,43.88,0,0,1-12.87-4.3,71.07,71.07,0,0,1-12.2-18.74c-1.33-2.9-2.56-6-2.39-9.17C123.07,336.6,126.54,332.39,130.85,330.33Z" d="M130.85,330.33c4.31-2.07,9.31-2.25,14-1.54,3.44.52,7.07,1.66,9.12,4.47.45-2.3,3.76-3,5.73-1.69s2.9,3.65,3.69,5.86c.55-3.31,1.43-7.1,4.42-8.62s7.17.55,9.25,2.92a17.92,17.92,0,0,1,3.44,6.76c.51-1.07,2.05-1.06,3.19-.69.33.1.65.25,1,.38a36.38,36.38,0,0,1-.4,9.49c-1.19,6.18-4.32,15.22-11.78,16-1.87.2-4-.72-4.57-2.49,1.62,4.07-1,8.92-4.81,11s-8.52,2.06-12.85,1.34a43.88,43.88,0,0,1-12.87-4.3,71.07,71.07,0,0,1-12.2-18.74c-1.33-2.9-2.56-6-2.39-9.17C123.07,336.6,126.54,332.39,130.85,330.33Z"
style="fill: #e0e0e0" style="fill: #e0e0e0"
></path> />
<path <path
d="M218.9,238.43c.3.53.6,1.07.89,1.61,4.79,8.88,7.88,19.41,4.66,29.35-3.37,10.4-12.79,19.05-21.66,24.93-4.83,3.2-19,11-23.34,3.07-1.16-2.15-1.09-4.72-1.16-7.16-.09-3.11-.52-6.38-2.39-8.87s-5.58-3.83-8.21-2.17c-2.12,1.32-2.88,4-3.12,6.51-.19,1.9.14,4.95-.78,6.67s-3.94,1.87-5.69,2.31c-4.32,1.08-8.41,4.21-9.37,8.57-.68,3.1,2.93,9.75-.75,11.59a6.4,6.4,0,0,1-2.38.53c-4.86.36-10-.67-14.42,1.4a1.86,1.86,0,0,0-1.11,1,1.4,1.4,0,0,0,.71,1.43,4.83,4.83,0,0,0,1.63.5,13.5,13.5,0,0,1,3.33,1.19c4.09,2.11-2.05,2.86-3.1,3.3a13.81,13.81,0,0,0-3.6,2.58,11.21,11.21,0,0,0-4.33,8.92c14.34-6.05,28,3.83,35.82,15.28a33.53,33.53,0,0,1,5.91,21.45,31.53,31.53,0,0,1-6,16.69c-4.19,6.06-15.78,13.09-22.51,12.9a66.8,66.8,0,0,0,9.63,2.21c10.06,1.71,13.22.65,18.25,2.21,3.29,1,5.76,4.58,6.39,8s-.4,6.86-4.68,6.86c0,1.66-3.15,4.69-8.72,3.16-.29,1.22-1,3.43-10.29,1.87s-36.52-12.6-47.6-18.9A65.64,65.64,0,0,1,88.67,399c-6.79-5.88-11.29-14.44-13.33-23.29-2.58-11.19-1.68-22.88-.14-34.26,6.45-47.48,28.25-65.53,38-75.39,7.62-7.7,20.64-16.19,32.81-23.8,8.56-5.35,15.09-10.4,21.46-18.46,2.76-3.5,5-7.38,7.83-10.84,2.5-3.08,5.76-6.7,10-6.73,4.52-.05,8.78,3.12,12,5.92A98.27,98.27,0,0,1,218.9,238.43Z" d="M218.9,238.43c.3.53.6,1.07.89,1.61,4.79,8.88,7.88,19.41,4.66,29.35-3.37,10.4-12.79,19.05-21.66,24.93-4.83,3.2-19,11-23.34,3.07-1.16-2.15-1.09-4.72-1.16-7.16-.09-3.11-.52-6.38-2.39-8.87s-5.58-3.83-8.21-2.17c-2.12,1.32-2.88,4-3.12,6.51-.19,1.9.14,4.95-.78,6.67s-3.94,1.87-5.69,2.31c-4.32,1.08-8.41,4.21-9.37,8.57-.68,3.1,2.93,9.75-.75,11.59a6.4,6.4,0,0,1-2.38.53c-4.86.36-10-.67-14.42,1.4a1.86,1.86,0,0,0-1.11,1,1.4,1.4,0,0,0,.71,1.43,4.83,4.83,0,0,0,1.63.5,13.5,13.5,0,0,1,3.33,1.19c4.09,2.11-2.05,2.86-3.1,3.3a13.81,13.81,0,0,0-3.6,2.58,11.21,11.21,0,0,0-4.33,8.92c14.34-6.05,28,3.83,35.82,15.28a33.53,33.53,0,0,1,5.91,21.45,31.53,31.53,0,0,1-6,16.69c-4.19,6.06-15.78,13.09-22.51,12.9a66.8,66.8,0,0,0,9.63,2.21c10.06,1.71,13.22.65,18.25,2.21,3.29,1,5.76,4.58,6.39,8s-.4,6.86-4.68,6.86c0,1.66-3.15,4.69-8.72,3.16-.29,1.22-1,3.43-10.29,1.87s-36.52-12.6-47.6-18.9A65.64,65.64,0,0,1,88.67,399c-6.79-5.88-11.29-14.44-13.33-23.29-2.58-11.19-1.68-22.88-.14-34.26,6.45-47.48,28.25-65.53,38-75.39,7.62-7.7,20.64-16.19,32.81-23.8,8.56-5.35,15.09-10.4,21.46-18.46,2.76-3.5,5-7.38,7.83-10.84,2.5-3.08,5.76-6.7,10-6.73,4.52-.05,8.78,3.12,12,5.92A98.27,98.27,0,0,1,218.9,238.43Z"
style="fill: #f0997a" style="fill: #f0997a"
></path> />
<path <path
d="M88.67,399c-17.4-14.75-17-40-13.53-60.65,2.25-15.26,6.8-30.43,14.43-43.89,6.08-10.84,14.52-20,23.63-28.4-8.64,8.58-17.08,18.09-22.85,28.84C83,308.38,78.56,323.41,76.24,338.54,72.76,359.08,72,383.8,88.67,399Z" d="M88.67,399c-17.4-14.75-17-40-13.53-60.65,2.25-15.26,6.8-30.43,14.43-43.89,6.08-10.84,14.52-20,23.63-28.4-8.64,8.58-17.08,18.09-22.85,28.84C83,308.38,78.56,323.41,76.24,338.54,72.76,359.08,72,383.8,88.67,399Z"
style="fill: #b16668" style="fill: #b16668"
></path> />
<path <path
d="M167.54,421.32c.65-3.93.4-8.64-3.32-10.26s-10.54-1.24-10.54-1.24,9.06-1.36,12.4.75S168.62,418.3,167.54,421.32Z" d="M167.54,421.32c.65-3.93.4-8.64-3.32-10.26s-10.54-1.24-10.54-1.24,9.06-1.36,12.4.75S168.62,418.3,167.54,421.32Z"
style="opacity: 0.2" style="opacity: 0.2"
></path> />
<path <path
d="M158.81,424.46c.66-3.93.41-8.64-3.31-10.26S145,413,145,413s9.06-1.36,12.4.75S159.89,421.44,158.81,424.46Z" d="M158.81,424.46c.66-3.93.41-8.64-3.31-10.26S145,413,145,413s9.06-1.36,12.4.75S159.89,421.44,158.81,424.46Z"
style="opacity: 0.2" style="opacity: 0.2"
></path> />
<path <path
d="M258.7,296.22c-1.45,25.42-9.9,44.29-12.57,57.77-2.07,10.45-3.37,13.48-3.45,18.28A38.83,38.83,0,0,0,245.16,388a30.61,30.61,0,0,0,8.42,12.2c7.27,5.81,11.26,6.51,11.16,11.14-.15.75-.84,4.25-4.13,4.12-1.07,3.29-5.52,2.71-5.52,2.71s-2,5.43-14.48,0c-5-2.14-7.27-4.62-9.43-13.72-1-4.34-2.14-10.84-4.86-19.86-2.35-7.8-2.56-11.68-2.56-11.68s-2-.4-2.86,2.69c-1-2-.74-5.86.14-8.22s2.13-9.31,1.28-16.21a232.29,232.29,0,0,0-4.54-24.65c.13.49-7.29.82-7.8.86a29.14,29.14,0,0,0-10.1,2.12c-4.42,1.95-7.91,5.47-11.49,8.71a27.61,27.61,0,0,1-4.67,3.61,26,26,0,0,1-7.22,2.45c-2.14.51-3.78,1-5.8-.4a9.92,9.92,0,0,1-2.47-2.73c-4.64-7-6-15.7-6-24.09a94.33,94.33,0,0,1,1.4-17c.38-2.16.83-4.31,1.36-6.43s1.44-4.21,1.81-6.33c.53-3,.66-6.16,1.19-9.21a155.42,155.42,0,0,1,4.84-19.49c3.84-12.18,8.87-24.27,15.87-35,3.75-5.75,10.26-15.4,18.24-15,13.42.87,37.66,3.49,40.59,26.79C249.85,254.09,260.45,265.69,258.7,296.22Z" d="M258.7,296.22c-1.45,25.42-9.9,44.29-12.57,57.77-2.07,10.45-3.37,13.48-3.45,18.28A38.83,38.83,0,0,0,245.16,388a30.61,30.61,0,0,0,8.42,12.2c7.27,5.81,11.26,6.51,11.16,11.14-.15.75-.84,4.25-4.13,4.12-1.07,3.29-5.52,2.71-5.52,2.71s-2,5.43-14.48,0c-5-2.14-7.27-4.62-9.43-13.72-1-4.34-2.14-10.84-4.86-19.86-2.35-7.8-2.56-11.68-2.56-11.68s-2-.4-2.86,2.69c-1-2-.74-5.86.14-8.22s2.13-9.31,1.28-16.21a232.29,232.29,0,0,0-4.54-24.65c.13.49-7.29.82-7.8.86a29.14,29.14,0,0,0-10.1,2.12c-4.42,1.95-7.91,5.47-11.49,8.71a27.61,27.61,0,0,1-4.67,3.61,26,26,0,0,1-7.22,2.45c-2.14.51-3.78,1-5.8-.4a9.92,9.92,0,0,1-2.47-2.73c-4.64-7-6-15.7-6-24.09a94.33,94.33,0,0,1,1.4-17c.38-2.16.83-4.31,1.36-6.43s1.44-4.21,1.81-6.33c.53-3,.66-6.16,1.19-9.21a155.42,155.42,0,0,1,4.84-19.49c3.84-12.18,8.87-24.27,15.87-35,3.75-5.75,10.26-15.4,18.24-15,13.42.87,37.66,3.49,40.59,26.79C249.85,254.09,260.45,265.69,258.7,296.22Z"
style="fill: #f0997a" style="fill: #f0997a"
></path> />
<path <path
d="M193.29,300.22a4.33,4.33,0,0,0-4.22.84,12.84,12.84,0,0,0-1.63-3,8.88,8.88,0,0,0-3.38-3,4.81,4.81,0,0,0-3.74,0c-1.22.49-2.7,1.65-2.71,3.1,0,.24.41.67.62.38a5.36,5.36,0,0,1,2.64-2.2,3.56,3.56,0,0,1,3,.37,10.68,10.68,0,0,1,4.16,6.15c.18.65,1.17.5,1.41,0a3.27,3.27,0,0,1,3.91-1.43,5.24,5.24,0,0,1,3.13,3.42c.06.16.25.11.23-.06A5.57,5.57,0,0,0,193.29,300.22Z" d="M193.29,300.22a4.33,4.33,0,0,0-4.22.84,12.84,12.84,0,0,0-1.63-3,8.88,8.88,0,0,0-3.38-3,4.81,4.81,0,0,0-3.74,0c-1.22.49-2.7,1.65-2.71,3.1,0,.24.41.67.62.38a5.36,5.36,0,0,1,2.64-2.2,3.56,3.56,0,0,1,3,.37,10.68,10.68,0,0,1,4.16,6.15c.18.65,1.17.5,1.41,0a3.27,3.27,0,0,1,3.91-1.43,5.24,5.24,0,0,1,3.13,3.42c.06.16.25.11.23-.06A5.57,5.57,0,0,0,193.29,300.22Z"
style="fill: #b16668" style="fill: #b16668"
></path> />
<path <path
d="M253.58,400.21a30.61,30.61,0,0,1-8.42-12.2,38.83,38.83,0,0,1-2.48-15.74c.08-4.8,1.38-7.83,3.45-18.28,1-5.14,2.88-11.06,4.87-17.83a5,5,0,0,1-3.12-.42c-.41,3.44-3.84,6.53-7.2,5.69s-4.22-5.71-1.57-7.77c-8.93,5.53-7.39-3.51-6.93-9.19.38-4.63.61-11.66-2.38-15.62-3.36-4.45-7.89-3.05-11.46.72-4.54,4.78-5.05,11.54-4.79,17.92,1.58-.31,3-.62,4.23-.92a233.34,233.34,0,0,1,4.54,24.65c.85,6.9-.4,13.85-1.28,16.21s-1.09,6.19-.14,8.22c.86-3.09,2.86-2.69,2.86-2.69s.21,3.88,2.56,11.68c2.72,9,3.83,15.52,4.86,19.86,2.16,9.1,4.47,11.58,9.43,13.72,12.46,5.39,14.48,0,14.48,0s4.45.58,5.52-2.71c3.29.13,4-3.37,4.13-4.12C264.84,406.72,260.85,406,253.58,400.21Z" d="M253.58,400.21a30.61,30.61,0,0,1-8.42-12.2,38.83,38.83,0,0,1-2.48-15.74c.08-4.8,1.38-7.83,3.45-18.28,1-5.14,2.88-11.06,4.87-17.83a5,5,0,0,1-3.12-.42c-.41,3.44-3.84,6.53-7.2,5.69s-4.22-5.71-1.57-7.77c-8.93,5.53-7.39-3.51-6.93-9.19.38-4.63.61-11.66-2.38-15.62-3.36-4.45-7.89-3.05-11.46.72-4.54,4.78-5.05,11.54-4.79,17.92,1.58-.31,3-.62,4.23-.92a233.34,233.34,0,0,1,4.54,24.65c.85,6.9-.4,13.85-1.28,16.21s-1.09,6.19-.14,8.22c.86-3.09,2.86-2.69,2.86-2.69s.21,3.88,2.56,11.68c2.72,9,3.83,15.52,4.86,19.86,2.16,9.1,4.47,11.58,9.43,13.72,12.46,5.39,14.48,0,14.48,0s4.45.58,5.52-2.71c3.29.13,4-3.37,4.13-4.12C264.84,406.72,260.85,406,253.58,400.21Z"
style="fill: #f0f0f0" style="fill: #f0f0f0"
></path> />
<path <path
d="M255.28,412.34c-1.23-.84-6.76-2.66-6.76-2.66s2.85,1.58,5.32,2.77,1.9,4,1.25,5.73C256.91,415.57,256.51,413.17,255.28,412.34Zm5.52-2.71C259.57,408.79,254,407,254,407s2.85,1.58,5.32,2.78,1.89,4,1.25,5.72C262.43,412.86,262,410.47,260.8,409.63Z" d="M255.28,412.34c-1.23-.84-6.76-2.66-6.76-2.66s2.85,1.58,5.32,2.77,1.9,4,1.25,5.73C256.91,415.57,256.51,413.17,255.28,412.34Zm5.52-2.71C259.57,408.79,254,407,254,407s2.85,1.58,5.32,2.78,1.89,4,1.25,5.72C262.43,412.86,262,410.47,260.8,409.63Z"
style="opacity: 0.2" style="opacity: 0.2"
></path> />
<path <path
d="M225.9,251.55a35,35,0,0,1-4,7.37c-3,4.13-6.95,7.4-10.37,11.16s-6.37,8.35-6.49,13.43c0-.33,4.56-1.87,5.05-2-.78,2-2.45,3.66-3.23,5.8a18.37,18.37,0,0,0-1.08,7.45,19.94,19.94,0,0,1,5.64-5.38c-.87.55-1.31,4-1.51,5a28.26,28.26,0,0,0-.56,5.43c0,3,.06,5.93,0,8.93-.21,6.83-.87,13.56-3,20.09,0,0,7.29-1.27,8.53-1.52,5.66-1.1,10.47-3.66,14.53-5.74,7.86-4,12.25-7.46,17.23-14.74,13.87-20.3,6-48.65-10.92-64.54a8.46,8.46,0,0,0-2.85-2,3.18,3.18,0,0,0-3.27.55,4.81,4.81,0,0,0-1,2.33A63.23,63.23,0,0,1,225.9,251.55Z" d="M225.9,251.55a35,35,0,0,1-4,7.37c-3,4.13-6.95,7.4-10.37,11.16s-6.37,8.35-6.49,13.43c0-.33,4.56-1.87,5.05-2-.78,2-2.45,3.66-3.23,5.8a18.37,18.37,0,0,0-1.08,7.45,19.94,19.94,0,0,1,5.64-5.38c-.87.55-1.31,4-1.51,5a28.26,28.26,0,0,0-.56,5.43c0,3,.06,5.93,0,8.93-.21,6.83-.87,13.56-3,20.09,0,0,7.29-1.27,8.53-1.52,5.66-1.1,10.47-3.66,14.53-5.74,7.86-4,12.25-7.46,17.23-14.74,13.87-20.3,6-48.65-10.92-64.54a8.46,8.46,0,0,0-2.85-2,3.18,3.18,0,0,0-3.27.55,4.81,4.81,0,0,0-1,2.33A63.23,63.23,0,0,1,225.9,251.55Z"
style="fill: #fafafa" style="fill: #fafafa"
></path> />
<path <path
d="M266.72,254.31c1.3,3.41.35,7.5-.73,11.11a97.32,97.32,0,0,1-7.86,19.71,44,44,0,0,1-14.06,15.66c-1.14.73-2.62,1.4-3.78.71a3.84,3.84,0,0,1-1.42-2.82c-.65-3.6-1.21-7.29-3-10.49-1.86-3.38-4.9-5.91-7.8-8.46-6.49-5.7-12.38-11.94-18.6-17.88A115.92,115.92,0,0,1,193,242.12c-4-6-8.14-13.71-6.66-21.16,7.09,1.85,13.95,5.1,21.08,7.07a191.24,191.24,0,0,0,22.34,4.75,180,180,0,0,0,21.36,2c3.62.11,10.25-.71,12.75,2.69s-.49,5.57-1.32,8.53c-.71,2.54,2,4.59,3.41,6.81A8,8,0,0,1,266.72,254.31Z" d="M266.72,254.31c1.3,3.41.35,7.5-.73,11.11a97.32,97.32,0,0,1-7.86,19.71,44,44,0,0,1-14.06,15.66c-1.14.73-2.62,1.4-3.78.71a3.84,3.84,0,0,1-1.42-2.82c-.65-3.6-1.21-7.29-3-10.49-1.86-3.38-4.9-5.91-7.8-8.46-6.49-5.7-12.38-11.94-18.6-17.88A115.92,115.92,0,0,1,193,242.12c-4-6-8.14-13.71-6.66-21.16,7.09,1.85,13.95,5.1,21.08,7.07a191.24,191.24,0,0,0,22.34,4.75,180,180,0,0,0,21.36,2c3.62.11,10.25-.71,12.75,2.69s-.49,5.57-1.32,8.53c-.71,2.54,2,4.59,3.41,6.81A8,8,0,0,1,266.72,254.31Z"
style="fill: #ba68c8" style="fill: #ba68c8"
></path> />
<path <path
d="M266.72,254.31c1.3,3.41.35,7.5-.73,11.11a97.32,97.32,0,0,1-7.86,19.71,44,44,0,0,1-14.06,15.66c-1.14.73-2.62,1.4-3.78.71a3.84,3.84,0,0,1-1.42-2.82c-.65-3.6-1.21-7.29-3-10.49-1.86-3.38-4.9-5.91-7.8-8.46-6.49-5.7-12.38-11.94-18.6-17.88A115.92,115.92,0,0,1,193,242.12c-4-6-8.14-13.71-6.66-21.16,7.09,1.85,13.95,5.1,21.08,7.07a191.24,191.24,0,0,0,22.34,4.75,180,180,0,0,0,21.36,2c3.62.11,10.25-.71,12.75,2.69s-.49,5.57-1.32,8.53c-.71,2.54,2,4.59,3.41,6.81A8,8,0,0,1,266.72,254.31Z" d="M266.72,254.31c1.3,3.41.35,7.5-.73,11.11a97.32,97.32,0,0,1-7.86,19.71,44,44,0,0,1-14.06,15.66c-1.14.73-2.62,1.4-3.78.71a3.84,3.84,0,0,1-1.42-2.82c-.65-3.6-1.21-7.29-3-10.49-1.86-3.38-4.9-5.91-7.8-8.46-6.49-5.7-12.38-11.94-18.6-17.88A115.92,115.92,0,0,1,193,242.12c-4-6-8.14-13.71-6.66-21.16,7.09,1.85,13.95,5.1,21.08,7.07a191.24,191.24,0,0,0,22.34,4.75,180,180,0,0,0,21.36,2c3.62.11,10.25-.71,12.75,2.69s-.49,5.57-1.32,8.53c-.71,2.54,2,4.59,3.41,6.81A8,8,0,0,1,266.72,254.31Z"
style="fill: #fff; opacity: 0.30000000000000004" style="fill: #fff; opacity: 0.30000000000000004"
></path> />
<path <path
d="M249.39,260.2a11.37,11.37,0,0,1-5.86,1.81,23.24,23.24,0,0,1-6.89-1.23Q231,259.13,225.56,257a6.06,6.06,0,0,0-3-.62,2,2,0,0,0-1.86,2c.14.92,1,1.51,1.54,2.23a12,12,0,0,0,2.18,2.34q3.21,2.72,6.4,5.45l7.65,6.52c1.31,1.11,2.66,2.18,3.92,3.34s2,1.94,3.68,1.61a7.58,7.58,0,0,0,3.91-2.49,37.23,37.23,0,0,0,6.9-11.23,29.74,29.74,0,0,0,2.15-5.94c.41-2.13,1.47-4,1.61-6.26.11-1.64-1-3.17-2.63-1.66C255.3,254.9,252.66,258.19,249.39,260.2Z" d="M249.39,260.2a11.37,11.37,0,0,1-5.86,1.81,23.24,23.24,0,0,1-6.89-1.23Q231,259.13,225.56,257a6.06,6.06,0,0,0-3-.62,2,2,0,0,0-1.86,2c.14.92,1,1.51,1.54,2.23a12,12,0,0,0,2.18,2.34q3.21,2.72,6.4,5.45l7.65,6.52c1.31,1.11,2.66,2.18,3.92,3.34s2,1.94,3.68,1.61a7.58,7.58,0,0,0,3.91-2.49,37.23,37.23,0,0,0,6.9-11.23,29.74,29.74,0,0,0,2.15-5.94c.41-2.13,1.47-4,1.61-6.26.11-1.64-1-3.17-2.63-1.66C255.3,254.9,252.66,258.19,249.39,260.2Z"
style="fill: #ba68c8; opacity: 0.30000000000000004" style="fill: #ba68c8; opacity: 0.30000000000000004"
></path> />
<path <path
d="M240.2,257.7c1.67.06,3.5.19,5-.62.8-.43,2.8-1.66,1.36-2.53-.9-.54-2.34-.26-3.34-.32-1.27-.08-2.54-.24-3.79-.44-2.51-.4-5-1-7.49-1.46-.81-.17-1.93-.12-2.14.68a1.59,1.59,0,0,0,.67,1.42C233.06,256.8,236.72,257.57,240.2,257.7Z" d="M240.2,257.7c1.67.06,3.5.19,5-.62.8-.43,2.8-1.66,1.36-2.53-.9-.54-2.34-.26-3.34-.32-1.27-.08-2.54-.24-3.79-.44-2.51-.4-5-1-7.49-1.46-.81-.17-1.93-.12-2.14.68a1.59,1.59,0,0,0,.67,1.42C233.06,256.8,236.72,257.57,240.2,257.7Z"
style="fill: #ba68c8; opacity: 0.30000000000000004" style="fill: #ba68c8; opacity: 0.30000000000000004"
></path> />
<path <path
d="M240.62,149.35c-1-.83-2.68-1.12-3-2.4a2.9,2.9,0,0,1,0-.93,16.39,16.39,0,0,1,1.35-5.36,21.79,21.79,0,0,1,2.66-4.48,39.13,39.13,0,0,1,7.82-7.38c3.14-2.37,6.65-4.59,10.58-4.85a3,3,0,0,1,2.46.7c.71.78.53,2,.31,3-.72,3.35-1.64,6.54-2.52,9.86-1.15,4.33-.54,8.74-1.06,13.16a6.74,6.74,0,0,1-1,3.18,5.8,5.8,0,0,1-2.74,1.91,10.87,10.87,0,0,1-8.14-.27,11.31,11.31,0,0,1-1.14-.46,10.14,10.14,0,0,1-3.11-2.13C242.05,151.86,241.79,150.3,240.62,149.35Z" d="M240.62,149.35c-1-.83-2.68-1.12-3-2.4a2.9,2.9,0,0,1,0-.93,16.39,16.39,0,0,1,1.35-5.36,21.79,21.79,0,0,1,2.66-4.48,39.13,39.13,0,0,1,7.82-7.38c3.14-2.37,6.65-4.59,10.58-4.85a3,3,0,0,1,2.46.7c.71.78.53,2,.31,3-.72,3.35-1.64,6.54-2.52,9.86-1.15,4.33-.54,8.74-1.06,13.16a6.74,6.74,0,0,1-1,3.18,5.8,5.8,0,0,1-2.74,1.91,10.87,10.87,0,0,1-8.14-.27,11.31,11.31,0,0,1-1.14-.46,10.14,10.14,0,0,1-3.11-2.13C242.05,151.86,241.79,150.3,240.62,149.35Z"
style="fill: #f0997a" style="fill: #f0997a"
></path> />
<path <path
d="M244.14,147.72c.53,1.37,1.94,2.16,3.26,2.8a67.65,67.65,0,0,0,7.26,3,1.09,1.09,0,0,0,.47.09.78.78,0,0,0,.62-.61,2.37,2.37,0,0,0,0-.92,36.2,36.2,0,0,1,2.34-18,34.1,34.1,0,0,0,1.58-4.18c.4-1.53-.37-2.86-2-2.25A14.27,14.27,0,0,0,252.9,131a42.54,42.54,0,0,0-7.31,9.37C244.33,142.6,243.17,145.2,244.14,147.72Z" d="M244.14,147.72c.53,1.37,1.94,2.16,3.26,2.8a67.65,67.65,0,0,0,7.26,3,1.09,1.09,0,0,0,.47.09.78.78,0,0,0,.62-.61,2.37,2.37,0,0,0,0-.92,36.2,36.2,0,0,1,2.34-18,34.1,34.1,0,0,0,1.58-4.18c.4-1.53-.37-2.86-2-2.25A14.27,14.27,0,0,0,252.9,131a42.54,42.54,0,0,0-7.31,9.37C244.33,142.6,243.17,145.2,244.14,147.72Z"
style="fill: #ffbda7" style="fill: #ffbda7"
></path> />
<path <path
d="M249.69,144.59a17.13,17.13,0,0,1,2-6.12c.28-.53.57-1.05.88-1.57a16.75,16.75,0,0,0,1.13-1.86c.07-.15-.05-.52-.27-.39a10.81,10.81,0,0,0-3,3.6,16.27,16.27,0,0,0-1.87,4.69,14.13,14.13,0,0,0-.22,4.85c.21,1.6.61,3.52,1.93,4.56.16.13.64.26.64-.11,0-1.33-.79-2.58-1-3.9v0a3.52,3.52,0,0,0,2.33-1.24,4.25,4.25,0,0,0,.79-1.52,5,5,0,0,0,.16-.64,2.51,2.51,0,0,0-.05-1.09c0-.11-.17-.26-.28-.16a4.16,4.16,0,0,0-.84,1.46,5.36,5.36,0,0,1-.79,1.19l-.06.06-.11.1a2.25,2.25,0,0,1-.3.24l-.06,0-.13.08-.14.08-.1,0-.28.1s-.2,0-.05,0l-.14,0h-.11A13.91,13.91,0,0,1,249.69,144.59Z" d="M249.69,144.59a17.13,17.13,0,0,1,2-6.12c.28-.53.57-1.05.88-1.57a16.75,16.75,0,0,0,1.13-1.86c.07-.15-.05-.52-.27-.39a10.81,10.81,0,0,0-3,3.6,16.27,16.27,0,0,0-1.87,4.69,14.13,14.13,0,0,0-.22,4.85c.21,1.6.61,3.52,1.93,4.56.16.13.64.26.64-.11,0-1.33-.79-2.58-1-3.9v0a3.52,3.52,0,0,0,2.33-1.24,4.25,4.25,0,0,0,.79-1.52,5,5,0,0,0,.16-.64,2.51,2.51,0,0,0-.05-1.09c0-.11-.17-.26-.28-.16a4.16,4.16,0,0,0-.84,1.46,5.36,5.36,0,0,1-.79,1.19l-.06.06-.11.1a2.25,2.25,0,0,1-.3.24l-.06,0-.13.08-.14.08-.1,0-.28.1s-.2,0-.05,0l-.14,0h-.11A13.91,13.91,0,0,1,249.69,144.59Z"
style="fill: #f0997a" style="fill: #f0997a"
></path> />
<path <path
d="M280.47,199.55l2.29-.24c-.61-3.74-3.13-6.83-5.36-9.9a82.71,82.71,0,0,1-5-7.68,34.17,34.17,0,0,1-2.88-7.72l-.24-.72a18.49,18.49,0,0,0-1.7-6c-2.19-4-5.31-9.11-10.7-13.14s-8.92-8-23.11-6.88c-11.77.91-23.34,2.43-34.33,13.1a45.67,45.67,0,0,0-9.54,12.52c-1,2.07-2.39,4-3.07,6.23s-.92,4.68-2.1,6.76c-2.22,3.9-7.43,5.72-8.77,10a1.12,1.12,0,0,0,0,.88c.22.35.72.36,1.14.34l4.69-.3a8.83,8.83,0,0,0-1.79,2.63,3,3,0,0,0,.4,3c.89,1,2.39.95,3.7.86-1.29.09,0,11,.22,12.15a23.06,23.06,0,0,0,3.79,8.27,26.36,26.36,0,0,0,5.23,5.9,91,91,0,0,0,16.32,9.15c14.87,6.67,36.52,4.28,40.2,2.6-.42-5-2.63-12.23,3.41-14.16,2.32-.74,4.68-.22,7-.69a14.25,14.25,0,0,0,5.5-2.78c.79-.62,3.34-4.34,4.09-4.47,0,0,5.13-.83,6.72-7.44.17-.72.35-1.42.53-2.1a2.73,2.73,0,0,1,1.38-.53c1.18-.08,2.27.67,3.45.74a16.11,16.11,0,0,0-.91-8A5.28,5.28,0,0,1,280.47,199.55Z" d="M280.47,199.55l2.29-.24c-.61-3.74-3.13-6.83-5.36-9.9a82.71,82.71,0,0,1-5-7.68,34.17,34.17,0,0,1-2.88-7.72l-.24-.72a18.49,18.49,0,0,0-1.7-6c-2.19-4-5.31-9.11-10.7-13.14s-8.92-8-23.11-6.88c-11.77.91-23.34,2.43-34.33,13.1a45.67,45.67,0,0,0-9.54,12.52c-1,2.07-2.39,4-3.07,6.23s-.92,4.68-2.1,6.76c-2.22,3.9-7.43,5.72-8.77,10a1.12,1.12,0,0,0,0,.88c.22.35.72.36,1.14.34l4.69-.3a8.83,8.83,0,0,0-1.79,2.63,3,3,0,0,0,.4,3c.89,1,2.39.95,3.7.86-1.29.09,0,11,.22,12.15a23.06,23.06,0,0,0,3.79,8.27,26.36,26.36,0,0,0,5.23,5.9,91,91,0,0,0,16.32,9.15c14.87,6.67,36.52,4.28,40.2,2.6-.42-5-2.63-12.23,3.41-14.16,2.32-.74,4.68-.22,7-.69a14.25,14.25,0,0,0,5.5-2.78c.79-.62,3.34-4.34,4.09-4.47,0,0,5.13-.83,6.72-7.44.17-.72.35-1.42.53-2.1a2.73,2.73,0,0,1,1.38-.53c1.18-.08,2.27.67,3.45.74a16.11,16.11,0,0,0-.91-8A5.28,5.28,0,0,1,280.47,199.55Z"
style="fill: #f0997a" style="fill: #f0997a"
></path> />
<path <path
d="M281,202a5.28,5.28,0,0,1-.57-2.46l2.29-.24c-.61-3.74-3.13-6.83-5.36-9.9-.87-1.18-1.7-2.4-2.51-3.63-3.25.75-6.75,2.34-11.57-.87-2.87-1.92-4.12-6.21-4.85-9.41-.51-2.22-.57-4.51-1.17-6.72-.66-2.46-2.73-5.86-5.81-4.82-1.17.4-2,1.47-3,2.11-1.84,1.11-4.17.82-6.28.43s-4.4-.8-6.33.15a5,5,0,0,0-2.75,4.38,7.65,7.65,0,0,0,2,4.71c1.1,1.35,2.41,2.53,3.41,4,2.16,3.05,2.9,8.09.08,11a8,8,0,0,1-5.38,2.39,5.48,5.48,0,0,1-5-2.81c-.66-1.21-.93-2.74-2.08-3.49-1.85-1.2-4.16.52-5.72,2.09A121.19,121.19,0,0,1,198,206.62c-1.84,1.13-3.92,2.56-4,4.71-.06,1.57,1,2.93,2.11,4a27.78,27.78,0,0,0,10.72,6.68,9.76,9.76,0,0,0-4.3,1.7c-7.1,5.95,11.47,8.69,14.4,8.22-.35,1.21.7,2.33,1.66,3.15,2.45,2.1,5.66,4.13,7.54,6.77a9.16,9.16,0,0,1,.63,1c10.78,1,20.75-.4,23.14-1.49,4.33-1.58,7.44-3.46,8.34-6.52,1.07-3.6-8.92-6.36-4.93-7.64,2.32-.74,4.68-.22,7-.69a14.25,14.25,0,0,0,5.5-2.78c.79-.62,3.34-4.34,4.09-4.47,0,0,5.13-.83,6.72-7.44.17-.72.35-1.42.53-2.1a2.73,2.73,0,0,1,1.38-.53c1.18-.08,2.27.67,3.45.74A16.11,16.11,0,0,0,281,202Z" d="M281,202a5.28,5.28,0,0,1-.57-2.46l2.29-.24c-.61-3.74-3.13-6.83-5.36-9.9-.87-1.18-1.7-2.4-2.51-3.63-3.25.75-6.75,2.34-11.57-.87-2.87-1.92-4.12-6.21-4.85-9.41-.51-2.22-.57-4.51-1.17-6.72-.66-2.46-2.73-5.86-5.81-4.82-1.17.4-2,1.47-3,2.11-1.84,1.11-4.17.82-6.28.43s-4.4-.8-6.33.15a5,5,0,0,0-2.75,4.38,7.65,7.65,0,0,0,2,4.71c1.1,1.35,2.41,2.53,3.41,4,2.16,3.05,2.9,8.09.08,11a8,8,0,0,1-5.38,2.39,5.48,5.48,0,0,1-5-2.81c-.66-1.21-.93-2.74-2.08-3.49-1.85-1.2-4.16.52-5.72,2.09A121.19,121.19,0,0,1,198,206.62c-1.84,1.13-3.92,2.56-4,4.71-.06,1.57,1,2.93,2.11,4a27.78,27.78,0,0,0,10.72,6.68,9.76,9.76,0,0,0-4.3,1.7c-7.1,5.95,11.47,8.69,14.4,8.22-.35,1.21.7,2.33,1.66,3.15,2.45,2.1,5.66,4.13,7.54,6.77a9.16,9.16,0,0,1,.63,1c10.78,1,20.75-.4,23.14-1.49,4.33-1.58,7.44-3.46,8.34-6.52,1.07-3.6-8.92-6.36-4.93-7.64,2.32-.74,4.68-.22,7-.69a14.25,14.25,0,0,0,5.5-2.78c.79-.62,3.34-4.34,4.09-4.47,0,0,5.13-.83,6.72-7.44.17-.72.35-1.42.53-2.1a2.73,2.73,0,0,1,1.38-.53c1.18-.08,2.27.67,3.45.74A16.11,16.11,0,0,0,281,202Z"
style="fill: #fafafa" style="fill: #fafafa"
></path> />
<path <path
d="M282.76,199.31c-.61-3.74-3.13-6.83-5.36-9.9-.87-1.18-1.7-2.4-2.51-3.63-3.25.75-6.75,2.34-11.57-.87a7.58,7.58,0,0,1-1.83-1.79,10.23,10.23,0,0,0,2.38,4.63c1.86,2.17,4,4.1,5.78,6.33a26.07,26.07,0,0,1,5.48,13.38l-1.86.6a4.62,4.62,0,0,1,1.6,3.29c-.07,1.26-1.4,2.45-2.56,2,.33,1,.63,2.3-.06,3.15-.33.4-.83.64-1.14,1.06a1.75,1.75,0,0,0-.18,1.5c1.59-.63,4.53-2.4,5.66-7.12.17-.72.35-1.42.53-2.1a2.73,2.73,0,0,1,1.38-.53c1.18-.08,2.27.67,3.45.74a16.11,16.11,0,0,0-.91-8,5.28,5.28,0,0,1-.57-2.46Z" d="M282.76,199.31c-.61-3.74-3.13-6.83-5.36-9.9-.87-1.18-1.7-2.4-2.51-3.63-3.25.75-6.75,2.34-11.57-.87a7.58,7.58,0,0,1-1.83-1.79,10.23,10.23,0,0,0,2.38,4.63c1.86,2.17,4,4.1,5.78,6.33a26.07,26.07,0,0,1,5.48,13.38l-1.86.6a4.62,4.62,0,0,1,1.6,3.29c-.07,1.26-1.4,2.45-2.56,2,.33,1,.63,2.3-.06,3.15-.33.4-.83.64-1.14,1.06a1.75,1.75,0,0,0-.18,1.5c1.59-.63,4.53-2.4,5.66-7.12.17-.72.35-1.42.53-2.1a2.73,2.73,0,0,1,1.38-.53c1.18-.08,2.27.67,3.45.74a16.11,16.11,0,0,0-.91-8,5.28,5.28,0,0,1-.57-2.46Z"
style="fill: #e0e0e0" style="fill: #e0e0e0"
></path> />
<path <path
d="M246.8,210.58a.63.63,0,1,1-.84-.29A.63.63,0,0,1,246.8,210.58Z" d="M246.8,210.58a.63.63,0,1,1-.84-.29A.63.63,0,0,1,246.8,210.58Z"
style="fill: #37474f" style="fill: #37474f"
></path> />
<path <path
d="M252.36,209.6a.62.62,0,0,1-.29.83.63.63,0,1,1-.54-1.13A.62.62,0,0,1,252.36,209.6Z" d="M252.36,209.6a.62.62,0,0,1-.29.83.63.63,0,1,1-.54-1.13A.62.62,0,0,1,252.36,209.6Z"
style="fill: #37474f" style="fill: #37474f"
></path> />
<path <path
d="M251,214.47a.63.63,0,0,1-1.13.54.63.63,0,1,1,1.13-.54Z" d="M251,214.47a.63.63,0,0,1-1.13.54.63.63,0,1,1,1.13-.54Z"
style="fill: #37474f" style="fill: #37474f"
></path> />
<path <path
d="M261.27,216.08a8.7,8.7,0,0,1,1.91-1.27,13.47,13.47,0,0,0,1.74-1.2,1,1,0,0,1,.54-.22,1.14,1.14,0,0,1,.72.31,15.57,15.57,0,0,1,3.25,3.53.18.18,0,0,1,.06.15.28.28,0,0,1-.09.1,9.5,9.5,0,0,1-8.59,1.28c-.58-.21-1.64-.58-1.11-1.26A9.64,9.64,0,0,1,261.27,216.08Z" d="M261.27,216.08a8.7,8.7,0,0,1,1.91-1.27,13.47,13.47,0,0,0,1.74-1.2,1,1,0,0,1,.54-.22,1.14,1.14,0,0,1,.72.31,15.57,15.57,0,0,1,3.25,3.53.18.18,0,0,1,.06.15.28.28,0,0,1-.09.1,9.5,9.5,0,0,1-8.59,1.28c-.58-.21-1.64-.58-1.11-1.26A9.64,9.64,0,0,1,261.27,216.08Z"
></path> />
<path <path
d="M256.34,195.78a7.37,7.37,0,0,0-1.8,2.82,6.08,6.08,0,0,0,.3,4.73c.92,1.79,2.59,2.51,4.43,3a.25.25,0,0,0,.17,0,.26.26,0,0,0,.13-.14,1.84,1.84,0,0,0,.05-1.54,3.41,3.41,0,0,1-.49-1.13.93.93,0,0,1,.79-.94c1.71-.19,1.45,2,1.43,3a1.15,1.15,0,0,0,.7,1.31c1,.61,2,1.23,3.05,1.86a2.19,2.19,0,0,0,.88.36,1.78,1.78,0,0,0,.81-.16,5.71,5.71,0,0,0,3.84-4.19c.14-.76.06-1.55.2-2.31a.81.81,0,0,1,.31-.56c.43-.25,1.06.17,1.24.55s0,1.67.54,1a5.63,5.63,0,0,0,.63-2.4c.4-3-.74-6.66-3.92-7.59a11.35,11.35,0,0,0-3.68-.33,30.35,30.35,0,0,0-5.12.62,10.43,10.43,0,0,0-3.05,1A6.27,6.27,0,0,0,256.34,195.78Z" d="M256.34,195.78a7.37,7.37,0,0,0-1.8,2.82,6.08,6.08,0,0,0,.3,4.73c.92,1.79,2.59,2.51,4.43,3a.25.25,0,0,0,.17,0,.26.26,0,0,0,.13-.14,1.84,1.84,0,0,0,.05-1.54,3.41,3.41,0,0,1-.49-1.13.93.93,0,0,1,.79-.94c1.71-.19,1.45,2,1.43,3a1.15,1.15,0,0,0,.7,1.31c1,.61,2,1.23,3.05,1.86a2.19,2.19,0,0,0,.88.36,1.78,1.78,0,0,0,.81-.16,5.71,5.71,0,0,0,3.84-4.19c.14-.76.06-1.55.2-2.31a.81.81,0,0,1,.31-.56c.43-.25,1.06.17,1.24.55s0,1.67.54,1a5.63,5.63,0,0,0,.63-2.4c.4-3-.74-6.66-3.92-7.59a11.35,11.35,0,0,0-3.68-.33,30.35,30.35,0,0,0-5.12.62,10.43,10.43,0,0,0-3.05,1A6.27,6.27,0,0,0,256.34,195.78Z"
style="fill: #263238" style="fill: #263238"
></path> />
<path <path
d="M269.65,215.74a20.54,20.54,0,0,1-2.22-1.64,4.67,4.67,0,0,1-.85-2.41c-.1-.89-.08-1.78-.14-2.67a.64.64,0,0,0-.27-.59.46.46,0,0,0-.55.29,1.61,1.61,0,0,0-.06.69,5.29,5.29,0,0,1-.7,2.88,5,5,0,0,1-2.09,1.62c-3.7,2.07-6.23,5.47-10.66,6.26a11.9,11.9,0,0,1-11.44-5c-.89-1.26-1.62-2.62-2.47-3.9-.08-.13-.23-.28-.37-.21s-.11.19-.11.31c.07,1.75,1.25,3.37,2.13,4.81a11.82,11.82,0,0,0,5,4.83c2.93,1.37,6.36,2.22,9.39,1.08a19.07,19.07,0,0,0,5-3.41c1.06-.86,2.17-1.67,3.3-2.43a15.38,15.38,0,0,0,2.88-1.85,3,3,0,0,0,.29-.35,6.92,6.92,0,0,0,2.08,2.2,5.79,5.79,0,0,1,1.59,1.68,5.49,5.49,0,0,1,.52,1.36,4.58,4.58,0,0,0,1.75-.69A7.22,7.22,0,0,0,269.65,215.74Z" d="M269.65,215.74a20.54,20.54,0,0,1-2.22-1.64,4.67,4.67,0,0,1-.85-2.41c-.1-.89-.08-1.78-.14-2.67a.64.64,0,0,0-.27-.59.46.46,0,0,0-.55.29,1.61,1.61,0,0,0-.06.69,5.29,5.29,0,0,1-.7,2.88,5,5,0,0,1-2.09,1.62c-3.7,2.07-6.23,5.47-10.66,6.26a11.9,11.9,0,0,1-11.44-5c-.89-1.26-1.62-2.62-2.47-3.9-.08-.13-.23-.28-.37-.21s-.11.19-.11.31c.07,1.75,1.25,3.37,2.13,4.81a11.82,11.82,0,0,0,5,4.83c2.93,1.37,6.36,2.22,9.39,1.08a19.07,19.07,0,0,0,5-3.41c1.06-.86,2.17-1.67,3.3-2.43a15.38,15.38,0,0,0,2.88-1.85,3,3,0,0,0,.29-.35,6.92,6.92,0,0,0,2.08,2.2,5.79,5.79,0,0,1,1.59,1.68,5.49,5.49,0,0,1,.52,1.36,4.58,4.58,0,0,0,1.75-.69A7.22,7.22,0,0,0,269.65,215.74Z"
style="fill: #263238" style="fill: #263238"
></path> />
<path <path
d="M226.62,165.26c-2.5,1.36-5.21,3.53-6.24,6.26-.3.81-.81,2.26.21,2.76s2.69-.72,3.52-1.34a61.14,61.14,0,0,1,5.44-3.16,8,8,0,0,0,2.23-1.67c2.55-3.06-2-4.39-4.3-3.29C227.19,165,226.9,165.1,226.62,165.26Z" d="M226.62,165.26c-2.5,1.36-5.21,3.53-6.24,6.26-.3.81-.81,2.26.21,2.76s2.69-.72,3.52-1.34a61.14,61.14,0,0,1,5.44-3.16,8,8,0,0,0,2.23-1.67c2.55-3.06-2-4.39-4.3-3.29C227.19,165,226.9,165.1,226.62,165.26Z"
style="fill: #fafafa" style="fill: #fafafa"
></path> />
<path <path
d="M261.17,160.25c2.76.68,5.94,2.08,7.63,4.46.5.7,1.37,2,.51,2.72s-2.78,0-3.74-.39a60.48,60.48,0,0,0-6.07-1.66,8.14,8.14,0,0,1-2.59-1c-3.25-2.3.8-4.75,3.31-4.29Z" d="M261.17,160.25c2.76.68,5.94,2.08,7.63,4.46.5.7,1.37,2,.51,2.72s-2.78,0-3.74-.39a60.48,60.48,0,0,0-6.07-1.66,8.14,8.14,0,0,1-2.59-1c-3.25-2.3.8-4.75,3.31-4.29Z"
style="fill: #fafafa" style="fill: #fafafa"
></path> />
<path <path
d="M236.6,183.49a6.76,6.76,0,0,0-3.63-2.37,8.12,8.12,0,0,0-4.42.3,5.93,5.93,0,0,0-2.61,1.71c-.57.64-1.43,1.94-1.28,2.86.26,1.57,3.13-.55,3.78-.87a8.53,8.53,0,0,1,3.55-.84,20.36,20.36,0,0,1,3.68.62C236.84,185.11,237.28,184.46,236.6,183.49Z" d="M236.6,183.49a6.76,6.76,0,0,0-3.63-2.37,8.12,8.12,0,0,0-4.42.3,5.93,5.93,0,0,0-2.61,1.71c-.57.64-1.43,1.94-1.28,2.86.26,1.57,3.13-.55,3.78-.87a8.53,8.53,0,0,1,3.55-.84,20.36,20.36,0,0,1,3.68.62C236.84,185.11,237.28,184.46,236.6,183.49Z"
style="fill: #263238" style="fill: #263238"
></path> />
<path <path
d="M269.61,180.14a5.92,5.92,0,0,0-3.17-2.07,7.09,7.09,0,0,0-3.87.26,5.22,5.22,0,0,0-2.29,1.49,3.9,3.9,0,0,0-1.11,2.51c.22,1.37,2.74-.49,3.3-.76a7.48,7.48,0,0,1,3.11-.74,17.08,17.08,0,0,1,3.22.55C269.82,181.56,270.21,181,269.61,180.14Z" d="M269.61,180.14a5.92,5.92,0,0,0-3.17-2.07,7.09,7.09,0,0,0-3.87.26,5.22,5.22,0,0,0-2.29,1.49,3.9,3.9,0,0,0-1.11,2.51c.22,1.37,2.74-.49,3.3-.76a7.48,7.48,0,0,1,3.11-.74,17.08,17.08,0,0,1,3.22.55C269.82,181.56,270.21,181,269.61,180.14Z"
style="fill: #263238" style="fill: #263238"
></path> />
<path <path
d="M221.71,223c.13,2,2.33,3.07,4.28,3.32a12.63,12.63,0,0,0,7.6-1.44A4.1,4.1,0,0,0,241,227c.61,1.35,2.24,1.93,3.72,2,3.25.14,6.55-1.67,9.77-2.08s6.41.09,9.12-1.67c.18-.12.53-.32.73-.44,0,0,.27,1,.34,1.17a16.83,16.83,0,0,1,.7,3.86,3.77,3.77,0,0,1-.15,1.53,3,3,0,0,1-2.34,1.63,17.42,17.42,0,0,1-3,0,1.57,1.57,0,0,0-.83.17,1.9,1.9,0,0,0-.59,1.05,6.27,6.27,0,0,1-9.22,3.28,3.06,3.06,0,0,0-1.55-.67,2.69,2.69,0,0,0-1.46.72,12,12,0,0,1-9.54,2.25,10,10,0,0,1-7.32-6.29c-.11-.33-.25-.71-.58-.81a1.06,1.06,0,0,0-.73.14,8.09,8.09,0,0,1-3.78.9,3.45,3.45,0,0,1-3.07-2.08c-.4-1.18.08-2.48,0-3.72a4.49,4.49,0,0,1-4.42-6.77c1.31-2.19,4.67-3.21,7.09-2.94C223.47,220,221.59,221,221.71,223Z" d="M221.71,223c.13,2,2.33,3.07,4.28,3.32a12.63,12.63,0,0,0,7.6-1.44A4.1,4.1,0,0,0,241,227c.61,1.35,2.24,1.93,3.72,2,3.25.14,6.55-1.67,9.77-2.08s6.41.09,9.12-1.67c.18-.12.53-.32.73-.44,0,0,.27,1,.34,1.17a16.83,16.83,0,0,1,.7,3.86,3.77,3.77,0,0,1-.15,1.53,3,3,0,0,1-2.34,1.63,17.42,17.42,0,0,1-3,0,1.57,1.57,0,0,0-.83.17,1.9,1.9,0,0,0-.59,1.05,6.27,6.27,0,0,1-9.22,3.28,3.06,3.06,0,0,0-1.55-.67,2.69,2.69,0,0,0-1.46.72,12,12,0,0,1-9.54,2.25,10,10,0,0,1-7.32-6.29c-.11-.33-.25-.71-.58-.81a1.06,1.06,0,0,0-.73.14,8.09,8.09,0,0,1-3.78.9,3.45,3.45,0,0,1-3.07-2.08c-.4-1.18.08-2.48,0-3.72a4.49,4.49,0,0,1-4.42-6.77c1.31-2.19,4.67-3.21,7.09-2.94C223.47,220,221.59,221,221.71,223Z"
style="fill: #e0e0e0" style="fill: #e0e0e0"
></path> />
<path <path
d="M213,149.43c-1.75-7.53-10.16-14.31-16.68-17.72a12.68,12.68,0,0,0-4.5-1.58,3.16,3.16,0,0,0-1.8.22,3.67,3.67,0,0,0-1.39,1.55,27.8,27.8,0,0,0-2.73,9.49,123.29,123.29,0,0,0-1.28,19.3,17.28,17.28,0,0,0,1,6.67,9.19,9.19,0,0,0,2.15,3c1.13,1.07,2.53,1.84,3.59,3a8.41,8.41,0,0,0,3.12,2.61c3.55,1.52,7.51.23,10.76-1.45,4.09-2.12,10.5-7.1,10.54-12.32,0-1.68-1.72-2.47-2.33-3.88-.93-2.15-.24-4.52-.24-6.75A9.91,9.91,0,0,0,213,149.43Z" d="M213,149.43c-1.75-7.53-10.16-14.31-16.68-17.72a12.68,12.68,0,0,0-4.5-1.58,3.16,3.16,0,0,0-1.8.22,3.67,3.67,0,0,0-1.39,1.55,27.8,27.8,0,0,0-2.73,9.49,123.29,123.29,0,0,0-1.28,19.3,17.28,17.28,0,0,0,1,6.67,9.19,9.19,0,0,0,2.15,3c1.13,1.07,2.53,1.84,3.59,3a8.41,8.41,0,0,0,3.12,2.61c3.55,1.52,7.51.23,10.76-1.45,4.09-2.12,10.5-7.1,10.54-12.32,0-1.68-1.72-2.47-2.33-3.88-.93-2.15-.24-4.52-.24-6.75A9.91,9.91,0,0,0,213,149.43Z"
style="fill: #f0997a" style="fill: #f0997a"
></path> />
<path <path
d="M191.73,165.35c1.29,2.71,3.81,4.25,3.18,7.59-.34,1.8-1.24,3.45-1.68,5.22s-.62,4.2.15,5.81a1.2,1.2,0,0,0,.76.73c.71.14,1.11-.79,1.29-1.5a12.47,12.47,0,0,1,4.46-6.77,2.92,2.92,0,0,0,3.84,1.71,4.77,4.77,0,0,0,2.66-3.7,13.92,13.92,0,0,0-.27-4.72,12.36,12.36,0,0,1,5.21.83,1,1,0,0,0,.59.09.81.81,0,0,0,.43-.55,5.53,5.53,0,0,0-.53-4.5,9.21,9.21,0,0,0-3.32-3.21c1.81-.16,3.62-.25,5.44-.29a3.83,3.83,0,0,0-1.58-2.59A10.42,10.42,0,0,1,210,158c-.9-1.09-.55-2.68-.52-4.09.09-3.57-2.48-7.13-4.77-9.65a50.52,50.52,0,0,0-7.38-6.73c-1.33-1-3.8-2.58-5.34-1.42-1.72,1.29-1.39,4.7-1.62,6.62a68.21,68.21,0,0,0-.72,13.9A25.92,25.92,0,0,0,191.73,165.35Z" d="M191.73,165.35c1.29,2.71,3.81,4.25,3.18,7.59-.34,1.8-1.24,3.45-1.68,5.22s-.62,4.2.15,5.81a1.2,1.2,0,0,0,.76.73c.71.14,1.11-.79,1.29-1.5a12.47,12.47,0,0,1,4.46-6.77,2.92,2.92,0,0,0,3.84,1.71,4.77,4.77,0,0,0,2.66-3.7,13.92,13.92,0,0,0-.27-4.72,12.36,12.36,0,0,1,5.21.83,1,1,0,0,0,.59.09.81.81,0,0,0,.43-.55,5.53,5.53,0,0,0-.53-4.5,9.21,9.21,0,0,0-3.32-3.21c1.81-.16,3.62-.25,5.44-.29a3.83,3.83,0,0,0-1.58-2.59A10.42,10.42,0,0,1,210,158c-.9-1.09-.55-2.68-.52-4.09.09-3.57-2.48-7.13-4.77-9.65a50.52,50.52,0,0,0-7.38-6.73c-1.33-1-3.8-2.58-5.34-1.42-1.72,1.29-1.39,4.7-1.62,6.62a68.21,68.21,0,0,0-.72,13.9A25.92,25.92,0,0,0,191.73,165.35Z"
style="fill: #ffbda7" style="fill: #ffbda7"
></path> />
<path <path
d="M203,152a15.05,15.05,0,0,0-2.38-6.13,10.53,10.53,0,0,0-1.92-2.13,10.07,10.07,0,0,0-2.85-1.92c-.1,0-.1.14-.05.19a22.48,22.48,0,0,1,2.24,2.43,28.25,28.25,0,0,1,1.63,2.55,16.45,16.45,0,0,1,1.85,5.74c.22,1.61.3,3.44-.83,4.72a2.43,2.43,0,0,1-.52.49,4.27,4.27,0,0,1-.73.46,5,5,0,0,1-1.72.52,5.34,5.34,0,0,1-.8,0,6,6,0,0,0-1.38-.15c-.19,0-.19.28-.11.41a2.44,2.44,0,0,0,1.5.8,5.54,5.54,0,0,0,1.41.15,4.79,4.79,0,0,0,2.73-.75c.13-.08.25-.17.37-.26a10.42,10.42,0,0,1-2.36,5c-.42.49.51,1,.93.8,2-1.12,2.77-3.85,3.1-6A21.51,21.51,0,0,0,203,152Z" d="M203,152a15.05,15.05,0,0,0-2.38-6.13,10.53,10.53,0,0,0-1.92-2.13,10.07,10.07,0,0,0-2.85-1.92c-.1,0-.1.14-.05.19a22.48,22.48,0,0,1,2.24,2.43,28.25,28.25,0,0,1,1.63,2.55,16.45,16.45,0,0,1,1.85,5.74c.22,1.61.3,3.44-.83,4.72a2.43,2.43,0,0,1-.52.49,4.27,4.27,0,0,1-.73.46,5,5,0,0,1-1.72.52,5.34,5.34,0,0,1-.8,0,6,6,0,0,0-1.38-.15c-.19,0-.19.28-.11.41a2.44,2.44,0,0,0,1.5.8,5.54,5.54,0,0,0,1.41.15,4.79,4.79,0,0,0,2.73-.75c.13-.08.25-.17.37-.26a10.42,10.42,0,0,1-2.36,5c-.42.49.51,1,.93.8,2-1.12,2.77-3.85,3.1-6A21.51,21.51,0,0,0,203,152Z"
style="fill: #f0997a" style="fill: #f0997a"
></path> />
<path <path
d="M116.67,290.07a8.07,8.07,0,0,1,.22-3.94c1.28-4.47,4.45-8.13,7.74-11.4,1.53-1.53,3.26-3.08,5.4-3.38a2.2,2.2,0,0,1-.87,1.58,61.78,61.78,0,0,0-6.15,7.26c-1.58,2.19-3.49,4.65-3.56,7.45a3.11,3.11,0,0,0,.58,2.09,3,3,0,0,0,1.24.76,8,8,0,0,0,3.93.42c.57-.09,1.3-.16,1.55.36s-.15,1-.45,1.36a3.38,3.38,0,0,0-.5,3.73,2.93,2.93,0,0,0,2.53,1.19,7.09,7.09,0,0,0,2.79-.79,1.21,1.21,0,0,1,1.17-.12c.76.5-.4,2-.87,2.42a6.36,6.36,0,0,1-4,1.16,5.06,5.06,0,0,1-4-2.12,3.82,3.82,0,0,1,.11-4.39,9.64,9.64,0,0,1-4.26-.62A4.3,4.3,0,0,1,116.67,290.07Z" d="M116.67,290.07a8.07,8.07,0,0,1,.22-3.94c1.28-4.47,4.45-8.13,7.74-11.4,1.53-1.53,3.26-3.08,5.4-3.38a2.2,2.2,0,0,1-.87,1.58,61.78,61.78,0,0,0-6.15,7.26c-1.58,2.19-3.49,4.65-3.56,7.45a3.11,3.11,0,0,0,.58,2.09,3,3,0,0,0,1.24.76,8,8,0,0,0,3.93.42c.57-.09,1.3-.16,1.55.36s-.15,1-.45,1.36a3.38,3.38,0,0,0-.5,3.73,2.93,2.93,0,0,0,2.53,1.19,7.09,7.09,0,0,0,2.79-.79,1.21,1.21,0,0,1,1.17-.12c.76.5-.4,2-.87,2.42a6.36,6.36,0,0,1-4,1.16,5.06,5.06,0,0,1-4-2.12,3.82,3.82,0,0,1,.11-4.39,9.64,9.64,0,0,1-4.26-.62A4.3,4.3,0,0,1,116.67,290.07Z"
style="fill: #b16668" style="fill: #b16668"
></path> />
<path <path
d="M171.59,233.67a3.32,3.32,0,0,1-.47-1.59c.07-1,.89-1.76,1.2-2.71a1.49,1.49,0,0,1,.29-.64c.31-.31.68,0,.83.28,1,2,.54,4.22-.15,6.25-.07.22-.18.47-.41.54s-.5-.14-.65-.35a4.11,4.11,0,0,1-.5-1.41C171.69,233.91,171.64,233.79,171.59,233.67Z" d="M171.59,233.67a3.32,3.32,0,0,1-.47-1.59c.07-1,.89-1.76,1.2-2.71a1.49,1.49,0,0,1,.29-.64c.31-.31.68,0,.83.28,1,2,.54,4.22-.15,6.25-.07.22-.18.47-.41.54s-.5-.14-.65-.35a4.11,4.11,0,0,1-.5-1.41C171.69,233.91,171.64,233.79,171.59,233.67Z"
style="fill: #e0e0e0" style="fill: #e0e0e0"
></path> />
<path <path
d="M165.58,345.32a11.45,11.45,0,0,1-2.24-3.08C157.06,330,152.76,316.31,153,302.42c.26-14.33,2.94-27.93-2.46-41.83-1.7-4.4-4.1-8.67-4.4-13.38-.13-2.09.17-4.2,0-6.29-.31-3.5-2-6.73-3-10.09a13.86,13.86,0,0,1-.38-7.81,8.2,8.2,0,0,1,3.92-5c-2-4.31.75-9.45,5.13-9.91a7.27,7.27,0,0,1,1.92-3.89,6.14,6.14,0,0,1,3.5-1.8c3-.58,6.34,1.84,7.22,4.66a3.39,3.39,0,0,0,.42,1,3.06,3.06,0,0,0,1,.77c4.16,2.54,7.81,7.68,6.55,12.71-.38,1.54-1.18,3-1.45,4.52-.62,3.62,1.63,7.07,2.08,10.71.4,3.17-.58,6.33-1.26,9.45-4.07,18.83,2.84,38.28,11.57,55.45,3.58,7,9.89,15.89,8.49,24.25s-6.5,16.47-14.4,20.21a13.51,13.51,0,0,1-5.92,1.52A8.45,8.45,0,0,1,165.58,345.32Z" d="M165.58,345.32a11.45,11.45,0,0,1-2.24-3.08C157.06,330,152.76,316.31,153,302.42c.26-14.33,2.94-27.93-2.46-41.83-1.7-4.4-4.1-8.67-4.4-13.38-.13-2.09.17-4.2,0-6.29-.31-3.5-2-6.73-3-10.09a13.86,13.86,0,0,1-.38-7.81,8.2,8.2,0,0,1,3.92-5c-2-4.31.75-9.45,5.13-9.91a7.27,7.27,0,0,1,1.92-3.89,6.14,6.14,0,0,1,3.5-1.8c3-.58,6.34,1.84,7.22,4.66a3.39,3.39,0,0,0,.42,1,3.06,3.06,0,0,0,1,.77c4.16,2.54,7.81,7.68,6.55,12.71-.38,1.54-1.18,3-1.45,4.52-.62,3.62,1.63,7.07,2.08,10.71.4,3.17-.58,6.33-1.26,9.45-4.07,18.83,2.84,38.28,11.57,55.45,3.58,7,9.89,15.89,8.49,24.25s-6.5,16.47-14.4,20.21a13.51,13.51,0,0,1-5.92,1.52A8.45,8.45,0,0,1,165.58,345.32Z"
style="fill: #f0997a" style="fill: #f0997a"
></path> />
<path <path
d="M191.83,326c1.4-8.36-4.91-17.21-8.49-24.25-8.73-17.17-15.64-36.62-11.57-55.45.68-3.12,1.66-6.28,1.26-9.45-.45-3.64-2.7-7.09-2.08-10.71.27-1.56,1.07-3,1.45-4.52,1.26-5-2.39-10.17-6.55-12.72a2.9,2.9,0,0,1-1-.76,3.39,3.39,0,0,1-.42-1c-.88-2.82-4.19-5.24-7.22-4.66a6.14,6.14,0,0,0-3.5,1.8,7.2,7.2,0,0,0-1.92,3.89c-4.38.46-7.12,5.6-5.13,9.91a8.2,8.2,0,0,0-3.92,5,13.86,13.86,0,0,0,.38,7.81c1,3.36,2.66,6.59,3,10.09.19,2.09-.11,4.2,0,6.29.28,4.44,2.42,8.49,4.1,12.62l.24.29c4.52,5.1,9.93,10.48,10,17.3,0,1.79-.39,3.57-.23,5.35.34,3.72,3,6.78,4.47,10.2s1.35,8.35-2.08,9.83a15.9,15.9,0,0,1,3.34,8.73c0,3.17-1.51,6.49-4.37,7.86a6.16,6.16,0,0,1-7-1.41,97.23,97.23,0,0,0,8.81,24.26,11.45,11.45,0,0,0,2.24,3.08,8.44,8.44,0,0,0,5.93,2.44,13.51,13.51,0,0,0,5.92-1.52C185.33,342.5,190.42,334.49,191.83,326Z" d="M191.83,326c1.4-8.36-4.91-17.21-8.49-24.25-8.73-17.17-15.64-36.62-11.57-55.45.68-3.12,1.66-6.28,1.26-9.45-.45-3.64-2.7-7.09-2.08-10.71.27-1.56,1.07-3,1.45-4.52,1.26-5-2.39-10.17-6.55-12.72a2.9,2.9,0,0,1-1-.76,3.39,3.39,0,0,1-.42-1c-.88-2.82-4.19-5.24-7.22-4.66a6.14,6.14,0,0,0-3.5,1.8,7.2,7.2,0,0,0-1.92,3.89c-4.38.46-7.12,5.6-5.13,9.91a8.2,8.2,0,0,0-3.92,5,13.86,13.86,0,0,0,.38,7.81c1,3.36,2.66,6.59,3,10.09.19,2.09-.11,4.2,0,6.29.28,4.44,2.42,8.49,4.1,12.62l.24.29c4.52,5.1,9.93,10.48,10,17.3,0,1.79-.39,3.57-.23,5.35.34,3.72,3,6.78,4.47,10.2s1.35,8.35-2.08,9.83a15.9,15.9,0,0,1,3.34,8.73c0,3.17-1.51,6.49-4.37,7.86a6.16,6.16,0,0,1-7-1.41,97.23,97.23,0,0,0,8.81,24.26,11.45,11.45,0,0,0,2.24,3.08,8.44,8.44,0,0,0,5.93,2.44,13.51,13.51,0,0,0,5.92-1.52C185.33,342.5,190.42,334.49,191.83,326Z"
style="fill: #f0f0f0" style="fill: #f0f0f0"
></path> />
<path <path
d="M191.83,326a28.2,28.2,0,0,1-10.54,18.19c-4.17,3.19-10.54,5.73-15.19,2a11.89,11.89,0,0,1-3.37-4.32,97.05,97.05,0,0,1-7.8-20,73,73,0,0,1-2.44-21.37c.19-7.17.93-14.29.82-21.39a51.8,51.8,0,0,0-4.19-20.67c-1.38-3.27-2.94-6.61-3.37-10.28s.48-7.1-.71-10.59c-.95-3.37-2.66-6.65-3-10.34a9.36,9.36,0,0,1,4.47-9.41l-.1.32a7.46,7.46,0,0,1,2.31-9,6.19,6.19,0,0,1,3.05-1.17l-.09.08a7.63,7.63,0,0,1,1.85-3.76,6.14,6.14,0,0,1,3.67-1.91,6.1,6.1,0,0,0-3.6,2,7.49,7.49,0,0,0-1.73,3.8,6.32,6.32,0,0,0-4.95,3.64,7.11,7.11,0,0,0,0,6.28c-7.44,4.51-3.4,12.79-1.17,19.21,1.25,3.42.51,7.22.87,10.7,1.1,7,5.58,13.13,6.63,20.3,2.12,10.62.64,21.54.28,32.19-.66,14.27,3.55,28.31,9.85,41,2.28,5.35,7.65,7.22,12.91,4.81,8.33-3.4,13.9-11.64,15.45-20.35Z" d="M191.83,326a28.2,28.2,0,0,1-10.54,18.19c-4.17,3.19-10.54,5.73-15.19,2a11.89,11.89,0,0,1-3.37-4.32,97.05,97.05,0,0,1-7.8-20,73,73,0,0,1-2.44-21.37c.19-7.17.93-14.29.82-21.39a51.8,51.8,0,0,0-4.19-20.67c-1.38-3.27-2.94-6.61-3.37-10.28s.48-7.1-.71-10.59c-.95-3.37-2.66-6.65-3-10.34a9.36,9.36,0,0,1,4.47-9.41l-.1.32a7.46,7.46,0,0,1,2.31-9,6.19,6.19,0,0,1,3.05-1.17l-.09.08a7.63,7.63,0,0,1,1.85-3.76,6.14,6.14,0,0,1,3.67-1.91,6.1,6.1,0,0,0-3.6,2,7.49,7.49,0,0,0-1.73,3.8,6.32,6.32,0,0,0-4.95,3.64,7.11,7.11,0,0,0,0,6.28c-7.44,4.51-3.4,12.79-1.17,19.21,1.25,3.42.51,7.22.87,10.7,1.1,7,5.58,13.13,6.63,20.3,2.12,10.62.64,21.54.28,32.19-.66,14.27,3.55,28.31,9.85,41,2.28,5.35,7.65,7.22,12.91,4.81,8.33-3.4,13.9-11.64,15.45-20.35Z"
style="fill: #b16668" style="fill: #b16668"
></path> />
<path <path
d="M165.37,224c-3-1.94-2.69-5.81-1.35-8.65.72-1.56,2.28-2.91,4.06-2.2a5.17,5.17,0,0,1,2.24,2,7.13,7.13,0,0,1,1.38,4.74,7,7,0,0,1-.9,2.65,4.88,4.88,0,0,1-1.1,1.41A3.81,3.81,0,0,1,165.37,224Z" d="M165.37,224c-3-1.94-2.69-5.81-1.35-8.65.72-1.56,2.28-2.91,4.06-2.2a5.17,5.17,0,0,1,2.24,2,7.13,7.13,0,0,1,1.38,4.74,7,7,0,0,1-.9,2.65,4.88,4.88,0,0,1-1.1,1.41A3.81,3.81,0,0,1,165.37,224Z"
style="fill: #455a64" style="fill: #455a64"
></path> />
<path <path
d="M165.37,224c-4.19-2.21-3.23-12.17,2.13-12,3.92.69,5.91,5.78,4.42,9.18-1.13,2.83-3.72,4.53-6.55,2.8Zm0,0c4.29,2.5,6.86-3.19,5.17-6.6-.8-1.67-2.5-4.35-4.54-3.2-2.82,2-4.12,7.69-.63,9.8Z" d="M165.37,224c-4.19-2.21-3.23-12.17,2.13-12,3.92.69,5.91,5.78,4.42,9.18-1.13,2.83-3.72,4.53-6.55,2.8Zm0,0c4.29,2.5,6.86-3.19,5.17-6.6-.8-1.67-2.5-4.35-4.54-3.2-2.82,2-4.12,7.69-.63,9.8Z"
style="fill: #37474f" style="fill: #37474f"
></path> />
<path <path
d="M156.9,207.52a3.6,3.6,0,0,0-.54.85,6.63,6.63,0,0,0-.42,3.1,17.74,17.74,0,0,0,1.5,6.15,7.6,7.6,0,0,0,1.85,2.74c2.66,2.31,6.27-1.22,6.44-4.06a8.52,8.52,0,0,0-.23-2.3,12.11,12.11,0,0,0-4.19-6.37,3.83,3.83,0,0,0-2.57-1.09A2.66,2.66,0,0,0,156.9,207.52Z" d="M156.9,207.52a3.6,3.6,0,0,0-.54.85,6.63,6.63,0,0,0-.42,3.1,17.74,17.74,0,0,0,1.5,6.15,7.6,7.6,0,0,0,1.85,2.74c2.66,2.31,6.27-1.22,6.44-4.06a8.52,8.52,0,0,0-.23-2.3,12.11,12.11,0,0,0-4.19-6.37,3.83,3.83,0,0,0-2.57-1.09A2.66,2.66,0,0,0,156.9,207.52Z"
style="fill: #455a64" style="fill: #455a64"
></path> />
<path <path
d="M156.9,207.52c-1.88,2.61-.51,6.37.63,9,1.83,4.08,4.54,5.13,6.92.93,1.36-3.48-.81-7.48-3.41-9.88-1.19-1.16-3-1.46-4.14-.07Zm0,0c1-1.42,3.06-1.18,4.31-.15,2.68,1.9,5,4.72,5.38,8.11.59,3.68-3.8,8.31-7.4,5.87-3-2.07-4.6-11.15-2.29-13.83Z" d="M156.9,207.52c-1.88,2.61-.51,6.37.63,9,1.83,4.08,4.54,5.13,6.92.93,1.36-3.48-.81-7.48-3.41-9.88-1.19-1.16-3-1.46-4.14-.07Zm0,0c1-1.42,3.06-1.18,4.31-.15,2.68,1.9,5,4.72,5.38,8.11.59,3.68-3.8,8.31-7.4,5.87-3-2.07-4.6-11.15-2.29-13.83Z"
style="fill: #37474f" style="fill: #37474f"
></path> />
<path <path
d="M149.4,214.88a11.46,11.46,0,0,0,.06,5.08,7.92,7.92,0,0,0,2.25,4.11c.66.6,1.41,1.42,2.37,1.35a5.35,5.35,0,0,0,3.44-2.16,5.9,5.9,0,0,0,1.07-1.6c.91-2.25-.45-5.31-1.36-7.36-1-2.29-3.79-4.72-6.21-2.59A5.66,5.66,0,0,0,149.4,214.88Z" d="M149.4,214.88a11.46,11.46,0,0,0,.06,5.08,7.92,7.92,0,0,0,2.25,4.11c.66.6,1.41,1.42,2.37,1.35a5.35,5.35,0,0,0,3.44-2.16,5.9,5.9,0,0,0,1.07-1.6c.91-2.25-.45-5.31-1.36-7.36-1-2.29-3.79-4.72-6.21-2.59A5.66,5.66,0,0,0,149.4,214.88Z"
style="fill: #455a64" style="fill: #455a64"
></path> />
<path <path
d="M149.4,214.88c-.61,3,.08,6.56,2.39,8.58a7,7,0,0,0,1.77,1.18c1.14.24,2.33-.95,3.09-1.85a4.77,4.77,0,0,0,1.06-1.65,7.11,7.11,0,0,0-.26-4,15.33,15.33,0,0,0-1.68-4.18c-2.33-3.36-5.75-1.62-6.37,2Zm0,0c.63-3.93,4.09-5.69,7.13-2.61a13.4,13.4,0,0,1,2.55,4.27,7.66,7.66,0,0,1,.52,5.25c-1,2.33-3.92,5.22-6.59,4.13-3.65-2.3-4.44-7.13-3.61-11Z" d="M149.4,214.88c-.61,3,.08,6.56,2.39,8.58a7,7,0,0,0,1.77,1.18c1.14.24,2.33-.95,3.09-1.85a4.77,4.77,0,0,0,1.06-1.65,7.11,7.11,0,0,0-.26-4,15.33,15.33,0,0,0-1.68-4.18c-2.33-3.36-5.75-1.62-6.37,2Zm0,0c.63-3.93,4.09-5.69,7.13-2.61a13.4,13.4,0,0,1,2.55,4.27,7.66,7.66,0,0,1,.52,5.25c-1,2.33-3.92,5.22-6.59,4.13-3.65-2.3-4.44-7.13-3.61-11Z"
style="fill: #37474f" style="fill: #37474f"
></path> />
<path <path
d="M168.52,224.34a9.22,9.22,0,0,0-1.48-1.88c-3-2.92-7.14-1.92-9.87.86a16.18,16.18,0,0,0-4.39,11.5c.09,2.25.89,4.73,2.9,5.73a4,4,0,0,0,3.67-.06c1.7-.91,2.6-3,4.37-3.77,2.39-1.06,5.69-.29,6.7-3.49a8.06,8.06,0,0,0-.16-4.35A16.23,16.23,0,0,0,168.52,224.34Z" d="M168.52,224.34a9.22,9.22,0,0,0-1.48-1.88c-3-2.92-7.14-1.92-9.87.86a16.18,16.18,0,0,0-4.39,11.5c.09,2.25.89,4.73,2.9,5.73a4,4,0,0,0,3.67-.06c1.7-.91,2.6-3,4.37-3.77,2.39-1.06,5.69-.29,6.7-3.49a8.06,8.06,0,0,0-.16-4.35A16.23,16.23,0,0,0,168.52,224.34Z"
style="fill: #37474f" style="fill: #37474f"
></path> />
<path <path
d="M151.28,233.6c2.1-.13,4.12-3.41,4.1-5.34a5.08,5.08,0,0,0-.19-1.28,9.76,9.76,0,0,0-3.52-5.24,3.26,3.26,0,0,0-3.34-.34c-1.3.72-1.73,2.37-1.8,3.85C146.41,227.79,147.66,233.82,151.28,233.6Z" d="M151.28,233.6c2.1-.13,4.12-3.41,4.1-5.34a5.08,5.08,0,0,0-.19-1.28,9.76,9.76,0,0,0-3.52-5.24,3.26,3.26,0,0,0-3.34-.34c-1.3.72-1.73,2.37-1.8,3.85C146.41,227.79,147.66,233.82,151.28,233.6Z"
style="fill: #455a64" style="fill: #455a64"
></path> />
<path <path
d="M151.28,233.6c2.1-.31,3.34-2.59,3.69-4.49.32-2.51-2.62-6.59-5.08-7-2.51-.21-2.83,3.27-2.71,5.28.14,2.47,1,6.23,4.1,6.22Zm0,0c-3.08,0-4.37-3.56-5.09-6.06-1-2.92-.18-7.86,3.91-7.43,3.24.51,5.08,3.95,5.61,6.88.48,2.59-1.8,6.18-4.43,6.61Z" d="M151.28,233.6c2.1-.31,3.34-2.59,3.69-4.49.32-2.51-2.62-6.59-5.08-7-2.51-.21-2.83,3.27-2.71,5.28.14,2.47,1,6.23,4.1,6.22Zm0,0c-3.08,0-4.37-3.56-5.09-6.06-1-2.92-.18-7.86,3.91-7.43,3.24.51,5.08,3.95,5.61,6.88.48,2.59-1.8,6.18-4.43,6.61Z"
style="fill: #37474f" style="fill: #37474f"
></path> />
<path <path
d="M158.22,255.55a1.18,1.18,0,0,0,.37.6,1.6,1.6,0,0,0,.6.29,8.15,8.15,0,0,0,6.33-.79c2.78-1.64.77-5.35-2-5.2C161.34,250.56,157.44,253,158.22,255.55Z" d="M158.22,255.55a1.18,1.18,0,0,0,.37.6,1.6,1.6,0,0,0,.6.29,8.15,8.15,0,0,0,6.33-.79c2.78-1.64.77-5.35-2-5.2C161.34,250.56,157.44,253,158.22,255.55Z"
style="fill: #455a64" style="fill: #455a64"
></path> />
<path <path
d="M147.23,217.06a4.85,4.85,0,0,0-.49-1.19,1,1,0,0,0-1-.52,1.25,1.25,0,0,0-.79.57,4.22,4.22,0,0,0-1.1,3.19,2.05,2.05,0,0,0,3.17,1.32C147.78,220,147.59,218.3,147.23,217.06Z" d="M147.23,217.06a4.85,4.85,0,0,0-.49-1.19,1,1,0,0,0-1-.52,1.25,1.25,0,0,0-.79.57,4.22,4.22,0,0,0-1.1,3.19,2.05,2.05,0,0,0,3.17,1.32C147.78,220,147.59,218.3,147.23,217.06Z"
style="fill: #e0e0e0" style="fill: #e0e0e0"
></path> />
<path <path
d="M150.94,210.53a1.7,1.7,0,0,0,.74-.2c1-.62.16-2.57.19-3.5a2.49,2.49,0,0,0-.06-.82c-.48-1.53-2.1-.31-2.63.43a5.39,5.39,0,0,0-1.07,3C148.14,210.79,150,210.63,150.94,210.53Z" d="M150.94,210.53a1.7,1.7,0,0,0,.74-.2c1-.62.16-2.57.19-3.5a2.49,2.49,0,0,0-.06-.82c-.48-1.53-2.1-.31-2.63.43a5.39,5.39,0,0,0-1.07,3C148.14,210.79,150,210.63,150.94,210.53Z"
style="fill: #e0e0e0" style="fill: #e0e0e0"
></path> />
<path <path
d="M159.42,204.36a1,1,0,0,0,.36-.36,1.32,1.32,0,0,0,.11-.65c0-.53-.11-1.06-.06-1.59.09-.85.75-2.7-.75-2.55a2.17,2.17,0,0,0-1.35.77,9.28,9.28,0,0,0-1.21,2.15c-.3.62-.58,2,.26,2.37A3.69,3.69,0,0,0,159.42,204.36Z" d="M159.42,204.36a1,1,0,0,0,.36-.36,1.32,1.32,0,0,0,.11-.65c0-.53-.11-1.06-.06-1.59.09-.85.75-2.7-.75-2.55a2.17,2.17,0,0,0-1.35.77,9.28,9.28,0,0,0-1.21,2.15c-.3.62-.58,2,.26,2.37A3.69,3.69,0,0,0,159.42,204.36Z"
style="fill: #e0e0e0" style="fill: #e0e0e0"
></path> />
<path <path
d="M168.44,207.48a1.19,1.19,0,0,1,.23.57,12.41,12.41,0,0,1,.23,1.38,1.93,1.93,0,0,1-.1,1.12c-.67,1.36-3,.95-2.91-.65C166,209,167.36,206.19,168.44,207.48Z" d="M168.44,207.48a1.19,1.19,0,0,1,.23.57,12.41,12.41,0,0,1,.23,1.38,1.93,1.93,0,0,1-.1,1.12c-.67,1.36-3,.95-2.91-.65C166,209,167.36,206.19,168.44,207.48Z"
style="fill: #e0e0e0" style="fill: #e0e0e0"
></path> />
</g> </g>
</g> </g>
<g id="freepik--speech-bubble--inject-38"> <g id="freepik--speech-bubble--inject-38">
@@ -601,37 +601,37 @@
<path <path
d="M146.1,114.52a45.55,45.55,0,0,1,7.48,33.22L152.44,153a47.82,47.82,0,0,1-18.86,26.5c-21.43,14.87-50.69,9.95-65.22-11a45.43,45.43,0,0,1-7.78-31l.89-5.28a47.71,47.71,0,0,1,19.41-28.68C102.31,88.67,131.57,93.59,146.1,114.52Z" d="M146.1,114.52a45.55,45.55,0,0,1,7.48,33.22L152.44,153a47.82,47.82,0,0,1-18.86,26.5c-21.43,14.87-50.69,9.95-65.22-11a45.43,45.43,0,0,1-7.78-31l.89-5.28a47.71,47.71,0,0,1,19.41-28.68C102.31,88.67,131.57,93.59,146.1,114.52Z"
style="fill: #fff" style="fill: #fff"
></path> />
<path <path
d="M78.64,100.32c-23.25,16.14-29.34,47.75-13.57,70.44,14.14,20.37,41.14,26.75,63.32,16.2l13,8.65a3,3,0,0,0,4.57-3.17l-3.55-15.22c17.65-17.1,21.11-44.61,7-65C133.63,89.54,101.89,84.19,78.64,100.32Zm67.46,14.2a45.55,45.55,0,0,1,7.48,33.22L152.44,153a47.82,47.82,0,0,1-18.86,26.5c-21.43,14.87-50.69,9.95-65.22-11a45.43,45.43,0,0,1-7.78-31l.89-5.28a47.71,47.71,0,0,1,19.41-28.68C102.31,88.67,131.57,93.59,146.1,114.52Z" d="M78.64,100.32c-23.25,16.14-29.34,47.75-13.57,70.44,14.14,20.37,41.14,26.75,63.32,16.2l13,8.65a3,3,0,0,0,4.57-3.17l-3.55-15.22c17.65-17.1,21.11-44.61,7-65C133.63,89.54,101.89,84.19,78.64,100.32Zm67.46,14.2a45.55,45.55,0,0,1,7.48,33.22L152.44,153a47.82,47.82,0,0,1-18.86,26.5c-21.43,14.87-50.69,9.95-65.22-11a45.43,45.43,0,0,1-7.78-31l.89-5.28a47.71,47.71,0,0,1,19.41-28.68C102.31,88.67,131.57,93.59,146.1,114.52Z"
style="fill: #455a64" style="fill: #455a64"
></path> />
<path <path
d="M146.1,114.52a45.55,45.55,0,0,1,7.48,33.22L152.44,153a47.82,47.82,0,0,1-18.86,26.5c-21.43,14.87-50.69,9.95-65.22-11a45.43,45.43,0,0,1-7.78-31l.89-5.28a47.71,47.71,0,0,1,19.41-28.68C102.31,88.67,131.57,93.59,146.1,114.52Z" d="M146.1,114.52a45.55,45.55,0,0,1,7.48,33.22L152.44,153a47.82,47.82,0,0,1-18.86,26.5c-21.43,14.87-50.69,9.95-65.22-11a45.43,45.43,0,0,1-7.78-31l.89-5.28a47.71,47.71,0,0,1,19.41-28.68C102.31,88.67,131.57,93.59,146.1,114.52Z"
style="fill: #fff; opacity: 0.7000000000000001" style="fill: #fff; opacity: 0.7000000000000001"
></path> />
</g> </g>
<g id="freepik--paw--inject-38"> <g id="freepik--paw--inject-38">
<path <path
d="M102.4,137.24c-1.82,1.48-2.86,3.71-4.46,5.43-2.41,2.58-6,3.88-8.33,6.49A11.58,11.58,0,0,0,88.15,162a13.27,13.27,0,0,0,11.2,6.82c3.2.1,6.37-.49,9.58-.39,2.91.1,5.64,1,8.62.62a11.43,11.43,0,0,0,7.17-3.77,8.28,8.28,0,0,0,2-4.55c.35-2.8.42-6.92-1.21-9.39-1.5-2.27-3.93-3.47-5.94-5.19s-3.43-4.32-5.14-6.5C111.46,135.91,106.5,133.9,102.4,137.24Z" d="M102.4,137.24c-1.82,1.48-2.86,3.71-4.46,5.43-2.41,2.58-6,3.88-8.33,6.49A11.58,11.58,0,0,0,88.15,162a13.27,13.27,0,0,0,11.2,6.82c3.2.1,6.37-.49,9.58-.39,2.91.1,5.64,1,8.62.62a11.43,11.43,0,0,0,7.17-3.77,8.28,8.28,0,0,0,2-4.55c.35-2.8.42-6.92-1.21-9.39-1.5-2.27-3.93-3.47-5.94-5.19s-3.43-4.32-5.14-6.5C111.46,135.91,106.5,133.9,102.4,137.24Z"
style="fill: #ba68c8" style="fill: #ba68c8"
></path> />
<path <path
d="M91,142.08a14.22,14.22,0,0,0,1.42-2c1.28-2.08,1.1-3.93,0-6.08a17.19,17.19,0,0,0-3.71-4.53A13.68,13.68,0,0,0,85,126.91a3.31,3.31,0,0,0-2.82,0c-1.23.64-1.74,2.14-2,3.51a19.64,19.64,0,0,0-.09,6.4A10.83,10.83,0,0,0,82,141.68a5.77,5.77,0,0,0,4.41,2.5,6.25,6.25,0,0,0,4.28-1.77Z" d="M91,142.08a14.22,14.22,0,0,0,1.42-2c1.28-2.08,1.1-3.93,0-6.08a17.19,17.19,0,0,0-3.71-4.53A13.68,13.68,0,0,0,85,126.91a3.31,3.31,0,0,0-2.82,0c-1.23.64-1.74,2.14-2,3.51a19.64,19.64,0,0,0-.09,6.4A10.83,10.83,0,0,0,82,141.68a5.77,5.77,0,0,0,4.41,2.5,6.25,6.25,0,0,0,4.28-1.77Z"
style="fill: #ba68c8" style="fill: #ba68c8"
></path> />
<path <path
d="M91.6,120.29c0-3.39.94-6.68,4.12-8.22,3.71-1.8,7.07,2.14,8.24,5.26s1.86,7.39.65,10.75C103,132.46,98.55,133,95.32,130,92.76,127.61,91.66,123.71,91.6,120.29Z" d="M91.6,120.29c0-3.39.94-6.68,4.12-8.22,3.71-1.8,7.07,2.14,8.24,5.26s1.86,7.39.65,10.75C103,132.46,98.55,133,95.32,130,92.76,127.61,91.66,123.71,91.6,120.29Z"
style="fill: #ba68c8" style="fill: #ba68c8"
></path> />
<path <path
d="M124,142.54a14.44,14.44,0,0,1-1.53-1.95c-1.39-2-1.32-3.85-.32-6.07a17.18,17.18,0,0,1,3.44-4.74,13.86,13.86,0,0,1,3.46-2.73,3.31,3.31,0,0,1,2.81-.18c1.27.57,1.86,2,2.18,3.39a19.89,19.89,0,0,1,.46,6.39,10.84,10.84,0,0,1-1.53,5,5.8,5.8,0,0,1-4.26,2.75,6.26,6.26,0,0,1-4.38-1.52Z" d="M124,142.54a14.44,14.44,0,0,1-1.53-1.95c-1.39-2-1.32-3.85-.32-6.07a17.18,17.18,0,0,1,3.44-4.74,13.86,13.86,0,0,1,3.46-2.73,3.31,3.31,0,0,1,2.81-.18c1.27.57,1.86,2,2.18,3.39a19.89,19.89,0,0,1,.46,6.39,10.84,10.84,0,0,1-1.53,5,5.8,5.8,0,0,1-4.26,2.75,6.26,6.26,0,0,1-4.38-1.52Z"
style="fill: #ba68c8" style="fill: #ba68c8"
></path> />
<path <path
d="M123,120.09c-.17-3.39-1.38-6.61-4.65-7.94-3.83-1.54-6.92,2.61-7.88,5.8-1,3.34-1.37,7.49.06,10.77,1.86,4.27,6.38,4.5,9.4,1.29C122.32,127.46,123.16,123.5,123,120.09Z" d="M123,120.09c-.17-3.39-1.38-6.61-4.65-7.94-3.83-1.54-6.92,2.61-7.88,5.8-1,3.34-1.37,7.49.06,10.77,1.86,4.27,6.38,4.5,9.4,1.29C122.32,127.46,123.16,123.5,123,120.09Z"
style="fill: #ba68c8" style="fill: #ba68c8"
></path> />
</g> </g>
</g> </g>
</g> </g>

View File

@@ -11,6 +11,6 @@
stroke-linejoin="round" stroke-linejoin="round"
stroke-width="2" stroke-width="2"
d="M7 7h.01M7 3h5c.512 0 1.024.195 1.414.586l7 7a2 2 0 010 2.828l-7 7a2 2 0 01-2.828 0l-7-7A1.994 1.994 0 013 12V7a4 4 0 014-4z" d="M7 7h.01M7 3h5c.512 0 1.024.195 1.414.586l7 7a2 2 0 010 2.828l-7 7a2 2 0 01-2.828 0l-7-7A1.994 1.994 0 013 12V7a4 4 0 014-4z"
></path> />
</svg> </svg>
</template> </template>

View File

@@ -1,80 +1,39 @@
<script setup lang="ts">
const route = useRoute()
const path = computed(() => route.fullPath.replace('/', ''))
</script>
<template> <template>
<div class="py-5 border-t mt-5 text-zinc-700"> <div class="py-5 border-t mt-5 text-zinc-700">
<div class="px-6 container max-w-5xl mx-auto"> <div class="px-6 container max-w-5xl mx-auto">
<div class="grid grid-cols-1 md:grid-cols-3"> <div class="grid grid-cols-1 md:grid-cols-3">
<div> <FooterSite v-if="path === 'about'" />
<p class="text-black text-2xl py-1 font-semibold">Al Asad Nur Riyad</p> <FooterDevloper v-else />
<p class="py-2">
Hi! I am Riyad, a Tech enthusiast, problem solver and software engineer. Currently
working at Appscode Inc.
</p>
<div class="my-3 space-x-3 pb-3">
<NuxtLink
to="https://github.com/nurRiyad"
target="_blank"
class="p-2 bg-gray-300 rounded-md"
aria-label="Github"
>
<Icon name="fa:github" size="1em" />
</NuxtLink>
<NuxtLink
to="https://www.linkedin.com/in/nur-riyad/"
target="_blank"
class="p-2 bg-gray-300 rounded-md"
aria-label="LinkedIn"
>
<Icon name="fa:linkedin-square" size="1em" />
</NuxtLink>
<NuxtLink
to="https://twitter.com/qdnvubp"
target="_blank"
class="p-2 bg-gray-300 rounded-md"
aria-label="Twitter"
>
<Icon name="fa:twitter-square" size="1em" />
</NuxtLink>
<NuxtLink
to="https://stackoverflow.com/users/16781395/nur-riyad"
target="_blank"
class="p-2 bg-gray-300 rounded-md"
aria-label="StackOverflow"
>
<Icon name="fa:stack-overflow" size="1em" />
</NuxtLink>
</div>
</div>
<div class="flex flex-col my-5 md:my-0 md:justify-self-center">
<p class="text-black text-base font-semibold">Quick Link</p>
<NuxtLink to="/" class="hover:underline">Home</NuxtLink>
<NuxtLink to="/categories" class="hover:underline">Categories</NuxtLink>
<NuxtLink to="/blogs" class="hover:underline">Archive</NuxtLink>
<NuxtLink to="https://www.nurriyad.xyz/" target="_blank" class="hover:underline">
About Me
</NuxtLink>
</div>
<div>
<p class="text-black text-base font-semibold">Connect</p>
<p>
I have a fair amount of knowledge of Javascript, Typescript, VueJs, and Nuxt. If you
have an interesting idea, either open source or paid let's connect.
</p>
<a <FooterLink />
href="mailto: alasadnurriyad4@gmail.com" <FooterConnect />
class="block text-center w-full bg-sky-700 p-2 rounded-lg text-white mt-3 text-sm"
>
Sent Mail
</a>
</div>
</div> </div>
<div class="border-t mt-5 text-center p-2"> <div class="border-t mt-5 text-center p-2">
© 2020-2022 No Right is reserved. Who cares 🤷‍♂️? It's © 2020-2023 No Right is reserved. Who cares 🤷? It's
<a href="https://github.com/nurriyad/blog" target="_blank" rel="nofollow" class="underline" <a href="https://github.com/nurriyad/blog" target="_blank" rel="nofollow" class="underline">open source</a>
>open source</a
>
anyway. anyway.
</div> </div>
</div> </div>
</div> </div>
</template> </template>
<style>
/* we will explain what these classes do next! */
.v-enter-active,
.v-leave-active {
transition: all 0.4s;
}
.v-enter-from,
.v-leave-to {
opacity: 0;
filter: blur(1rem);
}
</style>

View File

@@ -1,25 +1,33 @@
<script setup lang="ts"> <script setup lang="ts">
let isDark = ref(false) const route = useRoute()
const path = computed(() => route.fullPath.replace('/', ''))
</script> </script>
<template> <template>
<div class="py-5 border-b text-zinc-700"> <div class="py-5 border-b font-semibold">
<div class="flex px-6 container max-w-5xl justify-between mx-auto items-baseline "> <div class="flex px-6 container max-w-5xl justify-between mx-auto items-baseline ">
<ul class="flex items-baseline space-x-5"> <ul class="flex items-baseline space-x-5">
<li class=""> <li class="text-lg sm:text-2xl font-bold">
<NuxtLink to="/" class="text-2xl text-black font-bold"> Home </NuxtLink> <NuxtLink to="/" :class="{ underline: path === '' }">
</li> Riyad's Blog
<li> </NuxtLink>
<NuxtLink to="/categories"> Categories </NuxtLink>
</li> </li>
</ul> </ul>
<ul class="flex items-center space-x-3"> <ul class="flex items-center space-x-3 sm:space-x-6 text-sm sm:text-lg">
<li> <li>
<NuxtLink to="/blogs"> Archive </NuxtLink> <NuxtLink to="/blogs" :class="{ underline: path === 'blogs' }">
Blogs
</NuxtLink>
</li> </li>
<li title="About Me"> <li>
<NuxtLink to="https://www.nurriyad.xyz/" aria-label="About me"> <NuxtLink to="/categories" :class="{ underline: path === 'categories' }">
<Icon size="1.2em" class="cursor-pointer" name="emojione:boy-dark-skin-tone" /> Categories
</NuxtLink>
</li>
<li title="About Me" :class="{ underline: path === 'about' }">
<NuxtLink to="/about" aria-label="About me">
About
</NuxtLink> </NuxtLink>
</li> </li>
</ul> </ul>

View File

@@ -0,0 +1,67 @@
<script lang="ts" setup>
// Get Last 6 Publish Post from the content/blog directory
const { data } = await useAsyncData('recent-post', () =>
queryContent('/blogs').limit(3).sort({ _id: -1 }).find(),
)
const formatedData = computed(() => {
return data.value?.map((articles) => {
return {
path: articles._path,
title: articles.title || 'no-title available',
description: articles.description || 'no-descriptoin available',
image: articles.image || '/nuxt-blog/no-image_cyyits.png',
alt: articles.alt || 'no alter data available',
ogImage: articles.ogImage || '/nuxt-blog/no-image_cyyits.png',
provider: articles.provider,
date: articles.date || 'not-date-available',
tags: articles.tags || [],
published: articles.published || false,
}
})
})
useHead({
title: 'Home',
meta: [
{
name: 'description',
content:
'Welcome To My Blog Site. Get Web Development, Javascript, Typescript, NodeJs, Vue, and Nuxt, Related Articles, Tips, Learning resources and more.',
},
],
titleTemplate: 'Riyad\'s Blog - %s',
})
</script>
<template>
<div class="pb-10">
<div class="px-6">
<div class="flex flex-row items-center space-x-3 pt-5 pb-3">
<Icon name="mdi:star-three-points-outline" size="2em" class="text-black" />
<h3 class="text-4xl font-semibold text-black ">
Recent Post
</h3>
</div>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3">
<template v-for="post in formatedData" :key="post.title">
<BlogCard
:path="post.path"
:title="post.title"
:date="post.date"
:description="post.description"
:image="post.image"
:alt="post.alt"
:og-image="post.ogImage"
:provider="post.provider"
:tags="post.tags"
:published="post.published"
/>
</template>
<template v-if="data?.length === 0">
<BlogEmpty />
</template>
</div>
</div>
</template>

View File

@@ -0,0 +1,67 @@
<script lang="ts" setup>
// Get Last 6 Publish Post from the content/blog directory
const { data } = await useAsyncData('trending-post', () =>
queryContent('/blogs').limit(3).sort({ _id: 1 }).find(),
)
const formatedData = computed(() => {
return data.value?.map((articles) => {
return {
path: articles._path,
title: articles.title || 'no-title available',
description: articles.description || 'no-descriptoin available',
image: articles.image || '/nuxt-blog/no-image_cyyits.png',
alt: articles.alt || 'no alter data available',
ogImage: articles.ogImage || '/nuxt-blog/no-image_cyyits.png',
provider: articles.provider,
date: articles.date || 'not-date-available',
tags: articles.tags || [],
published: articles.published || false,
}
})
})
useHead({
title: 'Home',
meta: [
{
name: 'description',
content:
'Welcome To My Blog Site. Get Web Development, Javascript, Typescript, NodeJs, Vue, and Nuxt, Related Articles, Tips, Learning resources and more.',
},
],
titleTemplate: 'Riyad\'s Blog - %s',
})
</script>
<template>
<div>
<div class="px-6">
<div class="flex flex-row items-center space-x-3 pt-5 pb-3">
<Icon name="mdi:star-three-points-outline" size="2em" class="text-black" />
<h3 class="text-4xl font-semibold text-black ">
Trending Post
</h3>
</div>
</div>
<div class="grid grid-cols-1 ">
<template v-for="post in formatedData" :key="post.title">
<ArchiveCard
:path="post.path"
:title="post.title"
:date="post.date"
:description="post.description"
:image="post.image"
:alt="post.alt"
:og-image="post.ogImage"
:provider="post.provider"
:tags="post.tags"
:published="post.published"
/>
</template>
<template v-if="data?.length === 0">
<BlogEmpty />
</template>
</div>
</div>
</template>

View File

@@ -6,7 +6,7 @@ image: /nuxt-blog/pexels-photo-3379934_qjpfp3.jpg
alt: Some Awesome Libraries For Vue3 alt: Some Awesome Libraries For Vue3
ogImage: /nuxt-blog/pexels-photo-3379934_qjpfp3.jpg ogImage: /nuxt-blog/pexels-photo-3379934_qjpfp3.jpg
provider: cloudinary provider: cloudinary
tags: ['vue'] tags: ['vue',"javascript"]
published: true published: true
--- ---

View File

@@ -4,7 +4,7 @@
<MainHeader /> <MainHeader />
</header> </header>
<main> <main>
<div class="p-9"></div> <div class="p-9" />
<slot /> <slot />
</main> </main>
<footer> <footer>

View File

@@ -4,11 +4,12 @@ export default defineNuxtConfig({
head: { head: {
charset: 'utf-16', charset: 'utf-16',
viewport: 'width=device-width,initial-scale=1', viewport: 'width=device-width,initial-scale=1',
title: "Riyad's Blog", title: 'Riyad\'s Blog',
titleTemplate: "%s - Riyad's Blog", titleTemplate: '%s - Riyad\'s Blog',
meta: [{ name: 'description', content: "Riyad's awesome blog" }], meta: [{ name: 'description', content: 'Riyad\'s awesome blog' }],
}, },
pageTransition: { name: 'page', mode: 'out-in' }, pageTransition: { name: 'page', mode: 'out-in' },
layoutTransition: { name: 'layout', mode: 'out-in' },
}, },
typescript: { typescript: {

View File

@@ -5,18 +5,21 @@
"dev": "nuxt dev", "dev": "nuxt dev",
"generate": "nuxt generate", "generate": "nuxt generate",
"preview": "nuxt preview", "preview": "nuxt preview",
"postinstall": "nuxt prepare" "postinstall": "nuxt prepare",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
}, },
"devDependencies": { "devDependencies": {
"@nuxt/content": "^2.3.0", "@antfu/eslint-config": "^0.38.5",
"@nuxt/content": "^2.6.0",
"@nuxt/image-edge": "^1.0.0-27840416.dc1ed65", "@nuxt/image-edge": "^1.0.0-27840416.dc1ed65",
"@nuxtjs/fontaine": "^0.2.4", "@nuxtjs/fontaine": "^0.2.5",
"@nuxtjs/robots": "^3.0.0", "@nuxtjs/robots": "^3.0.0",
"@nuxtjs/tailwindcss": "^6.1.3", "@nuxtjs/tailwindcss": "^6.6.7",
"@tailwindcss/line-clamp": "^0.4.2", "@tailwindcss/typography": "^0.5.9",
"@tailwindcss/typography": "^0.5.8", "eslint": "^8.39.0",
"nuxt": "^3.1.0", "nuxt": "^3.4.3",
"nuxt-icon": "^0.1.8", "nuxt-icon": "^0.4.0",
"prettier": "2.8.1" "typescript": "^5.0.4"
} }
} }

11
pages/[...slug].vue Normal file
View File

@@ -0,0 +1,11 @@
<script setup lang="ts">
</script>
<template>
<div class="py-5">
<div class="container max-w-xl mx-auto">
<Logo404 />
</div>
</div>
</template>

77
pages/about.vue Normal file
View File

@@ -0,0 +1,77 @@
<script setup lang="ts">
</script>
<template>
<div class="py-5">
<div class="sm:grid grid-cols-8 px-6 py-5 sm:py-9 gap-5 container max-w-5xl mx-auto">
<div class="col-span-5 max-w-md">
<div class="flex justify-between">
<div>
<h1 class="text-xl sm:text-4xl pb-2 font-bold ">
Al Asad Nur Riyad
</h1>
<div class="my-3 space-x-3 pb-10">
<NuxtLink
to="https://github.com/nurRiyad"
target="_blank"
class="p-2 bg-gray-300 rounded-md"
aria-label="Github"
>
<Icon name="fa:github" size="1em" />
</NuxtLink>
<NuxtLink
to="https://www.linkedin.com/in/nur-riyad/"
target="_blank"
class="p-2 bg-gray-300 rounded-md"
aria-label="LinkedIn"
>
<Icon name="fa:linkedin-square" size="1em" />
</NuxtLink>
<NuxtLink
to="https://twitter.com/qdnvubp"
target="_blank"
class="p-2 bg-gray-300 rounded-md"
aria-label="Twitter"
>
<Icon name="fa:twitter-square" size="1em" />
</NuxtLink>
<NuxtLink
to="https://stackoverflow.com/users/16781395/nur-riyad"
target="_blank"
class="p-2 bg-gray-300 rounded-md"
aria-label="StackOverflow"
>
<Icon name="fa:stack-overflow" size="1em" />
</NuxtLink>
</div>
</div>
<div class="sm:hidden block col-span-3 pb-5">
<NuxtImg
src="/riyad.jpg"
width="125"
height="115"
quality="50"
class="rounded-md"
/>
</div>
</div>
<h3 class="text-base sm:text-3xl font-semibold pb-7 sm:pb-12">
Software Engineer, Problem Solver, Web Enthusiast.
</h3>
<p>Hello, fellow human! I'm a software wizard who spends most of his day crafting code spells at @AppsCode in the Bytebuilders team. When I'm not crafting code, you can find me summoning solutions to problems on online judges. Just don't ask me to cast any love spells, my magic only works on machines!</p>
</div>
<div class="hidden sm:block col-span-3">
<NuxtImg
src="/riyad.jpg"
width="450"
height="500"
quality="50"
class="rounded-md"
/>
</div>
</div>
</div>
</template>

View File

@@ -1,5 +1,6 @@
<script setup lang="ts"> <script setup lang="ts">
import type { BlogPost } from '@/types/blog' import type { BlogPost } from '@/types/blog'
const { path } = useRoute() const { path } = useRoute()
const articles = await queryContent(path).findOne() const articles = await queryContent(path).findOne()
@@ -26,7 +27,7 @@ useHead({
content: data.value.description, content: data.value.description,
}, },
// Test on: https://developers.facebook.com/tools/debug/ or https://socialsharepreview.com/ // Test on: https://developers.facebook.com/tools/debug/ or https://socialsharepreview.com/
{ property: 'og:site_name', content: `Riyad's Blog` }, { property: 'og:site_name', content: 'Riyad\'s Blog' },
{ hid: 'og:type', property: 'og:type', content: 'website' }, { hid: 'og:type', property: 'og:type', content: 'website' },
{ {
property: 'og:url', property: 'og:url',
@@ -76,7 +77,7 @@ useHead({
<template> <template>
<main class="px-6 container max-w-5xl mx-auto"> <main class="px-6 container max-w-5xl mx-auto">
<header> <header>
<h1 class="text-xl md:text-3xl lg:text-5xl m-7 font-bold text-center"> <h1 class="text-xl md:text-3xl lg:text-4xl m-7 font-bold text-center">
{{ data.title || '' }} {{ data.title || '' }}
</h1> </h1>
<NuxtImg <NuxtImg
@@ -96,7 +97,7 @@ useHead({
</div> </div>
<div class="flex items-center gap-2 flex-wrap my-5"> <div class="flex items-center gap-2 flex-wrap my-5">
<LogoTag /> <LogoTag />
<template v-for="tag in data.tags"> <template v-for="tag in data.tags" :key="tag">
<span class="bg-gray-200 rounded-md px-2 py-1 font-semibold">{{ tag }}</span> <span class="bg-gray-200 rounded-md px-2 py-1 font-semibold">{{ tag }}</span>
</template> </template>
</div> </div>

View File

@@ -26,9 +26,10 @@ useHead({
content: 'Here you will find all the blog posts I have written & published on this site.', content: 'Here you will find all the blog posts I have written & published on this site.',
}, },
], ],
titleTemplate: "Riyad's Blog - %s", titleTemplate: 'Riyad\'s Blog - %s',
}) })
</script> </script>
<template> <template>
<main class="container max-w-5xl mx-auto text-zinc-600"> <main class="container max-w-5xl mx-auto text-zinc-600">
<ArchiveHero /> <ArchiveHero />
@@ -41,7 +42,7 @@ useHead({
:description="post.description" :description="post.description"
:image="post.image" :image="post.image"
:alt="post.alt" :alt="post.alt"
:ogImage="post.ogImage" :og-image="post.ogImage"
:provider="post.provider" :provider="post.provider"
:tags="post.tags" :tags="post.tags"
:published="post.published" :published="post.published"

View File

@@ -3,10 +3,11 @@ const route = useRoute()
// take category from route params & make first char upper // take category from route params & make first char upper
const category = computed(() => { const category = computed(() => {
let name = route.params.category || '' const name = route.params.category || ''
let strName = '' let strName = ''
if (name instanceof Array) strName = name.at(0) || '' if (Array.isArray(name))
strName = name.at(0) || ''
else strName = name else strName = name
return strName return strName
}) })
@@ -14,7 +15,7 @@ const category = computed(() => {
const { data } = await useAsyncData('home', () => const { data } = await useAsyncData('home', () =>
queryContent('/blogs') queryContent('/blogs')
.where({ tags: { $contains: category.value } }) .where({ tags: { $contains: category.value } })
.find() .find(),
) )
const formatedData = computed(() => { const formatedData = computed(() => {
@@ -42,9 +43,10 @@ useHead({
content: `You will find all the ${category.value} related post here`, content: `You will find all the ${category.value} related post here`,
}, },
], ],
titleTemplate: "Riyad's Blog - %s", titleTemplate: 'Riyad\'s Blog - %s',
}) })
</script> </script>
<template> <template>
<main class="container max-w-5xl mx-auto text-zinc-600"> <main class="container max-w-5xl mx-auto text-zinc-600">
<CategoryTopic /> <CategoryTopic />
@@ -57,7 +59,7 @@ useHead({
:description="post.description" :description="post.description"
:image="post.image" :image="post.image"
:alt="post.alt" :alt="post.alt"
:ogImage="post.ogImage" :og-image="post.ogImage"
:provider="post.provider" :provider="post.provider"
:tags="post.tags" :tags="post.tags"
:published="post.published" :published="post.published"

View File

@@ -27,9 +27,10 @@ useHead({
'Blow All the topics are listed on which either I have written a blog or will write a blog in near future.', 'Blow All the topics are listed on which either I have written a blog or will write a blog in near future.',
}, },
], ],
titleTemplate: "Riyad's Blog - %s", titleTemplate: 'Riyad\'s Blog - %s',
}) })
</script> </script>
<template> <template>
<main class="container max-w-5xl mx-auto text-zinc-600"> <main class="container max-w-5xl mx-auto text-zinc-600">
<CategoryHero /> <CategoryHero />

View File

@@ -1,26 +1,4 @@
<script lang="ts" setup> <script lang="ts" setup>
// Get Last 6 Publish Post from the content/blog directory
const { data } = await useAsyncData('home', () =>
queryContent('/blogs').limit(6).sort({ _id: -1 }).find()
)
const formatedData = computed(() => {
return data.value?.map((articles) => {
return {
path: articles._path,
title: articles.title || 'no-title available',
description: articles.description || 'no-descriptoin available',
image: articles.image || '/nuxt-blog/no-image_cyyits.png',
alt: articles.alt || 'no alter data available',
ogImage: articles.ogImage || '/nuxt-blog/no-image_cyyits.png',
provider: articles.provider,
date: articles.date || 'not-date-available',
tags: articles.tags || [],
published: articles.published || false,
}
})
})
useHead({ useHead({
title: 'Home', title: 'Home',
meta: [ meta: [
@@ -30,30 +8,14 @@ useHead({
'Welcome To My Blog Site. Get Web Development, Javascript, Typescript, NodeJs, Vue, and Nuxt, Related Articles, Tips, Learning resources and more.', 'Welcome To My Blog Site. Get Web Development, Javascript, Typescript, NodeJs, Vue, and Nuxt, Related Articles, Tips, Learning resources and more.',
}, },
], ],
titleTemplate: "Riyad's Blog - %s", titleTemplate: 'Riyad\'s Blog - %s',
}) })
</script> </script>
<template> <template>
<main class="container max-w-5xl mx-auto text-zinc-600"> <main class="container max-w-5xl mx-auto text-zinc-600">
<MainHero /> <MainHero />
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3"> <MainRecent />
<template v-for="post in formatedData" :key="post.title"> <MainTrending />
<BlogCard
:path="post.path"
:title="post.title"
:date="post.date"
:description="post.description"
:image="post.image"
:alt="post.alt"
:ogImage="post.ogImage"
:provider="post.provider"
:tags="post.tags"
:published="post.published"
/>
</template>
<template v-if="data?.length === 0">
<BlogEmpty />
</template>
</div>
</main> </main>
</template> </template>

BIN
public/riyad.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 90 KiB

View File

@@ -10,5 +10,5 @@ module.exports = {
}, },
}, },
}, },
plugins: [require('@tailwindcss/typography'), require('@tailwindcss/line-clamp')], plugins: [require('@tailwindcss/typography')],
} }

View File

@@ -1,5 +1,6 @@
export const makeFirstCharUpper = (val: string) => { export function makeFirstCharUpper(val: string) {
if (val === '') return val if (val === '')
return val
const firstChar = val.at(0)?.toLocaleUpperCase() || '' const firstChar = val.at(0)?.toLocaleUpperCase() || ''
const otherChar = val.slice(1) const otherChar = val.slice(1)
return firstChar + otherChar return firstChar + otherChar

4065
yarn.lock

File diff suppressed because it is too large Load Diff