Merge pull request #1612 from MODSetter/dev

feat: updated homepage
This commit is contained in:
Rohan Verma 2026-07-17 23:17:45 -07:00 committed by GitHub
commit bea603e225
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
29 changed files with 5240 additions and 90 deletions

View file

@ -4,19 +4,17 @@ import { CompareTable } from "@/components/homepage/compare-table";
import { ConnectorGrid } from "@/components/homepage/connector-grid";
import { HeroSection } from "@/components/homepage/hero-section";
import { HomeFaq } from "@/components/homepage/home-faq";
import { HowItWorks } from "@/components/homepage/how-it-works";
import { PersonaPaths } from "@/components/homepage/persona-paths";
import { UseCasesRow } from "@/components/homepage/use-cases";
import { LogoCloud } from "@/components/homepage/logo-cloud";
import { SocialProof } from "@/components/homepage/social-proof";
export default function HomePage() {
return (
<div className="min-h-screen bg-linear-to-b from-gray-50 to-gray-100 text-gray-900 dark:from-black dark:to-gray-900 dark:text-white">
<AuthRedirect />
<HeroSection />
<PersonaPaths />
<LogoCloud />
<SocialProof />
<ConnectorGrid />
<HowItWorks />
<UseCasesRow />
<CompareTable />
<HomeFaq />
<CommunityStrip />

View file

@ -106,7 +106,7 @@ export function FooterNew() {
];
return (
<div className="border-t border-neutral-100 dark:border-white/[0.1] px-8 py-20 bg-white dark:bg-neutral-950 w-full relative overflow-hidden">
<div className="max-w-7xl mx-auto text-sm text-neutral-500 flex sm:flex-row flex-col justify-between items-start md:px-8">
<div className="max-w-7xl mx-auto text-sm text-neutral-600 dark:text-neutral-400 flex sm:flex-row flex-col justify-between items-start md:px-8">
<div>
<div className="mr-0 md:mr-4 md:flex mb-4">
<Logo className="h-6 w-6 rounded-md mr-2" />

View file

@ -77,6 +77,7 @@ function DemoTimeline({
<Button
variant="ghost"
type="button"
tabIndex={-1}
onClick={() => setIsOpen((prev) => !prev)}
className="h-auto w-full justify-start gap-1.5 p-0 text-left text-sm font-normal text-muted-foreground transition-colors hover:bg-transparent hover:text-accent-foreground"
>

View file

@ -759,9 +759,10 @@ function DownloadButton() {
<Button
type="button"
variant="ghost"
aria-label="More download options"
className="h-auto rounded-l-none rounded-r-lg border border-neutral-200 bg-white px-2.5 text-neutral-500 shadow-sm transition duration-150 hover:bg-neutral-50 dark:border-neutral-700 dark:bg-neutral-900 dark:text-neutral-400 dark:hover:bg-neutral-800"
>
<ChevronDown className="size-4" />
<ChevronDown className="size-4" aria-hidden />
</Button>
</DropdownMenuTrigger>
<DropdownMenuContent align="end" className="w-64">
@ -869,9 +870,9 @@ const UseCasePane = memo(function UseCasePane({
<div className="relative overflow-hidden rounded-tl-xl rounded-tr-xl bg-white shadow-sm ring-1 shadow-black/10 ring-black/10 dark:bg-neutral-950">
<div className="flex items-center gap-3 border-b border-neutral-200/60 px-4 py-3 sm:px-6 sm:py-4 dark:border-neutral-700/60">
<div className="min-w-0">
<h3 className="truncate text-base font-semibold text-neutral-900 sm:text-lg dark:text-white">
<h2 className="truncate text-base font-semibold text-neutral-900 sm:text-lg dark:text-white">
{useCase.title}
</h3>
</h2>
<p className="text-sm text-neutral-500 text-pretty dark:text-neutral-400">
{useCase.description}
</p>

View file

@ -0,0 +1,111 @@
"use client";
import { AnimatePresence, motion } from "motion/react";
import { useEffect, useState } from "react";
import { Reveal } from "@/components/connectors-marketing/reveal";
import { MarketingSection } from "@/components/marketing/section";
/**
* Real signups pulled from prod (Google-auth), curated to the most recognizable
* names. These are self-serve users, not signed enterprise accounts, so the
* heading stays honest ("Used by people at") rather than implying contracts.
*
* Logos live in `public/logos/` official marks from Wikimedia Commons /
* Wikipedia (universities use their seals). Bosta, Devoteam, and Leverage Edu
* have no clean Wikimedia logo, so they fall back to a brand favicon. Each item
* also falls back to a text wordmark on image error.
*/
const COMPANIES: { title: string; file: string }[] = [
{ title: "UC Berkeley", file: "berkeley.svg" },
{ title: "USC", file: "usc.svg" },
{ title: "Texas A&M", file: "tamu.svg" },
{ title: "UWMadison", file: "wisc.svg" },
{ title: "Pitt", file: "pitt.svg" },
{ title: "Korean Air", file: "koreanair.svg" },
{ title: "Iron Mountain", file: "ironmountain.svg" },
{ title: "Globant", file: "globant.svg" },
{ title: "Devoteam", file: "devoteam.png" },
{ title: "VNG", file: "vng.svg" },
{ title: "TPBank", file: "tpbank.svg" },
{ title: "OpenGov", file: "opengov.png" },
{ title: "WeLab", file: "welab.png" },
{ title: "Leverage Edu", file: "leverageedu.png" },
{ title: "Zopper", file: "zopper.png" },
{ title: "Tec de Monterrey", file: "tec.svg" },
{ title: "Chulalongkorn", file: "chula.svg" },
{ title: "Univ. of Bristol", file: "bristol.svg" },
{ title: "Nutresa", file: "nutresa.svg" },
{ title: "Bosta", file: "bosta.png" },
];
const LOGOS_PER_SET = 10;
const TOTAL_SETS = Math.ceil(COMPANIES.length / LOGOS_PER_SET);
function LogoItem({ title, file }: { title: string; file: string }) {
const [failed, setFailed] = useState(false);
if (failed) {
return (
<span className="text-sm font-semibold text-neutral-500 dark:text-neutral-400">{title}</span>
);
}
return (
// biome-ignore lint/performance/noImgElement: swapped in/out by the cycling animation, next/image adds no value here
<img
src={`/logos/${file}`}
alt={title}
title={title}
width={130}
height={40}
loading="lazy"
onError={() => setFailed(true)}
// dark mode: dark-on-transparent marks would vanish, so render every logo as a
// uniform light silhouette (brightness-0 + invert) instead of relying on its own color
className="h-10 w-auto max-w-[130px] object-contain opacity-60 grayscale transition duration-300 hover:opacity-100 hover:grayscale-0 dark:opacity-70 dark:brightness-0 dark:invert dark:hover:opacity-100"
/>
);
}
export function LogoCloud() {
const [currentSet, setCurrentSet] = useState(0);
useEffect(() => {
const interval = setInterval(() => {
setCurrentSet((prev) => (prev + 1) % TOTAL_SETS);
}, 3000);
return () => clearInterval(interval);
}, []);
const startIndex = currentSet * LOGOS_PER_SET;
const currentLogos = Array.from(
{ length: LOGOS_PER_SET },
(_, i) => COMPANIES[(startIndex + i) % COMPANIES.length]
);
return (
<MarketingSection>
<Reveal>
<h2 className="mx-auto max-w-xl text-center text-lg font-medium text-neutral-600 dark:text-neutral-400">
Used by people at
</h2>
</Reveal>
<div className="mx-auto mt-10 grid max-w-4xl grid-cols-3 gap-8 sm:grid-cols-5">
<AnimatePresence mode="popLayout">
{currentLogos.map((logo, index) => (
<motion.div
key={`${logo.title}-${currentSet}-${index}`}
initial={{ x: 40, opacity: 0, filter: "blur(8px)" }}
animate={{ x: 0, opacity: 1, filter: "blur(0px)" }}
exit={{ x: -40, opacity: 0, filter: "blur(8px)" }}
transition={{ duration: 0.4, ease: "easeOut", delay: index * 0.05 }}
className="flex items-center justify-center"
>
<LogoItem title={logo.title} file={logo.file} />
</motion.div>
))}
</AnimatePresence>
</div>
</MarketingSection>
);
}

View file

@ -250,17 +250,22 @@ const DesktopNav = ({ navItems, isScrolled, scrolledBgClassName }: DesktopNavPro
href="https://discord.gg/ejRNvftDp9"
target="_blank"
rel="noopener noreferrer"
aria-label="SurfSense on Discord"
className="hidden rounded-full p-2 hover:bg-gray-100 dark:hover:bg-neutral-800 transition-colors md:flex items-center justify-center"
>
<IconBrandDiscord className="h-5 w-5 text-neutral-600 dark:text-neutral-300" />
<IconBrandDiscord
className="h-5 w-5 text-neutral-600 dark:text-neutral-300"
aria-hidden
/>
</Link>
<Link
href="https://www.reddit.com/r/SurfSense/"
target="_blank"
rel="noopener noreferrer"
aria-label="SurfSense on Reddit"
className="hidden rounded-full p-2 hover:bg-gray-100 dark:hover:bg-neutral-800 transition-colors md:flex items-center justify-center"
>
<IconBrandReddit className="h-5 w-5 text-neutral-600 dark:text-neutral-300" />
<IconBrandReddit className="h-5 w-5 text-neutral-600 dark:text-neutral-300" aria-hidden />
</Link>
<NavbarGitHubStars className="hidden md:flex" />
<ThemeTogglerComponent />
@ -362,17 +367,25 @@ const MobileNav = ({ navItems, isScrolled, scrolledBgClassName }: MobileNavProps
href="https://discord.gg/ejRNvftDp9"
target="_blank"
rel="noopener noreferrer"
aria-label="SurfSense on Discord"
className="flex items-center justify-center rounded-lg p-2 hover:bg-gray-100 dark:hover:bg-neutral-800 transition-colors touch-manipulation"
>
<IconBrandDiscord className="h-5 w-5 text-neutral-600 dark:text-neutral-300" />
<IconBrandDiscord
className="h-5 w-5 text-neutral-600 dark:text-neutral-300"
aria-hidden
/>
</Link>
<Link
href="https://www.reddit.com/r/SurfSense/"
target="_blank"
rel="noopener noreferrer"
aria-label="SurfSense on Reddit"
className="flex items-center justify-center rounded-lg p-2 hover:bg-gray-100 dark:hover:bg-neutral-800 transition-colors touch-manipulation"
>
<IconBrandReddit className="h-5 w-5 text-neutral-600 dark:text-neutral-300" />
<IconBrandReddit
className="h-5 w-5 text-neutral-600 dark:text-neutral-300"
aria-hidden
/>
</Link>
<NavbarGitHubStars className="rounded-lg" />
<ThemeTogglerComponent />

View file

@ -0,0 +1,298 @@
"use client";
import {
IconBrandLinkedin,
IconBrandTiktok,
IconBrandX,
IconBrandYoutube,
} from "@tabler/icons-react";
import { Component, type ReactNode, useEffect, useRef, useState } from "react";
import { LinkedInEmbed, TikTokEmbed, XEmbed, YouTubeEmbed } from "react-social-media-embed";
import { Reveal } from "@/components/connectors-marketing/reveal";
type Post =
| { kind: "youtube"; url: string; title: string; channel: string }
| { kind: "x"; url: string }
| { kind: "linkedin"; url: string; postUrl: string }
| { kind: "tiktok"; url: string };
/**
* Organic SurfSense coverage real posts embedded live with react-social-media-embed,
* grouped into three platform-uniform marquee rows (heights match within a row).
*
* Note: LinkedIn only renders when the author enabled embedding on the post; if
* disabled, the EmbedBoundary swaps in a link card to the original.
*
* ponytail: three rows, each list duplicated once for a seamless CSS loop. Ceiling:
* heavy third-party embeds. Mitigated by lazy-mounting the whole section on scroll
* (IntersectionObserver). Upgrade path: per-card virtualization, or swap YouTube
* players for thumbnail links.
*/
const YOUTUBE: Post[] = [
{
kind: "youtube",
url: "https://www.youtube.com/watch?v=i9AJ7PHGSGg",
title: "SurfSense vs NotebookLM",
channel: "rezasaad plus",
},
{
kind: "youtube",
url: "https://www.youtube.com/watch?v=VBOwuD6xVK0",
title: "NotebookLM Is Great… Until You See SurfSense",
channel: "Thomas AI",
},
{
kind: "youtube",
url: "https://www.youtube.com/watch?v=UaekqjhUiJM",
title: "NotebookLM vs SurfSense en 6 pruebas reales (sorprendente)",
channel: "NextGen IA Hub",
},
{
kind: "youtube",
url: "https://www.youtube.com/watch?v=QGjKpZJJ9aw",
title: "Gana DINERO configurando “Cerebros de IA” privados con SurfSense",
channel: "Creando Con La IA",
},
{
kind: "youtube",
url: "https://www.youtube.com/watch?v=cfNAIQtNbKY",
title: "¿Adiós NotebookLM? Probé SurfSense y es BRUTAL (IA Gratis)",
channel: "NextGen IA Hub",
},
{
kind: "youtube",
url: "https://www.youtube.com/watch?v=pIWOKSHhf38",
title: "¿Superaron a NotebookLM? SurfSense es Open Source, privada y GRATIS",
channel: "academIArtificial",
},
{
kind: "youtube",
url: "https://www.youtube.com/watch?v=K5xx-J_mQZ8",
title: "¿Mejor que NotebookLM? IA GRATIS con modo local",
channel: "Migue Baena IA",
},
{
kind: "youtube",
url: "https://www.youtube.com/watch?v=AKxM3RUBFsc",
title: "¿Nueva IA GRATIS destroza a NotebookLM de Google? (OPEN SOURCE)",
channel: "Inteligencia Artificial Top",
},
{
kind: "youtube",
url: "https://www.youtube.com/watch?v=jCAgeaVgPDA",
title: "¿Nueva Herramienta IA GRATIS Destroza a NotebookLM? (OPEN SOURCE)",
channel: "Joaquín Barberá",
},
];
const TWEETS: Post[] = [
{ kind: "x", url: "https://x.com/LangChain/status/1853133037019562434" },
{ kind: "x", url: "https://x.com/MoureDev/status/1976279289780740448" },
{ kind: "x", url: "https://x.com/GithubProjects/status/2004892541590929490" },
{ kind: "x", url: "https://x.com/GitHub_Daily/status/1920418408736436438" },
{ kind: "x", url: "https://x.com/tom_doerr/status/2066062170173977088" },
{ kind: "x", url: "https://x.com/itsharmanjot/status/2066118517905354816" },
{ kind: "x", url: "https://x.com/JulianGoldieSEO/status/2011085275133604095" },
{ kind: "x", url: "https://x.com/L_go_mrk/status/2066482853232115847" },
{ kind: "x", url: "https://x.com/semihdev/status/2006275500952736028" },
{ kind: "x", url: "https://x.com/shao__meng/status/1919912860957999494" },
{ kind: "x", url: "https://x.com/LangChain/status/1840406184316342561" },
];
const SOCIAL: Post[] = [
{
kind: "linkedin",
url: "https://www.linkedin.com/embed/feed/update/urn:li:ugcPost:7448203908834938881",
postUrl:
"https://www.linkedin.com/posts/vikas-singh-546643206_most-ai-tools-live-in-your-browser-and-ugcPost-7448203908834938881-gR6y",
},
{
kind: "linkedin",
url: "https://www.linkedin.com/embed/feed/update/urn:li:share:7448351685409701889",
postUrl:
"https://www.linkedin.com/posts/neha-jain-279b80118_ive-been-using-a-lot-of-ai-tools-daily-share-7448351685409701889-JvFP",
},
{
kind: "tiktok",
url: "https://www.tiktok.com/@alejavirivera/video/7603064928114625814",
},
];
const CARD = "mr-4 shrink-0 overflow-hidden rounded-xl border bg-card";
const SIZE: Record<Post["kind"], string> = {
youtube: "h-[262px] w-[340px]",
x: "h-[440px] w-[340px]",
linkedin: "h-[540px] w-[340px]",
tiktok: "h-[540px] w-[340px]",
};
const META: Record<Post["kind"], { Icon: typeof IconBrandX; label: string }> = {
youtube: { Icon: IconBrandYoutube, label: "YouTube" },
x: { Icon: IconBrandX, label: "X" },
linkedin: { Icon: IconBrandLinkedin, label: "LinkedIn" },
tiktok: { Icon: IconBrandTiktok, label: "TikTok" },
};
/**
* Some embeds (notably Facebook, and LinkedIn when the author disabled embedding)
* throw at render/mount instead of degrading gracefully. This boundary stops one
* bad embed from taking down the whole marquee it swaps in a link card instead.
*/
class EmbedBoundary extends Component<
{ fallback: ReactNode; children: ReactNode },
{ failed: boolean }
> {
state = { failed: false };
static getDerivedStateFromError() {
return { failed: true };
}
render() {
return this.state.failed ? this.props.fallback : this.props.children;
}
}
function FallbackCard({ post }: { post: Post }) {
const { Icon, label } = META[post.kind];
const href = post.kind === "linkedin" ? post.postUrl : post.url;
return (
<div className={`${CARD} ${SIZE[post.kind]}`}>
<a
href={href}
target="_blank"
rel="noopener noreferrer"
className="flex h-full w-full flex-col items-center justify-center gap-3 p-6 text-center text-sm font-medium text-muted-foreground transition-colors hover:text-brand"
>
<Icon className="size-8" aria-hidden />
<span>View this post on {label}</span>
</a>
</div>
);
}
function Card({ post }: { post: Post }) {
switch (post.kind) {
case "youtube":
return (
<div className={`${CARD} ${SIZE.youtube} flex flex-col`}>
<YouTubeEmbed url={post.url} width={340} height={191} />
<div className="flex flex-1 flex-col gap-1.5 p-3">
<div className="flex items-center gap-1.5 text-xs font-medium text-muted-foreground">
<IconBrandYoutube className="size-4 shrink-0 text-red-500" aria-hidden />
<span className="truncate">{post.channel}</span>
</div>
<a
href={post.url}
target="_blank"
rel="noopener noreferrer"
className="line-clamp-2 text-sm font-medium leading-snug hover:text-brand"
>
{post.title}
</a>
</div>
</div>
);
case "x":
return (
<div className={`${CARD} ${SIZE.x}`}>
<XEmbed url={post.url} width={340} />
</div>
);
case "linkedin":
return (
<div className={`${CARD} ${SIZE.linkedin}`}>
<LinkedInEmbed url={post.url} postUrl={post.postUrl} width={340} height={540} />
</div>
);
case "tiktok":
return (
<div className={`${CARD} ${SIZE.tiktok}`}>
<TikTokEmbed url={post.url} width={340} />
</div>
);
}
}
function Row({
posts,
animation,
duration,
}: {
posts: Post[];
animation: "ss-marquee-l" | "ss-marquee-r";
duration: number;
}) {
return (
<div className="group flex overflow-hidden">
{/* Track holds the list twice; the -50% shift wraps seamlessly (margins, not gap). */}
<div
className="flex w-max shrink-0 group-hover:paused motion-reduce:paused"
style={{ animation: `${animation} ${duration}s linear infinite` }}
>
{[...posts, ...posts].map((post, i) => (
<EmbedBoundary
key={`${post.kind}-${post.url}-${i}`}
fallback={<FallbackCard post={post} />}
>
<Card post={post} />
</EmbedBoundary>
))}
</div>
</div>
);
}
export function SocialProof() {
// Third-party embeds are heavy; only mount them once the section scrolls near view.
const ref = useRef<HTMLDivElement>(null);
const [visible, setVisible] = useState(false);
useEffect(() => {
const el = ref.current;
if (!el) return;
const io = new IntersectionObserver(
(entries) => {
if (entries[0]?.isIntersecting) {
setVisible(true);
io.disconnect();
}
},
{ rootMargin: "300px" }
);
io.observe(el);
return () => io.disconnect();
}, []);
return (
<section className="overflow-hidden py-12 sm:py-16">
<Reveal>
<div className="mx-auto max-w-2xl px-4 text-center">
<h2 className="text-2xl font-bold tracking-tight sm:text-3xl">
Loved across the internet
</h2>
</div>
</Reveal>
<div
ref={ref}
className="mt-10 flex min-h-[1360px] flex-col gap-4"
style={{
maskImage: "linear-gradient(to right, transparent, black 6%, black 94%, transparent)",
WebkitMaskImage:
"linear-gradient(to right, transparent, black 6%, black 94%, transparent)",
}}
>
{visible ? (
<>
<Row posts={YOUTUBE} animation="ss-marquee-l" duration={60} />
<Row posts={TWEETS} animation="ss-marquee-r" duration={75} />
{/* Only 3 social cards — pre-double so one set spans wide viewports (no loop gap). */}
<Row posts={[...SOCIAL, ...SOCIAL]} animation="ss-marquee-l" duration={70} />
</>
) : null}
</div>
<style>{`
@keyframes ss-marquee-l { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes ss-marquee-r { from { transform: translateX(-50%); } to { transform: translateX(0); } }
`}</style>
</section>
);
}

View file

@ -138,6 +138,7 @@
"react-dom": "^19.2.3",
"react-dropzone": "^14.3.8",
"react-hook-form": "^7.61.1",
"react-social-media-embed": "^2.5.18",
"react-syntax-highlighter": "^15.6.1",
"react-wrap-balancer": "^1.1.1",
"rehype-katex": "^7.0.1",

View file

@ -335,6 +335,9 @@ importers:
react-hook-form:
specifier: ^7.61.1
version: 7.71.2(react@19.2.4)
react-social-media-embed:
specifier: ^2.5.18
version: 2.5.18(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
react-syntax-highlighter:
specifier: ^15.6.1
version: 15.6.6(react@19.2.4)
@ -1155,28 +1158,24 @@ packages:
engines: {node: '>=14.21.3'}
cpu: [arm64]
os: [linux]
libc: [musl]
'@biomejs/cli-linux-arm64@2.4.6':
resolution: {integrity: sha512-kMLaI7OF5GN1Q8Doymjro1P8rVEoy7BKQALNz6fiR8IC1WKduoNyteBtJlHT7ASIL0Cx2jR6VUOBIbcB1B8pew==}
engines: {node: '>=14.21.3'}
cpu: [arm64]
os: [linux]
libc: [glibc]
'@biomejs/cli-linux-x64-musl@2.4.6':
resolution: {integrity: sha512-C9s98IPDu7DYarjlZNuzJKTjVHN03RUnmHV5htvqsx6vEUXCDSJ59DNwjKVD5XYoSS4N+BYhq3RTBAL8X6svEg==}
engines: {node: '>=14.21.3'}
cpu: [x64]
os: [linux]
libc: [musl]
'@biomejs/cli-linux-x64@2.4.6':
resolution: {integrity: sha512-oHXmUFEoH8Lql1xfc3QkFLiC1hGR7qedv5eKNlC185or+o4/4HiaU7vYODAH3peRCfsuLr1g6v2fK9dFFOYdyw==}
engines: {node: '>=14.21.3'}
cpu: [x64]
os: [linux]
libc: [glibc]
'@biomejs/cli-win32-arm64@2.4.6':
resolution: {integrity: sha512-xzThn87Pf3YrOGTEODFGONmqXpTwUNxovQb72iaUOdcw8sBSY3+3WD8Hm9IhMYLnPi0n32s3L3NWU6+eSjfqFg==}
@ -1864,105 +1863,89 @@ packages:
resolution: {integrity: sha512-excjX8DfsIcJ10x1Kzr4RcWe1edC9PquDRRPx3YVCvQv+U5p7Yin2s32ftzikXojb1PIFc/9Mt28/y+iRklkrw==}
cpu: [arm64]
os: [linux]
libc: [glibc]
'@img/sharp-libvips-linux-arm@1.2.4':
resolution: {integrity: sha512-bFI7xcKFELdiNCVov8e44Ia4u2byA+l3XtsAj+Q8tfCwO6BQ8iDojYdvoPMqsKDkuoOo+X6HZA0s0q11ANMQ8A==}
cpu: [arm]
os: [linux]
libc: [glibc]
'@img/sharp-libvips-linux-ppc64@1.2.4':
resolution: {integrity: sha512-FMuvGijLDYG6lW+b/UvyilUWu5Ayu+3r2d1S8notiGCIyYU/76eig1UfMmkZ7vwgOrzKzlQbFSuQfgm7GYUPpA==}
cpu: [ppc64]
os: [linux]
libc: [glibc]
'@img/sharp-libvips-linux-riscv64@1.2.4':
resolution: {integrity: sha512-oVDbcR4zUC0ce82teubSm+x6ETixtKZBh/qbREIOcI3cULzDyb18Sr/Wcyx7NRQeQzOiHTNbZFF1UwPS2scyGA==}
cpu: [riscv64]
os: [linux]
libc: [glibc]
'@img/sharp-libvips-linux-s390x@1.2.4':
resolution: {integrity: sha512-qmp9VrzgPgMoGZyPvrQHqk02uyjA0/QrTO26Tqk6l4ZV0MPWIW6LTkqOIov+J1yEu7MbFQaDpwdwJKhbJvuRxQ==}
cpu: [s390x]
os: [linux]
libc: [glibc]
'@img/sharp-libvips-linux-x64@1.2.4':
resolution: {integrity: sha512-tJxiiLsmHc9Ax1bz3oaOYBURTXGIRDODBqhveVHonrHJ9/+k89qbLl0bcJns+e4t4rvaNBxaEZsFtSfAdquPrw==}
cpu: [x64]
os: [linux]
libc: [glibc]
'@img/sharp-libvips-linuxmusl-arm64@1.2.4':
resolution: {integrity: sha512-FVQHuwx1IIuNow9QAbYUzJ+En8KcVm9Lk5+uGUQJHaZmMECZmOlix9HnH7n1TRkXMS0pGxIJokIVB9SuqZGGXw==}
cpu: [arm64]
os: [linux]
libc: [musl]
'@img/sharp-libvips-linuxmusl-x64@1.2.4':
resolution: {integrity: sha512-+LpyBk7L44ZIXwz/VYfglaX/okxezESc6UxDSoyo2Ks6Jxc4Y7sGjpgU9s4PMgqgjj1gZCylTieNamqA1MF7Dg==}
cpu: [x64]
os: [linux]
libc: [musl]
'@img/sharp-linux-arm64@0.34.5':
resolution: {integrity: sha512-bKQzaJRY/bkPOXyKx5EVup7qkaojECG6NLYswgktOZjaXecSAeCWiZwwiFf3/Y+O1HrauiE3FVsGxFg8c24rZg==}
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
cpu: [arm64]
os: [linux]
libc: [glibc]
'@img/sharp-linux-arm@0.34.5':
resolution: {integrity: sha512-9dLqsvwtg1uuXBGZKsxem9595+ujv0sJ6Vi8wcTANSFpwV/GONat5eCkzQo/1O6zRIkh0m/8+5BjrRr7jDUSZw==}
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
cpu: [arm]
os: [linux]
libc: [glibc]
'@img/sharp-linux-ppc64@0.34.5':
resolution: {integrity: sha512-7zznwNaqW6YtsfrGGDA6BRkISKAAE1Jo0QdpNYXNMHu2+0dTrPflTLNkpc8l7MUP5M16ZJcUvysVWWrMefZquA==}
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
cpu: [ppc64]
os: [linux]
libc: [glibc]
'@img/sharp-linux-riscv64@0.34.5':
resolution: {integrity: sha512-51gJuLPTKa7piYPaVs8GmByo7/U7/7TZOq+cnXJIHZKavIRHAP77e3N2HEl3dgiqdD/w0yUfiJnII77PuDDFdw==}
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
cpu: [riscv64]
os: [linux]
libc: [glibc]
'@img/sharp-linux-s390x@0.34.5':
resolution: {integrity: sha512-nQtCk0PdKfho3eC5MrbQoigJ2gd1CgddUMkabUj+rBevs8tZ2cULOx46E7oyX+04WGfABgIwmMC0VqieTiR4jg==}
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
cpu: [s390x]
os: [linux]
libc: [glibc]
'@img/sharp-linux-x64@0.34.5':
resolution: {integrity: sha512-MEzd8HPKxVxVenwAa+JRPwEC7QFjoPWuS5NZnBt6B3pu7EG2Ge0id1oLHZpPJdn3OQK+BQDiw9zStiHBTJQQQQ==}
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
cpu: [x64]
os: [linux]
libc: [glibc]
'@img/sharp-linuxmusl-arm64@0.34.5':
resolution: {integrity: sha512-fprJR6GtRsMt6Kyfq44IsChVZeGN97gTD331weR1ex1c1rypDEABN6Tm2xa1wE6lYb5DdEnk03NZPqA7Id21yg==}
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
cpu: [arm64]
os: [linux]
libc: [musl]
'@img/sharp-linuxmusl-x64@0.34.5':
resolution: {integrity: sha512-Jg8wNT1MUzIvhBFxViqrEhWDGzqymo3sV7z7ZsaWbZNDLXRJZoRGrjulp60YYtV4wfY8VIKcWidjojlLcWrd8Q==}
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
cpu: [x64]
os: [linux]
libc: [musl]
'@img/sharp-wasm32@0.34.5':
resolution: {integrity: sha512-OdWTEiVkY2PHwqkbBI8frFxQQFekHaSSkUIJkwzclWZe64O1X4UlUjqqqLaPbUpMOQk6FBu/HtlGXNblIs0huw==}
@ -2082,35 +2065,30 @@ packages:
engines: {node: '>= 10'}
cpu: [arm64]
os: [linux]
libc: [glibc]
'@napi-rs/canvas-linux-arm64-musl@0.1.97':
resolution: {integrity: sha512-kKmSkQVnWeqg7qdsiXvYxKhAFuHz3tkBjW/zyQv5YKUPhotpaVhpBGv5LqCngzyuRV85SXoe+OFj+Tv0a0QXkQ==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [linux]
libc: [musl]
'@napi-rs/canvas-linux-riscv64-gnu@0.1.97':
resolution: {integrity: sha512-Jc7I3A51jnEOIAXeLsN/M/+Z28LUeakcsXs07FLq9prXc0eYOtVwsDEv913Gr+06IRo34gJJVgT0TXvmz+N2VA==}
engines: {node: '>= 10'}
cpu: [riscv64]
os: [linux]
libc: [glibc]
'@napi-rs/canvas-linux-x64-gnu@0.1.97':
resolution: {integrity: sha512-iDUBe7AilfuBSRbSa8/IGX38Mf+iCSBqoVKLSQ5XaY2JLOaqz1TVyPFEyIck7wT6mRQhQt5sN6ogfjIDfi74tg==}
engines: {node: '>= 10'}
cpu: [x64]
os: [linux]
libc: [glibc]
'@napi-rs/canvas-linux-x64-musl@0.1.97':
resolution: {integrity: sha512-AKLFd/v0Z5fvgqBDqhvqtAdx+fHMJ5t9JcUNKq4FIZ5WH+iegGm8HPdj00NFlCSnm83Fp3Ln8I2f7uq1aIiWaA==}
engines: {node: '>= 10'}
cpu: [x64]
os: [linux]
libc: [musl]
'@napi-rs/canvas-win32-arm64-msvc@0.1.97':
resolution: {integrity: sha512-u883Yr6A6fO7Vpsy9YE4FVCIxzzo5sO+7pIUjjoDLjS3vQaNMkVzx5bdIpEL+ob+gU88WDK4VcxYMZ6nmnoX9A==}
@ -2154,28 +2132,24 @@ packages:
engines: {node: '>= 10'}
cpu: [arm64]
os: [linux]
libc: [glibc]
'@next/swc-linux-arm64-musl@16.1.6':
resolution: {integrity: sha512-S4J2v+8tT3NIO9u2q+S0G5KdvNDjXfAv06OhfOzNDaBn5rw84DGXWndOEB7d5/x852A20sW1M56vhC/tRVbccQ==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [linux]
libc: [musl]
'@next/swc-linux-x64-gnu@16.1.6':
resolution: {integrity: sha512-2eEBDkFlMMNQnkTyPBhQOAyn2qMxyG2eE7GPH2WIDGEpEILcBPI/jdSv4t6xupSP+ot/jkfrCShLAa7+ZUPcJQ==}
engines: {node: '>= 10'}
cpu: [x64]
os: [linux]
libc: [glibc]
'@next/swc-linux-x64-musl@16.1.6':
resolution: {integrity: sha512-oicJwRlyOoZXVlxmIMaTq7f8pN9QNbdes0q2FXfRsPhfCi8n8JmOZJm5oo1pwDaFbnnD421rVU409M3evFbIqg==}
engines: {node: '>= 10'}
cpu: [x64]
os: [linux]
libc: [musl]
'@next/swc-win32-arm64-msvc@16.1.6':
resolution: {integrity: sha512-gQmm8izDTPgs+DCWH22kcDmuUp7NyiJgEl18bcr8irXA5N2m2O+JQIr6f3ct42GOs9c0h8QF3L5SzIxcYAAXXw==}
@ -2827,56 +2801,48 @@ packages:
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [arm64]
os: [linux]
libc: [glibc]
'@oxfmt/binding-linux-arm64-musl@0.45.0':
resolution: {integrity: sha512-XQKXZIKYJC3GQJ8FnD3iMntpw69Wd9kDDK/Xt79p6xnFYlGGxSNv2vIBvRTDg5CKByWFWWZLCRDOXoP/m6YN4g==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [arm64]
os: [linux]
libc: [musl]
'@oxfmt/binding-linux-ppc64-gnu@0.45.0':
resolution: {integrity: sha512-+g5RiG+xOkdrCWkKodv407nTvMq4vYM18Uox2MhZBm/YoqFxxJpWKsloskFFG5NU13HGPw1wzYjjOVcyd9moCA==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [ppc64]
os: [linux]
libc: [glibc]
'@oxfmt/binding-linux-riscv64-gnu@0.45.0':
resolution: {integrity: sha512-V7dXKoSyEbWAkkSF4JJNtF+NJZDmJoSarSoP30WCsB3X636Rehd3CvxBj49FIJxEBFWhvcUjGSHVeU8Erck1bQ==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [riscv64]
os: [linux]
libc: [glibc]
'@oxfmt/binding-linux-riscv64-musl@0.45.0':
resolution: {integrity: sha512-Vdelft1sAEYojVGgcODEFXSWYQYlIvoyIGWebKCuUibd1tvS1TjTx413xG2ZLuHpYj45CkN/ztMLMX6jrgqpgg==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [riscv64]
os: [linux]
libc: [musl]
'@oxfmt/binding-linux-s390x-gnu@0.45.0':
resolution: {integrity: sha512-RR7xKgNpqwENnK0aYCGYg0JycY2n93J0reNjHyes+I9Gq52dH95x+CBlnlAQHCPfz6FGnKA9HirgUl14WO6o7w==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [s390x]
os: [linux]
libc: [glibc]
'@oxfmt/binding-linux-x64-gnu@0.45.0':
resolution: {integrity: sha512-U/QQ0+BQNSHxjuXR/utvXnQ50Vu5kUuqEomZvQ1/3mhgbBiMc2WU9q5kZ5WwLp3gnFIx9ibkveoRSe2EZubkqg==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [x64]
os: [linux]
libc: [glibc]
'@oxfmt/binding-linux-x64-musl@0.45.0':
resolution: {integrity: sha512-o5TLOUCF0RWQjsIS06yVC+kFgp092/yLe6qBGSUvtnmTVw9gxjpdQSXc3VN5Cnive4K11HNstEZF8ROKHfDFSw==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [x64]
os: [linux]
libc: [musl]
'@oxfmt/binding-openharmony-arm64@0.45.0':
resolution: {integrity: sha512-RnGcV3HgPuOjsGx/k9oyRNKmOp+NBLGzZTdPDYbc19r7NGeYPplnUU/BfU35bX2Y/O4ejvHxcfkvW2WoYL/gsg==}
@ -2931,42 +2897,36 @@ packages:
engines: {node: '>= 10.0.0'}
cpu: [arm]
os: [linux]
libc: [glibc]
'@parcel/watcher-linux-arm-musl@2.5.6':
resolution: {integrity: sha512-Ve3gUCG57nuUUSyjBq/MAM0CzArtuIOxsBdQ+ftz6ho8n7s1i9E1Nmk/xmP323r2YL0SONs1EuwqBp2u1k5fxg==}
engines: {node: '>= 10.0.0'}
cpu: [arm]
os: [linux]
libc: [musl]
'@parcel/watcher-linux-arm64-glibc@2.5.6':
resolution: {integrity: sha512-f2g/DT3NhGPdBmMWYoxixqYr3v/UXcmLOYy16Bx0TM20Tchduwr4EaCbmxh1321TABqPGDpS8D/ggOTaljijOA==}
engines: {node: '>= 10.0.0'}
cpu: [arm64]
os: [linux]
libc: [glibc]
'@parcel/watcher-linux-arm64-musl@2.5.6':
resolution: {integrity: sha512-qb6naMDGlbCwdhLj6hgoVKJl2odL34z2sqkC7Z6kzir8b5W65WYDpLB6R06KabvZdgoHI/zxke4b3zR0wAbDTA==}
engines: {node: '>= 10.0.0'}
cpu: [arm64]
os: [linux]
libc: [musl]
'@parcel/watcher-linux-x64-glibc@2.5.6':
resolution: {integrity: sha512-kbT5wvNQlx7NaGjzPFu8nVIW1rWqV780O7ZtkjuWaPUgpv2NMFpjYERVi0UYj1msZNyCzGlaCWEtzc+exjMGbQ==}
engines: {node: '>= 10.0.0'}
cpu: [x64]
os: [linux]
libc: [glibc]
'@parcel/watcher-linux-x64-musl@2.5.6':
resolution: {integrity: sha512-1JRFeC+h7RdXwldHzTsmdtYR/Ku8SylLgTU/reMuqdVD7CtLwf0VR1FqeprZ0eHQkO0vqsbvFLXUmYm/uNKJBg==}
engines: {node: '>= 10.0.0'}
cpu: [x64]
os: [linux]
libc: [musl]
'@parcel/watcher-win32-arm64@2.5.6':
resolution: {integrity: sha512-3ukyebjc6eGlw9yRt678DxVF7rjXatWiHvTXqphZLvo7aC5NdEgFufVwjFfY51ijYEWpXbqF5jtrK275z52D4Q==}
@ -4287,79 +4247,66 @@ packages:
resolution: {integrity: sha512-t4ONHboXi/3E0rT6OZl1pKbl2Vgxf9vJfWgmUoCEVQVxhW6Cw/c8I6hbbu7DAvgp82RKiH7TpLwxnJeKv2pbsw==}
cpu: [arm]
os: [linux]
libc: [glibc]
'@rollup/rollup-linux-arm-musleabihf@4.59.0':
resolution: {integrity: sha512-CikFT7aYPA2ufMD086cVORBYGHffBo4K8MQ4uPS/ZnY54GKj36i196u8U+aDVT2LX4eSMbyHtyOh7D7Zvk2VvA==}
cpu: [arm]
os: [linux]
libc: [musl]
'@rollup/rollup-linux-arm64-gnu@4.59.0':
resolution: {integrity: sha512-jYgUGk5aLd1nUb1CtQ8E+t5JhLc9x5WdBKew9ZgAXg7DBk0ZHErLHdXM24rfX+bKrFe+Xp5YuJo54I5HFjGDAA==}
cpu: [arm64]
os: [linux]
libc: [glibc]
'@rollup/rollup-linux-arm64-musl@4.59.0':
resolution: {integrity: sha512-peZRVEdnFWZ5Bh2KeumKG9ty7aCXzzEsHShOZEFiCQlDEepP1dpUl/SrUNXNg13UmZl+gzVDPsiCwnV1uI0RUA==}
cpu: [arm64]
os: [linux]
libc: [musl]
'@rollup/rollup-linux-loong64-gnu@4.59.0':
resolution: {integrity: sha512-gbUSW/97f7+r4gHy3Jlup8zDG190AuodsWnNiXErp9mT90iCy9NKKU0Xwx5k8VlRAIV2uU9CsMnEFg/xXaOfXg==}
cpu: [loong64]
os: [linux]
libc: [glibc]
'@rollup/rollup-linux-loong64-musl@4.59.0':
resolution: {integrity: sha512-yTRONe79E+o0FWFijasoTjtzG9EBedFXJMl888NBEDCDV9I2wGbFFfJQQe63OijbFCUZqxpHz1GzpbtSFikJ4Q==}
cpu: [loong64]
os: [linux]
libc: [musl]
'@rollup/rollup-linux-ppc64-gnu@4.59.0':
resolution: {integrity: sha512-sw1o3tfyk12k3OEpRddF68a1unZ5VCN7zoTNtSn2KndUE+ea3m3ROOKRCZxEpmT9nsGnogpFP9x6mnLTCaoLkA==}
cpu: [ppc64]
os: [linux]
libc: [glibc]
'@rollup/rollup-linux-ppc64-musl@4.59.0':
resolution: {integrity: sha512-+2kLtQ4xT3AiIxkzFVFXfsmlZiG5FXYW7ZyIIvGA7Bdeuh9Z0aN4hVyXS/G1E9bTP/vqszNIN/pUKCk/BTHsKA==}
cpu: [ppc64]
os: [linux]
libc: [musl]
'@rollup/rollup-linux-riscv64-gnu@4.59.0':
resolution: {integrity: sha512-NDYMpsXYJJaj+I7UdwIuHHNxXZ/b/N2hR15NyH3m2qAtb/hHPA4g4SuuvrdxetTdndfj9b1WOmy73kcPRoERUg==}
cpu: [riscv64]
os: [linux]
libc: [glibc]
'@rollup/rollup-linux-riscv64-musl@4.59.0':
resolution: {integrity: sha512-nLckB8WOqHIf1bhymk+oHxvM9D3tyPndZH8i8+35p/1YiVoVswPid2yLzgX7ZJP0KQvnkhM4H6QZ5m0LzbyIAg==}
cpu: [riscv64]
os: [linux]
libc: [musl]
'@rollup/rollup-linux-s390x-gnu@4.59.0':
resolution: {integrity: sha512-oF87Ie3uAIvORFBpwnCvUzdeYUqi2wY6jRFWJAy1qus/udHFYIkplYRW+wo+GRUP4sKzYdmE1Y3+rY5Gc4ZO+w==}
cpu: [s390x]
os: [linux]
libc: [glibc]
'@rollup/rollup-linux-x64-gnu@4.59.0':
resolution: {integrity: sha512-3AHmtQq/ppNuUspKAlvA8HtLybkDflkMuLK4DPo77DfthRb71V84/c4MlWJXixZz4uruIH4uaa07IqoAkG64fg==}
cpu: [x64]
os: [linux]
libc: [glibc]
'@rollup/rollup-linux-x64-musl@4.59.0':
resolution: {integrity: sha512-2UdiwS/9cTAx7qIUZB/fWtToJwvt0Vbo0zmnYt7ED35KPg13Q0ym1g442THLC7VyI6JfYTP4PiSOWyoMdV2/xg==}
cpu: [x64]
os: [linux]
libc: [musl]
'@rollup/rollup-openbsd-x64@4.59.0':
resolution: {integrity: sha512-M3bLRAVk6GOwFlPTIxVBSYKUaqfLrn8l0psKinkCFxl4lQvOSz8ZrKDz2gxcBwHFpci0B6rttydI4IpS4IS/jQ==}
@ -4550,28 +4497,24 @@ packages:
engines: {node: '>=10'}
cpu: [arm64]
os: [linux]
libc: [glibc]
'@swc/core-linux-arm64-musl@1.15.13':
resolution: {integrity: sha512-SmZ9m+XqCB35NddHCctvHFLqPZDAs5j8IgD36GoutufDJmeq2VNfgk5rQoqNqKmAK3Y7iFdEmI76QoHIWiCLyw==}
engines: {node: '>=10'}
cpu: [arm64]
os: [linux]
libc: [musl]
'@swc/core-linux-x64-gnu@1.15.13':
resolution: {integrity: sha512-5rij+vB9a29aNkHq72EXI2ihDZPszJb4zlApJY4aCC/q6utgqFA6CkrfTfIb+O8hxtG3zP5KERETz8mfFK6A0A==}
engines: {node: '>=10'}
cpu: [x64]
os: [linux]
libc: [glibc]
'@swc/core-linux-x64-musl@1.15.13':
resolution: {integrity: sha512-OlSlaOK9JplQ5qn07WiBLibkOw7iml2++ojEXhhR3rbWrNEKCD7sd8+6wSavsInyFdw4PhLA+Hy6YyDBIE23Yw==}
engines: {node: '>=10'}
cpu: [x64]
os: [linux]
libc: [musl]
'@swc/core-win32-arm64-msvc@1.15.13':
resolution: {integrity: sha512-zwQii5YVdsfG8Ti9gIKgBKZg8qMkRZxl+OlYWUT5D93Jl4NuNBRausP20tfEkQdAPSRrMCSUZBM6FhW7izAZRg==}
@ -4655,28 +4598,24 @@ packages:
engines: {node: '>= 20'}
cpu: [arm64]
os: [linux]
libc: [glibc]
'@tailwindcss/oxide-linux-arm64-musl@4.2.1':
resolution: {integrity: sha512-WZA0CHRL/SP1TRbA5mp9htsppSEkWuQ4KsSUumYQnyl8ZdT39ntwqmz4IUHGN6p4XdSlYfJwM4rRzZLShHsGAQ==}
engines: {node: '>= 20'}
cpu: [arm64]
os: [linux]
libc: [musl]
'@tailwindcss/oxide-linux-x64-gnu@4.2.1':
resolution: {integrity: sha512-qMFzxI2YlBOLW5PhblzuSWlWfwLHaneBE0xHzLrBgNtqN6mWfs+qYbhryGSXQjFYB1Dzf5w+LN5qbUTPhW7Y5g==}
engines: {node: '>= 20'}
cpu: [x64]
os: [linux]
libc: [glibc]
'@tailwindcss/oxide-linux-x64-musl@4.2.1':
resolution: {integrity: sha512-5r1X2FKnCMUPlXTWRYpHdPYUY6a1Ar/t7P24OuiEdEOmms5lyqjDRvVY1yy9Rmioh+AunQ0rWiOTPE8F9A3v5g==}
engines: {node: '>= 20'}
cpu: [x64]
os: [linux]
libc: [musl]
'@tailwindcss/oxide-wasm32-wasi@4.2.1':
resolution: {integrity: sha512-MGFB5cVPvshR85MTJkEvqDUnuNoysrsRxd6vnk1Lf2tbiqNlXpHYZqkqOQalydienEWOHHFyyuTSYRsLfxFJ2Q==}
@ -4976,6 +4915,9 @@ packages:
'@types/ws@8.18.1':
resolution: {integrity: sha512-ThVF6DCVhA8kUGy+aazFQ4kXQ7E1Ty7A3ypFOe0IcJV8O/M511G99AW24irKrW56Wt44yG9+ij8FaqoBGkuBXg==}
'@types/youtube-player@5.5.11':
resolution: {integrity: sha512-pM41CDBqJqBmTeJWnF7NOGz82IQoYOhqzMYXv5vKCXBqGiYSLldxMtpCk6KAEtADTy49S45AriYaCaZyeUX38Q==}
'@typescript-eslint/eslint-plugin@8.56.0':
resolution: {integrity: sha512-lRyPDLzNCuae71A3t9NEINBiTn7swyOhvUj3MyUOxb8x6g6vPEFoOU+ZRmGMusNC3X3YMhqMIX7i8ShqhT74Pw==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
@ -5100,49 +5042,41 @@ packages:
resolution: {integrity: sha512-34gw7PjDGB9JgePJEmhEqBhWvCiiWCuXsL9hYphDF7crW7UgI05gyBAi6MF58uGcMOiOqSJ2ybEeCvHcq0BCmQ==}
cpu: [arm64]
os: [linux]
libc: [glibc]
'@unrs/resolver-binding-linux-arm64-musl@1.11.1':
resolution: {integrity: sha512-RyMIx6Uf53hhOtJDIamSbTskA99sPHS96wxVE/bJtePJJtpdKGXO1wY90oRdXuYOGOTuqjT8ACccMc4K6QmT3w==}
cpu: [arm64]
os: [linux]
libc: [musl]
'@unrs/resolver-binding-linux-ppc64-gnu@1.11.1':
resolution: {integrity: sha512-D8Vae74A4/a+mZH0FbOkFJL9DSK2R6TFPC9M+jCWYia/q2einCubX10pecpDiTmkJVUH+y8K3BZClycD8nCShA==}
cpu: [ppc64]
os: [linux]
libc: [glibc]
'@unrs/resolver-binding-linux-riscv64-gnu@1.11.1':
resolution: {integrity: sha512-frxL4OrzOWVVsOc96+V3aqTIQl1O2TjgExV4EKgRY09AJ9leZpEg8Ak9phadbuX0BA4k8U5qtvMSQQGGmaJqcQ==}
cpu: [riscv64]
os: [linux]
libc: [glibc]
'@unrs/resolver-binding-linux-riscv64-musl@1.11.1':
resolution: {integrity: sha512-mJ5vuDaIZ+l/acv01sHoXfpnyrNKOk/3aDoEdLO/Xtn9HuZlDD6jKxHlkN8ZhWyLJsRBxfv9GYM2utQ1SChKew==}
cpu: [riscv64]
os: [linux]
libc: [musl]
'@unrs/resolver-binding-linux-s390x-gnu@1.11.1':
resolution: {integrity: sha512-kELo8ebBVtb9sA7rMe1Cph4QHreByhaZ2QEADd9NzIQsYNQpt9UkM9iqr2lhGr5afh885d/cB5QeTXSbZHTYPg==}
cpu: [s390x]
os: [linux]
libc: [glibc]
'@unrs/resolver-binding-linux-x64-gnu@1.11.1':
resolution: {integrity: sha512-C3ZAHugKgovV5YvAMsxhq0gtXuwESUKc5MhEtjBpLoHPLYM+iuwSj3lflFwK3DPm68660rZ7G8BMcwSro7hD5w==}
cpu: [x64]
os: [linux]
libc: [glibc]
'@unrs/resolver-binding-linux-x64-musl@1.11.1':
resolution: {integrity: sha512-rV0YSoyhK2nZ4vEswT/QwqzqQXw5I6CjoaYMOX0TqBlWhojUf8P94mvI7nuJTeaCkkds3QE4+zS8Ko+GdXuZtA==}
cpu: [x64]
os: [linux]
libc: [musl]
'@unrs/resolver-binding-wasm32-wasi@1.11.1':
resolution: {integrity: sha512-5u4RkfxJm+Ng7IWgkzi3qrFOvLvQYnPBmjmZQ8+szTK/b31fQCnleNl1GgEt7nIsZRIf5PLhPwT0WM+q45x/UQ==}
@ -5830,6 +5764,14 @@ packages:
dayjs@1.11.21:
resolution: {integrity: sha512-98IT+HOahAisibz/yjKbzuOBwYcjJ7BCLPzARyHiyEBmRz4fatF+KPJszEHXsGYjUG234aH/cOjW1wwTbKUZlA==}
debug@2.6.9:
resolution: {integrity: sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==}
peerDependencies:
supports-color: '*'
peerDependenciesMeta:
supports-color:
optional: true
debug@3.2.7:
resolution: {integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==}
peerDependencies:
@ -7255,28 +7197,24 @@ packages:
engines: {node: '>= 12.0.0'}
cpu: [arm64]
os: [linux]
libc: [glibc]
lightningcss-linux-arm64-musl@1.31.1:
resolution: {integrity: sha512-mVZ7Pg2zIbe3XlNbZJdjs86YViQFoJSpc41CbVmKBPiGmC4YrfeOyz65ms2qpAobVd7WQsbW4PdsSJEMymyIMg==}
engines: {node: '>= 12.0.0'}
cpu: [arm64]
os: [linux]
libc: [musl]
lightningcss-linux-x64-gnu@1.31.1:
resolution: {integrity: sha512-xGlFWRMl+0KvUhgySdIaReQdB4FNudfUTARn7q0hh/V67PVGCs3ADFjw+6++kG1RNd0zdGRlEKa+T13/tQjPMA==}
engines: {node: '>= 12.0.0'}
cpu: [x64]
os: [linux]
libc: [glibc]
lightningcss-linux-x64-musl@1.31.1:
resolution: {integrity: sha512-eowF8PrKHw9LpoZii5tdZwnBcYDxRw2rRCyvAXLi34iyeYfqCQNA9rmUM0ce62NlPhCvof1+9ivRaTY6pSKDaA==}
engines: {node: '>= 12.0.0'}
cpu: [x64]
os: [linux]
libc: [musl]
lightningcss-win32-arm64-msvc@1.31.1:
resolution: {integrity: sha512-aJReEbSEQzx1uBlQizAOBSjcmr9dCdL3XuC/6HLXAxmtErsj2ICo5yYggg1qOODQMtnjNQv2UHb9NpOuFtYe4w==}
@ -7297,6 +7235,9 @@ packages:
lines-and-columns@1.2.4:
resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==}
load-script@1.0.0:
resolution: {integrity: sha512-kPEjMFtZvwL9TaZo0uZ2ml+Ye9HUMmPwbYRJ324qF9tqMejwykJ5ggTyvzmrbBeapCAbk98BSbTeovHEEP1uCA==}
locate-path@6.0.0:
resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==}
engines: {node: '>=10'}
@ -7617,6 +7558,9 @@ packages:
react-dom:
optional: true
ms@2.0.0:
resolution: {integrity: sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==}
ms@2.1.3:
resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==}
@ -8169,6 +8113,12 @@ packages:
peerDependencies:
react: ^16.8.0 || ^17 || ^18 || ^19
react-html-props@2.1.1:
resolution: {integrity: sha512-tM+YCYlr90m3JontKUAa+gNVU2zkyprlCS7OQ9aa3z2MfyJjAioJzrSmi1Vef/+UCTE6CQlPqLX4ebdLIJDKxw==}
peerDependencies:
react: ^16.0.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^20.0.0 || ^21.0.0 || ^22.0.0
react-dom: ^16.0.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^20.0.0 || ^21.0.0 || ^22.0.0
react-is@16.13.1:
resolution: {integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==}
@ -8227,6 +8177,12 @@ packages:
'@types/react':
optional: true
react-social-media-embed@2.5.18:
resolution: {integrity: sha512-+PkzLRGAwnySkxKajaiK5VD+EjOhlFsh/vjNxgHsDfKBTseDpFxPrMXXQWkk6BRCwFBNVWX+V1HZ9AU0y54Wgw==}
peerDependencies:
react: ^16.0.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^20.0.0 || ^21.0.0 || ^22.0.0
react-dom: ^16.0.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^20.0.0 || ^21.0.0 || ^22.0.0
react-style-singleton@2.2.3:
resolution: {integrity: sha512-b6jSvxvVnyptAiLjbkWLE/lOnR4lfTtDAl+eUC7RZy+QQWc6wRzIV2CE6xBuMmDxc2qIihtDCZD5NPOFl7fRBQ==}
engines: {node: '>=10'}
@ -8237,6 +8193,12 @@ packages:
'@types/react':
optional: true
react-sub-unsub@2.2.8:
resolution: {integrity: sha512-o3tmiOOZPdQUCmRhkdCHXRFLOHnCwdz/N3QZ1JQ14fQGA2HysKMF0kWu56ERnQUCK7wYVCQzI8pFbnivAYNQ+A==}
peerDependencies:
react: ^16.0.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^20.0.0 || ^21.0.0 || ^22.0.0
react-dom: ^16.0.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^20.0.0 || ^21.0.0 || ^22.0.0
react-syntax-highlighter@15.6.6:
resolution: {integrity: sha512-DgXrc+AZF47+HvAPEmn7Ua/1p10jNoVZVI/LoPiYdtY+OM+/nG5yefLHKJwdKqY1adMuHFbeyBaG9j64ML7vTw==}
peerDependencies:
@ -8261,11 +8223,24 @@ packages:
react-native:
optional: true
react-twitter-embed@4.0.4:
resolution: {integrity: sha512-2JIL7qF+U62zRzpsh6SZDXNI3hRNVYf5vOZ1WRcMvwKouw+xC00PuFaD0aEp2wlyGaZ+f4x2VvX+uDadFQ3HVA==}
engines: {node: '>=10'}
peerDependencies:
react: ^16.0.0 || ^17.0.0 || ^18.0.0
react-dom: ^16.0.0 || ^17.0.0 || ^18.0.0
react-wrap-balancer@1.1.1:
resolution: {integrity: sha512-AB+l7FPRWl6uZ28VcJ8skkwLn2+UC62bjiw8tQUrZPlEWDVnR9MG0lghyn7EyxuJSsFEpht4G+yh2WikEqQ/5Q==}
peerDependencies:
react: '>=16.8.0 || ^17.0.0 || ^18'
react-youtube@10.1.0:
resolution: {integrity: sha512-ZfGtcVpk0SSZtWCSTYOQKhfx5/1cfyEW1JN/mugGNfAxT3rmVJeMbGpA9+e78yG21ls5nc/5uZJETE3cm3knBg==}
engines: {node: '>= 14.x'}
peerDependencies:
react: '>=0.14.1'
react@19.2.4:
resolution: {integrity: sha512-9nfp2hYpCwOjAN+8TZFGhtWEwgvWHXqESH8qT89AT/lWklpLON22Lc8pEtnpsZz7VmawabSU0gCjnj8aC0euHQ==}
engines: {node: '>=0.10.0'}
@ -8489,6 +8464,9 @@ packages:
scheduler@0.27.0:
resolution: {integrity: sha512-eNv+WrVbKu1f3vbYJT/xtiF5syA5HPIMtf9IgY/nKg0sWqzAUEvqY/xm7OcZc/qafLx/iO9FgOmeSAp4v5ti/Q==}
scriptjs@2.5.9:
resolution: {integrity: sha512-qGVDoreyYiP1pkQnbnFAUIS5AjenNwwQBdl7zeos9etl+hYKWahjRTfzAZZYBv5xNHx7vNKCmaLDQZ6Fr2AEXg==}
scroll-into-view-if-needed@3.1.0:
resolution: {integrity: sha512-49oNpRjWRvnU8NyGVmUaYG4jtTkNonFZI86MmGRDqBphEK2EXT9gdEUoQPZhuBM8yWHxCWbobltqYO5M4XrUvQ==}
@ -8574,6 +8552,9 @@ packages:
simple-swizzle@0.2.4:
resolution: {integrity: sha512-nAu1WFPQSMNr2Zn9PGSZK9AGn4t/y97lEm+MXTtUDwfP0ksAIX4nO+6ruD9Jwut4C49SB1Ws+fbXsm/yScWOHw==}
sister@3.0.2:
resolution: {integrity: sha512-p19rtTs+NksBRKW9qn0UhZ8/TUI9BPw9lmtHny+Y3TinWlOa9jWh9xB0AtPSdmOy49NJJJSSe0Ey4C7h0TrcYA==}
slate-dom@0.119.0:
resolution: {integrity: sha512-foc8a2NkE+1SldDIYaoqjhVKupt8RSuvHI868rfYOcypD4we5TT7qunjRKJ852EIRh/Ql8sSTepXgXKOUJnt1w==}
peerDependencies:
@ -9240,6 +9221,9 @@ packages:
resolution: {integrity: sha512-CzhO+pFNo8ajLM2d2IW/R93ipy99LWjtwblvC1RsoSUMZgyLbYFr221TnSNT7GjGdYui6P459mw9JH/g/zW2ug==}
engines: {node: '>=18'}
youtube-player@5.5.2:
resolution: {integrity: sha512-ZGtsemSpXnDky2AUYWgxjaopgB+shFHgXVpiJFeNB5nWEugpW1KWYDaHKuLqh2b67r24GtP6HoSW5swvf0fFIQ==}
zod-to-json-schema@3.25.1:
resolution: {integrity: sha512-pM/SU9d3YAggzi6MtR4h7ruuQlqKtad8e9S0fmxcMi+ueAK5Korys/aWcV9LIIHTVbj01NdzxcnXSN+O74ZIVA==}
peerDependencies:
@ -13989,6 +13973,8 @@ snapshots:
dependencies:
'@types/node': 20.19.33
'@types/youtube-player@5.5.11': {}
'@typescript-eslint/eslint-plugin@8.56.0(@typescript-eslint/parser@8.56.0(eslint@9.39.3(jiti@2.6.1))(typescript@5.9.3))(eslint@9.39.3(jiti@2.6.1))(typescript@5.9.3)':
dependencies:
'@eslint-community/regexpp': 4.12.2
@ -14881,6 +14867,10 @@ snapshots:
dayjs@1.11.21: {}
debug@2.6.9:
dependencies:
ms: 2.0.0
debug@3.2.7:
dependencies:
ms: 2.1.3
@ -16535,6 +16525,8 @@ snapshots:
lines-and-columns@1.2.4: {}
load-script@1.0.0: {}
locate-path@6.0.0:
dependencies:
p-locate: 5.0.0
@ -17136,6 +17128,8 @@ snapshots:
react: 19.2.4
react-dom: 19.2.4(react@19.2.4)
ms@2.0.0: {}
ms@2.1.3: {}
mutative@1.1.0: {}
@ -17802,6 +17796,11 @@ snapshots:
dependencies:
react: 19.2.4
react-html-props@2.1.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4):
dependencies:
react: 19.2.4
react-dom: 19.2.4(react@19.2.4)
react-is@16.13.1: {}
react-lifecycles-compat@3.0.4: {}
@ -17870,6 +17869,19 @@ snapshots:
optionalDependencies:
'@types/react': 19.2.14
react-social-media-embed@2.5.18(react-dom@19.2.4(react@19.2.4))(react@19.2.4):
dependencies:
'@types/youtube-player': 5.5.11
classnames: 2.5.1
react: 19.2.4
react-dom: 19.2.4(react@19.2.4)
react-html-props: 2.1.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
react-sub-unsub: 2.2.8(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
react-twitter-embed: 4.0.4(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
react-youtube: 10.1.0(react@19.2.4)
transitivePeerDependencies:
- supports-color
react-style-singleton@2.2.3(@types/react@19.2.14)(react@19.2.4):
dependencies:
get-nonce: 1.0.1
@ -17878,6 +17890,11 @@ snapshots:
optionalDependencies:
'@types/react': 19.2.14
react-sub-unsub@2.2.8(react-dom@19.2.4(react@19.2.4))(react@19.2.4):
dependencies:
react: 19.2.4
react-dom: 19.2.4(react@19.2.4)
react-syntax-highlighter@15.6.6(react@19.2.4):
dependencies:
'@babel/runtime': 7.29.2
@ -17906,10 +17923,25 @@ snapshots:
optionalDependencies:
react-dom: 19.2.4(react@19.2.4)
react-twitter-embed@4.0.4(react-dom@19.2.4(react@19.2.4))(react@19.2.4):
dependencies:
react: 19.2.4
react-dom: 19.2.4(react@19.2.4)
scriptjs: 2.5.9
react-wrap-balancer@1.1.1(react@19.2.4):
dependencies:
react: 19.2.4
react-youtube@10.1.0(react@19.2.4):
dependencies:
fast-deep-equal: 3.1.3
prop-types: 15.8.1
react: 19.2.4
youtube-player: 5.5.2
transitivePeerDependencies:
- supports-color
react@19.2.4: {}
readable-stream@2.3.8:
@ -18250,6 +18282,8 @@ snapshots:
scheduler@0.27.0: {}
scriptjs@2.5.9: {}
scroll-into-view-if-needed@3.1.0:
dependencies:
compute-scroll-into-view: 3.1.1
@ -18383,6 +18417,8 @@ snapshots:
dependencies:
is-arrayish: 0.3.4
sister@3.0.2: {}
slate-dom@0.119.0(slate@0.120.0):
dependencies:
'@juggle/resize-observer': 3.4.0
@ -19095,6 +19131,14 @@ snapshots:
yoctocolors@2.1.2: {}
youtube-player@5.5.2:
dependencies:
debug: 2.6.9
load-script: 1.0.0
sister: 3.0.2
transitivePeerDependencies:
- supports-color
zod-to-json-schema@3.25.1(zod@4.3.6):
dependencies:
zod: 4.3.6

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 119 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 164 KiB

View file

@ -0,0 +1,578 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg id="b" data-name="Layer 2" xmlns="http://www.w3.org/2000/svg" width="150" height="227.85" viewBox="0 0 150 227.85">
<defs>
<style>
.d {
fill: #db598a;
}
.d, .e, .f {
stroke-width: 0px;
}
.e {
fill: none;
}
.f {
fill: #fff;
}
</style>
</defs>
<g id="c" data-name="CU">
<g>
<path class="f" d="M88.5,139.06l-.41-.02v.05h-11.34v-.02c-.64.23-1.31.31-1.73.34v.02h-.05c-.42-.03-1.11-.12-1.76-.36h0s-11.33.01-11.33.01v-.05l-.41.02.23.62h26.56l.23-.62Z"/>
<path class="f" d="M62.82,137.18l-.05-.05s-.12-.06-.21-.1c-.02.38-.09.9-.23,1.36h2.82c-1.12-.13-1.67-.61-2.33-1.22Z"/>
<path class="f" d="M6.57,209.5c1.59,0,3.02-1.21,3.94-3.11-.95.86-1.99,1-2.55,1-1.72,0-3.08-2.04-3.08-4.64,0-.59.09-1.15.23-1.7-.87-.36-1.67-.93-2.38-1.64-.33,1.07-.51,2.17-.51,3.34,0,1.77.39,3.41,1.06,4.76.93,1.28,2.1,2,3.3,2Z"/>
<path class="f" d="M63.23,136.63l.05.04c.66.6,1.06.98,1.99,1.05.56.06.68-.01.86-.14-.11-.1-.22-.21-.33-.32-.12-.12-.25-.24-.39-.36-.42-.38-1.25-.7-1.25-.7l-.82-.31.82-.32s.84-.32,1.25-.69c.14-.14.27-.26.42-.42.1-.1.2-.2.3-.3-.26-.12-.47-.17-.89-.17-.78,0-1.13.36-1.65.86-.11.1-.21.19-.32.31-.11.07-.26.16-.51.25-.04.02-.09.05-.13.07h0s-.61.41-.61.41l.56.42c.05.02.12.04.16.05.23.11.39.18.51.29Z"/>
<path class="f" d="M89.61,130.75c-.31.42-.43.62-.66,1.15l.62,1.47c.29-.75.72-1.41,1.26-1.99-.38-.27-.78-.49-1.22-.62Z"/>
<path class="f" d="M88.31,140.34h-26.64c-.08.18-.15.32-.22.44h27.07c-.07-.12-.14-.27-.22-.44Z"/>
<path class="f" d="M88.1,136.68c0,.33.05,1.13.25,1.7l1.11.08s-.57,1.52-.57,1.52c.18.45.29.61.56.92.04.06.08.11.14.17.45-.14.87-.36,1.26-.64-1.11-1.16-1.73-2.73-1.73-4.52l-1.02.78Z"/>
<path class="f" d="M74.95,130.26h.11c1.05.02,2.06.4,2.88,1.09h10.49c.21-.46.39-.7.76-1.19h.01v-.14h-28.4v.14c.38.49.55.73.76,1.19h10.52c.82-.69,1.82-1.06,2.88-1.09Z"/>
<path class="f" d="M13.26,203.9c-.05.58-.27,2.3-1.25,3.47h0s-.53-.43-.53-.43c.79-.96,1.02-2.34,1.09-2.94-.09,0-.19.02-.29.02h0c-.09,0-.19-.01-.28-.02-.7,3.7-2.84,6.18-5.43,6.18h0c-.54-.01-1.07-.13-1.58-.35.93.84,2.04,1.33,3.23,1.33,2.84,0,5.45-3.41,5.94-7.59-.27.14-.56.26-.89.33,0,0,0,0-.01,0Z"/>
<path class="f" d="M86.88,134.38c.1.11.2.2.3.29.04.02.14.07.23.12.04-.54.14-1.04.23-1.39h-2.45c.74.13,1.21.56,1.69.99Z"/>
<path class="f" d="M77.91,132.15l.61-.06.12.13c.14.16.25.31.35.47h9.16v.04h.41l-.29-.7h-10.3l-.05.13Z"/>
<path class="f" d="M92.42,138.5c.38-.78.59-1.67.59-2.61s-.22-1.85-.6-2.63c-.67.65-1.09,1.58-1.09,2.61s.42,1.99,1.1,2.63Z"/>
<path class="f" d="M71,132.69c.1-.15.21-.31.35-.47l.12-.13.62.06-.05-.13h-10.35l-.28.7h.43v-.04h9.15Z"/>
<path class="f" d="M63.09,134.35c.43-.4.86-.8,1.5-.97h-2.25c.09.35.19.84.23,1.37.09-.04.19-.09.23-.11.11-.08.19-.18.29-.29Z"/>
<path class="f" d="M66.29,144.37l.1-.1h.25l.1.1c.16.12,1.43,1.22,1.8,1.73.14.2.2.41.24.63l.19-.16.21.27c.04.06.08.12.12.17.27-.51.31-.96.34-1.87.06-1.35-.61-2.82-1.28-3.67h-4.48c.72.97,1.38,2.27,1.55,3.63.4-.37.79-.69.87-.76Z"/>
<path class="f" d="M71.74,141.49c.63,1.15,1.2,2.76,1.36,4.14.84-.96,1.68-1.45,1.73-1.47l.17-.08.17.08c.05.02.88.49,1.71,1.42.17-1.38.73-2.96,1.35-4.1h-6.49Z"/>
<path class="f" d="M68.84,147.56l-.94.75.18-.92c.05-.2.07-.68-.07-.9-.24-.32-1.01-1.03-1.49-1.43-.45.41-1.23,1.12-1.47,1.43-.16.2-.12.69-.07.9l.19.92-.96-.75c-.14.23-.24.48-.35.72-.06.11-.11.23-.17.34.15.28.27.57.37.89.92-1.18,2.02-1.95,2.08-1.98l.19-.14.2.14c.11.06,2.13,1.6,3.04,3.25.09-.16.19-.32.3-.48-.07-.43-.23-1.04-.38-1.38-.16-.39-.36-.92-.66-1.36Z"/>
<path class="f" d="M69.18,141.49c.64.97,1.19,2.37,1.14,3.71-.04,1.08-.11,1.69-.62,2.48.18.35.32.68.44.96.08.22.18.54.26.87.24-.33.49-.67.76-1.02l.48-.64.08.5c0-.24.04-.49.11-.66.18-.46.41-.87.65-1.24.01-1.49-.75-3.68-1.53-4.96h-1.78Z"/>
<path class="f" d="M7.93,198.71c-1.55-.32-3.64-1.78-4.63-3.85-1.4-3-.67-6.05.91-6.82.82-.38,1.93-.2,3.08.5,1.15.7,2.1,1.8,2.73,3.15.56,1.19.84,2.62.79,3.82.07,0,.15,0,.22,0,.18-.61.63-2.63-.84-4.77l.59-.41c1.51,2.25,1.17,4.4.94,5.25.33.06.66.15.98.28.15-1.21.23-2.77-.11-3.94-1.1-3.95-4.58-6.44-7.78-5.54-3.2.88-4.91,4.81-3.81,8.76,1.02,3.63,4.07,6.03,7.07,5.66-.07-.3-.14-.6-.17-.93-.03-.39-.01-.78.03-1.17Z"/>
<path class="f" d="M85.47,146.1c.14.2.21.41.23.63l.19-.16.15.21c.35-2.13,1.26-4.07,2.16-5.29h-1.25c-.89,1.05-1.78,2.66-1.75,4.3.1.11.2.22.26.3Z"/>
<path class="f" d="M80.68,147.03c.04-.06.08-.12.12-.18l.21-.27.19.16c.05-.23.1-.44.23-.63.38-.51,1.64-1.61,1.8-1.73l.08-.1h.24l.11.1c.08.06.48.4.89.78.15-1.37.81-2.68,1.54-3.66h-4.46c-.68.85-1.35,2.31-1.28,3.65.03.92.06,1.37.33,1.89Z"/>
<path class="f" d="M80.29,147.69c-.52-.8-.59-1.4-.62-2.5-.06-1.34.49-2.73,1.12-3.7h-1.76c-.78,1.27-1.53,3.43-1.53,4.92.25.38.49.8.68,1.28.07.17.08.42.11.66l.07-.5.49.64c.27.34.51.67.74,1,.08-.31.18-.62.26-.84.12-.27.26-.61.44-.95Z"/>
<path class="f" d="M96.11,135.91c-.62.44-1.77,1.45-2.67,3.22,1.04-1.15,2.43-1.91,3.12-2.24-.21-.3-.37-.62-.45-.97Z"/>
<path class="f" d="M92.07,132.65c-.21-.31-.45-.59-.71-.84-.98,1.04-1.57,2.5-1.57,4.07s.56,3.05,1.57,4.1c.26-.26.51-.54.72-.86-.89-.77-1.42-1.94-1.42-3.24s.53-2.46,1.42-3.23Z"/>
<path class="f" d="M64.09,146.58l.19.16c.02-.23.08-.44.21-.63.07-.09.17-.21.28-.33,0-1.63-.86-3.24-1.76-4.28h-1.22c.9,1.21,1.8,3.13,2.16,5.25l.14-.16Z"/>
<path class="f" d="M66.32,148.22c-.41.34-1.36,1.13-2.05,2.15.05.3.08.61.1.92.85-1,1.7-1.68,1.74-1.71l.2-.16.21.16c.06.04,1.45,1.08,2.46,2.36.06-.14.13-.28.2-.42-.54-1.35-2.25-2.82-2.85-3.3Z"/>
<path class="f" d="M89.57,133.38l-1.22.02c-.11.37-.25,1.07-.26,1.72l1.03.76s0,0,0,0c0-.9.17-1.73.46-2.49Z"/>
<path class="f" d="M87.52,135.57s-.16-.08-.3-.14c-.25-.11-.39-.18-.51-.25-.1-.12-.2-.21-.31-.31-.51-.5-.88-.86-1.66-.86-.41,0-.62.05-.88.16.09.09.19.19.28.28.13.16.26.27.39.42.35.3,1.04.59,1.28.69l.82.32-.82.3s-.86.35-1.28.73c-.13.12-.25.24-.39.36-.1.11-.2.21-.31.31,0,0,0,0,0,0,.19.12.31.2.87.14.94-.08,1.34-.47,1.99-1.05l.04-.04c.12-.12.29-.19.51-.29.06,0,.13-.03.18-.06l.53-.41-.44-.31v.02s-.01-.02-.01-.02Z"/>
<path class="f" d="M65.97,133.38c.25.06.45.16.71.27h.03c.22-.13.48-.22.78-.27h-1.51Z"/>
<path class="f" d="M57.57,133.28c-.37.78-.59,1.66-.59,2.6s.22,1.83.61,2.62c.65-.64,1.05-1.57,1.05-2.61s-.41-1.96-1.07-2.61Z"/>
<path class="f" d="M57.93,139.1c.21.32.45.6.72.86.98-1.03,1.55-2.47,1.55-4.08s-.59-3.03-1.56-4.07c-.27.26-.52.55-.73.87.89.77,1.42,1.94,1.42,3.22s-.53,2.43-1.39,3.2Z"/>
<path class="f" d="M84.09,133.38h-1.6c.3.06.57.15.8.3.28-.14.51-.24.8-.3Z"/>
<polygon class="f" points="103.87 175.33 103.87 173.57 46.11 173.57 46.11 175.33 68.25 175.33 73.59 175.33 103.87 175.33"/>
<path class="f" d="M78.29,138.01s-.07.09-.11.13l-.17.16-.36-.16.07.26h1.8c-.48,0-.78-.16-1.06-.31-.07-.02-.12-.05-.18-.08Z"/>
<path class="f" d="M79.64,137.73c.59-.02.76-.29,1.07-.68.16-.2.32-.42.57-.63.21-.21.51-.39.79-.53-.27-.14-.56-.32-.79-.53-.23-.19-.37-.39-.53-.62-.32-.43-.58-.72-1.29-.71.02.17.05.34.06.55.07,1.05-.23,2.05-.81,2.89.02,0,.03.02.05.02.32.16.49.26.87.24Z"/>
<path class="f" d="M105.87,159.85c-.17-.45-.38-.87-.63-1.24-.86.96-1.38,2.53-1.38,4.25s.53,3.3,1.38,4.26c.26-.37.46-.8.64-1.27-.75-.57-1.21-1.7-1.21-3.01s.46-2.43,1.21-2.99Z"/>
<path class="f" d="M59.15,140.4c.39.29.82.52,1.27.65.06-.05.08-.11.13-.17.26-.31.36-.47.54-.92l-.56-1.52,1.11-.08c.19-.51.26-1.29.26-1.7l-1.01-.79,1.04-.76c-.02-.64-.17-1.35-.27-1.72l-1.24-.02.64-1.49c-.23-.53-.36-.74-.67-1.15h-.01c-.45.14-.86.36-1.24.64,1.11,1.18,1.74,2.78,1.74,4.5s-.62,3.34-1.73,4.52Z"/>
<path class="f" d="M82.17,137.68c.72-.11,1.06-.44,1.52-.91.13-.12.27-.26.42-.38.21-.21.53-.39.8-.53-.27-.14-.59-.32-.8-.53-.14-.14-.3-.27-.43-.42-.49-.51-.87-.91-1.58-.91-.45,0-.61.06-.89.19.04.05.07.09.11.14.13.19.26.36.43.53.41.37,1.24.69,1.24.69l.84.32-.84.3s-.84.35-1.24.73c-.19.17-.35.36-.49.54-.02.03-.05.06-.07.09.02.01.05.02.07.03.23.14.32.19.92.11Z"/>
<path class="f" d="M103.35,161.09l-1.74-.87c-.33.84-.53,1.53-.53,2.65s.13,1.73.48,2.52l1.8-.72c-.12-.58-.2-1.19-.2-1.81s.07-1.2.19-1.76Z"/>
<path class="f" d="M105.35,162.84c0,.92.31,1.85.76,2.32.18-.73.31-1.5.31-2.32s-.12-1.58-.31-2.3c-.47.49-.76,1.38-.76,2.3Z"/>
<rect class="f" x="50.25" y="154.78" width="49.5" height="2.1"/>
<path class="f" d="M53.87,135.91c-.08.35-.24.67-.45.97.67.32,2.04,1.07,3.09,2.2-.89-1.74-2.03-2.73-2.64-3.17Z"/>
<path class="f" d="M66.31,134.92c-.13.14-.29.29-.44.42-.2.2-.51.38-.79.53.27.13.57.31.79.53.16.12.29.26.42.38.47.48.8.8,1.53.91.6.08.7.02.92-.11.02-.01.06-.03.08-.04-.03-.03-.06-.07-.08-.1-.13-.18-.3-.37-.48-.54-.42-.38-1.25-.7-1.25-.73l-.81-.3.81-.32s.85-.32,1.25-.69c.16-.17.29-.33.43-.53.03-.04.06-.08.09-.12-.29-.13-.45-.19-.89-.19-.7,0-1.1.39-1.58.91Z"/>
<path class="f" d="M76.75,136.97l1.11.49c.69-.78,1.06-1.79,1-2.85-.05-.82-.2-1.27-.64-1.8l-1.25.12c.48.5.78,1.18.78,1.93,0,.85-.39,1.6-1,2.11Z"/>
<path class="f" d="M69.08,138.17c-.26.14-.44.23-.82.23h2.07c-.46-.03-.77-.17-1.02-.35-.09.04-.16.08-.23.12Z"/>
<path class="f" d="M74.97,132.79c-1.15,0-2.08.91-2.08,2.08s.93,2.08,2.09,2.08,2.09-.94,2.09-2.08-.94-2.08-2.09-2.08v-.69c.76,0,1.43.31,1.93.79l.4-1.15c-.67-.51-1.49-.79-2.34-.79s-1.66.29-2.33.79l.4,1.15c.49-.49,1.17-.79,1.93-.79v.69ZM74.99,135.87c.56,0,1.03-.47,1.03-1.01s-.47-1.01-1.03-1.01v-.69c.98.04,1.71.78,1.71,1.72s-.76,1.7-1.7,1.71c0,0,0,0,0,0h-.01s0,0,0,0c-.95,0-1.7-.77-1.7-1.71s.75-1.71,1.68-1.72v.69c-.56,0-1.01.45-1.01,1.01s.45,1.01,1.03,1.01Z"/>
<path class="f" d="M80.7,138.06c-.22.17-.51.29-.91.34h1.94c-.39,0-.57-.1-.82-.23-.06-.04-.13-.07-.21-.11Z"/>
<path class="f" d="M73,132.94l-1.25-.12c-.44.54-.59.98-.63,1.8-.07,1.05.3,2.07,1.01,2.85l1.08-.48c-.61-.51-1-1.26-1-2.12,0-.75.3-1.43.78-1.93Z"/>
<path class="f" d="M87.18,137.18c-.69.61-1.22,1.1-2.34,1.22h2.82c-.14-.46-.21-.98-.23-1.36-.09.04-.18.07-.21.1l-.04.05Z"/>
<path class="f" d="M76.59,137.1c-.45.32-.99.52-1.59.53h.01-.04c-.59,0-1.14-.19-1.59-.51-.11.34-.36,1.12-.36,1.12.48.27,1.18.45,1.96.5.8-.05,1.48-.23,1.97-.5l-.37-1.14Z"/>
<path class="f" d="M71.98,138.29l-.18-.16s-.07-.09-.11-.14c-.05.02-.1.05-.14.07-.32.17-.62.31-1.1.31v.02s1.8,0,1.8,0l.09-.26-.36.16Z"/>
<path class="f" d="M80.79,133.65c.25-.11.44-.2.71-.26h-1.45c.27.06.48.17.65.3l.09-.04Z"/>
<path class="f" d="M81.84,138.4h2.37c-.36-.03-.54-.13-.75-.25-.06-.05-.13-.09-.2-.14-.27.16-.59.29-1.02.35-.16.03-.28.03-.4.04Z"/>
<path class="f" d="M69.23,134.72c-.16.21-.31.42-.51.62-.23.2-.54.38-.79.53.25.13.56.31.79.53s.41.43.56.63c.31.39.51.66,1.09.68.36.02.55-.08.86-.24,0,0,.02,0,.03-.01-.57-.84-.88-1.83-.82-2.88.01-.21.04-.39.07-.57-.69,0-.95.28-1.27.71Z"/>
<path class="f" d="M69.26,133.68c.16-.13.35-.23.59-.3h-1.38c.26.06.45.15.7.26l.08.04Z"/>
<path class="f" d="M66.72,138.01c-.07.05-.14.09-.19.14-.2.13-.4.22-.75.25h2.48c-.16,0-.32-.01-.55-.05-.41-.06-.72-.18-.99-.34Z"/>
<path class="f" d="M83.67,148.24c-.59.47-2.29,1.92-2.83,3.28.06.13.13.26.18.39,1.01-1.27,2.37-2.29,2.44-2.33l.2-.16.21.16s.91.71,1.77,1.75c.02-.31.05-.61.09-.91-.69-1.04-1.65-1.84-2.07-2.17Z"/>
<polygon class="f" points="68.73 101.1 69.28 101.1 80.69 101.1 81.25 101.1 81.48 101.1 81.48 100.56 68.49 100.56 68.49 101.1 68.73 101.1"/>
<path class="f" d="M77.58,125s-.05-.08-.08-.12c-.26.53-.72.62-.73.62l-.44.11.02-.44c.04-.68,0-1.52-.07-1.67-.55-.84-.99-1.42-1.27-1.72-.25.3-.7.88-1.28,1.73-.07.17-.08.99-.05,1.67l.02.44-.44-.11s-.47-.11-.74-.62c-.01.05-.06.08-.08.11-.66.87-1.62,2.15-1.62,3.04,0,.43.07.86.18,1.28h1.37c-.26-1.11.2-2.26,1.23-2.81.45-.26.96-1.16,1.11-1.48l.3-.66.31.66c.16.33.64,1.22,1.11,1.48,1,.54,1.48,1.69,1.22,2.81h1.37c.12-.42.2-.85.2-1.29,0-.88-.98-2.17-1.64-3.03Z"/>
<rect class="f" x="14.56" y="216.13" width=".76" height="11.02"/>
<path class="f" d="M76.08,127.1c-.44-.25-.84-.79-1.09-1.21-.25.43-.64.96-1.07,1.21-.78.42-1.11,1.35-.84,2.22h3.83c.27-.87-.05-1.8-.83-2.22Z"/>
<path class="f" d="M70.59,126.5c-.38-.64-.95-1.15-1.24-1.38-.16.12-.42.34-.67.61.18.62.28,1.31.28,2.17,0,.48-.04.95-.1,1.42h1.42c-.09-.41-.16-.84-.16-1.28,0-.49.2-1.02.47-1.54Z"/>
<path class="f" d="M85.36,124.01l-.21-2.43c-.27.37-.59.72-.87,1.04-.43.51-.87,1-.93,1.34-.14.75-.04,1.79-.04,1.79l.05.47-.45-.07s-.51-.1-.82-.57c-.26.64-.36,1.35-.36,2.34,0,.47.03.94.09,1.41h1.59c-.07-.38-.12-.77-.12-1.19,0-1.84,1.64-3.67,2.07-4.12Z"/>
<path class="f" d="M85.74,147.56l-.93.75.19-.92c.04-.2.07-.68-.07-.9-.25-.32-1.03-1.03-1.48-1.43-.47.41-1.24,1.12-1.47,1.43-.17.2-.13.69-.1.9l.2.92-.97-.75c-.3.44-.5.97-.67,1.36-.13.32-.28.89-.35,1.32.11.18.23.35.33.52.91-1.64,2.93-3.15,3.03-3.23l.19-.14.2.14s1.14.79,2.08,1.98c.09-.3.21-.58.35-.85-.06-.13-.12-.25-.18-.39-.11-.24-.21-.49-.36-.72Z"/>
<path class="f" d="M90.96,116.71c-.08-.23-.14-.47-.14-.72,0-.07.02-.14.03-.21-1.29.83-4.01,3.07-4.78,7.35,2-4.56,4.1-6.01,4.9-6.42Z"/>
<path class="f" d="M73.37,117.23c-.1.38-.32,1.19-.32,1.19.57.35,1.29.57,1.93.63.66-.06,1.37-.29,1.93-.63l-.3-1.17c-.45.33-1.01.53-1.62.53s-1.17-.2-1.63-.54Z"/>
<path class="f" d="M76.78,117.1l1.05.36c.75-.8,1.07-1.67,1.03-2.69-.05-.82-.27-1.48-.69-2.03l-1.15.39c.46.49.74,1.15.74,1.88,0,.84-.38,1.58-.98,2.09Z"/>
<path class="f" d="M69.39,124.27l.18.13s.8.59,1.41,1.45c.25-.38.51-.73.77-1.06-.14-.99-.58-1.77-1.2-2.11-.5-.27-.94-.92-1.22-1.38-.27.47-.7,1.11-1.22,1.38-.44.25-.67.52-.83.96.02.07.06.13.07.2.07.38.11.82.08,1.19.05-.08.1-.23.11-.38l.11-.99.53.85c.1.16.18.33.26.5.4-.38.76-.59.78-.61l.19-.13Z"/>
<path class="f" d="M85.71,124.64c-.53.59-1.74,2.1-1.74,3.49,0,.42.05.81.14,1.19h3.22c.08-.38.13-.77.13-1.19,0-1.4-1.22-2.9-1.74-3.49Z"/>
<path class="f" d="M73.96,115.01c0,.57.45,1.01,1.03,1.01s1.03-.44,1.03-1.01-.46-1.02-1.02-1.03c-.58,0-1.03.45-1.03,1.03Z"/>
<path class="f" d="M74.99,112.24v.68c-1.13,0-2.08.93-2.08,2.09s.94,2.07,2.09,2.07,2.09-.93,2.09-2.07-.94-2.09-2.09-2.09v-.68c.71.01,1.34.29,1.83.72l.41-1.15c-.62-.48-1.36-.69-2.24-.69s-1.61.21-2.23.69l.4,1.14c.49-.43,1.12-.7,1.83-.72ZM75,113.29c.96,0,1.71.78,1.71,1.72s-.76,1.71-1.71,1.71-1.71-.79-1.71-1.71.75-1.72,1.68-1.72h.02Z"/>
<path class="f" d="M67.77,122.09c.53-.29,1.06-1.3,1.22-1.66l.31-.7.32.7c.16.36.68,1.38,1.22,1.66.68.37,1.17,1.09,1.42,1.99.03-.04.06-.09.08-.12l.54-.8.08.94c.02-.41.08-.79.2-.97.4-.6.73-1.05,1-1.39l-.22-2.21c-.54-.16-1.06-.39-1.48-.69l-.18-.13.16-.63-.47.17-.16-.17c-.99-.96-1.43-2.07-1.36-3.33.07-1.07.39-1.92,1.01-2.64l.16-.19.54.2-.18-.54.17-.14c.78-.67,1.7-1.01,2.81-1.01h-8.89c.12.44.31.94.53,1.16.07.07,1.52,1.72.06,4.35-.05.06-1.67,2.34-1.72,4.41h0c.24.64.8,1.28,1.3,1.85.23.26.45.51.63.75.21-.33.5-.6.91-.83Z"/>
<path class="f" d="M64.25,97.33c-.05.07-.1.14-.17.21.4.34,1.11.99,1.8,1.86v-.13c-.47-.74-1.21-1.52-1.63-1.94Z"/>
<path class="f" d="M95.28,116.73c.08-.23.12-.48.12-.74v-.07c0-.27-.05-.55-.15-.8-.14.22-.22.49-.22.79s.09.6.25.82Z"/>
<path class="f" d="M66.68,100.56c.05.08.08.17.13.25v-.25h-.13Z"/>
<path class="f" d="M72.97,113.13l-1.14-.39c-.43.55-.66,1.21-.7,2.03-.07,1.01.27,1.89,1.03,2.69l1.06-.36c-.6-.5-.98-1.25-.98-2.09,0-.73.28-1.38.74-1.88Z"/>
<polygon class="f" points="133.98 212.55 136.11 212.55 136.11 211.26 135.95 211.26 134.14 211.26 133.98 211.26 133.98 212.55"/>
<rect class="f" x="12.33" y="216.13" width=".48" height="11.02"/>
<polygon class="f" points="67.82 101.77 67.82 100.56 67.49 100.56 67.49 102.27 68.73 102.27 68.73 101.77 67.82 101.77"/>
<path class="f" d="M103.8,157.36c-.66.27-1.13.78-1.62,1.77l1.21,1.81c.26-1.14.75-2.14,1.41-2.83-.31-.34-.65-.61-1-.75Z"/>
<rect class="f" x="19.02" y="213.84" width=".45" height="11.07"/>
<path class="f" d="M92.31,117.36c.41.25.62.67.59,1.1v.19c0,.93.57,1.71,1.42,2.1-.17-.37-.27-.76-.3-1.17-.01-.31.03-.61.11-.9-.79-.58-1.29-1.62-1.29-2.77s.48-2.17,1.27-2.75c-.07-.27-.11-.54-.09-.83.02-.42.13-.81.3-1.16-.85.38-1.42,1.17-1.42,2.09v.18c.04.44-.18.87-.59,1.1-.51.32-.82.86-.82,1.43s.31,1.05.82,1.38Z"/>
<rect class="f" x="66.7" y="108.88" width="16.58" height=".82"/>
<path class="f" d="M94.39,118.03c.1-.16.21-.32.34-.46l.12-.12s.04-.06.06-.08c-.36-.36-.58-.88-.58-1.46s.2-1.07.54-1.43c0,0-.01-.02-.02-.03l-.12-.13c-.15-.15-.26-.32-.37-.5-.52.48-.86,1.25-.86,2.09s.35,1.64.89,2.12Z"/>
<path class="f" d="M83.83,103.26c0-.21-.12-.32-.16-.32h-17.36s-.16.12-.16.32c0,.19.09.32.14.33h17.38s.15-.13.15-.33Z"/>
<path class="f" d="M65.53,104.3c-1.12,0-2.04.82-2.04,1.85v.2c0,1.03.92,1.85,2.04,1.85h18.92c1.12,0,2.04-.82,2.04-1.85v-.2c0-1.03-.92-1.85-2.04-1.85h-18.92Z"/>
<rect class="f" x="13.28" y="216.13" width=".78" height="11.02"/>
<path class="f" d="M81.31,125.75c-.25-.28-.51-.51-.68-.63-.28.22-.84.74-1.23,1.38.28.52.47,1.05.47,1.54,0,.44-.07.86-.17,1.28h1.43c-.05-.47-.09-.94-.09-1.42,0-.86.09-1.54.26-2.15Z"/>
<path class="f" d="M74.97,149.72c-1.08.9-3.2,2.98-3.36,4.41h1.53c.25-1.2,1.59-2.25,1.64-2.3l.21-.16.2.16c.05.05,1.39,1.1,1.64,2.3h1.48c-.16-1.42-2.28-3.5-3.35-4.41Z"/>
<path class="f" d="M78.68,149.41c-.3.49-.75.69-.78.72l-.64.29.17-.67c.11-.5.26-1.44.11-1.79-.68-1.77-2.07-2.76-2.53-3.07-.48.31-1.85,1.31-2.52,3.07-.14.35,0,1.29.12,1.79l.16.67-.63-.29s-.49-.21-.79-.72c-1.25,1.67-2.09,3.1-2.09,4.43,0,.09.01.19.02.29h1.65c.18-2.15,3.69-4.99,3.84-5.11l.21-.18.21.18c.16.12,3.66,2.96,3.84,5.11h1.72c0-.1.02-.2.02-.29,0-1.33-.82-2.76-2.09-4.43Z"/>
<path class="f" d="M95.15,149.79c-1.29.9-2.05,2.35-2.05,3.93,0,.13.02.27.03.41h4.6c-.07-.9-.4-1.75-.99-2.42l-1.6-1.91Z"/>
<path class="f" d="M83.64,150.28c-.47.38-1.63,1.34-2.36,2.39.11.39.17.78.17,1.16,0,.09,0,.19,0,.29h4.42c-.11-.54-.18-1.11-.22-1.7-.71-.99-1.61-1.8-2-2.14Z"/>
<path class="f" d="M94.71,149.27l-1.09-1.29c-.11-.13-.2-.28-.3-.43-2.07,1.57-3.34,3.97-3.45,6.57h2.58c-.01-.14-.04-.27-.04-.41,0-1.79.86-3.41,2.29-4.45Z"/>
<path class="f" d="M92.99,146.96c-.34-.68-.53-1.42-.53-2.2v-2.6c-.14.15-.29.28-.45.41-.26.21-.54.43-.82.82-.26.36-.45.73-.57,1.09-.38,1.09.1,2.75.1,2.75l.27.98-.8-.59s-.9-.68-1.18-1.68c-.8,1.46-.61,3.2-.08,4.02l.63.99-1.06-.48s-.97-.47-1.35-1.93c-.94,1.31-.97,3.6-.58,5.58h2.64c.11-2.85,1.51-5.48,3.79-7.16Z"/>
<path class="f" d="M68.72,152.73c-.74-1.07-1.92-2.06-2.4-2.44-.39.33-1.24,1.13-1.95,2.1-.03.6-.11,1.18-.21,1.73h4.43c0-.09-.02-.19-.02-.29,0-.36.06-.73.15-1.1Z"/>
<path class="f" d="M73.84,154.12h2.31c-.19-.62-.77-1.23-1.15-1.6-.4.37-.97.98-1.15,1.6Z"/>
<path class="f" d="M62.87,148.56c-.38,1.47-1.31,1.91-1.37,1.93l-1.05.48.62-.99c.53-.82.72-2.57-.07-4.02-.31,1.01-1.16,1.64-1.19,1.68l-.8.59.27-.96s.47-1.67.1-2.76c-.13-.37-.33-.73-.59-1.09-.27-.39-.56-.62-.82-.82-.14-.12-.28-.24-.41-.38v2.54c0,.77-.2,1.52-.55,2.21,2.29,1.68,3.67,4.31,3.78,7.15h2.64c.42-1.97.36-4.25-.56-5.56Z"/>
<path class="f" d="M86.73,147.99c.12-.15.24-.3.39-.43l.48-.43.07.63c.01.24.08.45.12.63-.07-1.18.26-2.53,1.24-3.63l.73-.84-.16,1.11c-.06.42.06.82.21,1.13-.05-.59-.02-1.29.16-1.89.13-.42.36-.86.67-1.28.33-.47.66-.72.93-.96.44-.37.72-.61.87-1.47h.01s0-.86,0-.86c-.74,1.02-1.76,1.77-2.96,2.05l-.19.03h0s-.02,0-.02,0h.02s-.13-.17-.13-.17c-.04-.06-.08-.1-.12-.15-1.09,1.25-2.24,3.72-2.46,6.21.04.09.09.19.13.28Z"/>
<path class="f" d="M58.4,142.08c.3.23.61.49.96.96.3.41.53.82.66,1.28.23.6.23,1.3.16,1.9.17-.32.29-.73.23-1.15l-.16-1.11.75.84c.98,1.1,1.29,2.45,1.22,3.64.07-.2.11-.41.12-.66l.1-.63.48.43c.13.11.23.25.34.39.04-.09.09-.19.13-.29-.22-2.48-1.38-4.93-2.45-6.18h-.01s-.07.09-.11.14l-.12.17h0s-.2-.02-.2-.02c-1.18-.28-2.19-1.01-2.93-2.01v.93c.16.77.44,1.02.85,1.38Z"/>
<path class="f" d="M54.85,149.79l-1.59,1.9c-.58.67-.91,1.53-.97,2.42h4.56c.01-.14.03-.28.03-.41,0-1.58-.75-3.02-2.02-3.92Z"/>
<path class="f" d="M56.67,147.55c-.1.14-.18.29-.29.42l-1.09,1.3c1.43,1.04,2.27,2.66,2.27,4.44,0,.14,0,.27,0,.41h2.55c-.11-2.6-1.36-5-3.43-6.57Z"/>
<rect class="f" x="15.79" y="216.13" width=".79" height="11.02"/>
<path class="f" d="M101.48,136.46c.14-.34.22-.7.22-1.1v-.1c0-.4-.09-.79-.24-1.14-.24.3-.38.71-.38,1.16s.15.88.4,1.18Z"/>
<path class="f" d="M67.89,125.56c-.32.48-.79.57-.82.57l-.44.07.06-.44s.12-1.05-.04-1.8c-.07-.35-.5-.82-.94-1.34-.3-.32-.6-.67-.86-1.04l-.2,2.45c.47.5,2.04,2.29,2.04,4.09,0,.42-.05.81-.13,1.19h1.58c.07-.47.11-.93.11-1.42,0-.99-.11-1.7-.36-2.34Z"/>
<rect class="f" x="17.07" y="216.13" width=".47" height="11.02"/>
<path class="f" d="M59.12,115.76c0,.08.03.16.03.24,0,.25-.05.48-.13.7.8.41,2.91,1.9,4.93,6.54-.76-4.42-3.54-6.67-4.83-7.48Z"/>
<path class="f" d="M81.86,122.69c-.5-.27-.92-.92-1.22-1.38-.27.47-.7,1.11-1.22,1.38-.62.34-1.04,1.1-1.2,2.06.26.33.54.7.8,1.1.6-.85,1.36-1.42,1.4-1.44l.19-.13.19.13s.37.23.79.62c.08-.17.16-.35.26-.51l.54-.85.11.99c.02.16.05.3.08.38,0-.37.01-.82.08-1.19.01-.06.04-.12.06-.18-.16-.45-.4-.72-.86-.98Z"/>
<path class="f" d="M78.05,111.57l-.18.54.54-.2.16.19c.62.72.94,1.56.99,2.64.08,1.27-.36,2.38-1.35,3.33l-.16.17-.48-.17.17.63-.19.13c-.43.31-.96.54-1.51.7l-.24,2.15c.27.35.62.82,1.05,1.45.11.18.16.56.17.99v-.02l.1-.94.54.8s.03.04.04.06c.26-.87.76-1.56,1.43-1.92.53-.29,1.06-1.3,1.24-1.66l.3-.7.31.7c.17.36.69,1.38,1.22,1.66.42.24.72.51.93.86.19-.25.41-.5.65-.77.5-.53,1.01-1.17,1.27-1.78-.03-2.1-1.68-4.4-1.7-4.4-1.48-2.7-.05-4.33.01-4.41.23-.23.42-.73.54-1.17h-8.82c1.11.02,2.04.36,2.81,1.01l.18.14Z"/>
<path class="f" d="M75.06,119.71h-.11c-.1,0-.21-.03-.31-.04l.14,1.31.23-.24.19.2.13-1.27c-.09.01-.19.03-.28.04Z"/>
<path class="f" d="M18.2,215.79h.01v9.12h.31v-11.07h-.38c.03.13.06.27.06.42v1.53Z"/>
<polygon class="f" points="15.84 211.26 14.04 211.26 13.86 211.26 13.86 212.55 16.01 212.55 16.01 211.26 15.84 211.26"/>
<path class="f" d="M97.78,137.13c.45.29.72.76.66,1.29v.24c0,1.23.82,2.3,2.04,2.75-.29-.48-.47-1.04-.48-1.61-.02-.38.04-.75.14-1.11-.97-.7-1.6-2-1.6-3.4s.61-2.66,1.58-3.37c-.09-.34-.15-.69-.13-1.06.01-.56.19-1.1.46-1.59-1.21.46-2.03,1.51-2.03,2.72v.27c.06.49-.2.99-.66,1.27-.67.41-1.06,1.09-1.06,1.8s.41,1.41,1.06,1.81Z"/>
<path class="f" d="M100.42,138c.13-.22.27-.43.45-.62l.12-.14c.05-.06.09-.12.13-.18-.45-.42-.73-1.06-.73-1.77s.26-1.33.69-1.76c-.03-.04-.06-.08-.09-.12l-.12-.17c-.2-.2-.35-.44-.48-.68-.7.59-1.16,1.6-1.16,2.71s.46,2.13,1.19,2.72Z"/>
<path class="f" d="M12.34,214.25v1.19h5.19v-1.19c0-.54-.45-.98-.99-1.01h-3.21c-.54.03-.99.47-.99,1.01Z"/>
<path class="f" d="M64.26,124.64c-.54.59-1.76,2.1-1.76,3.49,0,.42.06.81.13,1.19h3.22c.08-.38.14-.77.14-1.19,0-1.4-1.22-2.9-1.74-3.49Z"/>
<path class="f" d="M17.79,213.16h1.68v-1.48c0-.42-.33-.74-.74-.74h-2.03v1.63c.44.06.82.27,1.09.59Z"/>
<path class="f" d="M75,167.26h-26.63c-.15.23-.31.46-.49.66h54.21c-.17-.2-.33-.42-.48-.67h-26.6Z"/>
<path class="f" d="M132.09,208.11c-.06.07-.12.13-.18.2h.31v-.33s-.09.09-.13.13Z"/>
<path class="f" d="M17.8,208.3h.25c-.08-.09-.17-.17-.25-.26v.26Z"/>
<path class="f" d="M138.98,199.42c-.94.61-1.98.91-3.02.91h0s-.09,0-.13,0c.13.33.42.75.87,1.01.63.36,1.38.29,2.23-.25l.36.59c-.68.41-1.28.56-1.77.56h0c-.47.01-.87-.12-1.16-.29-.31-.17-.55-.42-.76-.69-.06.35-.13.7-.22,1.05.29.44.8.76,1.47.94,1,.2,2.16,0,3.02-.55.88-.56,1.43-1.59,1.52-2.88.07-.91-.1-1.84-.43-2.61-.43.87-1.11,1.64-1.98,2.2Z"/>
<path class="f" d="M134.82,210.58h.44v-6.14h0c-.07-.39-.12-.79-.16-1.19-.08.24-.19.47-.29.7v6.63Z"/>
<path class="f" d="M143.41,210.16c-2.58,0-4.73-2.46-5.44-6.17-.1,0-.19.02-.29.02,0,0,0,0,0,0h-.01s0,0,0,0c-.09,0-.17,0-.26-.02.07.63.31,2.01,1.09,2.94l-.51.42h-.01c-1.01-1.17-1.22-2.89-1.27-3.46,0,0,0,0-.01,0-.33-.07-.62-.19-.89-.33.49,4.18,3.11,7.59,5.95,7.59,1.21,0,2.34-.51,3.29-1.38-.53.25-1.09.38-1.65.38h0Z"/>
<polygon class="f" points="134 208.99 132.22 208.99 132.02 208.99 132.02 210.26 134.14 210.26 134.14 208.99 134 208.99"/>
<path class="f" d="M14.88,203.35c-.04.4-.09.79-.16,1.17v6.06h.44v-6.55c-.1-.23-.2-.46-.28-.69Z"/>
<path class="f" d="M92.92,180.02c.27,1.28.54,2.5,1.91,3.4.23-.91.23-2.24.22-2.66-.86-.79-1.47-1.59-1.84-2.45-.1.54-.24.98-.4,1.38h.04s.07.34.07.34Z"/>
<path class="f" d="M92.68,182.84l.44-.2c-.4-.63-.61-1.31-.75-1.96l-.28.52-.24-.41v.62l-.02.11c-.05.1-.09.2-.14.3.01.1.13.8.55,1.44.13-.24.32-.37.45-.42Z"/>
<path class="f" d="M138.66,197.46v.69c-1.38,0-2.08.55-2.65,1.5.89,0,1.78-.27,2.59-.8.91-.58,1.57-1.39,1.91-2.31-.69-.43-2.05-.46-3.1,0-.62.26-1.64.9-1.65,2.22h0s0,.04,0,.06c.64-.83,1.5-1.35,2.91-1.35Z"/>
<path class="f" d="M142.04,207.38h-.01c-.56,0-1.6-.14-2.55-.99.92,1.89,2.35,3.09,3.93,3.09,1.19,0,2.38-.72,3.28-2.01l.02.02c.66-1.35,1.05-2.99,1.05-4.76,0-1.16-.18-2.26-.5-3.33-.71.71-1.51,1.28-2.38,1.64.14.54.23,1.1.23,1.69,0,2.6-1.35,4.64-3.08,4.64Z"/>
<path class="f" d="M95.19,184.41h-.01s-.32-.17-.32-.17c-.77-.42-1.29-.93-1.66-1.48l-.02.39s-.04.55.25,1.04c.26.45,1.28.98,2.4,1.13-.08-1.11.06-1.66.26-2.36.09-.31.18-.68.28-1.13-.02-.01-.03-.02-.05-.04-.21-.15-.39-.3-.58-.45,0,.79-.08,1.99-.39,2.73l-.16.33Z"/>
<path class="f" d="M11.36,198.86c.82.54,1.73.8,2.62.8-.59-.96-1.28-1.51-2.68-1.51v-.69c1.41,0,2.26.5,2.9,1.32,0-.06,0-.12.01-.18-.1-1.22-1.07-1.83-1.65-2.07-1.06-.45-2.41-.42-3.09.01.35.92,1.01,1.72,1.9,2.31Z"/>
<path class="f" d="M13.61,201.96c-.29.16-.68.3-1.16.3h0c-.49-.01-1.09-.17-1.77-.57l.35-.59c.86.54,1.6.61,2.23.25.45-.26.74-.68.87-1.01-.04,0-.08,0-.12,0h.01c-1.04-.01-2.1-.32-3.03-.92-.87-.56-1.55-1.34-1.98-2.2-.34.76-.5,1.69-.42,2.6.08,1.29.63,2.32,1.53,2.88.84.56,1.99.76,3,.55.65-.17,1.17-.48,1.45-.91-.09-.34-.16-.69-.22-1.04-.2.26-.44.5-.74.66Z"/>
<polygon class="f" points="15.84 208.99 15.84 210.25 17.95 210.25 17.95 208.99 17.8 208.99 15.98 208.99 15.84 208.99"/>
<rect class="f" x="73.74" y="170.62" width="2.51" height="2.27"/>
<rect class="f" x="76.93" y="170.62" width="4.23" height="2.27"/>
<rect class="f" x="68.81" y="170.62" width="4.24" height="2.27"/>
<path class="f" d="M81.85,170.62v2.27h3.53c.01-.62.08-1.6.33-2.27h-3.86Z"/>
<path class="f" d="M90.67,170.62c-.35,0-.87.88-.94,2.27h2.38c.08-.93.49-1.73,1.09-2.27h-2.53Z"/>
<path class="f" d="M86.45,170.62c-.14.21-.34.98-.37,2.27h2.97c.04-.94.27-1.74.61-2.27h-3.21Z"/>
<path class="f" d="M64.27,170.62c.25.67.32,1.65.33,2.27h3.53v-2.27h-3.86Z"/>
<path class="f" d="M139.22,190.33l.56.41c-1.45,2.14-1.01,4.17-.83,4.78.08,0,.16,0,.24,0-.06-1.2.21-2.62.76-3.8.63-1.35,1.61-2.45,2.76-3.15,1.13-.7,2.26-.88,3.08-.5,1.58.75,2.3,3.82.88,6.82-.98,2.07-3.07,3.54-4.63,3.85.04.38.05.76.02,1.14-.02.32-.08.63-.16.92,3,.37,6.04-2.03,7.06-5.66.53-1.95.42-3.89-.3-5.55-.72-1.64-1.96-2.78-3.5-3.2-1.53-.42-3.19-.1-4.66.94-1.48,1.03-2.59,2.67-3.12,4.6-.33,1.16-.28,2.71-.11,3.92.32-.12.65-.21.98-.27-.22-.85-.55-2.99.94-5.24Z"/>
<polygon class="f" points="59.31 169.93 63.61 169.93 86.38 169.93 90.67 169.93 94.92 169.93 97.91 169.93 100.11 169.93 100.11 168.57 49.87 168.57 49.87 169.93 52.09 169.93 55.06 169.93 59.31 169.93"/>
<path class="f" d="M60.32,170.62c.34.53.56,1.32.61,2.27h2.99c-.03-1.28-.24-2.06-.38-2.27h-3.22Z"/>
<path class="f" d="M59.31,170.62h-2.53c.61.54,1.02,1.34,1.1,2.27h2.37c-.07-1.39-.58-2.27-.94-2.27Z"/>
<path class="f" d="M55.06,170.62h-.95c.71.54,1.18,1.34,1.28,2.27h1.81c-.14-1.27-1.05-2.27-2.13-2.27Z"/>
<path class="f" d="M88.06,179.96c.11-.57.47-1,.84-1.46.51-.63,1.06-1.34,1.16-2.51h-4.73c.11,2.07,1.17,3.13,2.74,3.96Z"/>
<path class="f" d="M60.75,181.88c3.2-1.13,5.14-3.24,5.38-5.89h-.8c-.14,2.77-1.79,3.95-3.59,4.8l-.59.25h-.01s.11-.63.11-.63c.1-.49-.19-.87-.68-1.48-.56-.7-1.23-1.55-1.33-2.94h-.27c.02,1.8.5,2.48.98,3.13.48.62.93,1.23.8,2.76Z"/>
<path class="f" d="M57.98,179.82c.23-.24.43-.32.48-.36l.53-.16-.07.54c-.04.29-.12,1.07-.1,1.46.59,1.19.94,2.28.13,3.99,3.14-.5,6.2-3,6.58-3.69.31-.5.14-1.24.14-1.24l-.1-.43h.43c.19,0,.56.11.8.49,1.12-1.29,1.53-2.43,1.67-3.23-.11-.4-.17-.8-.2-1.19h-1.46c-.28,3.12-2.57,5.55-6.38,6.71l-.51.16.06-.54c.27-1.65-.11-2.17-.6-2.81-.5-.67-1.09-1.48-1.1-3.52h-.98c0,.11-.02.22-.02.32,0,1.74.3,2.69.69,3.5Z"/>
<path class="f" d="M15.32,196.27c-.07.24-.12.48-.17.73h119.65c-.05-.24-.1-.49-.17-.73H15.32Z"/>
<path class="f" d="M61.94,179.95c1.58-.83,2.62-1.88,2.74-3.95h-4.73c.1,1.15.64,1.86,1.16,2.5.37.47.72.9.84,1.46Z"/>
<path class="f" d="M74.96,177.63c.43-.34,1.12-.99,1.31-1.64h-2.63c.19.64.87,1.29,1.32,1.64Z"/>
<path class="f" d="M14.96,200.49h120.06c.04-.38.06-.77.06-1.16,0-.57-.05-1.12-.12-1.66H15.01c0,.06-.01.13-.02.19-.05.38-.08.76-.09,1.15,0,.1-.01.2-.01.31,0,.39.02.79.06,1.17Z"/>
<path class="f" d="M44.76,181.06c.05-.29.35-.69.67-1.09l-.54.44-.02-.69s0-.03,0-.04c-.28.12-.55.2-.87.3-.2.07-.43.14-.73.26-1.17.41-2.46.62-3.67.62h-.01c-1.07,0-2.05-.16-2.84-.48-.81.36-1.77.66-2.97.82,1.36.78,4.39,1.93,7.08,1.66,1.03-.12,1.54-1.06,1.54-1.06l.19-.38.33.27c.1.07.35.35.17,1.05.73-.04,1.21-.19,1.47-.3.01-.11.02-.22.03-.33.04-.33.06-.67.17-1.06Z"/>
<path class="f" d="M49.09,179.97c.57-.18,1.91-.72,2.97-1.93.6-.72.87-1.56.99-2.04h-3.78c-.81,1.55-.4,3.32-.19,3.98Z"/>
<path class="f" d="M48.95,180.73l-.28.05h0s-.01,0-.01,0h.01s-.09-.27-.09-.27c-.03-.05-.33-.79-.43-1.8-.07.51-.11,1.02-.14,1.49-.04.62-.07,1.16-.18,1.61,1.33-.3,2.79-.74,4.29-2.22,1.36-1.36,2.14-2.87,2.46-3.59h-.81c-.12.52-.43,1.59-1.18,2.5-1.53,1.76-3.57,2.21-3.64,2.24Z"/>
<path class="f" d="M75.14,178.33l-.18.12-.19-.12c-.07-.06-1.58-1.07-1.83-2.34h-.96c.15.93.93,1.93,1.7,2.89l.21.27c.42.56.81,1.13,1.07,1.52.25-.38.62-.96,1.05-1.52l.23-.25c.77-.99,1.54-1.98,1.69-2.91h-1c-.23,1.26-1.73,2.29-1.8,2.34Z"/>
<path class="f" d="M51.79,180.77l.39.33s.3.24.43.56c.23-.13.35-.17.66-.41,2.3-1.72,3.23-3.18,3.32-5.27h-1.27c-.24.6-1.08,2.42-2.73,4.07-.27.27-.54.5-.81.71Z"/>
<path class="f" d="M46.79,177.14s0,0,0,0c-.65.84-.95,1.51-1.1,1.96.43-.12.8-.08.84-.08l.72.1-.51.49c-.6.56-1.24,1.35-1.28,1.59-.1.36-.12.64-.16.97-.07.75-.14,1.55-1.05,2.54,1.91-.02,3.98-.63,6.44-1.86.59-.29.88-1.22.97-1.55l.09-.47c-1.45,1.11-2.86,1.46-4.02,1.73l-1.06.26h-.01s.38-.69.38-.69c.2-.37.26-1.15.32-1.97.1-1.33.22-2.97,1-4.15h-.53c-.41.41-.75.79-1.02,1.14h0Z"/>
<path class="f" d="M43.02,179.59c.31-.11.55-.19.78-.25.51-.16.82-.26,1.29-.59.08-.21.18-.45.32-.72-.43.24-.92.47-1.48.65-2.45.84-4.47.93-4.56.93h-.4v.02s0-.02,0-.02h0l.04-.37s.02-.14.04-.33c-.42.36-.89.71-1.43,1.03,1.38.34,3.38.35,5.4-.35Z"/>
<path class="f" d="M43.72,178.05c1.2-.4,2.06-1,2.62-1.42.16-.2.34-.41.54-.63h-1.45v-.72c-.94.07-2.15.47-2.9.83-.97.47-1.68,1.13-2.44,1.86-.07.07-.15.14-.22.21-.04.25-.09.52-.13.72.7-.06,2.24-.26,3.98-.85Z"/>
<path class="f" d="M89.24,181.89c-.13-1.53.31-2.14.79-2.76.48-.66.96-1.34.98-3.14h-.25c-.1,1.39-.76,2.25-1.32,2.95-.5.61-.79.99-.7,1.48l.09.63h0s0,0,0,0l-.56-.25c-1.81-.85-3.48-2.03-3.61-4.81h-.81c.26,2.65,2.18,4.77,5.4,5.9Z"/>
<path class="f" d="M102.02,166.66c.44.85,1.03,1.42,1.79,1.73.36-.15.69-.41,1.01-.75-.66-.69-1.15-1.68-1.42-2.82l-1.38,1.84Z"/>
<path class="f" d="M15.84,205.39v2.91h.14v-2.65c-.05-.09-.09-.17-.14-.26Z"/>
<path class="f" d="M134.78,201.9c.06-.24.09-.48.13-.73H15.05s0,.02,0,.04c.04.23.08.46.14.69h119.58Z"/>
<path class="f" d="M110.99,179.64h.01v.02s-.01-.02-.01-.02h-.38c-.1-.01-2.13-.12-4.57-.94-.49-.16-.97-.37-1.44-.62.12.24.22.46.29.65.48.35.8.45,1.32.61.23.06.47.14.78.25,2.01.7,4.01.69,5.37.36-.54-.32-1.01-.67-1.43-1.04.02.19.04.32.04.32l.03.41Z"/>
<path class="f" d="M76.57,179.59c-.69.88-1.31,1.9-1.31,1.9l-.29.5v-.02l-.31-.48s-.62-1.03-1.3-1.91l-.21-.26c-.84-1.09-1.7-2.18-1.84-3.32h-2.37c.03.38.12.77.23,1.16h.01s0,.02,0,.02c.47,1.62,1.55,3.27,2.53,4.59h0s0,0,0,0c.02.03.04.06.06.08.25-.45.53-.57.59-.62l.56-.2-.11.57c-.08.54-.13,1.42.07,1.7.86,1.18,1.74,1.77,2.14,1.99.39-.25,1.28-.81,2.13-1.98.21-.29.16-1.16.06-1.71l-.08-.56.55.19c.06.04.33.17.6.62.01-.02.02-.03.04-.05,0,0,0-.01,0-.02h.02c.96-1.28,2.03-2.91,2.52-4.5,0-.04-.02-.09-.02-.13h.06c.11-.39.17-.77.2-1.15h-2.44c-.14,1.14-1,2.26-1.85,3.33l-.2.26Z"/>
<path class="f" d="M16.66,208.3h.44v-1.08c-.15-.19-.3-.37-.44-.56v1.64Z"/>
<path class="f" d="M102.97,182.11l.39.68h-.01s-1.06-.25-1.06-.25c-1.17-.28-2.6-.62-4.06-1.75l.12.52c.07.33.39,1.27.97,1.55,2.48,1.23,4.54,1.85,6.44,1.86-.91-.99-.97-1.79-1.05-2.54-.02-.32-.05-.63-.13-.91-.05-.29-.7-1.07-1.28-1.64l-.51-.49.73-.1s.39-.04.81.08c-.14-.44-.44-1.1-1.07-1.93-.03-.02-.05-.03-.08-.05l.02-.02c-.27-.35-.61-.73-1.01-1.14h-.52c.78,1.19.9,2.81,1,4.14.05.82.11,1.6.31,1.97Z"/>
<path class="f" d="M102.15,181.8c-.08-.45-.12-.99-.17-1.61-.04-.49-.08-1.02-.15-1.54-.09,1.04-.4,1.82-.43,1.87l-.11.27h.01s-.01,0-.01,0h0s-.26-.05-.26-.05c-.08-.04-2.1-.49-3.63-2.24-.76-.91-1.07-1.97-1.19-2.5h-.79c.33.74,1.12,2.25,2.46,3.58,1.52,1.49,2.98,1.92,4.27,2.22Z"/>
<path class="f" d="M132.93,207.12s-.02.03-.04.05v1.13h.43v-1.69c-.12.17-.26.34-.39.51Z"/>
<path class="f" d="M134,208.3h.14v-2.97c-.05.09-.09.18-.14.27v2.71Z"/>
<path class="f" d="M83.18,180.4c.24-.38.6-.49.81-.49h.42l-.11.42s-.16.74.16,1.25c.39.69,3.45,3.18,6.58,3.69-.81-1.71-.43-2.79.14-3.99.02-.38-.06-1.17-.11-1.46l-.07-.54.53.16s.24.12.49.36c.38-.81.68-1.76.68-3.5,0-.1-.01-.2-.02-.31h-.98c-.02,2.05-.61,2.88-1.1,3.53-.49.63-.86,1.16-.6,2.81l.08.52h0s0,0,0,0l-.51-.15c-3.82-1.16-6.12-3.59-6.39-6.71h-1.42c-.03.42-.1.85-.22,1.28.14.79.57,1.91,1.66,3.13Z"/>
<path class="f" d="M110.4,180.87c-1.21,0-2.5-.21-3.67-.62-.29-.12-.54-.19-.73-.26-.32-.1-.6-.19-.88-.32,0,0,0,0,0,0l-.02.75-.55-.44c.32.39.64.84.67,1.13.1.33.13.68.17,1.01.01.11.02.22.04.33.26.1.74.26,1.48.3-.17-.7.08-.98.17-1.05l.32-.27.2.37s.51.96,1.53,1.07c2.7.27,5.73-.9,7.09-1.66-1.2-.17-2.17-.46-2.98-.83-.8.31-1.78.47-2.83.47h0Z"/>
<path class="f" d="M96.72,181.27c.32.24.44.27.63.41.16-.32.42-.54.45-.56l.42-.34c-.28-.21-.55-.45-.83-.72-1.66-1.64-2.48-3.45-2.73-4.06h-1.28c.09,2.08,1.01,3.55,3.33,5.28Z"/>
<path class="f" d="M95.88,170.62h-.95c-1.1,0-2,.99-2.13,2.27h1.81c.1-.93.57-1.73,1.28-2.27Z"/>
<path class="f" d="M100.88,179.97c.22-.67.62-2.42-.19-3.98h-3.79c.12.49.4,1.33,1,2.04,1.04,1.22,2.4,1.76,2.98,1.93Z"/>
<path class="f" d="M56.04,164.78c-.07.08-.14.16-.24.25h.45l-.02-.27-.19.03Z"/>
<path class="f" d="M55.56,164.57c-.1-.07-.2-.13-.32-.22-.23.12-.5.21-.81.21h0c-.72-.01-1.7-.43-2.93-1.76l-.16-.16.16-.17c1.79-1.91,2.98-1.92,3.72-1.54.12-.08.22-.15.32-.22-.22-.18-.52-.34-.88-.43h-1.37c-.23.06-.46.14-.7.26l-.05.56-.64-.1c-.54.33-1.38.98-2.09,1.65.7.66,1.55,1.3,2.09,1.65l.64-.1.05.54c.25.12.49.2.73.26h1.46c.3-.09.55-.24.76-.45Z"/>
<path class="f" d="M60.13,164.78c-.07.08-.14.16-.24.24h.46l-.03-.27-.19.03Z"/>
<path class="f" d="M78.87,162.16c-.05-.79-.25-1.36-.69-1.95l-1.12.36c.44.49.71,1.12.71,1.82,0,.82-.36,1.55-.93,2.06l1.02.56c.69-.79,1.06-1.8,1-2.85Z"/>
<path class="f" d="M52.04,162.66c1.08,1.11,2.01,1.56,2.76,1.36-.46-.35-.96-.76-1.4-1.19l-.18-.17.18-.19c.43-.42.92-.83,1.38-1.18-.74-.2-1.68.26-2.74,1.37Z"/>
<path class="f" d="M64.24,164.78c-.07.08-.14.16-.23.24h.44v-.27l-.2.03Z"/>
<path class="f" d="M68.43,164.77c-.09.09-.19.17-.3.26h.44l-.02-.27-.12.02Z"/>
<path class="f" d="M56.22,160.55l.02-.25h-.44c.1.07.19.15.27.23l.15.02Z"/>
<path class="f" d="M61.52,160.29c-.23.06-.46.14-.7.26l-.06.56-.66-.1c-.53.33-1.38.98-2.09,1.65.7.66,1.55,1.3,2.09,1.65l.66-.1.06.54c.26.12.5.2.73.26h1.46c.3-.09.56-.24.76-.46-.1-.07-.19-.12-.3-.2-.23.11-.49.21-.81.21h0c-.73-.01-1.7-.43-2.94-1.76l-.16-.16.16-.17c1.75-1.88,2.96-1.94,3.73-1.54.11-.08.21-.15.31-.21-.21-.2-.46-.35-.75-.44h-1.5Z"/>
<path class="f" d="M60.25,162.66c1.07,1.1,2.01,1.55,2.75,1.35-.46-.35-.95-.77-1.38-1.18l-.18-.17.18-.19c.43-.41.92-.82,1.38-1.17-.74-.19-1.67.26-2.74,1.36Z"/>
<path class="f" d="M60.32,160.55l.03-.25h-.45c.1.07.19.15.27.23l.14.02Z"/>
<path class="f" d="M57.41,160.29c-.22.06-.45.14-.7.26l-.05.56-.64-.1c-.54.33-1.4.98-2.11,1.65.72.64,1.54,1.29,2.07,1.6l.05.05.64-.1.05.54c.26.12.5.2.74.26h1.46c.3-.09.56-.24.77-.46-.1-.07-.2-.13-.31-.21-.23.12-.51.22-.84.22h.02c-.73-.01-1.68-.43-2.93-1.76l-.13-.16.13-.17c1.76-1.89,2.97-1.94,3.73-1.54.12-.08.22-.15.32-.22-.23-.18-.53-.34-.89-.44h-1.37Z"/>
<path class="f" d="M56.12,162.66c1.08,1.11,2.03,1.56,2.78,1.35-.46-.35-.95-.76-1.38-1.18l-.17-.17.17-.19c.42-.41.91-.82,1.36-1.17-.75-.2-1.68.25-2.76,1.36Z"/>
<path class="f" d="M76.76,160.29l.55-1.03c-.67-.48-1.48-.74-2.3-.76-.82.02-1.64.29-2.3.76l.55,1.02c.48-.4,1.09-.64,1.76-.64s1.28.25,1.76.65Z"/>
<path class="f" d="M98.18,164.78l-.31-.05v.29h2.82c-.18-.54-.28-1.1-.29-1.92-.75.68-1.61,1.32-2.14,1.63l-.07.05Z"/>
<path class="f" d="M78.16,159.09l-.27.48.49-.16.16.18s.01.02.02.02h22.59s0-.02.01-.02l.16-.32.27.16-.17-.27.08-.17s.03-.05.04-.08h-23.58l.2.19Z"/>
<path class="f" d="M71.46,159.59l.16-.18.48.16-.26-.48.2-.19h-23.58s.02.04.03.06l.08.17-.18.27.29-.16.16.32s.01.03.02.05h22.59s.01-.02.02-.02Z"/>
<path class="f" d="M72.94,160.57l-1.1-.36c-.44.59-.66,1.16-.7,1.95-.07,1.05.3,2.07.99,2.85l1.04-.56c-.57-.51-.93-1.23-.93-2.06,0-.71.27-1.34.71-1.83Z"/>
<path class="f" d="M51.81,160.5l.31.05.02-.25h-3c.22.6.36,1.2.41,1.94.75-.69,1.63-1.36,2.18-1.69l.08-.05Z"/>
<rect class="f" x="69.41" y="101.78" width="11.16" height=".49"/>
<path class="f" d="M52.12,164.75l-.31.05-.08-.05c-.54-.33-1.41-.98-2.16-1.67-.02.8-.11,1.38-.3,1.95h2.88l-.02-.27Z"/>
<path class="f" d="M72.56,166.32l-.21-.13.19-.63-.54.29-.16-.14h-22.84c-.03.07-.06.14-.09.21l-.13.29-.37-.14.36.45-.02.05,24.3.02c-.17-.07-.33-.16-.48-.26Z"/>
<path class="f" d="M74.97,157.79h.04c.64.01,1.26.16,1.83.42h25.07c.15-.25.31-.46.47-.64h-54.74c.16.19.32.4.46.64h25.06c.57-.25,1.19-.4,1.82-.42Z"/>
<path class="f" d="M74.99,160.32c-1.17,0-2.1.94-2.1,2.08s.94,2.09,2.09,2.09,2.09-.92,2.09-2.09-.94-2.07-2.08-2.08ZM75,164.13c-.96,0-1.71-.76-1.71-1.73s.73-1.71,1.68-1.71h.04c.94,0,1.7.78,1.7,1.71s-.76,1.73-1.71,1.73Z"/>
<path class="f" d="M65.92,183.1c.17-.14.33-.24.38-.26l.69-.38-.19.75c-.18.66-.27,1.38-.23,1.55.2.48.36,1.06.45,1.49.66-.33,1.91-1.07,2.76-1.95.17-.18.17-.76.1-1.13l-.17-.8.69.47s.29.18.48.42c.13-.29.16-.68.13-1.26-.25-.34-.51-.71-.76-1.09-.56,1.97-2.14,2.85-2.21,2.88l-.36.19h.01s-.12-.39-.12-.39c-.03-.07-.44-1.32-.62-2.36-.01.01-.02.03-.04.04l-.44.47-.12-.56c-.04.25-.11.53-.26.79-.05.09-.15.21-.26.33h0c0,.21.04.53.07.81Z"/>
<path class="f" d="M75,161.37h-.02c-.57,0-1.01.45-1.01,1.03s.45,1.04,1.03,1.04,1.03-.47,1.03-1.04-.43-1.03-1.01-1.03Z"/>
<path class="f" d="M97.85,160.53l.33-.05.07.05c.54.33,1.41.98,2.17,1.66.05-.74.19-1.32.42-1.9h-3v.24Z"/>
<path class="f" d="M77.99,165.85l-.55-.29.18.63-.2.13c-.15.11-.31.19-.48.26l24.3-.02v-.02s.35-.45.35-.45l-.38.14-.16-.29c-.04-.08-.07-.16-.1-.24h-22.8l-.15.14Z"/>
<path class="f" d="M64.43,160.55v-.25h-.41c.08.07.14.14.2.22l.21.03Z"/>
<path class="f" d="M75,165.17c-.55,0-1.06-.16-1.49-.44l-.36,1.18h.01c.54.3,1.23.35,1.84.41.61-.05,1.31-.11,1.84-.41l-.35-1.18c-.43.27-.93.44-1.48.44h-.01Z"/>
<path class="f" d="M89.73,162.65c-1.06-1.1-1.99-1.56-2.72-1.37.46.35.94.76,1.36,1.17l.18.19-.18.17c-.43.42-.93.84-1.39,1.19.74.2,1.68-.25,2.75-1.35Z"/>
<path class="f" d="M82.26,183.95h.01s-.36-.18-.36-.18c-.06-.03-1.63-.89-2.18-2.83-.26.39-.52.76-.77,1.11-.02.55,0,.93.13,1.22.2-.24.44-.41.49-.42l.69-.47-.17.8c-.08.36-.1.93.1,1.13.85.87,2.13,1.6,2.76,1.95.1-.43.25-1.01.45-1.5.06-.16-.05-.88-.21-1.54l-.2-.75.69.38c.06.02.23.13.38.26.05-.28.07-.58.08-.82-.12-.14-.22-.26-.27-.35-.16-.25-.23-.53-.26-.79l-.11.56-.45-.47s-.02-.02-.03-.03c-.18,1.05-.6,2.28-.62,2.35l-.14.38Z"/>
<path class="f" d="M84.17,165.02c.28-.06.57-.15.88-.29l.04-.54.66.1c.53-.33,1.4-.99,2.1-1.65-.7-.66-1.58-1.31-2.1-1.65l-.66.1-.04-.56c-.2-.1-.4-.18-.59-.24h-1.6c-.32.1-.58.25-.79.42.11.07.22.14.35.23.75-.39,1.96-.34,3.72,1.55l.17.17-.17.16c-1.24,1.31-2.2,1.74-2.93,1.74h-.01c-.31,0-.57-.09-.8-.2-.12.08-.21.14-.32.21.25.2.57.36.97.45h1.1Z"/>
<path class="f" d="M88.35,165.02c.26-.06.52-.15.82-.27l.04-.54.66.1c.55-.35,1.41-.99,2.1-1.65-.7-.66-1.56-1.31-2.1-1.65l-.66.1-.04-.56c-.22-.11-.43-.19-.64-.25h-1.62c-.27.09-.49.23-.68.42.1.07.19.13.31.21.77-.4,1.98-.32,3.72,1.55l.14.17-.14.16c-1.24,1.31-2.21,1.74-2.94,1.74h0c-.3.01-.57-.08-.81-.2-.11.08-.21.14-.31.21.22.23.5.39.83.47h1.32Z"/>
<path class="f" d="M92.46,165.02c.26-.06.53-.15.83-.27l.02-.54.67.1.04-.05c.51-.31,1.35-.96,2.04-1.6-.69-.66-1.55-1.31-2.09-1.65l-.67.1-.02-.56c-.23-.11-.44-.19-.65-.25h-1.49c-.33.1-.61.24-.83.42.11.07.21.14.32.22.76-.4,1.97-.34,3.74,1.55l.16.17-.16.16c-1.25,1.31-2.22,1.74-2.95,1.74h.01c-.32.01-.58-.09-.8-.2-.11.08-.21.14-.31.21.23.23.5.39.83.47h1.32Z"/>
<path class="f" d="M85.54,164.72v.3h.45c-.1-.09-.18-.18-.26-.27l-.19-.03Z"/>
<path class="f" d="M93.86,162.65c-1.09-1.11-2.03-1.57-2.77-1.36.46.35.94.76,1.37,1.17l.17.19-.17.17c-.43.42-.92.83-1.37,1.18.74.21,1.69-.25,2.77-1.35Z"/>
<path class="f" d="M89.64,164.74v.29h.45c-.1-.08-.17-.17-.24-.26l-.21-.03Z"/>
<path class="f" d="M85.61,162.66c-1.07-1.1-2-1.56-2.73-1.38.47.35.96.77,1.39,1.19l.17.19-.17.17c-.44.42-.93.84-1.39,1.19.73.19,1.67-.26,2.73-1.36Z"/>
<path class="f" d="M79.41,161.29c.06.26.1.53.12.83.04.68-.07,1.35-.32,1.97.47,0,1.17-.26,2.32-1.43-.76-.8-1.5-1.26-2.12-1.37Z"/>
<path class="f" d="M69.72,180.13h.06c-.35-.57-.66-1.17-.91-1.78-.24.66-.64,1.41-1.3,2.2.03.69.33,1.79.51,2.39.51-.37,1.44-1.28,1.64-2.81Z"/>
<path class="f" d="M80.13,165.02c.26-.06.53-.15.83-.27l.04-.54.67.1c.53-.35,1.38-.99,2.09-1.65-.7-.66-1.56-1.31-2.09-1.65l-.67.1-.04-.56c-.24-.11-.45-.19-.66-.25h-1.28c.09.16.17.32.24.49.84.05,1.76.61,2.78,1.7l.16.18-.16.16c-1.11,1.21-2.02,1.77-2.81,1.77h-.01c-.09-.01-.17-.03-.25-.04-.07.13-.13.27-.21.4.08.02.15.05.24.07h1.14Z"/>
<path class="f" d="M80.25,180.11c.2,1.54,1.13,2.44,1.65,2.81.17-.61.47-1.69.51-2.38-.64-.77-1.03-1.5-1.28-2.15-.25.59-.55,1.16-.88,1.72h0Z"/>
<path class="f" d="M81.43,164.75l-.02.27h.45c-.11-.08-.2-.17-.28-.25l-.15-.02Z"/>
<path class="f" d="M81.55,160.53c.08-.08.17-.16.28-.23h-.41l.02.25.12-.02Z"/>
<path class="f" d="M70.76,164.08c-.24-.62-.36-1.28-.32-1.96.02-.3.07-.58.13-.84-.63.12-1.35.57-2.12,1.36,1.14,1.16,1.84,1.43,2.31,1.44Z"/>
<path class="f" d="M65.64,160.29c-.23.06-.46.14-.7.26l-.04.56-.64-.1c-.55.33-1.4.98-2.1,1.65.7.64,1.56,1.3,2.1,1.65l.64-.1.04.54c.26.12.5.2.74.26h1.33c.37-.1.68-.26.9-.45-.11-.07-.21-.13-.33-.22-.23.11-.49.2-.82.2-.72,0-1.68-.42-2.93-1.74l-.16-.16.16-.17c1.77-1.9,2.99-1.92,3.73-1.54.12-.08.22-.15.32-.22-.22-.18-.52-.34-.89-.44h-1.36Z"/>
<path class="f" d="M89.8,160.51c.07-.07.16-.14.25-.21h-.43v.24l.18-.02Z"/>
<path class="f" d="M85.78,160.49c.06-.06.11-.13.17-.19h-.42v.23l.25-.04Z"/>
<path class="f" d="M64.35,162.66c1.09,1.11,2.02,1.56,2.76,1.36-.46-.36-.96-.77-1.39-1.19l-.18-.17.18-.19c.44-.42.93-.83,1.4-1.19-.74-.2-1.68.27-2.77,1.38Z"/>
<path class="f" d="M69.04,160.55l-.05.56-.66-.1c-.54.33-1.38.98-2.11,1.65.73.66,1.58,1.3,2.11,1.65l.66-.1.05.54c.28.13.54.21.79.27h1.18c.07-.02.14-.04.21-.06-.09-.13-.15-.28-.23-.42-.08,0-.15.03-.23.03h-.01c-.8.01-1.7-.54-2.81-1.76l-.16-.16.16-.18c1.02-1.1,1.94-1.65,2.78-1.7.06-.17.15-.32.24-.48h-1.22c-.22.06-.45.14-.7.25Z"/>
<path class="f" d="M68.55,160.55l.02-.25h-.44c.1.07.19.15.27.23l.15.02Z"/>
<path class="f" d="M94.41,160.71c.1.07.2.13.32.22.74-.38,1.94-.36,3.73,1.55l.16.17-.16.16c-1.24,1.31-2.2,1.74-2.93,1.74h.01c-.32.01-.57-.08-.8-.2-.12.08-.22.15-.32.22.22.22.49.38.82.46h1.31c.26-.06.53-.15.82-.27l.02-.54.66.1c.54-.35,1.41-1,2.11-1.65-.72-.66-1.58-1.31-2.11-1.65l-.66.1-.02-.56c-.22-.11-.44-.19-.64-.25h-1.5c-.34.1-.62.24-.83.42Z"/>
<path class="f" d="M97.94,162.65c-1.06-1.12-2.01-1.58-2.74-1.37.46.35.95.76,1.38,1.18l.17.19-.17.17c-.43.43-.93.84-1.38,1.19.74.2,1.68-.25,2.75-1.36Z"/>
<path class="f" d="M54.18,185.33c1.13-.16,2.16-.68,2.41-1.13.29-.49.26-1.01.26-1.01l-.03-.42c-.36.55-.88,1.06-1.65,1.48l-.33.18h-.01l-.16-.33c-.32-.75-.39-1.98-.4-2.77-.19.15-.38.31-.59.46-.01.01-.02.02-.03.03.1.47.19.84.27,1.16.2.7.36,1.25.26,2.36Z"/>
<path class="f" d="M57.32,182.84c.14.05.32.18.47.42.41-.6.5-1.26.54-1.42-.05-.1-.09-.2-.14-.3l-.04-.11c-.02-.17-.02-.39-.02-.62l-.21.41-.26-.52c-.15.65-.36,1.32-.74,1.94l.42.2Z"/>
<path class="f" d="M93.75,164.74l-.02.29h.48c-.1-.08-.18-.17-.25-.25l-.21-.03Z"/>
<path class="f" d="M55.17,183.42c1.38-.91,1.65-2.13,1.92-3.4l.07-.35h.01c-.16-.39-.3-.84-.4-1.37-.37.86-.98,1.65-1.83,2.43,0,.41-.01,1.77.22,2.68Z"/>
<path class="f" d="M93.91,160.51c.07-.07.16-.14.25-.22h-.43l.02.24.15-.02Z"/>
<path class="f" d="M106.27,178.06c1.72.59,3.26.79,3.95.85-.03-.21-.08-.49-.13-.75-.06-.06-.12-.11-.18-.17-.75-.73-1.47-1.41-2.44-1.87-.74-.38-1.96-.77-2.91-.83v.71h-1.46c.21.23.41.46.58.67.55.43,1.41,1,2.59,1.39Z"/>
<path class="f" d="M72.87,93.66l-1.31.56c0,.78.08.94.53,1.49l1.48-.49c-.42-.39-.69-.94-.69-1.56h0Z"/>
<rect class="f" x="135.91" y="216.13" width=".78" height="11.02"/>
<path class="f" d="M76.44,98.28l-.19.16c-.55.48-.98,1.1-.98,1.1l-.24.35h8.43v-1.23l-.48-.54v-.64c0-.12-.08-.25-.23-.25h-5.24c-.37.43-.71.73-1.07,1.06Z"/>
<path class="f" d="M75,91.53c1.16,0,2.08.91,2.12,2.06l1.29-.55c-.08-1.7-1.12-2.73-2.81-2.82-.12.24-.29.59-.29.59l-.3.64-.31-.62s-.2-.37-.31-.61c-1.71.08-2.73,1.11-2.82,2.82l1.31.56c.04-1.14.96-2.07,2.12-2.07Z"/>
<path class="f" d="M73.59,95.25l-.68,1.46h.01c.36.42.69.72,1.06,1.04l.2.17c.31.29.59.6.8.86.19-.26.48-.57.8-.86l.2-.17c.36-.33.69-.61,1.06-1.04l-.66-1.45c-.37.33-.86.53-1.39.53s-1.04-.21-1.41-.54Z"/>
<polygon class="f" points="75 87.67 74.99 87.67 74.96 87.67 71.56 87.67 71.56 88.42 78.41 88.42 78.41 87.67 75 87.67"/>
<path class="f" d="M78.4,94.22l-1.28-.55c0,.62-.28,1.17-.7,1.56l1.44.48c.45-.55.54-.7.54-1.49Z"/>
<path class="f" d="M73.72,98.43l-.18-.17c-.36-.31-.7-.61-1.07-1.04h-5.22c-.13,0-.24.13-.24.25v.64l-.47.54v1.23h8.4l-.25-.36s-.43-.62-.98-1.1Z"/>
<path class="f" d="M75,92.21c-.81,0-1.44.64-1.44,1.46s.63,1.44,1.44,1.44,1.43-.66,1.43-1.44-.63-1.46-1.43-1.46Z"/>
<path class="f" d="M88.66,96.48c0-.05.03-.1.03-.16v-.05c0-.08-.03-.16-.04-.24-.01.06-.04.12-.04.19,0,.09.03.17.06.26Z"/>
<path class="f" d="M78.6,95.9c-.08.11-.18.23-.29.37l-.19.24-.45-.14.09.19h2.66v-.66h-1.81Z"/>
<path class="f" d="M131.25,210.95c-.42,0-.76.32-.76.74v1.48h1.68c.28-.33.67-.55,1.13-.6v-1.62h-2.04Z"/>
<path class="f" d="M86.61,97.22c.32.19.5.55.47.88v.13c-.01.55.29,1.04.74,1.33-.06-.21-.11-.41-.13-.64,0-.22.02-.43.08-.63-.57-.45-.93-1.2-.93-2.04s.35-1.56.91-2.01c-.04-.18-.07-.37-.06-.57.01-.21.06-.43.13-.64-.45.27-.76.78-.76,1.31v.14c.06.35-.12.68-.44.87-.35.21-.55.56-.55.94s.2.72.55.93Z"/>
<path class="f" d="M68.49,94.4v.11c0,.39.32.72.73.72h1.8c-.07-.22-.11-.47-.12-.82h-2.41Z"/>
<path class="f" d="M88.06,97.64c.06-.08.11-.16.18-.24l.08-.07c-.24-.27-.39-.66-.39-1.09,0-.38.13-.74.35-1.01l-.04-.04c-.08-.09-.15-.19-.22-.29-.3.33-.49.82-.49,1.35s.21,1.06.53,1.39Z"/>
<path class="f" d="M71.86,96.5l-.18-.24c-.11-.14-.2-.26-.29-.37h-1.82v.66h2.67l.09-.19-.47.14Z"/>
<path class="f" d="M80.76,95.23c.39,0,.72-.32.72-.72v-.11h-2.38c-.01.35-.05.6-.13.82h1.79Z"/>
<path class="f" d="M70.89,93.51v-.23c0-2.26,1.46-3.73,3.7-3.73.17,0,.21,0,.41.37.19-.37.23-.37.39-.37,2.24,0,3.71,1.47,3.71,3.73v.23l-.33.13.19.08h3.72c-.11-1.28-.73-2.03-1.29-2.45-.5-.38-.79-.96-.79-1.58v-.29c0-.17-.13-.3-.29-.3h-10.65c-.17,0-.29.13-.29.3v.29c0,.63-.31,1.19-.81,1.58-.55.41-1.18,1.17-1.28,2.45h3.73l.19-.08-.33-.13Z"/>
<rect class="f" x="134.66" y="216.13" width=".79" height="11.02"/>
<rect class="f" x="133.42" y="216.13" width=".74" height="11.02"/>
<rect class="f" x="137.16" y="216.13" width=".48" height="11.02"/>
<path class="f" d="M52.19,133.53c-.47-.27-.72-.78-.67-1.29,0-.07.02-.16.02-.26,0-1.22-.84-2.27-2.05-2.72.29.49.47,1.04.49,1.62.02.36-.03.7-.12,1.04.97.71,1.58,1.96,1.58,3.37s-.63,2.71-1.6,3.41c.1.35.16.73.15,1.12-.02.57-.19,1.13-.49,1.61,1.22-.44,2.05-1.52,2.05-2.75,0-.07-.01-.16-.02-.24-.04-.53.2-1,.67-1.29.67-.39,1.06-1.09,1.06-1.81s-.39-1.4-1.06-1.8Z"/>
<path class="f" d="M47.8,159.1c-.48-.99-.94-1.49-1.61-1.77-.36.14-.7.41-1.01.75.66.7,1.15,1.69,1.41,2.84l1.21-1.82Z"/>
<path class="f" d="M49.6,132.57c-.13.25-.28.49-.48.7l-.14.17s-.05.07-.08.11c.42.43.68,1.06.68,1.75s-.28,1.34-.73,1.76c.05.06.09.12.14.18l.14.14c.17.19.31.4.43.62.73-.59,1.2-1.61,1.2-2.73s-.45-2.11-1.16-2.71Z"/>
<path class="f" d="M132.46,214.25v1.19h5.18v-1.19c0-.54-.45-.98-.98-1.01h-3.22c-.54.03-.98.47-.98,1.01Z"/>
<path class="f" d="M48.53,134.14c-.16.36-.26.75-.26,1.16v.08c0,.39.08.76.23,1.1.26-.3.42-.74.42-1.19s-.14-.86-.39-1.16Z"/>
<path class="f" d="M46.62,164.63l1.83.72c.33-.79.44-1.36.44-2.52s-.19-1.81-.54-2.65l-1.73.88c.12.56.19,1.16.19,1.77s-.07,1.22-.19,1.79Z"/>
<path class="f" d="M43.87,160.53c-.2.72-.31,1.5-.31,2.3s.11,1.59.31,2.32c.47-.48.76-1.36.76-2.32s-.31-1.81-.76-2.3Z"/>
<path class="f" d="M44.11,165.85c.18.47.39.9.63,1.27.86-.96,1.4-2.53,1.4-4.26s-.54-3.3-1.4-4.25c-.25.37-.45.8-.64,1.25.74.57,1.2,1.7,1.2,2.99s-.45,2.43-1.19,3.01Z"/>
<path class="f" d="M46.19,168.37c.76-.31,1.35-.88,1.78-1.73l-1.38-1.86c-.26,1.15-.75,2.15-1.41,2.84.32.34.65.6,1.01.75Z"/>
<path class="f" d="M74.97,47.71s.02,0,.02,0h0s.1,0,.1,0c1.87-.06,3.36-1.58,3.36-3.45s-1.55-3.45-3.45-3.46h-.05c-1.9.01-3.45,1.58-3.45,3.46s1.49,3.39,3.35,3.45h.13Z"/>
<path class="f" d="M61.33,95.99c-.02.09-.05.18-.05.27v.07c0,.06.02.12.03.18.02-.09.05-.16.05-.26,0-.09-.02-.17-.04-.25Z"/>
<path class="f" d="M75,48.39h0s-.02,0-.02,0h0s-.01,0-.01,0h-2.69v.54h2.71v.68h-3.09c-.45,0-.82.35-.82.74s.37.74.82.74h6.18c.45,0,.84-.35.84-.74s-.38-.74-.84-.74h-3.08v-.68h2.72v-.54h-2.72Z"/>
<rect class="f" x="72.41" y="51.77" width="5.16" height=".51"/>
<path class="f" d="M54.73,115.12c-.1.25-.15.52-.15.78v.07c0,.27.05.53.13.77.15-.22.25-.51.25-.83s-.09-.58-.23-.79Z"/>
<path class="f" d="M55.61,113.84c-.1.18-.22.34-.36.49l-.12.13s-.02.03-.03.04c.33.36.54.87.54,1.43s-.22,1.08-.58,1.44c.02.03.04.06.06.09l.12.13c.13.14.24.28.33.44.53-.48.88-1.26.88-2.11s-.32-1.6-.84-2.08Z"/>
<path class="f" d="M57.66,114.56c-.39-.23-.62-.66-.56-1.1v-.18c0-.92-.58-1.71-1.44-2.09.17.34.29.73.3,1.14,0,.29-.03.57-.1.84.78.59,1.27,1.6,1.27,2.74s-.5,2.19-1.29,2.77c.08.29.13.59.12.91-.01.41-.13.81-.31,1.17.86-.39,1.44-1.17,1.44-2.1v-.19c-.05-.43.17-.85.56-1.1.51-.33.82-.84.82-1.38s-.31-1.11-.82-1.43Z"/>
<path class="f" d="M61.96,94.88c-.07.11-.14.21-.23.31l-.04.04c.22.27.36.63.36,1.02,0,.42-.15.81-.38,1.08l.06.06c.07.08.13.16.19.25.33-.33.54-.83.54-1.41s-.19-1.04-.5-1.36Z"/>
<path class="f" d="M63.93,96.29c0-.38-.2-.72-.56-.94-.31-.2-.49-.53-.45-.87v-.1c0-.59-.29-1.09-.76-1.36.07.21.12.42.12.64.01.19-.01.38-.05.56.56.45.92,1.2.92,2.02s-.36,1.6-.94,2.05c.05.2.08.41.06.63,0,.23-.04.43-.12.64.48-.29.76-.76.76-1.33v-.13c-.04-.35.14-.69.45-.88.36-.2.56-.55.56-.93Z"/>
<rect class="f" x="132.46" y="216.13" width=".47" height="11.02"/>
<rect class="f" x="130.5" y="213.84" width=".47" height="11.07"/>
<path class="f" d="M85.91,97.51c-.06-.06-.11-.13-.16-.2-.4.4-1.13,1.17-1.61,1.9v.13c.69-.86,1.37-1.5,1.77-1.83Z"/>
<polygon class="f" points="82.17 100.56 82.17 101.77 81.25 101.77 81.25 102.27 82.5 102.27 82.5 100.56 82.17 100.56"/>
<path class="f" d="M131.47,224.91h.3v-10.65c0-.15.02-.28.06-.42h-.36v11.07Z"/>
<path class="f" d="M83.3,100.56h-.12v.24c.04-.08.08-.16.12-.24Z"/>
<path class="f" d="M79.1,87h.51c.29,0,.57-.13.76-.36.2-.21.27-.49.24-.79l-2.91-23.35c-.19-1.49-.24-3.01-.17-4.51l.26-4.48.2-.55h-6.1l.24.62.24,4.41c.07,1.5,0,3.02-.17,4.51l-2.93,23.35c-.04.3.05.56.25.79.19.23.47.36.78.36h8.79Z"/>
</g>
<g>
<path class="d" d="M7.47,201.53c-3.1,0-6.09-2.52-7.12-6.22-1.19-4.3.73-8.61,4.29-9.59,3.56-.99,7.43,1.72,8.62,6.02.37,1.38.29,3.27.06,4.57l-.66-.11c.18-1.24.3-3.01-.07-4.29-1.1-3.95-4.58-6.44-7.78-5.54-3.2.88-4.91,4.81-3.81,8.76,1.06,3.8,4.35,6.26,7.47,5.6l.13.67c-.38.1-.76.13-1.13.13"/>
<path class="d" d="M8.21,211.84c-3.68,0-6.67-4.08-6.67-9.1,0-1.43.23-2.83.7-4.11l.66.24c-.45,1.23-.68,2.51-.68,3.87,0,4.64,2.7,8.42,6.01,8.42,3.01,0,5.75-3.82,6.01-8.32l.69.05c-.29,4.94-3.28,8.95-6.7,8.95"/>
<path class="d" d="M135.09,199.32c0,.39-.02.79-.06,1.17H14.96c-.04-.38-.06-.78-.06-1.17,0-.57.05-1.12.12-1.66h119.95c.08.54.12,1.09.12,1.66M96.64,181.96s-.74,2.81-.66,3.92c-1.12-.16-2.83-1.47-3.08-1.92-.29-.49-1.9-1.16-1.9-1.16l.37,2.81c-3.13-.5-6.41-2.87-6.82-3.56,0,0-.74-.53-.59-.27.05.1.25.37.36.5,0,0-.1.81-.16,1.1-.16-.14-.44-.26-.5-.29l-.51-.26.3.69c.17.66.18,1.06.12,1.22-.2.49-.45,1.35-.55,1.78-.64-.33-2.02-1.03-2.87-1.89-.19-.19-.7-.79-.62-1.15l.05-.47s-.43.36-.64.6c-.12-.27-.39-.94-.37-1.49l-.31.49c-.25-.45-.85-.64-.85-.64.1.55.21,1.24,0,1.54-.85,1.17-2.09,1.85-2.48,2.1-.38-.24-1.1-.36-1.96-1.55-.2-.27-.62-1.13-.54-1.67l.23-1.04-.44.07c-.06.04-.27.37-.51.82l-.36-.07c.04.57-.2,1.25-.33,1.54-.19-.24-.44-.51-.49-.53l-.61-.49.26.62c.07.37.06,1-.11,1.18-.85.86-2.51,1.7-3.16,2.04-.08-.43-.8-1.86-.63-2.52l.43-1.28-.39.33-.82.61c.11-.13-.13-.82-.07-.92l.04-.73c-.38.69-3.75,3.04-6.89,3.56.81-1.71,0-3.49.04-3.39-.02.1-.39.74-.82,1.38-.14-.24-.76-.32-.76-.32,0,0,.12.57-.17,1.06-.25.45-1.74,1.07-2.88,1.23-.38-.98-.07-1.74-.29-2.45-.07-.32-.33-1.5-.56-1.37,0,0-.74-.01-1.25.31-.69.44-1.23,1.28-1.56,1.44-2.46,1.23-4.56,1.34-6.46,1.36.91-.99.7-2.08.7-2.08l-2.02.13s-.59.08-1.62.19c-2.69.27-7.38-1.19-6.47-.79-13.25,3.46-20.27,9.34-20.27,17.01,0,7.14,6.22,13.04,17.96,17.01,10.76,3.65,25.57,5.59,42.85,5.59h.06c17.26,0,32.08-1.92,42.84-5.59,10.29-3.49,16.27-8.45,17.6-14.43.05-.24.1-.49.13-.73l.08-.68c.04-.38.06-.78.06-1.17,0-.56-.04-1.11-.12-1.66l-.12-.68c-.05-.24-.11-.49-.17-.73-1.65-6.18-8.35-10.96-19.77-13.94,0,0-3.77,1.03-6.47.76-1.01-.12-1.76-1.12-1.76-1.12-.08.07-.45.3-.29,1-.69-.04-1.6.05-1.86-.05-.01-.12.13,1,1.03,1.99-1.9-.02-4.33-.31-6.81-1.54-.57-.29-1.01-.99-1.09-1.31l-.23-1s-.6.67-.75.99c-.2-.13-.29-.25-.61-.49M134.66,196.27c.07.24.13.48.18.73H15.13c.05-.24.12-.49.18-.73h119.34ZM134.79,201.9H15.19c-.06-.24-.11-.49-.14-.73h119.89c-.04.24-.1.49-.14.73"/>
<path class="d" d="M11.6,195.96l-.63-.25c.04-.1.94-2.46-.78-4.97l.59-.41c1.9,2.83.87,5.52.82,5.62"/>
<path class="d" d="M46.19,169.08l-.11-.05c-.61-.19-1.16-.61-1.65-1.19l.53-.44c.37.47.79.79,1.23.97.76-.31,1.35-.88,1.78-1.73l-1.54-2.08,2.02.8c.33-.79.44-1.36.44-2.52s-.19-1.81-.54-2.65l-1.92.98,1.37-2.07c-.48-.99-.94-1.49-1.61-1.77-.44.17-.86.5-1.23.97l-.53-.44c.49-.6,1.04-1,1.65-1.22l.11-.05.12.05c.96.33,1.59,1,2.18,2.32l.08.17-.18.27.29-.16.16.32c.48,1.05.74,1.87.74,3.26s-.2,2.09-.67,3.09l-.13.29-.37-.14.36.45-.1.19c-.56,1.18-1.34,1.93-2.38,2.3l-.12.05v.02Z"/>
<path class="d" d="M44.66,168.1l-.21-.26c-.45-.54-.81-1.21-1.07-1.98l.64-.24c.2.56.44,1.06.73,1.49.86-.96,1.4-2.53,1.4-4.26s-.54-3.3-1.4-4.25c-.29.43-.53.93-.73,1.47l-.64-.21c.26-.75.62-1.43,1.07-1.98l.21-.29.26.24c1.17,1.03,1.89,2.94,1.89,5.01s-.72,4.01-1.89,5.04l-.26.21h0Z"/>
<path class="d" d="M43.5,166.23l-.13-.38c-.31-.92-.49-1.96-.49-3.01s.18-2.08.49-2.98l.13-.38.35.2c.9.49,1.46,1.73,1.46,3.16s-.56,2.7-1.46,3.19l-.35.2h0ZM43.87,160.53c-.2.72-.31,1.5-.31,2.3s.11,1.59.31,2.32c.47-.48.76-1.36.76-2.32s-.31-1.81-.76-2.3"/>
<rect class="d" x="48.68" y="159.61" width="22.88" height=".68"/>
<rect class="d" x="48" y="158.21" width="25.26" height=".69"/>
<rect class="d" x="48.82" y="165.02" width="23.16" height=".68"/>
<rect class="d" x="73.05" y="170.28" width=".69" height="2.95"/>
<rect class="d" x="68.13" y="170.28" width=".68" height="2.95"/>
<path class="d" d="M64.61,173.22h-.68c0-1.59-.27-2.51-.42-2.65.01.02.05.05.1.05v-.69c.93,0,1,2.52,1,3.3"/>
<path class="d" d="M60.95,173.22h-.68c0-1.59-.56-2.6-.96-2.6v-.69c.92,0,1.64,1.41,1.64,3.3"/>
<path class="d" d="M57.91,173.22h-.69c0-1.43-.98-2.6-2.16-2.6v-.69c1.55,0,2.85,1.47,2.85,3.3"/>
<path class="d" d="M55.41,173.22h-.67c0-1.43-1.19-2.6-2.65-2.6v-.69c1.83,0,3.33,1.47,3.33,3.3"/>
<path class="d" d="M68.79,152.83c-.73-1.11-1.98-2.15-2.47-2.54-.41.35-1.34,1.21-2.07,2.24l-.56-.37c1-1.46,2.36-2.53,2.41-2.58l.2-.16.21.16c.07.05,1.85,1.37,2.84,2.89l-.57.37h0Z"/>
<path class="d" d="M69.23,151.65c-.48-1.38-2.29-2.94-2.91-3.43-.43.36-1.48,1.21-2.17,2.32l-.56-.36c.96-1.56,2.48-2.63,2.55-2.66l.19-.14.2.14c.12.07,2.7,2.03,3.34,3.9l-.63.21h-.01Z"/>
<path class="d" d="M69.89,150.4c-.06-.43-.24-1.12-.39-1.48-.16-.39-.36-.92-.66-1.36l-.94.75.18-.92c.05-.2.07-.68-.07-.9-.24-.32-1.01-1.03-1.49-1.43-.45.41-1.23,1.12-1.47,1.43-.16.2-.12.69-.07.9l.19.92-.96-.75c-.14.23-.24.48-.35.72-.1.17-.17.35-.25.51l-.61-.32c.08-.13.14-.3.23-.47.17-.36.32-.75.63-1.15l.23-.27.19.16c.02-.23.08-.44.21-.63.36-.51,1.65-1.61,1.8-1.73l.1-.1h.25l.1.1c.16.12,1.43,1.22,1.8,1.73.14.2.2.41.24.63l.19-.16.21.27c.45.59.74,1.29.96,1.79.16.42.37,1.18.43,1.66,0,0-.68.1-.68.1Z"/>
<path class="d" d="M57.72,186.08l.33-.56c1.11-1.93.63-2.94.12-3.99l-.04-.11c-.02-.17-.02-.39-.02-.62l-.21.41-.29-.56c-.5-1.03-1-2.08-1-4.33,0-.24.02-.48.06-.73l.67.11c-.04.2-.05.43-.05.62,0,1.74.3,2.69.69,3.5.23-.24.43-.32.48-.36l.53-.16-.07.54c-.04.29-.12,1.07-.1,1.46.59,1.19.94,2.28.13,3.99,3.14-.5,6.2-3,6.58-3.69.31-.5.14-1.24.14-1.24l-.1-.43h.43c.19,0,.56.11.8.49,1.18-1.36,1.58-2.55,1.7-3.35l.67.1c-.13.99-.64,2.51-2.24,4.11l-.44.47-.12-.56c-.04.25-.11.53-.26.79-.54.92-4.12,3.84-7.74,4.1l-.64.05h0Z"/>
<path class="d" d="M59.93,182.86l.06-.54c.27-1.65-.11-2.17-.6-2.81-.53-.7-1.17-1.56-1.1-3.88h.68c-.05,2.09.48,2.79.98,3.49.48.62.93,1.23.8,2.76,3.35-1.18,5.34-3.44,5.42-6.26h.69c-.12,3.31-2.46,5.87-6.42,7.08l-.51.16h0Z"/>
<path class="d" d="M61.15,181.06l.11-.64c.1-.49-.19-.87-.68-1.48-.61-.75-1.35-1.68-1.35-3.28h.68v.02c0,1.36.63,2.13,1.19,2.82.37.47.72.9.84,1.46,1.67-.88,2.76-1.99,2.76-4.32h.67c0,3.06-1.73,4.29-3.62,5.17l-.59.25h-.01Z"/>
<path class="d" d="M44.05,185.4c-.23,0-.45,0-.67-.01l-.82-.06.64-.55c1.24-1.11,1.31-1.83,1.38-2.66.04-.33.06-.67.17-1.06.05-.29.35-.69.67-1.09l-.54.44-.02-.69s0-1.83,2.58-4.32l.49.47c-1.49,1.44-2.04,2.58-2.26,3.25.43-.12.8-.08.84-.08l.72.1-.51.49c-.6.56-1.24,1.35-1.28,1.59-.1.36-.12.64-.16.97-.07.75-.14,1.55-1.05,2.54,1.91-.02,3.98-.63,6.44-1.86.59-.29.88-1.22.97-1.55l.11-.56.44.37s.3.24.43.56c.23-.13.35-.17.66-.41,2.42-1.81,3.34-3.33,3.34-5.61h.68c0,2.51-1.01,4.24-3.62,6.14-.41.32-.56.39-.88.55l-.84.43.06-.55c-.19.45-.53.99-1.07,1.23-2.61,1.31-4.86,1.95-6.9,1.95"/>
<path class="d" d="M46.63,182.8l.38-.68c.2-.37.26-1.15.32-1.97.12-1.58.25-3.58,1.48-4.75l.48.5c-1.05.99-1.18,2.82-1.29,4.3-.04.62-.07,1.16-.18,1.61,1.33-.3,2.79-.74,4.29-2.22,1.86-1.86,2.64-4.01,2.65-4.04l.64.23c-.02.11-.85,2.33-2.81,4.29-1.76,1.74-3.5,2.16-4.9,2.48l-1.06.26h-.01Z"/>
<path class="d" d="M48.67,180.78l-.1-.27c-.06-.1-1.13-2.72.2-4.99l.57.32c-.92,1.59-.48,3.45-.26,4.13.57-.18,1.91-.72,2.97-1.93.9-1.07,1.07-2.44,1.07-2.44l.69.07s-.2,1.58-1.24,2.82c-1.53,1.76-3.57,2.21-3.64,2.24l-.29.05h.01Z"/>
<path class="d" d="M40.03,183.59c-3.25,0-6.77-1.61-7.45-2.39l-.43-.51.67-.05c3.78-.29,5.32-1.76,6.81-3.15.79-.75,1.55-1.48,2.59-2.01.82-.39,2.21-.85,3.31-.92l.05.69c-.96.04-2.26.47-3.04.85-.97.47-1.68,1.13-2.44,1.86-1.37,1.31-2.93,2.78-6.32,3.25,1.36.78,4.39,1.93,7.08,1.66,1.03-.12,1.54-1.06,1.54-1.06l.19-.38.33.27c.1.07.35.35.17,1.05,1.11-.06,1.7-.39,1.71-.41l.35.59s-.93.55-2.55.5h-.48l.19-.47h0c-.33.25-.79.51-1.36.56-.3.04-.61.05-.91.05"/>
<path class="d" d="M38.97,179.64l.05-.39s.08-.7.2-1.31l.67.14c-.05.27-.11.6-.14.82.7-.06,2.24-.26,3.98-.85,1.22-.41,2.09-1.01,2.65-1.44l.42.54c-.59.44-1.54,1.11-2.85,1.54-2.45.84-4.47.93-4.56.93h-.41v.02Z"/>
<path class="d" d="M39.59,180.87c-1.11,0-2.14-.17-2.95-.51l.27-.63c1.33.54,3.71.7,6.11-.13.31-.11.55-.19.78-.25.54-.17.85-.26,1.37-.64l.41.57c-.61.44-1.01.54-1.59.72-.2.07-.43.14-.73.26-1.17.41-2.46.62-3.67.62"/>
<path class="d" d="M54.82,184.42l-.16-.33c-.49-1.15-.39-3.41-.39-3.52l.68.04s-.06,1.73.21,2.82c1.38-.91,1.65-2.13,1.92-3.4l.07-.35.67.13-.07.35c-.31,1.42-.64,3.03-2.59,4.1l-.33.18h-.01Z"/>
<path class="d" d="M53.41,186.06l.06-.41c.13-1.24,0-1.74-.2-2.51-.11-.33-.21-.74-.31-1.27l.67-.13c.11.5.2.88.29,1.22.2.7.36,1.25.26,2.36,1.13-.16,2.16-.68,2.41-1.13.29-.49.26-1.01.26-1.01l-.05-.59.51.24c.14.05.32.18.47.42.47-.69.53-1.46.55-1.46l.67.06s-.16,1.43-1.16,2.34l-.55.51v-.36c-.04.07-.05.12-.11.19-.48.86-2.11,1.44-3.35,1.49l-.39.02h-.02Z"/>
<path class="d" d="M12.28,204.02c-.9,0-1.81-.25-2.54-.73-1.09-.69-1.71-1.91-1.84-3.41-.1-1.31.21-2.67.86-3.63l.05-.07c.8-.78,2.57-.88,4.01-.27,1.31.56,2.07,1.59,2.09,2.85h-.68c-.02-1.33-1.06-1.97-1.67-2.22-1.15-.49-2.64-.42-3.25.12-.54.84-.82,2.03-.72,3.18.08,1.29.63,2.32,1.53,2.88.84.56,1.99.76,3,.55.68-.18,1.23-.51,1.5-.98l.59.36c-.38.62-1.06,1.09-1.93,1.27-.31.08-.64.12-.99.12"/>
<path class="d" d="M14.02,200.34c-1.04,0-2.1-.31-3.03-.91-1.1-.7-1.91-1.76-2.28-2.9l.66-.21c.32,1.01,1.03,1.9,1.99,2.54.98.64,2.1.92,3.15.79l.07.67c-.18.02-.38.04-.57.04"/>
<path class="d" d="M14.26,200.16c-.66-1.27-1.34-2.01-2.96-2.01v-.69c1.95,0,2.84.96,3.56,2.39,0,0-.6.31-.6.31Z"/>
<path class="d" d="M12.45,202.25c-.49,0-1.09-.16-1.77-.56l.35-.59c.86.54,1.6.61,2.23.25.63-.36.96-1.05.96-1.34h.68c0,.6-.49,1.5-1.29,1.95-.29.16-.68.3-1.16.3"/>
<path class="d" d="M8.28,198.77c-1.56-.16-3.92-1.7-4.98-3.92-1.4-3-.67-6.05.91-6.82.82-.38,1.93-.2,3.08.5,1.15.7,2.1,1.8,2.73,3.15.62,1.31.92,2.93.78,4.18l-.67-.07c.13-1.15-.13-2.61-.72-3.83-.56-1.19-1.48-2.24-2.5-2.88-.92-.56-1.83-.75-2.42-.45-1.24.59-1.78,3.37-.56,5.9.99,2.13,3.21,3.44,4.43,3.55l-.07.67v.02Z"/>
<path class="d" d="M7.96,207.38c-1.72,0-3.08-2.04-3.08-4.64,0-.69.11-1.36.3-1.99l.67.19c-.19.57-.29,1.17-.29,1.8,0,2.16,1.11,3.98,2.4,3.98.96,0,2.66-.41,3.46-3.22l.64.19c-.96,3.34-3.19,3.7-4.11,3.7"/>
<path class="d" d="M6.57,210.16c-1.43,0-2.81-.82-3.86-2.28l.55-.39c.93,1.29,2.1,2.01,3.31,2.01,2.28,0,4.26-2.46,4.84-5.96l.67.11c-.62,3.9-2.83,6.53-5.5,6.53"/>
<path class="d" d="M12.01,207.36l-.53-.42c1.04-1.25,1.11-3.25,1.11-3.25h.68c0,.1-.1,2.28-1.27,3.68"/>
<path class="d" d="M57.51,154.49l-.68-.08c.04-.23.05-.48.05-.69,0-1.68-.84-3.21-2.27-4.1l.35-.59c1.64,1.01,2.6,2.76,2.6,4.68,0,.26,0,.53-.05.78"/>
<path class="d" d="M60.81,154.49h-.69c0-2.85-1.38-5.52-3.73-7.15l.38-.55c2.53,1.74,4.04,4.62,4.04,7.7"/>
<path class="d" d="M52.23,154.46h-.68c0-1.18.41-2.3,1.16-3.2l3.14-3.73c.64-.78,1.01-1.74,1.01-2.77v-6.26h.69v6.26c0,1.17-.43,2.3-1.18,3.21l-3.12,3.73c-.66.75-1,1.74-1,2.76"/>
<path class="d" d="M64.04,154.56l-.67-.16c.49-2.03.47-4.48-.5-5.85-.38,1.47-1.31,1.91-1.37,1.93l-1.05.48.62-.99c.53-.82.72-2.57-.07-4.02-.31,1.01-1.16,1.64-1.19,1.68l-.8.59.27-.96s.47-1.67.1-2.76c-.13-.37-.33-.73-.59-1.09-.27-.39-.56-.62-.82-.82-.45-.39-.9-.75-1.11-1.86l.68-.13c.16.86.44,1.1.87,1.47.3.23.61.49.96.96.3.41.53.82.66,1.28.23.6.23,1.3.16,1.9.17-.32.29-.73.23-1.15l-.16-1.11.75.84c.98,1.1,1.29,2.45,1.22,3.64.07-.2.11-.41.12-.66l.1-.63.48.43c1.73,1.5,1.7,4.72,1.16,7.01"/>
<path class="d" d="M58.87,140.71l-.44-.5c1.13-1.04,1.77-2.59,1.77-4.33s-.66-3.26-1.77-4.31l.44-.5c1.29,1.19,2.01,2.95,2.01,4.81s-.7,3.65-2.01,4.84"/>
<path class="d" d="M57.67,139.33l-.39-.54c.85-.62,1.36-1.71,1.36-2.9s-.51-2.26-1.36-2.89l.39-.54c1.04.75,1.65,2.04,1.65,3.44s-.62,2.7-1.66,3.45"/>
<path class="d" d="M60.68,141.81l-.2-.04c-2.42-.57-4.18-3.06-4.18-5.89s1.74-5.28,4.14-5.86l.21-.06.13.18c.48.62.62.82.93,1.6l.04.13-.33.85h.7l.08.21c.1.24.39,1.33.39,2.35v.18l-.61.41.57.43v.17c.01.07.04,1.52-.42,2.38l-.08.17-.59.04.35.93-.05.1c-.26.68-.42.87-.7,1.23-.08.08-.17.18-.27.32l-.12.17h0ZM60.37,130.73c-1.98.62-3.39,2.73-3.39,5.15s1.44,4.57,3.44,5.17c.06-.05.08-.11.13-.17.26-.31.36-.47.54-.92l-.56-1.52,1.11-.08c.19-.51.26-1.29.26-1.7l-1.01-.79,1.04-.76c-.02-.64-.17-1.35-.27-1.72l-1.24-.02.64-1.49c-.23-.53-.36-.74-.67-1.15"/>
<path class="d" d="M63.39,147.76c-.2-2.6-1.47-5.19-2.58-6.41l.49-.45c1.17,1.24,2.54,3.93,2.77,6.82l-.68.05Z"/>
<path class="d" d="M65.47,145.93l-.69-.02c.06-1.74-.91-3.47-1.86-4.54l.5-.45c1.03,1.16,2.11,3.07,2.05,5.01"/>
<path class="d" d="M69.6,147.83l-.56-.38c.51-.73.56-1.15.6-2.29.06-1.42-.68-2.97-1.38-3.8l.5-.44c.8.92,1.62,2.65,1.56,4.29-.05,1.16-.1,1.77-.72,2.64"/>
<path class="d" d="M73.16,146.56l-.67-.02c.05-1.55-.8-3.93-1.62-5.21l.56-.37c.88,1.36,1.79,3.88,1.72,5.6"/>
<rect class="d" x="61.35" y="131.34" width="10.9" height=".68"/>
<path class="d" d="M71.76,124.92c-.12-1.05-.57-1.87-1.23-2.23-.5-.27-.94-.92-1.22-1.38-.27.47-.7,1.11-1.22,1.38-.48.27-.72.56-.87,1.06l-.66-.2c.2-.66.56-1.1,1.21-1.46.53-.29,1.06-1.3,1.22-1.66l.31-.7.32.7c.16.36.68,1.38,1.22,1.66.86.47,1.43,1.48,1.58,2.73l-.67.1h.01Z"/>
<path class="d" d="M47.61,142.39l.79-.69c.54-.49.88-1.19.91-1.93.04-.73-.2-1.42-.68-1.91l-.14-.17c-.59-.62-.9-1.44-.9-2.32v-.1c0-.88.32-1.72.9-2.34l.14-.14c.48-.53.72-1.19.68-1.92-.02-.74-.37-1.46-.91-1.92l-.79-.68,1.04.08c2.04.18,3.58,1.76,3.58,3.61,0,.12-.01.23-.01.31-.04.26.1.51.35.66.87.54,1.38,1.42,1.38,2.38s-.51,1.86-1.38,2.4c-.24.13-.38.38-.35.62,0,.12.01.21.01.31,0,1.9-1.54,3.44-3.58,3.64l-1.04.1v.02ZM49.5,129.25c.29.49.47,1.04.49,1.62.05.9-.26,1.76-.86,2.4l-.14.17c-.47.49-.72,1.15-.72,1.85v.08c0,.72.25,1.36.72,1.87l.14.14c.59.63.9,1.49.86,2.41-.02.57-.19,1.13-.49,1.61,1.22-.44,2.05-1.52,2.05-2.75,0-.07-.01-.16-.02-.24-.04-.53.2-1,.67-1.29.67-.39,1.06-1.09,1.06-1.81s-.39-1.4-1.06-1.8c-.47-.27-.72-.78-.67-1.29,0-.07.02-.16.02-.26,0-1.22-.84-2.27-2.05-2.72"/>
<path class="d" d="M49.63,138.84l-.35-.6c.9-.53,1.48-1.7,1.48-2.96s-.57-2.44-1.46-2.96l.35-.59c1.1.67,1.79,2.03,1.79,3.55s-.72,2.9-1.81,3.56"/>
<path class="d" d="M48.55,137.3l-.36-.56c.44-.27.72-.85.72-1.44s-.26-1.16-.68-1.43l.37-.57c.61.39.98,1.17.98,2.02s-.38,1.62-1.03,2.01"/>
<path class="d" d="M56.86,139.82c-1.24-3.04-3.4-4.18-3.43-4.19l.31-.61c.1.05,2.39,1.27,3.75,4.54l-.63.26Z"/>
<path class="d" d="M56.86,140.81c-.98-2.17-4.08-3.46-4.11-3.47l.26-.63c.14.05,3.38,1.4,4.49,3.82l-.63.29h-.01Z"/>
<path class="d" d="M60.32,100.6l.8-.69c.29-.26.47-.62.5-1.03.01-.38-.13-.75-.37-1.03l-.08-.1c-.35-.37-.56-.9-.56-1.44v-.05c0-.56.21-1.07.56-1.47l.08-.1c.25-.25.38-.62.37-1.01-.02-.42-.2-.79-.5-1.03l-.8-.69,1.05.1c1.28.11,2.23,1.1,2.23,2.27,0,0,0,.12-.01.19,0,.1.05.18.14.25.56.33.88.92.88,1.52s-.32,1.18-.88,1.52c-.08.06-.14.14-.14.25.01.05.01.13.01.13,0,1.24-.97,2.22-2.23,2.33l-1.05.1h0ZM62.15,93.02c.07.21.12.42.12.64.04.57-.16,1.11-.54,1.53l-.07.08c-.26.26-.38.62-.38.98v.07c0,.38.12.73.38,1l.07.07c.38.39.57.94.54,1.52,0,.23-.04.43-.12.64.48-.29.76-.76.76-1.33v-.13c-.04-.35.14-.69.45-.88.36-.2.56-.55.56-.93s-.2-.72-.56-.94c-.31-.2-.49-.53-.45-.87v-.1c0-.59-.29-1.09-.76-1.36"/>
<path class="d" d="M62.01,98.46l-.35-.6c.49-.29.8-.91.8-1.62s-.31-1.31-.79-1.6l.35-.59c.68.42,1.12,1.27,1.12,2.18s-.44,1.81-1.15,2.22"/>
<path class="d" d="M61.39,97.57l-.36-.6c.2-.12.33-.41.33-.73,0-.29-.13-.59-.32-.69l.38-.57c.38.26.63.75.63,1.28,0,.57-.26,1.09-.67,1.33"/>
<path class="d" d="M65.91,99.32c-.67-1.07-1.96-2.28-1.97-2.29l.48-.49s1.36,1.28,2.08,2.42l-.59.36Z"/>
<path class="d" d="M66.81,102.68c-.62-2.71-3.45-4.88-3.46-4.88l.39-.54c.12.1,3.07,2.33,3.75,5.27l-.68.17h0Z"/>
<path class="d" d="M53.78,121.77l.78-.7c.43-.37.69-.93.73-1.52.02-.57-.17-1.1-.55-1.49l-.12-.12c-.47-.51-.74-1.21-.74-1.93v-.07c0-.72.27-1.41.74-1.93l.12-.11c.38-.39.56-.93.55-1.5-.04-.56-.3-1.13-.73-1.52l-.78-.68,1.04.08c1.68.17,2.95,1.46,2.95,3.02v.24c-.04.19.06.36.24.47.72.45,1.15,1.19,1.15,2.01s-.43,1.53-1.15,1.96c-.18.11-.27.3-.24.47v.25c0,1.55-1.28,2.85-2.95,3l-1.04.11h0ZM55.66,111.18c.18.35.3.74.31,1.16.02.76-.2,1.47-.72,1.99l-.12.13c-.35.38-.55.92-.55,1.44v.07c0,.57.2,1.09.55,1.48l.12.13c.5.54.74,1.25.72,2.01-.01.41-.13.81-.31,1.17.86-.39,1.44-1.17,1.44-2.1v-.19c-.05-.43.17-.85.56-1.1.51-.33.82-.84.82-1.38s-.31-1.11-.82-1.43c-.39-.23-.62-.66-.56-1.1v-.18c0-.92-.59-1.72-1.44-2.09"/>
<path class="d" d="M55.66,118.85l-.36-.59c.7-.42,1.16-1.35,1.16-2.35s-.44-1.91-1.15-2.34l.36-.57c.91.55,1.47,1.67,1.47,2.91s-.57,2.41-1.49,2.94"/>
<path class="d" d="M54.78,117.61l-.36-.59c.33-.19.54-.63.54-1.11s-.2-.88-.51-1.09l.38-.59c.49.35.81.98.81,1.68s-.35,1.36-.87,1.7"/>
<path class="d" d="M62.06,129.74c-.13-.5-.2-1.04-.2-1.61,0-2.08,2.1-4.14,2.18-4.23l.24-.24.24.24c.08.08,2.17,2.15,2.17,4.23,0,.57-.06,1.11-.21,1.61l-.66-.17c.12-.45.19-.93.19-1.44,0-1.4-1.22-2.9-1.74-3.49-.54.59-1.76,2.1-1.76,3.49,0,.51.07.98.18,1.44l-.64.17h.01Z"/>
<path class="d" d="M68.79,129.72l-.68-.11c.1-.57.14-1.12.14-1.71,0-.99-.11-1.7-.36-2.34-.32.48-.79.57-.82.57l-.44.07.06-.44s.12-1.05-.04-1.8c-.07-.35-.5-.82-.94-1.34-.3-.32-.6-.67-.86-1.04l-.21,2.59-.68-.07.44-5.18.54,1.41c.24.63.8,1.28,1.3,1.84.54.61,1.01,1.13,1.1,1.67.07.38.11.82.08,1.19.05-.08.1-.23.11-.38l.11-.99.53.85c.56.92.8,1.91.8,3.39,0,.62-.05,1.22-.14,1.81"/>
<path class="d" d="M70.6,126.53c-.38-.66-.97-1.17-1.25-1.41-.2.16-.59.44-.9.85l-.53-.43c.56-.72,1.23-1.11,1.27-1.13l.19-.13.18.13s1.01.74,1.62,1.78c0,0-.59.35-.59.35Z"/>
<path class="d" d="M64,123.47c-.91-5.96-5.5-8.08-5.55-8.09l.27-.63c.2.08,4.99,2.29,5.93,8.63l-.67.1h.01Z"/>
<path class="d" d="M63.75,124.49c-2.5-6.35-5.23-7.27-5.27-7.27l.21-.66c.12.02,3.06,1.03,5.67,7.68l-.62.25Z"/>
<polygon class="d" points="69.28 101.77 67.82 101.77 67.82 100.22 68.49 100.22 68.49 101.1 69.28 101.1 69.28 101.77"/>
<polygon class="d" points="69.57 96.87 68.9 96.87 68.9 95.23 71.56 95.23 71.56 95.9 69.57 95.9 69.57 96.87"/>
<path class="d" d="M69.22,95.9c-.76,0-1.4-.63-1.4-1.38v-.45h.67v.45c0,.39.32.72.73.72,0,0,0,.67,0,.67Z"/>
<polygon class="d" points="71.56 88.76 70.89 88.76 70.89 87 74.99 87 74.99 87.67 71.56 87.67 71.56 88.76"/>
<rect class="d" x="66.81" y="100.22" width=".68" height="2.38"/>
<rect class="d" x="71.74" y="51.41" width=".67" height="1.23"/>
<polygon class="d" points="15.84 211.26 14.04 211.26 14.04 204.45 14.72 204.45 14.72 210.58 15.16 210.58 15.16 203.94 15.84 203.94 15.84 211.26"/>
<path class="d" d="M16.7,213.23h-3.52v-2.65h3.52v2.65ZM13.86,212.55h2.15v-1.29h-2.15v1.29Z"/>
<path class="d" d="M18.22,216.13h-6.55v-1.87c0-.96.78-1.71,1.72-1.71h3.09c.96,0,1.73.75,1.73,1.71v1.87h.01ZM12.33,215.44h5.21v-1.19c0-.56-.48-1.03-1.05-1.03h-3.09c-.57,0-1.05.47-1.05,1.03v1.19h-.01Z"/>
<rect class="d" x="12.81" y="215.79" width=".48" height="11.72"/>
<rect class="d" x="14.06" y="215.79" width=".5" height="11.72"/>
<rect class="d" x="15.33" y="215.79" width=".47" height="11.72"/>
<rect class="d" x="16.58" y="215.79" width=".49" height="11.72"/>
<polygon class="d" points="18.22 227.85 11.66 227.85 11.66 215.79 12.33 215.79 12.33 227.15 17.53 227.15 17.53 215.79 18.22 215.79 18.22 227.85"/>
<polygon class="d" points="17.8 208.99 15.98 208.99 15.98 205.58 16.66 205.58 16.66 208.3 17.1 208.3 17.1 207.05 17.8 207.05 17.8 208.99"/>
<polygon class="d" points="18.63 210.61 17.95 210.61 17.95 208.99 15.46 208.99 15.46 208.3 18.63 208.3 18.63 210.61"/>
<path class="d" d="M20.15,213.84h-2.5v-.68h1.81v-1.48c0-.42-.33-.74-.74-.74h-3.24v-.69h3.24c.79,0,1.42.66,1.42,1.43v2.15h0Z"/>
<rect class="d" x="18.53" y="213.53" width=".49" height="11.71"/>
<polygon class="d" points="20.15 225.58 18 225.58 18 224.91 19.47 224.91 19.47 213.53 20.15 213.53 20.15 225.58"/>
<path class="d" d="M67.7,183.96l-.12-.38c-.04-.1-.7-2.11-.7-3.16h.68c0,.68.33,1.89.53,2.52.51-.37,1.44-1.28,1.64-2.81l.69.12c-.35,2.44-2.28,3.5-2.36,3.53l-.36.19h.01Z"/>
<path class="d" d="M66.56,187.25l-.1-.43s-.19-1.1-.49-1.8c-.04-.11-.07-.26-.06-.45l-.35-.53c-.36-.53-.39-1.62-.39-1.76h.68c0,.21.04.53.07.81.17-.14.33-.24.38-.26l.69-.38-.19.75c-.18.66-.27,1.38-.23,1.55.2.48.36,1.06.45,1.49.66-.33,1.91-1.07,2.76-1.95.17-.18.17-.76.1-1.13l-.17-.8.69.47s.29.18.48.42c.14-.32.17-.75.12-1.44l.69-.05c.06,1.07,0,1.8-.63,2.42l-.59.57v-.23c-.05.1-.12.18-.19.24-1.24,1.29-3.25,2.24-3.35,2.29l-.39.18h.01Z"/>
<polygon class="d" points="74.17 121.77 73.92 119.3 74.59 119.22 74.85 121.68 74.17 121.77"/>
<polygon class="d" points="72.28 49.26 71.58 49.26 71.58 47.7 74.97 47.7 74.97 48.39 72.28 48.39 72.28 49.26"/>
<rect class="d" x="66.02" y="108.54" width=".68" height="1.53"/>
<path class="d" d="M70.38,165.57h-.26c-.44-.05-.92-.2-1.42-.47l-.12-.06-.02-.3-.32.05-.06-.05c-.62-.37-1.65-1.15-2.45-1.92l-.18-.17.18-.19c.81-.78,1.84-1.55,2.45-1.92l.06-.05.32.05.02-.29.12-.07c.5-.27.98-.42,1.42-.47.51-.05,1.07,0,1.47.13l-.16.47c-.27-.11-.78-.16-1.25-.11-.35.02-.72.14-1.13.33l-.05.56-.66-.1c-.54.33-1.38.98-2.11,1.65.73.66,1.58,1.3,2.11,1.65l.66-.1.05.54c.41.19.78.31,1.13.35.56.06,1.13-.13,1.42-.29l.2.45c-.3.13-.84.31-1.42.31"/>
<path class="d" d="M70.76,164.58c-.8,0-1.7-.55-2.81-1.77l-.16-.16.16-.18c1.12-1.21,2.13-1.79,3.02-1.73v.49c-.7-.05-1.58.44-2.52,1.41,1.49,1.52,2.23,1.52,2.69,1.38l.14.48c-.16.04-.33.06-.51.06"/>
<path class="d" d="M66.35,165.6c-.12,0-.23-.02-.35-.02-.45-.05-.92-.2-1.43-.47l-.13-.06v-.3l-.32.05-.07-.05c-.61-.37-1.64-1.15-2.44-1.92l-.18-.17.18-.19c.8-.78,1.85-1.55,2.44-1.92l.07-.05.31.05v-.29l.14-.07c.51-.27.98-.42,1.43-.47,1.13-.12,2.02.38,2.46.86l-.37.33c-.36-.39-1.1-.81-2.03-.7-.35.02-.73.14-1.13.35l-.04.56-.64-.1c-.55.33-1.4.98-2.1,1.65.7.64,1.56,1.3,2.1,1.65l.64-.1.04.54c.41.19.79.31,1.13.35.94.1,1.67-.3,2.03-.7l.37.33c-.42.44-1.17.88-2.13.88"/>
<path class="d" d="M66.76,164.56c-.72,0-1.68-.42-2.93-1.74l-.16-.16.16-.17c1.9-2.03,3.16-1.92,3.88-1.46l-.25.39c-.79-.49-1.85-.06-3.12,1.23,1.27,1.29,2.33,1.7,3.12,1.21l.25.43c-.25.14-.56.26-.96.26"/>
<path class="d" d="M62.31,165.6c-.13,0-.25,0-.41-.02-.44-.05-.91-.2-1.42-.47l-.12-.06-.04-.3-.3.05-.07-.05c-.61-.37-1.64-1.15-2.44-1.92l-.17-.17.17-.19c.8-.78,1.83-1.55,2.44-1.92l.07-.05.3.05.04-.29.12-.07c.51-.27.98-.42,1.42-.47,1.36-.14,2.07.41,2.44.92l-.38.27c-.43-.56-1.11-.8-2.01-.7-.35.02-.73.14-1.13.35l-.06.56-.66-.1c-.53.33-1.38.98-2.09,1.65.7.66,1.55,1.3,2.09,1.65l.66-.1.06.54c.41.19.78.31,1.13.35.88.08,1.56-.13,1.98-.7l.39.29c-.33.43-.94.92-2.03.92"/>
<path class="d" d="M62.66,164.56c-.73,0-1.7-.42-2.94-1.74l-.16-.16.16-.17c1.99-2.14,3.28-1.92,4.02-1.36l-.29.38c-.8-.6-1.9-.2-3.21,1.15,1.25,1.29,2.34,1.7,3.12,1.19l.27.43c-.27.16-.59.29-.98.29"/>
<path class="d" d="M58.21,165.6c-.13,0-.26,0-.42-.02-.44-.05-.92-.2-1.43-.47l-.11-.06-.02-.3-.31.05-.2-.12c-.57-.37-1.54-1.1-2.32-1.85l-.18-.17.18-.19c.8-.78,1.83-1.55,2.44-1.92l.07-.05.31.05.02-.29.11-.07c.51-.27.99-.42,1.43-.47,1.13-.12,2.01.38,2.47.86l-.36.33c-.38-.39-1.11-.81-2.05-.7-.36.02-.72.14-1.13.35l-.05.56-.64-.1c-.54.33-1.4.98-2.11,1.65.72.64,1.54,1.29,2.07,1.6l.05.05.64-.1.05.54c.41.19.78.31,1.13.35.9.08,1.56-.13,1.98-.7l.39.29c-.33.43-.96.92-2.02.92"/>
<path class="d" d="M58.55,164.56c-.73,0-1.68-.42-2.93-1.74l-.13-.16.13-.17c1.99-2.14,3.28-1.92,4.01-1.36l-.29.38c-.81-.6-1.91-.2-3.22,1.15,1.25,1.29,2.34,1.7,3.13,1.19l.25.43c-.25.16-.59.29-.98.29"/>
<path class="d" d="M54.09,165.6c-.13,0-.27,0-.41-.02-.45-.05-.91-.2-1.42-.47l-.12-.06-.02-.3-.31.05-.08-.05c-.61-.37-1.64-1.15-2.44-1.92l-.17-.17.17-.19c.8-.78,1.83-1.55,2.44-1.92l.08-.05.31.05.02-.29.12-.07c.51-.27.98-.42,1.42-.47,1.13-.12,1.99.38,2.45.86l-.36.33c-.36-.39-1.1-.81-2.03-.7-.35.02-.74.14-1.13.35l-.05.56-.64-.1c-.54.33-1.38.98-2.09,1.65.7.66,1.55,1.3,2.09,1.65l.64-.1.05.54c.39.19.78.31,1.13.35.88.08,1.55-.13,1.99-.7l.38.29c-.33.43-.94.92-2.02.92"/>
<path class="d" d="M54.44,164.56c-.72,0-1.7-.42-2.93-1.74l-.16-.16.16-.17c1.87-2.01,3.1-1.92,3.83-1.49l-.24.43c-.78-.48-1.85-.05-3.07,1.23,1.29,1.33,2.38,1.73,3.18,1.17l.27.41c-.27.18-.63.33-1.05.33"/>
<path class="d" d="M70.44,138.4h-.12c-.91-.06-1.24-.53-1.59-.97-.13-.18-.3-.37-.48-.54-.42-.38-1.25-.7-1.25-.73l-.81-.3.81-.32s.85-.32,1.25-.69c.16-.17.29-.33.43-.53.39-.53.82-1.13,2.13-1.01l-.07.69c-.9-.08-1.15.24-1.5.72-.16.21-.31.42-.51.62-.23.2-.54.38-.79.53.25.13.56.31.79.53s.41.43.56.63c.31.39.51.66,1.09.68.36.02.55-.08.86-.24.1-.05.2-.11.31-.14l.29.61c-.1.04-.2.1-.27.13-.32.17-.62.31-1.1.31"/>
<path class="d" d="M68.25,138.4c-.16,0-.32-.01-.55-.05-.94-.13-1.41-.6-1.91-1.1-.12-.12-.25-.24-.39-.36-.42-.38-1.25-.7-1.25-.7l-.82-.31.82-.32s.84-.32,1.25-.69c.14-.14.27-.26.42-.42.51-.54,1.06-1.12,2.07-1.12.66,0,.9.13,1.3.32l.16.07-.29.62-.16-.07c-.38-.18-.51-.25-1.01-.25-.7,0-1.1.39-1.58.91-.13.14-.29.29-.44.42-.2.2-.51.38-.79.53.27.13.57.31.79.53.16.12.29.26.42.38.47.48.8.8,1.53.91.6.08.7.02.92-.11.08-.05.19-.1.3-.16l.29.62c-.1.04-.17.08-.24.13-.26.14-.44.23-.82.23"/>
<path class="d" d="M62.46,135.57l-.41-.55c.08-.07.21-.11.41-.21.11-.05.29-.13.35-.17.11-.08.19-.18.29-.29.56-.51,1.1-1.05,2.13-1.05.72,0,.99.14,1.46.36l.08.02-.3.62-.08-.02c-.42-.21-.6-.3-1.16-.3-.78,0-1.13.36-1.65.86-.11.1-.21.19-.32.31-.11.07-.26.16-.51.25-.11.06-.23.12-.27.14"/>
<path class="d" d="M65.59,138.41h-.38c-1.17-.12-1.72-.61-2.39-1.23l-.05-.05c-.06-.04-.23-.11-.33-.14-.16-.08-.29-.12-.38-.19l.38-.55s.18.08.27.1c.23.11.39.18.51.29l.05.04c.66.6,1.06.98,1.99,1.05.56.06.68-.01.86-.14.1-.06.2-.14.37-.21l.27.61c-.1.06-.18.12-.25.18-.24.16-.47.26-.94.26"/>
<rect class="d" x="61.85" y="132.69" width="9.25" height=".69"/>
<rect class="d" x="61.89" y="138.4" width="11.33" height=".68"/>
<path class="d" d="M138.39,195.96c-.05-.11-1.06-2.78.82-5.62l.56.41c-1.7,2.51-.8,4.88-.76,4.97,0,0-.62.25-.62.25Z"/>
<path class="d" d="M103.79,169.08l-.11-.05c-1.04-.37-1.84-1.12-2.38-2.3l-.08-.19.36-.45-.38.14-.16-.29c-.44-1.01-.66-1.65-.66-3.09s.27-2.21.75-3.26l.16-.32.27.16-.17-.27.08-.17c.61-1.31,1.23-1.98,2.2-2.32l.11-.05.13.05c.6.21,1.15.62,1.62,1.22l-.54.44c-.37-.47-.79-.8-1.22-.97-.66.27-1.13.78-1.62,1.77l1.38,2.07-1.95-.98c-.33.84-.53,1.53-.53,2.65s.13,1.73.48,2.52l2.01-.8-1.55,2.08c.44.85,1.03,1.42,1.79,1.73.44-.18.85-.5,1.22-.97l.54.44c-.48.6-1.03,1-1.62,1.19l-.13.05v-.02Z"/>
<path class="d" d="M105.34,168.1l-.27-.21c-1.17-1.03-1.9-2.95-1.9-5.04s.73-4,1.9-5.01l.27-.24.21.29c.45.55.8,1.23,1.07,1.98l-.66.21c-.18-.54-.43-1.04-.73-1.47-.86.96-1.38,2.53-1.38,4.25s.53,3.3,1.38,4.26c.3-.43.54-.93.73-1.49l.66.24c-.27.76-.62,1.44-1.07,1.98l-.21.26h0Z"/>
<path class="d" d="M106.49,166.23l-.36-.2c-.9-.49-1.47-1.73-1.47-3.19s.57-2.69,1.47-3.16l.36-.2.13.38c.31.92.48,1.96.48,2.98s-.17,2.09-.48,3.01l-.13.38h0ZM106.11,160.53c-.47.49-.76,1.38-.76,2.3s.31,1.85.76,2.32c.18-.73.31-1.5.31-2.32s-.12-1.58-.31-2.3"/>
<rect class="d" x="78.41" y="159.61" width="22.88" height=".68"/>
<rect class="d" x="46.7" y="156.88" width="56.59" height=".68"/>
<rect class="d" x="76.73" y="158.21" width="25.24" height=".69"/>
<rect class="d" x="78.03" y="165.02" width="23.15" height=".68"/>
<rect class="d" x="76.25" y="170.28" width=".68" height="2.95"/>
<rect class="d" x="81.16" y="170.28" width=".69" height="2.95"/>
<path class="d" d="M86.08,173.22h-.7c0-.78.07-3.3,1-3.3v.69s.08-.01.11-.05c-.14.14-.41,1.05-.41,2.65"/>
<path class="d" d="M89.73,173.22h-.69c0-1.87.7-3.3,1.64-3.3v.69c-.38,0-.96,1.01-.96,2.6"/>
<path class="d" d="M92.76,173.22h-.68c0-1.83,1.28-3.3,2.84-3.3v.69c-1.19,0-2.16,1.17-2.16,2.6"/>
<path class="d" d="M95.26,173.22h-.69c0-1.83,1.49-3.3,3.34-3.3v.69c-1.47,0-2.65,1.17-2.65,2.6"/>
<path class="d" d="M81.18,152.83l-.57-.37c.99-1.52,2.77-2.84,2.84-2.89l.2-.16.21.16s1.42,1.11,2.4,2.58l-.55.37c-.72-1.04-1.67-1.89-2.08-2.24-.49.39-1.74,1.43-2.47,2.54"/>
<path class="d" d="M80.75,151.65l-.63-.21c.63-1.87,3.22-3.82,3.34-3.9l.19-.14.2.14s1.59,1.1,2.57,2.66l-.59.36c-.69-1.11-1.73-1.97-2.17-2.32-.61.49-2.42,2.03-2.9,3.43"/>
<path class="d" d="M80.08,150.4l-.67-.1c.06-.48.27-1.24.43-1.66.21-.5.51-1.21.96-1.79l.21-.27.19.16c.05-.23.1-.44.23-.63.38-.51,1.64-1.61,1.8-1.73l.08-.1h.24l.11.1c.16.12,1.43,1.22,1.8,1.73.14.2.21.41.23.63l.19-.16.2.27c.32.39.48.8.64,1.15.07.16.13.32.23.47l-.62.32c-.08-.17-.16-.33-.24-.51-.11-.24-.21-.49-.36-.72l-.93.75.19-.92c.04-.2.07-.68-.07-.9-.25-.32-1.03-1.03-1.48-1.43-.47.41-1.24,1.12-1.47,1.43-.17.2-.13.69-.1.9l.2.92-.97-.75c-.3.44-.5.97-.67,1.36-.14.36-.32,1.05-.38,1.48"/>
<path class="d" d="M92.26,186.08l-.64-.05c-3.62-.25-7.21-3.18-7.75-4.1-.16-.25-.23-.53-.26-.79l-.11.56-.45-.47c-1.6-1.6-2.1-3.12-2.24-4.11l.68-.1c.1.8.5,2.02,1.7,3.35.24-.38.6-.49.81-.49h.42l-.11.42s-.16.74.16,1.25c.39.69,3.45,3.18,6.58,3.69-.81-1.71-.43-2.79.14-3.99.02-.38-.06-1.17-.11-1.46l-.07-.54.53.16s.24.12.49.36c.38-.81.68-1.76.68-3.5,0-.19-.02-.42-.05-.62l.67-.11c.04.23.06.49.06.73,0,2.26-.5,3.31-.99,4.33l-.3.56-.24-.41v.62l-.02.11c-.51,1.06-1.01,2.05.12,3.99l.32.56h0Z"/>
<path class="d" d="M90.06,182.86l-.51-.16c-3.96-1.21-6.32-3.77-6.44-7.07h.68c.11,2.82,2.08,5.07,5.44,6.26-.13-1.53.31-2.14.79-2.76.51-.7,1.03-1.41.98-3.49h.68c.05,2.32-.59,3.19-1.11,3.88-.49.63-.86,1.16-.6,2.81l.08.54h0Z"/>
<path class="d" d="M88.82,181.06l-.56-.25c-1.89-.88-3.64-2.11-3.64-5.17h.68c0,2.32,1.1,3.44,2.76,4.32.11-.57.47-1,.84-1.46.56-.69,1.19-1.46,1.19-2.84h.68c0,1.6-.74,2.53-1.34,3.28-.5.61-.79.99-.7,1.48l.1.64h0Z"/>
<path class="d" d="M105.93,185.4c-2.07,0-4.26-.63-6.91-1.95-.53-.25-.86-.78-1.06-1.23l.06.55-.84-.43c-.32-.16-.47-.23-.87-.55-2.6-1.9-3.62-3.64-3.62-6.14h.68c0,2.27.91,3.8,3.34,5.61.32.24.44.27.63.41.16-.32.42-.54.45-.56l.43-.35.12.54c.07.33.39,1.27.97,1.55,2.48,1.23,4.54,1.85,6.44,1.86-.91-.99-.97-1.79-1.05-2.54-.02-.32-.05-.63-.13-.91-.05-.29-.7-1.07-1.28-1.64l-.51-.49.73-.1s.39-.04.81.08c-.2-.66-.76-1.8-2.24-3.25l.48-.47c2.57,2.48,2.57,4.25,2.57,4.25l-.02.75-.55-.44c.32.39.64.84.67,1.13.1.33.13.68.17,1.01.08.84.14,1.55,1.41,2.66l.62.55-.82.06c-.23.01-.44.01-.67.01"/>
<path class="d" d="M103.35,182.8l-1.06-.26c-1.4-.33-3.15-.74-4.9-2.48-1.98-1.96-2.78-4.19-2.82-4.29l.64-.23s.8,2.2,2.65,4.04c1.52,1.49,2.98,1.92,4.27,2.22-.08-.45-.12-.99-.17-1.61-.11-1.47-.24-3.31-1.27-4.3l.45-.5c1.24,1.18,1.37,3.18,1.49,4.75.05.82.11,1.6.31,1.97l.39.68h-.01Z"/>
<path class="d" d="M101.3,180.78l-.27-.05c-.08-.04-2.1-.49-3.63-2.24-1.04-1.24-1.24-2.77-1.25-2.82l.67-.1s.19,1.38,1.09,2.46c1.04,1.22,2.4,1.76,2.98,1.93.23-.69.66-2.54-.26-4.13l.59-.32c1.33,2.27.25,4.9.19,4.99l-.11.27h.01Z"/>
<path class="d" d="M109.94,183.59c-.3,0-.6,0-.9-.05-.59-.05-1.04-.31-1.37-.59-.22-.18-.21-.18.02.02l.19.47h-.5c-1.62.05-2.51-.47-2.54-.5l.36-.57s.6.33,1.7.39c-.17-.7.08-.98.17-1.05l.32-.27.2.37s.51.96,1.53,1.07c2.7.27,5.73-.9,7.09-1.66-3.38-.47-4.93-1.93-6.3-3.24-.75-.73-1.47-1.41-2.44-1.87-.78-.39-2.08-.81-3.04-.85l.04-.69c1.09.07,2.48.53,3.31.92,1.06.53,1.81,1.25,2.6,2.01,1.49,1.4,3.01,2.87,6.82,3.15l.67.05-.45.51c-.68.78-4.19,2.39-7.44,2.39"/>
<path class="d" d="M111.01,179.64h-.39c-.1-.01-2.13-.12-4.57-.94-.99-.32-1.92-.84-2.87-1.54l.43-.54c.55.43,1.43,1.04,2.66,1.44,1.72.59,3.26.79,3.95.85-.04-.23-.08-.55-.14-.82l.68-.14c.13.61.2,1.29.2,1.29l.04.43v-.02Z"/>
<path class="d" d="M110.4,180.87c-1.21,0-2.5-.21-3.67-.62-.29-.12-.54-.19-.73-.26-.56-.18-.96-.27-1.58-.72l.42-.57c.5.38.82.48,1.36.64.23.06.47.14.78.25,2.4.84,4.79.67,6.09.13l.27.63c-.82.33-1.85.51-2.95.51"/>
<path class="d" d="M95.17,184.42l-.32-.18c-1.96-1.07-2.32-2.69-2.6-4.1l-.08-.35.68-.13.07.35c.27,1.28.54,2.5,1.91,3.4.27-1.09.21-2.81.21-2.81l.67-.06c.02.1.11,2.38-.37,3.52l-.16.33h-.01Z"/>
<path class="d" d="M96.56,186.06l-.39-.02c-1.23-.05-2.87-.63-3.35-1.49-.02-.07-.06-.12-.1-.19v.36l-.56-.51c-1.01-.91-1.15-2.28-1.15-2.28l.67-.12s.1.76.55,1.46c.13-.24.32-.37.45-.42l.53-.24-.04.56s-.04.55.25,1.04c.26.45,1.28.98,2.4,1.13-.08-1.11.06-1.66.26-2.36.1-.33.19-.72.3-1.22l.67.13c-.11.53-.23.93-.32,1.27-.2.76-.35,1.28-.2,2.51l.04.41h0Z"/>
<path class="d" d="M137.69,204.02c-.32,0-.67-.04-.98-.12-.87-.18-1.55-.64-1.93-1.27l.57-.36c.29.47.81.8,1.5.98,1,.2,2.16,0,3.02-.55.88-.56,1.43-1.59,1.52-2.88.08-1.15-.19-2.34-.72-3.18-.62-.54-2.13-.61-3.27-.12-.62.26-1.64.9-1.65,2.22h-.57s-.12-.18-.11-.27c.12-1.15.86-2.07,2.07-2.58,1.46-.61,3.22-.49,4.02.27l.05.07c.64.96.97,2.32.86,3.63-.11,1.5-.76,2.72-1.84,3.41-.72.48-1.65.73-2.55.73"/>
<path class="d" d="M135.96,200.34c-.2,0-.37,0-.57-.04l.07-.67c1.06.13,2.16-.14,3.14-.79.99-.63,1.7-1.53,2.01-2.54l.66.21c-.37,1.15-1.18,2.2-2.28,2.9-.94.61-1.98.91-3.02.91"/>
<path class="d" d="M135.72,200.16l-.62-.31c.73-1.42,1.62-2.39,3.56-2.39v.69c-1.61,0-2.29.74-2.94,2.01"/>
<path class="d" d="M137.52,202.25c-.47,0-.87-.13-1.16-.3-.79-.44-1.3-1.35-1.3-1.95h.68c0,.29.32.98.96,1.34.63.36,1.38.29,2.23-.25l.36.59c-.68.41-1.28.56-1.77.56"/>
<path class="d" d="M142.51,201.53c-.37,0-.76-.02-1.13-.13l.13-.67c3.13.66,6.4-1.8,7.46-5.6.53-1.95.42-3.89-.3-5.55-.72-1.64-1.96-2.78-3.5-3.2-1.53-.42-3.19-.1-4.66.94-1.48,1.03-2.59,2.67-3.12,4.6-.36,1.28-.27,3.04-.06,4.29l-.67.11c-.23-1.3-.32-3.18.07-4.57.57-2.09,1.78-3.84,3.39-4.97,1.65-1.17,3.49-1.53,5.22-1.04,1.76.49,3.14,1.76,3.95,3.57.8,1.81.91,3.94.32,6.02-1.01,3.7-4,6.22-7.1,6.22"/>
<path class="d" d="M141.7,198.77l-.06-.67c1.21-.12,3.41-1.42,4.42-3.55,1.21-2.54.68-5.32-.56-5.9-.6-.3-1.5-.12-2.42.45-1.01.63-1.93,1.67-2.48,2.88-.57,1.21-.86,2.69-.72,3.83l-.67.07c-.16-1.27.14-2.88.75-4.18.63-1.35,1.61-2.45,2.76-3.15,1.13-.7,2.26-.88,3.08-.5,1.58.75,2.3,3.82.88,6.82-1.05,2.22-3.4,3.77-4.98,3.92"/>
<path class="d" d="M141.79,211.84c-3.41,0-6.42-4.02-6.71-8.95l.68-.05c.25,4.51,3.01,8.32,6.02,8.32,3.31,0,5.99-3.76,5.99-8.42,0-1.36-.23-2.64-.67-3.87l.63-.24c.48,1.28.72,2.66.72,4.11,0,5.01-3,9.1-6.67,9.1"/>
<path class="d" d="M142.02,207.38c-.92,0-3.16-.36-4.11-3.7l.66-.19c.8,2.82,2.52,3.22,3.45,3.22,1.3,0,2.4-1.81,2.4-3.98,0-.63-.11-1.23-.27-1.8l.67-.19c.19.62.3,1.3.3,1.99,0,2.6-1.35,4.64-3.08,4.64"/>
<path class="d" d="M143.41,210.16c-2.66,0-4.88-2.61-5.52-6.53l.68-.11c.56,3.5,2.55,5.96,4.84,5.96,1.19,0,2.38-.72,3.28-2.01l.57.39c-1.06,1.46-2.42,2.28-3.86,2.28"/>
<path class="d" d="M137.99,207.36c-1.21-1.4-1.28-3.58-1.28-3.67l.68-.04s.08,2.04,1.12,3.28l-.51.42h-.01Z"/>
<path class="d" d="M92.49,154.49c-.05-.25-.07-.51-.07-.78,0-1.92.98-3.67,2.61-4.68l.36.59c-1.44.88-2.29,2.42-2.29,4.1,0,.21.01.45.06.69l-.67.08h0Z"/>
<path class="d" d="M89.85,154.49h-.68c0-3.08,1.52-5.96,4.04-7.7l.38.55c-2.33,1.64-3.74,4.3-3.74,7.15"/>
<path class="d" d="M98.45,154.46h-.68c0-1.01-.36-2.01-1.01-2.76l-3.13-3.73c-.75-.91-1.17-2.03-1.17-3.21v-6.26h.68v6.26c0,1.01.36,1.99,1.01,2.77l3.12,3.73c.76.9,1.17,2.02,1.17,3.2"/>
<path class="d" d="M85.95,154.56c-.55-2.29-.57-5.52,1.17-7.01l.48-.43.07.63c.01.24.08.45.12.63-.07-1.18.26-2.53,1.24-3.63l.73-.84-.16,1.11c-.06.42.06.82.21,1.13-.05-.59-.02-1.29.16-1.89.13-.42.36-.86.67-1.28.33-.47.66-.72.93-.96.44-.37.72-.61.87-1.47l.68.13c-.21,1.11-.64,1.47-1.12,1.86-.26.21-.54.43-.82.82-.26.36-.45.73-.57,1.09-.38,1.09.1,2.75.1,2.75l.27.98-.8-.59s-.9-.68-1.18-1.68c-.8,1.46-.61,3.2-.08,4.02l.63.99-1.06-.48s-.97-.47-1.35-1.93c-.98,1.37-.98,3.82-.53,5.85l-.64.16h-.01Z"/>
<path class="d" d="M91.1,140.71c-1.29-1.18-1.99-2.89-1.99-4.84s.72-3.62,1.98-4.81l.48.5c-1.12,1.05-1.78,2.63-1.78,4.31s.62,3.28,1.77,4.33l-.45.5h0Z"/>
<path class="d" d="M92.3,139.33c-1.04-.75-1.65-2.04-1.65-3.45s.61-2.69,1.65-3.44l.41.54c-.86.63-1.38,1.71-1.38,2.89s.53,2.28,1.38,2.9l-.41.54v.02Z"/>
<path class="d" d="M89.3,141.81l-.13-.17c-.11-.14-.19-.24-.26-.32-.29-.37-.44-.56-.7-1.23l-.05-.11.35-.93-.6-.04-.07-.17c-.44-.85-.43-2.3-.42-2.38v-.17l.56-.43-.59-.41v-.18c-.02-1.03.29-2.1.38-2.35l.07-.21h.7l-.35-.85.05-.13c.31-.78.47-.98.93-1.6l.14-.18.21.06c2.4.59,4.13,3.04,4.13,5.86s-1.74,5.31-4.18,5.89l-.21.04h.02ZM88.88,139.97c.18.45.29.61.56.92.04.06.08.11.14.17,1.99-.6,3.43-2.73,3.43-5.17s-1.41-4.54-3.4-5.15c-.31.42-.43.62-.66,1.15l.63,1.49-1.24.02c-.11.37-.25,1.07-.26,1.72l1.04.76-1.03.79c0,.33.05,1.13.25,1.7l1.11.08s-.57,1.52-.57,1.52Z"/>
<path class="d" d="M86.59,147.76l-.67-.05c.23-2.88,1.6-5.56,2.77-6.82l.49.45c-1.13,1.21-2.38,3.81-2.59,6.41"/>
<path class="d" d="M84.53,145.93c-.08-1.93.99-3.86,2.03-5.01l.5.45c-.94,1.06-1.93,2.79-1.85,4.54,0,0-.68.02-.68.02Z"/>
<path class="d" d="M80.37,147.83c-.61-.87-.67-1.48-.7-2.64-.07-1.64.75-3.35,1.55-4.29l.53.44c-.72.82-1.47,2.38-1.4,3.8.04,1.15.07,1.56.57,2.29l-.56.38h.01Z"/>
<path class="d" d="M76.82,146.56c-.08-1.73.84-4.24,1.71-5.6l.59.37c-.84,1.28-1.67,3.65-1.62,5.21,0,0-.67.02-.67.02Z"/>
<rect class="d" x="77.72" y="131.34" width="10.91" height=".68"/>
<path class="d" d="M78.21,124.92l-.68-.1c.14-1.25.73-2.27,1.6-2.73.53-.29,1.06-1.3,1.24-1.66l.3-.7.31.7c.17.36.69,1.38,1.22,1.66.64.36,1.01.8,1.19,1.46l-.63.2c-.16-.5-.41-.79-.9-1.06-.5-.27-.92-.92-1.22-1.38-.27.47-.7,1.11-1.22,1.38-.66.36-1.1,1.18-1.24,2.23"/>
<path class="d" d="M102.39,142.39l-1.05-.1c-2.03-.2-3.57-1.74-3.57-3.64,0-.11.01-.2.01-.31.04-.24-.11-.49-.35-.62-.87-.54-1.4-1.43-1.4-2.4s.53-1.84,1.4-2.38c.24-.14.38-.39.35-.63,0-.11-.01-.21-.01-.33,0-1.85,1.54-3.43,3.57-3.61l1.05-.08-.79.68c-.55.48-.87,1.18-.91,1.92-.05.73.2,1.38.68,1.92l.13.14c.59.62.9,1.46.9,2.34v.08c0,.88-.31,1.71-.9,2.33l-.13.17c-.49.49-.73,1.18-.68,1.91.02.73.36,1.44.91,1.93l.79.69v-.02ZM100.48,129.25c-1.22.45-2.04,1.52-2.04,2.72v.27c.06.49-.2.99-.66,1.27-.67.41-1.06,1.09-1.06,1.8s.41,1.41,1.06,1.81c.45.29.72.76.66,1.29v.24c0,1.23.82,2.3,2.04,2.75-.29-.48-.47-1.04-.48-1.61-.05-.91.26-1.77.87-2.41l.12-.14c.47-.51.7-1.16.7-1.87v-.1c0-.7-.24-1.37-.7-1.85l-.12-.17c-.62-.64-.92-1.5-.87-2.4.01-.57.19-1.12.48-1.62"/>
<path class="d" d="M100.36,138.84c-1.1-.64-1.81-2.05-1.81-3.56s.68-2.88,1.79-3.55l.36.59c-.88.53-1.46,1.7-1.46,2.96s.57,2.44,1.48,2.96l-.35.6h-.01Z"/>
<path class="d" d="M101.42,137.31c-.63-.38-1.03-1.16-1.03-2.02s.37-1.61.98-2.02l.37.57c-.42.29-.67.82-.67,1.43s.27,1.18.7,1.44l-.36.57h0Z"/>
<path class="d" d="M93.11,139.82l-.61-.26c1.36-3.27,3.64-4.49,3.74-4.54l.31.61s-2.17,1.15-3.44,4.19"/>
<path class="d" d="M93.11,140.81l-.61-.29c1.1-2.42,4.33-3.77,4.48-3.82l.25.63s-3.12,1.3-4.12,3.47"/>
<path class="d" d="M89.65,100.6l-1.03-.1c-1.27-.11-2.22-1.09-2.22-2.28v-.18c0-.11-.04-.19-.12-.25-.56-.32-.9-.9-.9-1.52s.33-1.18.9-1.52c.08-.06.13-.14.12-.23v-.16c0-1.22.96-2.21,2.22-2.32l1.03-.1-.78.69c-.3.24-.48.62-.49,1.03-.01.39.12.75.36,1.01l.08.1c.37.39.56.91.56,1.44v.07c0,.55-.19,1.06-.56,1.44l-.08.1c-.24.27-.37.64-.36,1.03.01.41.19.78.49,1.03l.78.69ZM87.82,93.02c-.45.27-.76.78-.76,1.31v.14c.06.35-.12.68-.44.87-.35.21-.55.56-.55.94s.2.72.55.93c.32.19.5.55.47.88v.13c-.01.55.29,1.04.74,1.33-.06-.21-.11-.41-.13-.64-.02-.57.18-1.11.55-1.52l.08-.07c.25-.29.37-.63.37-1v-.05c0-.38-.13-.74-.37-1l-.08-.08c-.37-.42-.57-.96-.55-1.53.01-.21.06-.43.13-.64"/>
<path class="d" d="M87.99,98.46c-.72-.41-1.15-1.27-1.15-2.22s.43-1.77,1.12-2.18l.36.59c-.48.29-.79.92-.79,1.6s.32,1.35.8,1.62c0,0-.35.6-.35.6Z"/>
<path class="d" d="M88.6,97.57c-.41-.24-.67-.75-.67-1.33,0-.53.25-1.01.64-1.28l.37.57c-.2.12-.33.42-.33.69,0,.32.14.61.35.73l-.36.6h0Z"/>
<path class="d" d="M84.07,99.32l-.59-.36c.73-1.15,2.03-2.38,2.09-2.42l.47.49s-1.3,1.22-1.97,2.29"/>
<path class="d" d="M83.16,102.68l-.67-.17c.68-2.93,3.61-5.16,3.74-5.27l.41.54s-2.85,2.2-3.47,4.88"/>
<path class="d" d="M96.2,121.77l-1.04-.11c-1.68-.14-2.96-1.44-2.96-3,0-.08.02-.18.02-.25,0-.18-.1-.37-.25-.47-.72-.43-1.16-1.18-1.16-1.96s.44-1.55,1.16-2.01c.17-.11.26-.27.25-.47,0-.08-.02-.18-.02-.24,0-1.56,1.28-2.85,2.96-3.02l1.04-.08-.79.68c-.43.38-.69.94-.73,1.52-.02.57.18,1.11.55,1.5l.11.13c.48.5.73,1.19.73,1.91v.06c0,.74-.25,1.43-.73,1.95l-.11.12c-.37.39-.57.92-.55,1.49.04.59.3,1.15.73,1.52l.79.7h0ZM94.32,111.18c-.85.38-1.42,1.17-1.42,2.09v.18c.04.44-.18.87-.59,1.1-.51.32-.82.86-.82,1.43s.31,1.05.82,1.38c.41.25.62.67.59,1.1v.19c0,.93.57,1.71,1.42,2.1-.17-.37-.27-.76-.3-1.17-.04-.75.21-1.47.72-2.01l.12-.12c.36-.39.55-.9.55-1.47v-.07c0-.54-.19-1.07-.55-1.46l-.12-.13c-.5-.53-.75-1.23-.72-1.99.02-.42.13-.81.3-1.16"/>
<path class="d" d="M94.34,118.85c-.92-.53-1.5-1.68-1.5-2.94s.55-2.36,1.47-2.91l.35.57c-.68.43-1.15,1.35-1.15,2.34s.47,1.93,1.17,2.35l-.35.59h.01Z"/>
<path class="d" d="M95.2,117.61c-.54-.33-.86-.98-.86-1.7s.31-1.34.82-1.68l.36.59c-.3.2-.49.62-.49,1.09s.2.92.53,1.11l-.35.59h-.01Z"/>
<path class="d" d="M87.92,129.74l-.64-.17c.12-.45.18-.93.18-1.44,0-1.4-1.22-2.9-1.74-3.49-.53.59-1.74,2.1-1.74,3.49,0,.51.05.98.19,1.44l-.67.17c-.14-.5-.2-1.04-.2-1.61,0-2.08,2.09-4.14,2.18-4.23l.24-.24.24.24c.1.08,2.2,2.15,2.2,4.23,0,.57-.07,1.11-.23,1.61"/>
<path class="d" d="M81.18,129.72c-.08-.6-.13-1.21-.13-1.81,0-1.48.23-2.47.8-3.39l.54-.85.11.99c.02.16.05.3.08.38,0-.37.01-.82.08-1.19.11-.54.57-1.06,1.11-1.67.51-.55,1.05-1.21,1.3-1.84l.54-1.41.44,5.18-.68.07-.23-2.59c-.27.37-.59.72-.87,1.04-.43.51-.87,1-.93,1.34-.14.75-.04,1.79-.04,1.79l.05.47-.45-.07s-.51-.1-.82-.57c-.26.64-.36,1.35-.36,2.34,0,.57.02,1.13.13,1.71l-.68.11h.01Z"/>
<path class="d" d="M79.39,126.53l-.6-.35c.62-1.04,1.58-1.76,1.62-1.78l.19-.13.19.13s.69.42,1.27,1.13l-.55.43c-.31-.41-.67-.69-.88-.85-.29.23-.86.75-1.24,1.41"/>
<path class="d" d="M85.98,123.47l-.67-.1c.96-6.34,5.73-8.55,5.95-8.63l.27.63s-4.64,2.16-5.54,8.09"/>
<path class="d" d="M86.23,124.49l-.63-.25c2.6-6.65,5.56-7.64,5.69-7.68l.2.66-.11-.32.11.32s-2.79.99-5.27,7.27"/>
<polygon class="d" points="82.17 101.77 80.69 101.77 80.69 101.1 81.48 101.1 81.48 100.22 82.17 100.22 82.17 101.77"/>
<polygon class="d" points="81.09 96.87 80.41 96.87 80.41 95.9 78.41 95.9 78.41 95.23 81.09 95.23 81.09 96.87"/>
<path class="d" d="M80.76,95.9v-.67c.39,0,.72-.32.72-.72v-.45h.69v.45c0,.76-.64,1.38-1.41,1.38"/>
<polygon class="d" points="79.1 88.76 78.41 88.76 78.41 87.67 75 87.67 75 87 79.1 87 79.1 88.76"/>
<rect class="d" x="82.5" y="100.22" width=".68" height="2.38"/>
<rect class="d" x="77.56" y="51.41" width=".68" height="1.23"/>
<polygon class="d" points="135.95 211.26 134.14 211.26 134.14 203.94 134.82 203.94 134.82 210.58 135.27 210.58 135.27 204.45 135.95 204.45 135.95 211.26"/>
<path class="d" d="M136.81,213.23h-3.51v-2.65h3.51v2.65ZM133.98,212.55h2.14v-1.29h-2.14v1.29Z"/>
<path class="d" d="M138.32,216.13h-6.55v-1.87c0-.96.78-1.71,1.73-1.71h3.1c.94,0,1.73.75,1.73,1.71v1.87h-.01ZM132.46,215.44h5.18v-1.19c0-.56-.48-1.03-1.04-1.03h-3.1c-.57,0-1.04.47-1.04,1.03,0,0,0,1.19,0,1.19Z"/>
<rect class="d" x="136.69" y="215.79" width=".48" height="11.72"/>
<rect class="d" x="135.45" y="215.79" width=".47" height="11.72"/>
<rect class="d" x="134.16" y="215.79" width=".5" height="11.72"/>
<rect class="d" x="132.93" y="215.79" width=".49" height="11.72"/>
<polygon class="d" points="138.32 227.85 131.77 227.85 131.77 215.79 132.46 215.79 132.46 227.15 137.64 227.15 137.64 215.79 138.32 215.79 138.32 227.85"/>
<polygon class="d" points="134 208.99 132.22 208.99 132.22 207.05 132.89 207.05 132.89 208.3 133.32 208.3 133.32 205.58 134 205.58 134 208.99"/>
<polygon class="d" points="132.02 210.61 131.35 210.61 131.35 208.3 134.53 208.3 134.53 208.99 132.02 208.99 132.02 210.61"/>
<path class="d" d="M132.33,213.84h-2.51v-2.15c0-.78.64-1.43,1.43-1.43h3.22v.69h-3.22c-.42,0-.76.32-.76.74v1.48h1.84v.68h0Z"/>
<rect class="d" x="130.97" y="213.53" width=".5" height="11.71"/>
<polygon class="d" points="132 225.58 129.82 225.58 129.82 213.53 130.5 213.53 130.5 224.91 132 224.91 132 225.58"/>
<path class="d" d="M82.27,183.96l-.36-.19c-.07-.04-2.02-1.09-2.34-3.53l.68-.12c.2,1.54,1.13,2.44,1.65,2.81.18-.64.53-1.85.53-2.52h.68c0,1.06-.68,3.08-.7,3.16l-.14.38h.01Z"/>
<path class="d" d="M83.44,187.25l-.41-.18c-.07-.04-2.1-1-3.34-2.29-.08-.06-.16-.16-.19-.24v.23l-.57-.57c-.63-.62-.7-1.33-.63-2.42l.67.05c-.04.69-.02,1.12.12,1.44.2-.24.44-.41.49-.42l.69-.47-.17.8c-.08.36-.1.93.1,1.13.85.87,2.13,1.6,2.76,1.95.1-.43.25-1.01.45-1.5.06-.16-.05-.88-.21-1.54l-.2-.75.69.38c.06.02.23.13.38.26.05-.29.07-.6.08-.84h.67c0,.14-.01,1.25-.38,1.78l-.33.53c0,.18-.02.35-.07.45-.31.7-.49,1.79-.49,1.79l-.07.45-.02-.02Z"/>
<polygon class="d" points="75.8 121.77 75.13 121.68 75.38 119.22 76.07 119.3 75.8 121.77"/>
<path class="d" d="M75,164.13h0c-.96,0-1.71-.76-1.71-1.73s.73-1.71,1.68-1.71h.04c.94,0,1.7.78,1.7,1.71s-.76,1.73-1.71,1.73M74.97,161.37c-.57,0-1.01.45-1.01,1.03s.45,1.04,1.03,1.04h0c.56,0,1.03-.47,1.03-1.04s-.43-1.03-1.01-1.03h-.04.01Z"/>
<path class="d" d="M75,165.17h0c-1.52,0-2.77-1.23-2.77-2.77s1.25-2.76,2.77-2.76,2.77,1.24,2.77,2.76-1.22,2.77-2.76,2.77M75,160.32c-1.17,0-2.1.94-2.1,2.08s.94,2.09,2.09,2.09h0c1.15,0,2.09-.92,2.09-2.09s-.94-2.08-2.09-2.08"/>
<path class="d" d="M75.01,166.99h-.04c-.8-.05-1.68-.17-2.41-.67l-.21-.13.19-.63-.54.29-.19-.17c-.94-.94-1.44-2.23-1.36-3.56.07-1.03.36-1.79,1.01-2.53l.16-.18.48.16-.26-.48.2-.19c.82-.72,1.86-1.09,2.94-1.11h.04c1.09.02,2.13.39,2.95,1.11l.2.19-.27.48.49-.16.16.18c.63.74.94,1.5.99,2.53.08,1.33-.42,2.61-1.35,3.56l-.18.17-.55-.29.18.63-.2.13c-.72.5-1.62.62-2.41.67h0ZM73.16,165.91c.54.3,1.23.35,1.84.41.61-.05,1.31-.11,1.84-.41l-.51-1.73,1.54.84c.69-.79,1.06-1.8,1-2.85-.05-.79-.25-1.36-.69-1.95l-1.66.54.79-1.49c-.67-.48-1.48-.74-2.3-.76-.82.02-1.64.29-2.3.76l.8,1.49-1.66-.54c-.44.59-.66,1.16-.7,1.95-.07,1.05.3,2.07.99,2.85l1.55-.84-.53,1.73h.01Z"/>
<path class="d" d="M75,136.57h0c-.96,0-1.71-.76-1.71-1.71s.75-1.71,1.68-1.72v.69c-.56,0-1.01.45-1.01,1.01s.45,1.01,1.03,1.01h0c.56,0,1.03-.47,1.03-1.01s-.47-1.01-1.03-1.01v-.24.24-.69h0c.98.04,1.71.78,1.71,1.72s-.76,1.71-1.71,1.71"/>
<path class="d" d="M75.01,137.63h-.04c-1.54-.01-2.76-1.24-2.76-2.77s1.22-2.76,2.76-2.77v.69c-1.15,0-2.08.91-2.08,2.08s.93,2.08,2.09,2.08h0c1.15,0,2.09-.94,2.09-2.08s-.94-2.08-2.09-2.08v-.24.24-.69h0c1.54,0,2.76,1.25,2.76,2.77s-1.22,2.75-2.75,2.77"/>
<path class="d" d="M75.01,139.43h-.04c-.61-.05-1.76-.18-2.55-.78l-.21-.13.13-.38-.36.16-.18-.16c-.93-.96-1.44-2.22-1.36-3.56.07-1.04.29-1.62.92-2.35l.12-.13.62.06-.23-.64.17-.14c.82-.7,1.84-1.09,2.91-1.11h.11c1.06.02,2.09.41,2.91,1.11l.17.14-.23.64.61-.06.12.13c.62.73.85,1.31.9,2.35.08,1.34-.41,2.6-1.35,3.56l-.17.16-.36-.16.11.38-.19.13c-.81.59-1.95.72-2.55.75h0v.02ZM73.03,138.24c.48.27,1.18.45,1.96.5.8-.05,1.48-.23,1.97-.5l-.44-1.37,1.34.6c.69-.78,1.06-1.79,1-2.85-.05-.82-.2-1.27-.64-1.8l-1.31.13.42-1.21c-.67-.51-1.49-.79-2.34-.79s-1.66.29-2.33.79l.42,1.21-1.31-.13c-.44.54-.59.98-.63,1.8-.07,1.05.3,2.07,1.01,2.85l1.34-.6s-.44,1.37-.44,1.37Z"/>
<path class="d" d="M75,116.72h0c-.96,0-1.71-.79-1.71-1.71s.75-1.72,1.68-1.72h.02c.96,0,1.71.78,1.71,1.72s-.76,1.71-1.71,1.71M75,113.98c-.59,0-1.04.45-1.04,1.03s.45,1.01,1.03,1.01h0c.56,0,1.03-.44,1.03-1.01s-.47-1.03-1.03-1.03"/>
<path class="d" d="M75,117.77h0c-1.52,0-2.77-1.23-2.77-2.76s1.22-2.75,2.76-2.77v.68c-1.13,0-2.08.93-2.08,2.09s.94,2.07,2.09,2.07h0c1.15,0,2.09-.93,2.09-2.07s-.94-2.09-2.09-2.09v-.23.23-.68h0c1.54.02,2.76,1.25,2.76,2.77s-1.22,2.76-2.76,2.76"/>
<path class="d" d="M75.03,119.71h-.08c-.86-.06-1.8-.39-2.48-.88l-.18-.13.16-.63-.47.17-.16-.17c-.99-.96-1.43-2.07-1.36-3.33.07-1.07.39-1.92,1.01-2.64l.16-.19.54.2-.18-.54.17-.14c.78-.67,1.7-1.01,2.81-1.01h.11c1.11.02,2.04.36,2.81,1.01l.18.14-.18.54.54-.2.16.19c.62.72.94,1.56.99,2.64.08,1.27-.36,2.38-1.35,3.33l-.16.17-.48-.17.17.63-.19.13c-.68.49-1.62.82-2.5.88M73.05,118.41c.57.35,1.29.57,1.93.63.66-.06,1.37-.29,1.93-.63l-.36-1.38,1.27.43c.75-.8,1.07-1.67,1.03-2.69-.05-.82-.27-1.48-.69-2.03l-1.43.49.5-1.42c-.62-.48-1.36-.69-2.24-.69s-1.61.21-2.23.69l.5,1.42-1.42-.49c-.43.55-.66,1.21-.7,2.03-.07,1.01.27,1.89,1.03,2.69l1.27-.43s-.37,1.38-.37,1.38Z"/>
<polygon class="d" points="100.43 157.21 99.75 157.21 99.75 154.78 50.25 154.78 50.25 157.21 49.56 157.21 49.56 154.12 100.43 154.12 100.43 157.21"/>
<polygon class="d" points="75 167.26 48.16 167.24 48.16 166.56 74.99 166.59 101.81 166.56 101.81 167.24 75 167.26"/>
<path class="d" d="M100.8,170.62h-51.61v-2.05h-2.16v-.66h55.92v.66h-2.15s0,2.05,0,2.05ZM49.87,169.93h50.24v-1.36h-50.24s0,1.36,0,1.36Z"/>
<path class="d" d="M104.56,175.99h-59.13v-3.1h59.13v3.1ZM46.11,175.33h57.76v-1.76h-57.76v1.76Z"/>
<path class="d" d="M74.97,181.96l-.31-.48s-.62-1.03-1.3-1.91l-.21-.26c-.92-1.19-1.87-2.39-1.87-3.64h.68c0,1.01.87,2.14,1.73,3.21l.21.27c.42.56.81,1.13,1.07,1.52.25-.38.62-.96,1.05-1.52l.23-.25c.86-1.1,1.72-2.21,1.72-3.22h.68c0,1.25-.96,2.47-1.87,3.64l-.2.26c-.69.88-1.31,1.9-1.31,1.9l-.29.5v-.02Z"/>
<path class="d" d="M75,186.12l-.2-.13s-.04-.04-.1-.07c-.37-.24-1.4-.87-2.38-2.21-.13-.18-.2-.42-.24-.69l-.08.26-.42-.54c-1.43-1.85-3.33-4.6-3.33-7.07v-.35h5.34v.35c0,.74.85,1.55,1.37,1.96.5-.39,1.36-1.22,1.36-1.96h.67c0,1.41-1.77,2.6-1.85,2.66l-.18.12-.19-.12c-.07-.06-1.58-1.07-1.83-2.34h-4.01c.16,2.01,1.59,4.2,2.83,5.85.25-.45.53-.57.59-.62l.56-.2-.11.57c-.08.54-.13,1.42.07,1.7.86,1.18,1.74,1.77,2.14,1.99.39-.25,1.28-.81,2.13-1.98.21-.29.16-1.16.06-1.71l-.08-.56.55.19c.06.04.33.17.6.62,1.3-1.73,2.83-4.11,2.83-6.17h.68c0,2.47-1.91,5.23-3.35,7.09l-.42.53-.07-.27c-.04.27-.11.53-.24.69-.99,1.34-2.01,1.98-2.4,2.22-.02.01-.06.04-.08.06l-.2.13h0Z"/>
<path class="d" d="M76.9,154.49h-.68c0-.73-.75-1.53-1.22-1.97-.48.44-1.22,1.24-1.22,1.97h-.69c0-1.35,1.64-2.61,1.7-2.67l.21-.16.2.16c.06.06,1.7,1.33,1.7,2.67"/>
<path class="d" d="M134.9,202.26c0,10.21-26.82,18.48-59.9,18.48s-59.9-8.27-59.9-18.48h119.8Z"/>
<path class="d" d="M79.03,154.53l-.68-.07v-.17c0-1.42-2.27-3.63-3.38-4.57-1.12.93-3.39,3.15-3.39,4.57,0,.06.01.12.01.12l-.69.12v-.24c0-2.16,3.7-5.16,3.86-5.28l.21-.18.21.18c.17.12,3.86,3.12,3.86,5.28,0,.07,0,.14-.01.24"/>
<path class="d" d="M81.4,154.54l-.67-.1c.02-.2.04-.42.04-.61,0-1.33-.82-2.76-2.09-4.43-.3.49-.75.69-.78.72l-.64.29.17-.67c.11-.5.26-1.44.11-1.79-.68-1.77-2.07-2.76-2.53-3.07-.48.31-1.85,1.31-2.52,3.07-.14.35,0,1.29.12,1.79l.16.67-.63-.29s-.49-.21-.79-.72c-1.25,1.67-2.09,3.1-2.09,4.43,0,.19.02.39.05.61l-.68.1c-.02-.25-.05-.48-.05-.7,0-1.65,1.04-3.34,2.6-5.35l.48-.64.08.5c0-.24.04-.49.11-.66.93-2.36,2.91-3.49,3-3.52l.17-.08.17.08c.08.04,2.09,1.16,3.01,3.52.07.17.08.42.11.66l.07-.5.49.64c1.56,2.01,2.6,3.7,2.6,5.35,0,.23,0,.47-.05.7"/>
<path class="d" d="M75,221.92c-17.28,0-32.09-1.93-42.85-5.59-11.74-3.98-17.96-9.87-17.96-17.01,0-7.87,7.37-13.84,21.25-17.26l.17.68c-9.46,2.32-20.73,7.12-20.73,16.6,0,6.83,6.04,12.5,17.47,16.38,10.69,3.62,25.43,5.54,42.62,5.54s31.95-1.92,42.63-5.54c11.43-3.88,17.47-9.55,17.47-16.38,0-9.48-11.26-14.27-20.7-16.6l.16-.68c13.9,3.43,21.25,9.4,21.25,17.26,0,7.14-6.21,13.04-17.94,17.01-10.76,3.65-25.57,5.59-42.84,5.59"/>
<rect class="d" x="14.71" y="197" width="120.56" height=".68"/>
<rect class="d" x="15.03" y="195.58" width="119.89" height=".69"/>
<rect class="d" x="14.84" y="201.9" width="120.31" height=".68"/>
<rect class="d" x="14.65" y="200.49" width="120.68" height=".68"/>
<rect class="d" x="60.79" y="140.79" width="28.4" height=".7"/>
<rect class="d" x="61.46" y="139.68" width="27.05" height=".67"/>
<polygon class="d" points="89.89 130.35 89.19 130.35 89.19 130.01 60.79 130.01 60.79 130.35 60.11 130.35 60.11 129.32 89.89 129.32 89.89 130.35"/>
<path class="d" d="M72.53,129.79c-.54-1.24-.1-2.65,1.07-3.27.45-.26.96-1.16,1.11-1.48l.3-.66.31.66c.16.33.64,1.22,1.11,1.48,1.15.62,1.6,2.03,1.06,3.27l-.62-.27c.38-.92.05-1.96-.79-2.41-.44-.25-.84-.79-1.09-1.21-.25.43-.64.96-1.07,1.21-.84.45-1.17,1.49-.78,2.41,0,0-.62.27-.62.27Z"/>
<path class="d" d="M70.38,129.77c-.17-.55-.26-1.12-.26-1.72,0-1.13,1.01-2.48,1.77-3.44.19-.26.36-.48.47-.66l.54-.8.08.94c.02-.41.08-.79.2-.97.93-1.4,1.56-2.09,1.59-2.13l.25-.26.25.26s.64.72,1.6,2.13c.11.18.16.56.17.99v-.02l.1-.94.54.8c.1.18.27.39.45.66.75.96,1.77,2.32,1.77,3.44,0,.6-.1,1.17-.27,1.72l-.64-.23c.17-.49.25-.99.25-1.5,0-.88-.98-2.17-1.64-3.03-.04-.04-.05-.08-.08-.12-.26.53-.72.62-.73.62l-.44.11.02-.44c.04-.68,0-1.52-.07-1.67-.55-.84-.99-1.42-1.27-1.72-.25.3-.7.88-1.28,1.73-.07.17-.08.99-.05,1.67l.02.44-.44-.11s-.47-.11-.74-.62c-.01.05-.06.08-.08.11-.66.87-1.62,2.15-1.62,3.04,0,.5.08,1.01.24,1.5l-.66.23h-.02Z"/>
<path class="d" d="M84.45,108.88h-18.92c-1.5,0-2.73-1.13-2.73-2.54v-.2c0-1.4,1.23-2.54,2.73-2.54h18.92c1.5,0,2.72,1.13,2.72,2.54v.2c0,1.41-1.22,2.54-2.72,2.54M65.53,104.3c-1.12,0-2.04.82-2.04,1.85v.2c0,1.03.92,1.85,2.04,1.85h18.92c1.12,0,2.04-.82,2.04-1.85v-.2c0-1.03-.92-1.85-2.04-1.85h-18.92Z"/>
<path class="d" d="M85.74,120.44h-.69c0-2.11-1.68-4.45-1.71-4.45-1.48-2.7-.05-4.33.01-4.41.23-.23.42-.73.54-1.17h-17.83c.12.44.31.94.53,1.16.07.07,1.52,1.72.06,4.35-.05.06-1.73,2.41-1.73,4.51h-.67c0-2.33,1.76-4.76,1.84-4.87,1.18-2.15.06-3.46.01-3.53-.53-.5-.78-1.74-.8-1.9l-.07-.42h19.5l-.07.42c-.01.16-.26,1.4-.8,1.92-.04.05-1.16,1.37.05,3.55.05.08,1.84,2.52,1.84,4.85"/>
<path class="d" d="M83.68,104.3v-.69s.16-.13.16-.35-.12-.32-.16-.32h-17.36s-.16.12-.16.32.11.35.16.35v.69c-.48,0-.84-.45-.84-1.03s.36-1,.84-1h17.36c.47,0,.84.44.84,1s-.37,1.03-.84,1.03"/>
<polygon class="d" points="81.25 102.59 80.57 102.59 80.57 101.78 69.41 101.78 69.41 102.59 68.73 102.59 68.73 101.1 81.25 101.1 81.25 102.59"/>
<path class="d" d="M84.13,100.56h-18.25v-2.16l.44-.54v-.39c0-.5.42-.92.93-.92h5.37v.67h-5.37c-.13,0-.24.13-.24.25v.64l-.47.54v1.23h16.92v-1.23l-.48-.54v-.64c0-.12-.08-.25-.23-.25h-5.37v-.67h5.37c.5,0,.92.41.92.92v.39l.47.54v2.16h-.01Z"/>
<path class="d" d="M75,95.79c-1.19,0-2.13-.96-2.13-2.13s.94-2.14,2.13-2.14,2.13.96,2.13,2.14-.96,2.13-2.13,2.13M75,92.21c-.81,0-1.44.64-1.44,1.46s.63,1.44,1.44,1.44,1.43-.66,1.43-1.44-.63-1.46-1.43-1.46"/>
<path class="d" d="M74.99,99.94l-.29-.42s-.43-.62-.98-1.1l-.18-.17c-.43-.37-.82-.72-1.29-1.29l-.13-.17.2-.44-.47.14-.18-.24c-.66-.81-.79-1.03-.79-2.26v-.23l.33-.14-.33-.13v-.23c0-2.26,1.46-3.73,3.7-3.73.17,0,.21,0,.41.37.19-.37.23-.37.39-.37,2.24,0,3.71,1.47,3.71,3.73v.23l-.33.13.33.14v.23c0,1.24-.14,1.44-.8,2.26l-.19.24-.45-.14.2.44-.13.17c-.47.57-.86.92-1.29,1.31l-.19.16c-.55.48-.98,1.1-.98,1.1l-.29.42h0ZM72.92,96.72c.36.41.69.7,1.06,1.03l.2.17c.31.29.59.6.8.86.19-.26.48-.57.8-.86l.2-.17c.36-.33.69-.61,1.06-1.04l-.68-1.49,1.49.5c.45-.55.54-.7.54-1.49l-1.38-.6,1.38-.6c-.08-1.7-1.12-2.73-2.81-2.82-.12.24-.29.59-.29.59l-.3.64-.31-.62s-.2-.37-.31-.61c-1.71.08-2.73,1.11-2.82,2.82l1.38.6-1.4.6c0,.78.08.94.53,1.49l1.52-.5-.69,1.49h.01Z"/>
<path class="d" d="M83.38,94.4h-4.62v-.68h3.93c-.11-1.28-.73-2.03-1.29-2.45-.5-.38-.79-.96-.79-1.58v-.29c0-.17-.13-.3-.29-.3h-10.65c-.17,0-.29.13-.29.3v.29c0,.63-.31,1.19-.81,1.58-.55.41-1.18,1.17-1.28,2.45h3.93v.68h-4.62v-.35c0-1.76.86-2.78,1.56-3.33.35-.26.53-.62.53-1.04v-.29c0-.55.45-.98.98-.98h10.65c.55,0,.98.43.98.98v.29c0,.41.19.78.53,1.04.7.55,1.55,1.58,1.55,3.33v.35Z"/>
<g>
<path class="e" d="M77.54,57.99l.26-4.48.2-.55h-6.1l.24.62.24,4.41c.07,1.5,0,3.02-.17,4.51l-2.93,23.35c-.04.3.05.56.25.79.19.23.47.36.78.36h9.3c.29,0,.57-.13.76-.36.2-.21.27-.49.24-.79l-2.91-23.35c-.19-1.49-.24-3.01-.17-4.51Z"/>
<path class="d" d="M81.31,85.77l-2.9-23.38c-.19-1.44-.25-2.91-.17-4.38l.21-4.33.19-.51c.08-.18.05-.43-.07-.61-.12-.17-.33-.27-.55-.27h-6.12c-.23,0-.43.11-.56.27-.12.18-.14.43-.07.61l.2.51.21,4.33c.07,1.47.02,2.95-.17,4.38l-2.91,23.38c-.04.48.1.97.41,1.31.35.37.81.59,1.3.59h9.3c.49,0,.97-.21,1.29-.59.32-.36.47-.84.41-1.31ZM80.38,86.64c-.19.23-.48.36-.76.36h-9.3c-.31,0-.59-.13-.78-.36-.2-.23-.29-.49-.25-.79l2.93-23.35c.17-1.49.24-3.01.17-4.51l-.24-4.41-.24-.62h6.1l-.2.55-.26,4.48c-.07,1.5-.02,3.02.17,4.51l2.91,23.35c.04.3-.04.57-.24.79Z"/>
</g>
<g>
<path class="e" d="M77.54,57.99l.26-4.48.2-.55h-6.1l.24.62.24,4.41c.07,1.5,0,3.02-.17,4.51l-2.93,23.35c-.04.3.05.56.25.79.19.23.47.36.78.36h9.3c.29,0,.57-.13.76-.36.2-.21.27-.49.24-.79l-2.91-23.35c-.19-1.49-.24-3.01-.17-4.51Z"/>
<path class="e" d="M81.31,85.77l-2.9-23.38c-.19-1.44-.25-2.91-.17-4.38l.21-4.33.19-.51c.08-.18.05-.43-.07-.61-.12-.17-.33-.27-.55-.27h-6.12c-.23,0-.43.11-.56.27-.12.18-.14.43-.07.61l.2.51.21,4.33c.07,1.47.02,2.95-.17,4.38l-2.91,23.38c-.04.48.1.97.41,1.31.35.37.81.59,1.3.59h9.3c.49,0,.97-.21,1.29-.59.32-.36.47-.84.41-1.31ZM80.38,86.64c-.19.23-.48.36-.76.36h-9.3c-.31,0-.59-.13-.78-.36-.2-.23-.29-.49-.25-.79l2.93-23.35c.17-1.49.24-3.01.17-4.51l-.24-4.41-.24-.62h6.1l-.2.55-.26,4.48c-.07,1.5-.02,3.02.17,4.51l2.91,23.35c.04.3-.04.57-.24.79Z"/>
</g>
<path class="d" d="M78.08,51.77h-6.18c-.84,0-1.52-.64-1.52-1.42s.67-1.42,1.52-1.42h3.09v.68h-3.09c-.45,0-.82.35-.82.74s.37.74.82.74h6.18c.45,0,.84-.35.84-.74s-.38-.74-.84-.74h-3.08v-.68h3.08c.84,0,1.52.64,1.52,1.42s-.68,1.42-1.52,1.42"/>
<polygon class="d" points="78.4 49.26 77.72 49.26 77.72 48.39 75 48.39 75 47.7 78.4 47.7 78.4 49.26"/>
<rect class="d" x="83.28" y="108.54" width=".68" height="1.53"/>
<g>
<path class="d" d="M79.12,44.25c0-2.15-1.7-3.95-3.84-4.14h-.68v.02c-2.1.2-3.77,1.98-3.77,4.12,0,2.28,1.85,4.14,4.14,4.14v-.68c-1.91,0-3.46-1.58-3.46-3.46s1.55-3.45,3.45-3.46h.05c1.9.01,3.45,1.55,3.45,3.46s-1.55,3.46-3.47,3.46v.68c2.27,0,4.14-1.87,4.14-4.14Z"/>
<path class="d" d="M74.97,48.39h0s0,0-.01,0h.01Z"/>
</g>
<path class="d" d="M79.62,165.57c-.6,0-1.13-.17-1.43-.31l.19-.45c.3.14.87.33,1.43.29.37-.05.73-.17,1.15-.35l.04-.54.67.1c.53-.35,1.38-.99,2.09-1.65-.7-.66-1.56-1.31-2.09-1.65l-.67.1-.04-.56c-.42-.2-.78-.32-1.15-.33-.48-.05-.98,0-1.25.11l-.16-.47c.42-.13.98-.18,1.44-.13s.93.2,1.44.47l.12.07.02.29.33-.05.06.05c.61.37,1.65,1.15,2.45,1.92l.17.19-.17.17c-.81.79-1.84,1.56-2.45,1.92l-.06.05-.33-.05-.02.3-.12.06c-.51.27-.98.42-1.44.47h-.23Z"/>
<path class="d" d="M79.22,164.58c-.19,0-.36-.02-.53-.06l.16-.48c.44.13,1.19.13,2.67-1.38-.92-.97-1.8-1.47-2.5-1.41l-.02-.49c.91-.06,1.91.53,3.03,1.73l.16.18-.16.16c-1.11,1.21-2.02,1.77-2.81,1.77"/>
<path class="d" d="M83.62,165.6c-.96,0-1.71-.43-2.1-.88l.36-.33c.37.41,1.1.8,2.03.7.37-.05.74-.17,1.15-.35l.04-.54.66.1c.53-.33,1.4-.99,2.1-1.65-.7-.66-1.58-1.31-2.1-1.65l-.66.1-.04-.56c-.41-.2-.79-.32-1.15-.35-.94-.11-1.67.3-2.03.7l-.36-.33c.44-.48,1.34-.97,2.45-.86.47.05.92.2,1.44.47l.12.07v.29l.33-.05.07.05c.6.37,1.65,1.15,2.44,1.92l.18.19-.18.17c-.8.79-1.84,1.56-2.44,1.92l-.07.05-.32-.05v.3l-.13.06c-.51.27-.98.42-1.44.47-.11,0-.23.02-.35.02"/>
<path class="d" d="M83.21,164.56c-.38,0-.69-.13-.96-.26l.26-.43c.78.49,1.85.08,3.09-1.21-1.25-1.29-2.33-1.71-3.09-1.23l-.26-.39c.73-.48,1.99-.57,3.89,1.46l.17.17-.17.16c-1.24,1.31-2.2,1.74-2.93,1.74"/>
<path class="d" d="M87.67,165.6c-1.07,0-1.68-.49-2.01-.92l.38-.29c.42.57,1.1.79,1.99.7.35-.05.72-.17,1.13-.35l.04-.54.66.1c.55-.35,1.41-.99,2.1-1.65-.7-.66-1.56-1.31-2.1-1.65l-.66.1-.04-.56c-.41-.2-.78-.32-1.13-.35-.9-.1-1.58.14-1.99.7l-.39-.27c.37-.51,1.09-1.06,2.42-.92.47.05.92.2,1.43.47l.12.07v.29l.35-.05.06.05c.61.37,1.64,1.15,2.44,1.92l.17.19-.17.17c-.8.79-1.84,1.56-2.44,1.92l-.06.05-.33-.05v.3l-.13.06c-.51.27-.98.42-1.43.47-.14.02-.27.02-.41.02"/>
<path class="d" d="M87.32,164.56c-.37,0-.7-.13-.97-.29l.26-.43c.79.5,1.86.1,3.12-1.19-1.3-1.35-2.41-1.76-3.2-1.15l-.3-.38c.74-.57,2.03-.78,4.02,1.36l.14.17-.14.16c-1.24,1.31-2.21,1.74-2.94,1.74"/>
<path class="d" d="M91.77,165.6c-1.09,0-1.7-.49-2.01-.92l.38-.29c.43.57,1.11.79,1.99.7.36-.05.73-.17,1.15-.35l.02-.54.67.1.04-.05c.51-.31,1.35-.96,2.04-1.6-.69-.66-1.55-1.31-2.09-1.65l-.67.1-.02-.56c-.42-.2-.79-.32-1.15-.35-.96-.11-1.66.3-2.05.7l-.35-.33c.45-.48,1.34-.97,2.46-.86.45.05.91.2,1.41.47l.13.07.02.29.31-.05.07.05c.62.37,1.64,1.15,2.45,1.92l.17.19-.17.17c-.75.75-1.73,1.48-2.3,1.85l-.21.12-.31-.05-.02.3-.13.06c-.5.27-.97.42-1.41.47-.16.02-.29.02-.42.02"/>
<path class="d" d="M91.43,164.56c-.39,0-.7-.13-.96-.29l.26-.43c.78.5,1.86.1,3.13-1.19-1.33-1.35-2.44-1.76-3.22-1.15l-.3-.38c.73-.57,2.02-.78,4.02,1.36l.16.17-.16.16c-1.25,1.31-2.22,1.74-2.95,1.74"/>
<path class="d" d="M95.9,165.6c-1.09,0-1.7-.49-2.03-.92l.38-.29c.43.57,1.1.79,1.99.7.33-.05.72-.17,1.13-.35l.02-.54.66.1c.54-.35,1.41-1,2.11-1.65-.72-.66-1.58-1.31-2.11-1.65l-.66.1-.02-.56c-.41-.2-.79-.32-1.13-.35-.96-.11-1.7.3-2.05.7l-.36-.33c.44-.48,1.34-.97,2.46-.86.45.05.92.2,1.42.47l.13.07v.29l.33-.05.07.05c.61.37,1.65,1.15,2.46,1.92l.17.19-.17.17c-.81.79-1.85,1.56-2.46,1.92l-.07.05-.31-.05v.3l-.14.06c-.5.27-.97.42-1.42.47-.14.02-.29.02-.39.02"/>
<path class="d" d="M95.55,164.56c-.43,0-.76-.16-1.04-.33l.27-.41c.79.56,1.89.16,3.16-1.17-1.22-1.29-2.29-1.71-3.07-1.23l-.26-.43c.73-.44,1.97-.51,3.84,1.49l.16.17-.16.16c-1.24,1.31-2.2,1.74-2.93,1.74"/>
<path class="d" d="M79.53,138.4c-.48,0-.78-.16-1.06-.31-.11-.04-.2-.1-.29-.13l.29-.61c.11.04.2.1.3.14.32.16.49.26.87.24.59-.02.76-.29,1.07-.68.16-.2.32-.42.57-.63.21-.21.51-.39.79-.53-.27-.14-.56-.32-.79-.53-.23-.19-.37-.39-.53-.62-.36-.48-.61-.8-1.5-.72l-.08-.69c1.3-.12,1.74.49,2.14,1.01.13.19.26.36.43.53.41.37,1.24.69,1.24.69l.84.32-.84.3s-.84.35-1.24.73c-.19.17-.35.36-.49.54-.35.45-.68.91-1.59.97h-.14v-.02Z"/>
<path class="d" d="M81.73,138.4c-.39,0-.57-.1-.82-.23-.07-.05-.16-.08-.25-.13l.29-.62c.12.06.23.11.31.16.23.14.32.19.92.11.72-.11,1.06-.44,1.52-.91.13-.12.27-.26.42-.38.21-.21.53-.39.8-.53-.27-.14-.59-.32-.8-.53-.14-.14-.3-.27-.43-.42-.49-.51-.87-.91-1.58-.91-.51,0-.64.07-1.01.25l-.18.07-.27-.62.16-.07c.39-.18.63-.32,1.3-.32.99,0,1.54.59,2.05,1.12.13.16.26.27.39.42.35.3,1.04.59,1.28.69l.82.32-.82.3s-.86.35-1.28.73c-.13.12-.25.24-.39.36-.48.5-.94.97-1.9,1.1-.21.04-.39.05-.54.05"/>
<path class="d" d="M87.52,135.57s-.16-.08-.3-.14c-.25-.11-.39-.18-.51-.25-.1-.12-.2-.21-.31-.31-.51-.5-.88-.86-1.66-.86-.55,0-.74.08-1.16.3l-.08.02-.29-.62.07-.02c.45-.23.74-.36,1.46-.36,1.04,0,1.56.54,2.14,1.05.1.11.2.2.3.29.06.02.23.12.33.17.19.1.33.14.41.21l-.39.55v-.02Z"/>
<path class="d" d="M84.39,138.41c-.49,0-.69-.12-.93-.26-.07-.06-.16-.12-.26-.18l.29-.61c.17.07.27.16.36.21.19.12.31.2.87.14.94-.08,1.34-.47,1.99-1.05l.04-.04c.12-.12.29-.19.51-.29.1-.01.24-.08.27-.1l.41.55c-.1.07-.25.12-.41.19-.11.05-.27.11-.32.14l-.04.05c-.7.62-1.23,1.12-2.4,1.23h-.38"/>
<rect class="d" x="78.88" y="132.69" width="9.26" height=".69"/>
<rect class="d" x="76.75" y="138.4" width="11.34" height=".68"/>
<path class="d" d="M134.01,111.18l.04.07,10.49,4.58-4.82-11.95-.02-.07-50.97-48.02h0l46.98,36.19,9.67,1.71-6.34-9.55-48.95-30.83h0l43.4,22.33.05.04,11.13.75-7.96-8.01-45.67-17.88h0s39.57,11.15,39.57,11.15h.06l9.99-1.83-8.79-5.64-40.4-6.59h0l36.46,1.65,7.34-3.24-7.35-3.01-36.55,1.6h0l30.25-3.32,7.7-4.27-8.95-1.85-29.62,6.54h0s25.65-8.18,25.65-8.18l7.46-5.91h-9.43l-24.87,11.25h0s22.67-12.36,22.67-12.36l3.33-5.75-6.64.47-21,15.13h0l18.18-14.88,2.22-6.29-6.45,1.68-16.13,17.24h0l14.79-18.15.06-.06.93-6.6-5.98,2.94-12.44,20.02h0l10.98-20.85.05-.08-.39-6.65-5.29,4.07-8.41,22.17h-.01l6.41-22.7-1.73-6.4-4.35,5.06-3.63,23.34h-.01l1.4-24.36-3.12-5.89-3.13,5.89,1.46,24.34h-.01l-3.68-23.33-4.37-5.06-1.73,6.4,6.46,22.68h-.01l-8.42-22.06-.04-.08-5.29-4.07-.39,6.65,11.06,20.92h0l-12.46-20.01-5.98-2.94.92,6.6,14.88,18.21h0l-16.31-17.32-.07-.08-6.44-1.68,2.22,6.29,18.41,15.06h0l-20.85-14.91-.07-.06-6.64-.47,3.33,5.75,22.59,12.2h0l-24.77-11.25-.07-.04h-9.42s7.35,5.86,7.35,5.86l25.75,8.2h0s-29.75-6.6-29.75-6.6l-8.93,1.85,7.69,4.27,30.36,3.43h0l-36.32-1.54h-.07l-7.34,3.01,7.34,3.24,36.31-1.68h0l-40.49,6.66-8.78,5.64,9.99,1.84,39.72-11.21h0s-45.61,17.79-45.61,17.79l-.06.04-7.96,8.01,11.12-.75,43.45-22.35h0s-48.88,30.78-48.88,30.78l-.06.04-6.35,9.55,9.68-1.71,46.97-36.19h0S10.35,103.75,10.35,103.75l-.05.05-4.85,12.02,10.47-4.58,47.09-53.26h0L14.37,121.83l-5.07,14.42,11.89-8.25.05-.05,43.86-68.11v.02l-44.57,80.36-2.73,14.32,10.17-9.83,39.63-83.32h0l-39.91,93.94v12.62l8.61-9.38,34.11-96.41c-6.71-1.98-11.62-8.19-11.62-15.52,0-8.93,7.26-16.19,16.19-16.19s16.19,7.26,16.19,16.19c0,7.33-4.91,13.54-11.6,15.52l34.07,96.36.02.05,8.61,9.38v-12.62l-39.9-93.94h0l39.57,83.23,10.22,9.92-2.69-14.21-44.62-80.49h0l43.82,68.09.02.04,11.95,8.3-5.03-14.34-48.69-63.93h0l47.03,53.2h.06Z"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 113 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

View file

@ -0,0 +1 @@
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 141.73 27.81"><defs><style>.cls-1{fill:#bfd732;}</style></defs><path id="Trazado_157" data-name="Trazado 157" d="M11.32,25.26C4.32,25.26,0,19.38,0,13,0,6.27,3.86.89,11.24.89c5.44,0,9.62,3.25,10,7.8H16.41c-.24-2.13-2.53-3.86-5.14-3.86-3.81,0-6.37,3-6.37,8.39,0,3.76,1.89,8,6.32,8,4.13,0,5.56-2,5.56-5.22H11.72V12.21h9.51V16C21.25,21.48,18.94,25.26,11.32,25.26Z"/><path id="Trazado_158" data-name="Trazado 158" d="M24,24.49V1.39h4.48v23.1Z"/><path id="Trazado_159" data-name="Trazado 159" d="M30.58,14.71a8.68,8.68,0,0,1,7.49-7.53c6-.54,9.75,3.06,9.75,8.84,0,5.36-3.33,8.9-8.61,8.9C33.3,24.94,30,20.68,30.58,14.71Zm12.73,1.34c0-3.44-1.38-5.12-4.1-5.12s-4.1,1.68-4.1,5.12,1.39,5.16,4.1,5.16S43.31,19.49,43.31,16.05Z"/><path id="Trazado_160" data-name="Trazado 160" d="M50,24.49V1.39h4.39v8.4a5.86,5.86,0,0,1,5-2.64c4.37,0,6.95,3.62,6.93,8.74,0,5.7-3.07,9.08-7.33,9.08a5.15,5.15,0,0,1-4.71-2.5l0,2.05H50Zm11.83-8.31c0-3.46-1.23-5.22-3.84-5.22s-3.75,1.81-3.75,5.52c0,2.85,1.65,4.85,3.78,4.85s3.81-2.14,3.81-5.15Z"/><path id="Trazado_161" data-name="Trazado 161" d="M79.54,24.52A7.22,7.22,0,0,1,79.28,23a6.8,6.8,0,0,1-5.12,2c-3.86,0-5.64-1.89-5.64-4.64,0-4.87,3.27-5.43,7.77-6,2.24-.32,2.86-.75,2.86-1.92s-1.1-1.76-2.86-1.76c-2,0-2.85,1-3.06,2.51H69.05c.08-3.52,2-5.94,7.43-5.94s7.22,2.39,7.22,6.66V24.52Zm-.29-8.29c-.45.46-1.22.7-2.88,1-2.53.48-3.35,1.2-3.35,2.64,0,1.27.74,1.89,2.15,1.89a3.89,3.89,0,0,0,4-3.68Z"/><path id="Trazado_162" data-name="Trazado 162" d="M97.61,24.52V14.26c0-2.61-.75-3.33-2.88-3.33-2.35,0-3.47,1.31-3.47,3.89v9.7H86.79V7.6h4.26v2.48a5.66,5.66,0,0,1,5.46-2.93,5.23,5.23,0,0,1,5.6,4.84,5.47,5.47,0,0,1,0,.81V24.52Z"/><path id="Trazado_163" data-name="Trazado 163" d="M115,18.18c-.11,1.86-.93,2.9-2.61,2.9s-2.59-1.25-2.59-3.38V10.77h6.93V7.18h-6.9V3.05h-4.42V18.18c0,3.65,2,6.82,6.9,6.82,4.77,0,6.84-3.2,6.84-6.77v0Z"/><path id="Trazado_164" data-name="Trazado 164" class="cls-1" d="M124.48.14a1.06,1.06,0,0,0-1.43.37,1.06,1.06,0,0,0-.11.8l2,3a17.27,17.27,0,0,1,0,19.21l-2,3a1,1,0,0,0,.67,1.27h0a.91.91,0,0,0,.8-.11L141.21,15a1.29,1.29,0,0,0,.27-1.8,1.62,1.62,0,0,0-.27-.28Z"/></svg>

After

Width:  |  Height:  |  Size: 2.1 KiB

View file

@ -0,0 +1,44 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 24.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 208.9 58.9" style="enable-background:new 0 0 208.9 58.9;" xml:space="preserve">
<style type="text/css">
.st0{opacity:0.75;fill:#13487D;}
.st1{opacity:0.75;fill:#1C75BC;}
.st2{opacity:0.75;fill:#6DCFF6;}
</style>
<g>
<g>
<polygon class="st0" points="24.4,14.3 36.5,34 48.7,53.7 24.4,53.7 0,53.7 12.2,34 "/>
<polygon class="st1" points="42.9,0 55.1,26.9 67.3,53.7 42.9,53.7 18.5,53.7 30.7,26.9 "/>
<polygon class="st2" points="33.6,7.7 45.8,30.7 58,53.7 33.6,53.7 9.3,53.7 21.5,30.7 "/>
</g>
<g>
<rect x="73.1" y="7.7" width="1.4" height="17.1"/>
<path d="M88,16.8c2.6-0.4,4.1-2,4.1-4.5c0-2.8-2-4.6-5.3-4.6h-7.6v17.1h1.4v-7.9h5.7l5.5,7.8l0,0.1h1.7L88,16.8z M80.6,9h6.1
c2.5,0,3.9,1.2,3.9,3.3c0,2.1-1.4,3.3-3.9,3.3h-6.1V9z"/>
<path d="M103.9,7.4c-4.9,0-8.5,3.8-8.5,8.8c0,5,3.7,8.8,8.5,8.8c4.8,0,8.5-3.8,8.5-8.8C112.4,11.2,108.8,7.4,103.9,7.4z
M103.9,23.7c-4,0-7.1-3.2-7.1-7.5c0-4.2,3-7.4,7.1-7.4c4,0,7,3.2,7,7.4C111,20.5,108,23.7,103.9,23.7z"/>
<polygon points="128.7,22.2 117.5,7.7 117.5,7.7 116.3,7.7 116.3,24.8 117.7,24.8 117.7,10.2 128.9,24.7 128.9,24.8 130.1,24.8
130.1,7.7 128.7,7.7 "/>
<polygon points="80.7,45 74.3,36.6 74.3,36.6 72.9,36.6 72.9,53.6 74.3,53.6 74.3,38.9 80.2,46.6 80.3,46.6 81.1,46.6 87,38.9
87,53.6 88.5,53.6 88.5,36.6 87.1,36.6 "/>
<path d="M100.8,36.3c-4.9,0-8.5,3.8-8.5,8.8c0,5,3.7,8.8,8.5,8.8c4.8,0,8.5-3.8,8.5-8.8C109.3,40.1,105.7,36.3,100.8,36.3z
M100.8,52.6c-4,0-7.1-3.2-7.1-7.5c0-4.2,3-7.4,7.1-7.4c4,0,7,3.2,7,7.4C107.8,49.4,104.8,52.6,100.8,52.6z"/>
<path d="M125.2,46.3c0,3.9-2,6.2-5.4,6.2c-3.4,0-5.4-2.3-5.4-6.2v-9.8h-1.4v9.8c0,4.7,2.6,7.6,6.9,7.6c4.2,0,6.9-2.9,6.9-7.6v-9.8
h-1.4V46.3z"/>
<polygon points="143.3,51.1 132.1,36.6 132.1,36.6 130.9,36.6 130.9,53.6 132.3,53.6 132.3,39.1 143.5,53.6 143.5,53.6
144.7,53.6 144.7,36.6 143.3,36.6 "/>
<polygon points="161.1,36.6 147.6,36.6 147.6,37.9 153.7,37.9 153.7,53.6 155.1,53.6 155.1,37.9 161.1,37.9 "/>
<path d="M168.8,36.5h-1.3l-7.7,17l-0.1,0.2h1.5l2.2-4.9h9.3l2.2,4.9h1.5L168.8,36.5L168.8,36.5z M172.2,47.4h-8.2l4.1-9
L172.2,47.4z"/>
<rect x="179.4" y="36.6" width="1.4" height="17.1"/>
<polygon points="197.9,51.1 186.8,36.6 186.8,36.6 185.5,36.6 185.5,53.6 187,53.6 187,39.1 198.1,53.6 198.2,53.6 199.4,53.6
199.4,36.6 197.9,36.6 "/>
<path d="M205.2,35.5c-1.7,0-3.2,1.4-3.2,3.2s1.4,3.2,3.2,3.2c1.8,0,3.2-1.4,3.2-3.2C208.4,37,207,35.5,205.2,35.5z M205.2,41.4
c-1.5,0-2.7-1.2-2.7-2.7c0-1.5,1.2-2.7,2.7-2.7c1.5,0,2.7,1.2,2.7,2.7C207.9,40.2,206.7,41.4,205.2,41.4z"/>
<path d="M206.6,38c0-0.6-0.4-1-1.1-1H204v3.4h0.6V39h0.8l1,1.4h0.7l-1.1-1.5C206.4,38.7,206.6,38.4,206.6,38z M204.6,37.5h0.9
c0.2,0,0.5,0.1,0.5,0.4c0,0.3-0.2,0.4-0.5,0.4h-0.9V37.5z"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.9 KiB

View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" id="_레이어_1" version="1.1" viewBox="0 0 1907.3154585 291.1227888"><defs><style>.st2{fill-rule:evenodd;fill:#051766}</style><mask id="mask" width="275.8378804" height="291.1227888" x="0" y="0" maskUnits="userSpaceOnUse"><g id="mask0_407_41521"><path id="Clip_23" d="M.001 0h275.837v291.122H0z" style="fill:#fff;fill-rule:evenodd"/></g></mask></defs><g id="Logo"><g id="logo"><g id="Group_24" style="mask:url(#mask)"><path id="Fill_22" d="m19.215 217.032-1.165.801c23.727 43.74 68.633 73.29 119.869 73.29 76.201 0 137.919-65.212 137.919-145.56 0-22.128-9.17-40.759-20.014-54.878-14.41-18.778-34.934-27.802-55.386-27.948-16.885-.145-34.351 5.532-46.653 16.666-14.047 12.737-17.176 29.114-20.815 55.678-4.002 29.112-27.438 49.2-57.568 49.2-39.011 0-63.174-24.017-61.573-60.772.146-2.548.364-5.094.8-7.568 7.351-43.377 54.004-88.137 124.164-87.993 47.089 0 82.46 10.553 117.832 46.143l1.165-.8C234.063 29.552 189.23 0 137.92 0 61.79 0 0 65.211 0 145.563c0 22.124 9.17 40.756 20.016 54.874 14.337 18.778 34.935 27.73 55.386 27.95 16.885.217 34.352-5.534 46.651-16.668 14.048-12.737 17.177-29.112 20.816-55.677 4.003-29.113 27.51-49.2 57.569-49.2 39.082 0 63.246 24.017 61.644 60.771-.144 2.548-.364 5.096-.798 7.571-7.498 43.376-53.93 88.137-124.237 87.99-47.09 0-82.46-10.552-117.832-46.142" class="st2"/></g><path id="Fill_25" d="M535.32 217.34q6.47 6.823 11.79 10.75h-22.424q-11.79 0-20.575-4.161c-5.858-2.775-11.557-7.55-17.107-14.333l-55.711-69.582 71.895-76.98h36.987l-72.127 75.593 50.166 59.18q10.633 12.718 17.106 19.533m-141.71 10.75h32.827V63.034H393.61z" class="st2"/><path id="Fill_27" d="M662.236 198.038q12.251-6.933 19.187-20.344 6.937-13.407 6.936-32.132c-.001-18.725-2.311-23.194-6.936-32.133q-6.936-13.407-19.187-20.343-12.255-6.935-27.972-6.935-15.952 0-28.204 6.935c-8.17 4.622-14.564 11.406-19.186 20.343q-6.937 13.409-6.936 32.133c0 18.724 2.31 23.195 6.936 32.132q6.932 13.409 19.186 20.344 12.253 6.933 28.204 6.934 15.716 0 27.972-6.934m-73.052 22.076q-20.11-10.747-31.555-30.168-11.441-19.418-11.442-44.384c-.001-24.966 3.815-31.44 11.442-44.385q11.446-19.42 31.555-30.17 20.114-10.747 45.08-10.748 24.733.001 44.847 10.748 20.112 10.752 31.556 30.285 11.443 19.536 11.443 44.27 0 24.738-11.443 44.268-11.445 19.538-31.556 30.284-20.114 10.75-44.847 10.75-24.966 0-45.08-10.75" class="st2"/><path id="Fill_29" d="M904.504 228.09h-20.806q-12.717 0-21.497-4.392-8.789-4.39-16.183-14.102l-49.933-67.04h15.026c12.327 0 21.65-2.347 27.972-7.05q9.477-7.047 9.478-20.69 0-13.404-9.364-19.882-9.362-6.47-28.78-6.472h-20.573V228.09h-32.828V63.033h60.104q19.647 0 34.33 6.012 14.678 6.012 22.54 17.222c5.236 7.476 7.859 16.22 7.859 26.237 0 11.098-3.201 20.771-9.593 29.012q-9.596 12.369-26.931 18.379l30.282 37.912q15.487 19.42 28.897 30.284" class="st2"/><path id="Fill_31" d="M1033.496 202.198v25.893H924.847V63.033h106.339v25.89H957.67v41.15h61.731v25.429h-61.73v46.696z" class="st2"/><path id="Fill_33" d="m1161.098 169.604-26.348-60.798-26.358 60.798zm63.807 58.485h-19.644c-6.48 0-11.873-1.5-16.19-4.506-4.316-3.005-8.172-8.358-11.559-16.067l-5.55-12.945h-74.435l-14.564 33.518h-30.978l75.825-165.057h18.03l58.95 128.07c8.33 18.03 15.035 30.364 20.115 36.987" class="st2"/><path id="Fill_35" d="M1394.125 63.033v165.058h-18.03L1275.303 119.44v108.65h-28.208V63.034h18.038l100.785 108.651V63.034z" class="st2"/><path id="Fill_37" d="m1591.543 169.604-26.358-60.798-26.348 60.798zm63.807 58.485h-19.654c-6.47 0-11.873-1.5-16.189-4.506-4.307-3.005-8.163-8.358-11.55-16.067l-5.55-12.945h-74.435l-14.564 33.518h-30.978l75.825-165.057h18.03l58.95 128.07c8.32 18.03 15.025 30.364 20.115 36.987" class="st2"/><path id="Fill_39" d="M1677.539 228.089h32.828V63.032h-32.828z" class="st2"/><path id="Fill_41" d="M1907.315 228.09h-20.798c-8.477 0-15.651-1.463-21.504-4.392q-8.794-4.39-16.18-14.102l-49.936-67.04h15.024c12.332 0 21.65-2.347 27.973-7.05q9.485-7.047 9.485-20.69 0-13.404-9.367-19.882c-6.245-4.312-15.837-6.472-28.786-6.472h-20.574V228.09h-32.818V63.033h60.096c13.106 0 24.548 2.004 34.336 6.012 9.788 4.009 17.295 9.748 22.541 17.222 5.237 7.476 7.86 16.22 7.86 26.237q0 16.649-9.602 29.012-9.588 12.369-26.926 18.379l30.283 37.912q15.489 19.42 28.893 30.284" class="st2"/></g></g></svg>

After

Width:  |  Height:  |  Size: 4.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 31 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 36 KiB

View file

@ -0,0 +1,810 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 22.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="250.1px" height="250.1px" viewBox="0 0 250.1 250.1" enable-background="new 0 0 250.1 250.1" xml:space="preserve">
<path fill="#500000" d="M250.05,126.59c0-1.06,0-2.13,0-3.19h-3.56c-0.01-0.6-0.01-1.19-0.03-1.79l3.56-0.14
c-0.05-1.07-0.09-2.13-0.13-3.2l-3.56,0.15c-0.03-0.59-0.07-1.19-0.11-1.78l3.56-0.29c-0.09-1.06-0.17-2.12-0.25-3.19l-3.56,0.29
c-0.06-0.59-0.12-1.18-0.18-1.77l3.54-0.43c-0.13-1.06-0.26-2.12-0.39-3.18l-3.54,0.44c-0.08-0.59-0.16-1.17-0.25-1.76l3.51-0.58
c-0.17-1.05-0.35-2.1-0.52-3.15l-3.51,0.58c-0.1-0.58-0.22-1.17-0.33-1.75l3.5-0.72c-0.22-1.04-0.44-2.09-0.66-3.13l-3.49,0.72
c-0.13-0.58-0.26-1.16-0.39-1.73l3.46-0.87c-0.26-1.03-0.52-2.07-0.79-3.1l-3.45,0.87c-0.15-0.57-0.3-1.14-0.46-1.71l3.41-1
c-0.3-1.02-0.6-2.05-0.9-3.07l-3.42,1.01c-0.17-0.56-0.36-1.13-0.54-1.69l3.37-1.15c-0.34-1.01-0.69-2.02-1.03-3.03l-3.37,1.15
c-0.2-0.56-0.4-1.11-0.6-1.67l3.32-1.28c-0.39-0.99-0.77-1.99-1.16-2.98l-3.32,1.29c-0.22-0.55-0.44-1.1-0.67-1.64l3.28-1.42
c-0.43-0.98-0.86-1.96-1.29-2.93l-3.26,1.42c-0.24-0.54-0.49-1.07-0.74-1.6l3.21-1.56c-0.46-0.96-0.93-1.92-1.39-2.88l-3.22,1.56
c-0.26-0.53-0.53-1.05-0.8-1.58l3.13-1.69c-0.5-0.94-1-1.88-1.5-2.82l-3.14,1.69c-0.29-0.51-0.57-1.03-0.86-1.54l3.07-1.81
c-0.55-0.92-1.09-1.84-1.64-2.75L228.88,62c-0.3-0.5-0.62-1-0.93-1.49l2.99-1.94c-0.58-0.89-1.16-1.79-1.74-2.68l-2.99,1.94
c-0.33-0.49-0.65-0.98-0.99-1.46l2.9-2.06c-0.61-0.87-1.22-1.74-1.83-2.6l-2.91,2.06c-0.35-0.48-0.69-0.95-1.04-1.42l2.82-2.17
c-0.64-0.85-1.3-1.69-1.95-2.53l-2.83,2.17c-0.36-0.46-0.74-0.92-1.11-1.38l2.73-2.28c-0.68-0.82-1.37-1.63-2.05-2.45l-2.73,2.28
c-0.38-0.45-0.77-0.89-1.16-1.33l2.64-2.39c-0.72-0.79-1.43-1.58-2.15-2.37l-2.64,2.4c-0.4-0.43-0.8-0.86-1.21-1.29l2.54-2.5
c-0.75-0.76-1.5-1.51-2.24-2.27l-2.54,2.5c-0.42-0.41-0.84-0.82-1.26-1.23l2.44-2.6c-0.78-0.73-1.55-1.45-2.33-2.18l-2.43,2.6
c-0.43-0.4-0.88-0.79-1.32-1.18l2.34-2.7c-0.81-0.69-1.62-1.39-2.43-2.09l-2.33,2.7c-0.45-0.38-0.9-0.75-1.36-1.13l2.22-2.79
c-0.83-0.66-1.67-1.32-2.5-1.98l-2.23,2.79c-0.46-0.36-0.93-0.72-1.4-1.07l2.11-2.88c-0.86-0.63-1.72-1.26-2.58-1.88L195.3,26
c-0.48-0.34-0.96-0.67-1.45-1l1.99-2.96c-0.88-0.59-1.77-1.19-2.65-1.78l-1.99,2.97c-0.49-0.32-0.99-0.64-1.49-0.95l1.86-3.04
c-0.9-0.56-1.81-1.11-2.72-1.67L187,20.58c-0.51-0.3-1.01-0.61-1.52-0.9l1.73-3.1c-0.93-0.52-1.86-1.04-2.79-1.55l-1.73,3.11
c-0.52-0.28-1.04-0.55-1.56-0.82l1.62-3.19c-0.95-0.48-1.91-0.96-2.86-1.43l-1.6,3.18c-0.53-0.26-1.06-0.51-1.59-0.76l1.48-3.25
c-0.97-0.44-1.93-0.88-2.9-1.32l-1.48,3.25c-0.54-0.23-1.07-0.47-1.61-0.7l1.34-3.29c-0.98-0.4-1.97-0.8-2.95-1.2l-1.35,3.29
c-0.55-0.21-1.1-0.42-1.64-0.63l1.21-3.35c-1-0.36-2-0.72-3-1.08l-1.21,3.35c-0.55-0.19-1.11-0.37-1.67-0.56l1.06-3.4
c-1.02-0.31-2.03-0.64-3.04-0.96l-1.06,3.41c-0.56-0.17-1.12-0.34-1.69-0.5l0.92-3.44c-1.03-0.28-2.05-0.56-3.08-0.84l-0.92,3.45
c-0.57-0.14-1.13-0.28-1.7-0.42l0.77-3.49c-1.04-0.23-2.07-0.46-3.11-0.69l-0.77,3.48c-0.57-0.12-1.14-0.24-1.72-0.35l0.64-3.5
c-1.04-0.2-2.09-0.39-3.13-0.59l-0.64,3.52c-0.57-0.1-1.15-0.2-1.73-0.29l0.49-3.52c-1.05-0.15-2.11-0.29-3.16-0.44l-0.49,3.51
c-0.58-0.07-1.16-0.13-1.74-0.2l0.35-3.55c-1.06-0.1-2.11-0.21-3.17-0.31l-0.35,3.55c-0.58-0.05-1.16-0.1-1.74-0.14l0.21-3.56
c-1.06-0.06-2.12-0.12-3.18-0.18l-0.22,3.56c-0.58-0.02-1.16-0.05-1.74-0.07l0.07-3.56c-1.06-0.02-2.13-0.04-3.19-0.06l-0.07,3.57
c-0.58-0.01-1.16-0.01-1.74,0.01l-0.07-3.56c-1.06,0.02-2.12,0.04-3.19,0.06l0.07,3.57c-0.6,0.02-1.2,0.04-1.79,0.07l-0.22-3.55
c-1.06,0.07-2.12,0.14-3.18,0.2l0.22,3.54c-0.6,0.05-1.19,0.1-1.79,0.16l-0.36-3.54c-1.06,0.11-2.11,0.21-3.17,0.32l0.36,3.55
c-0.59,0.07-1.18,0.14-1.77,0.22l-0.51-3.52c-1.05,0.15-2.11,0.3-3.16,0.45L106,5.13c-0.59,0.09-1.17,0.19-1.76,0.29l-0.65-3.5
c-1.05,0.19-2.09,0.39-3.14,0.58l0.64,3.5c-0.58,0.12-1.16,0.24-1.74,0.37l-0.8-3.47c-1.04,0.23-2.07,0.47-3.11,0.7l0.81,3.48
c-0.58,0.14-1.16,0.28-1.74,0.43l-0.94-3.43c-1.02,0.28-2.05,0.56-3.07,0.84l0.94,3.43c-0.57,0.16-1.14,0.34-1.7,0.51l-1.08-3.4
c-1.01,0.32-2.03,0.65-3.04,0.97l1.08,3.39c-0.57,0.19-1.13,0.38-1.69,0.58l-1.22-3.35c-1,0.36-2,0.73-3,1.1l1.22,3.35
c-0.55,0.21-1.1,0.42-1.65,0.63L79,8.84c-0.98,0.41-1.97,0.81-2.95,1.22l1.36,3.3c-0.55,0.23-1.09,0.47-1.63,0.71l-1.5-3.24
c-0.96,0.45-1.93,0.9-2.89,1.34l1.49,3.23c-0.54,0.25-1.07,0.52-1.6,0.78L69.65,13c-0.95,0.48-1.89,0.97-2.84,1.45l1.63,3.18
c-0.52,0.28-1.05,0.55-1.57,0.84l-1.74-3.1c-0.92,0.53-1.85,1.04-2.78,1.56l1.75,3.1c-0.51,0.3-1.02,0.6-1.53,0.9l-1.88-3.02
c-0.9,0.56-1.81,1.12-2.71,1.68l1.88,3.02c-0.5,0.32-0.99,0.64-1.48,0.97l-2-2.96c-0.88,0.6-1.76,1.2-2.64,1.8l2,2.95
c-0.48,0.34-0.97,0.67-1.45,1.02l-2.12-2.86c-0.86,0.63-1.71,1.26-2.56,1.9l2.12,2.87c-0.47,0.36-0.94,0.71-1.4,1.08l-2.23-2.77
c-0.83,0.67-1.66,1.33-2.49,2l2.22,2.77c-0.45,0.37-0.9,0.76-1.35,1.14l-2.35-2.69c-0.8,0.7-1.6,1.41-2.4,2.11l2.34,2.68
c-0.44,0.39-0.87,0.79-1.31,1.19l-2.45-2.58c-0.77,0.73-1.55,1.46-2.32,2.19L40.44,38c-0.42,0.41-0.85,0.82-1.26,1.23l-2.55-2.48
c-0.74,0.77-1.48,1.53-2.23,2.29l2.55,2.48c-0.4,0.43-0.8,0.86-1.2,1.29l-2.65-2.38c-0.71,0.79-1.42,1.58-2.14,2.38l2.65,2.38
c-0.39,0.44-0.77,0.89-1.15,1.34l-2.74-2.27c-0.68,0.82-1.37,1.64-2.05,2.46L30.42,49c-0.37,0.46-0.74,0.91-1.1,1.38l-2.84-2.15
c-0.64,0.85-1.28,1.7-1.93,2.55l2.83,2.15c-0.35,0.47-0.7,0.95-1.04,1.43l-2.92-2.04c-0.61,0.87-1.22,1.75-1.83,2.62l2.92,2.03
c-0.33,0.49-0.65,0.98-0.98,1.47l-3-1.93c-0.57,0.9-1.15,1.79-1.73,2.69l3.01,1.93c-0.31,0.5-0.62,0.99-0.92,1.5l-3.08-1.79
c-0.54,0.92-1.07,1.84-1.61,2.76l3.08,1.79c-0.29,0.51-0.58,1.02-0.86,1.54l-3.14-1.67c-0.5,0.94-1,1.89-1.49,2.83l3.14,1.66
c-0.27,0.52-0.52,1.05-0.78,1.57l-3.21-1.54c-0.46,0.96-0.92,1.92-1.39,2.88l3.22,1.54c-0.25,0.53-0.49,1.07-0.73,1.6l-3.27-1.4
c-0.42,0.97-0.84,1.95-1.26,2.93l3.27,1.41c-0.22,0.54-0.45,1.08-0.66,1.63L8.8,79.1c-0.38,0.99-0.76,1.99-1.14,2.98l3.32,1.27
c-0.2,0.55-0.39,1.1-0.58,1.65L7,83.82c-0.34,1.01-0.68,2.02-1.01,3.03l3.38,1.13c-0.18,0.56-0.35,1.11-0.52,1.67l-3.43-0.99
c-0.3,1.03-0.59,2.05-0.88,3.08l3.42,0.98c-0.15,0.56-0.31,1.12-0.46,1.69l-3.46-0.85c-0.25,1.04-0.51,2.07-0.76,3.11l3.46,0.85
c-0.13,0.57-0.25,1.14-0.37,1.71l-3.49-0.7c-0.21,1.04-0.42,2.09-0.63,3.13l3.49,0.7c-0.11,0.57-0.22,1.14-0.32,1.72l-3.52-0.56
c-0.17,1.05-0.33,2.1-0.5,3.15l3.51,0.57c-0.08,0.57-0.16,1.15-0.24,1.73l-3.54-0.42c-0.12,1.06-0.25,2.11-0.37,3.17l3.53,0.42
c-0.06,0.58-0.11,1.16-0.17,1.74l-3.56-0.28c-0.08,1.06-0.17,2.12-0.25,3.18l3.56,0.29c-0.04,0.58-0.08,1.15-0.11,1.73l-3.56-0.14
c-0.04,1.07-0.08,2.13-0.12,3.2l3.55,0.13c-0.01,0.58-0.01,1.16-0.02,1.75l-3.56,0.01c0,1.07,0,2.13,0.01,3.2l3.56-0.01
c0.01,0.6,0.02,1.2,0.04,1.79l-3.56,0.15c0.05,1.07,0.09,2.13,0.14,3.2l3.56-0.16c0.03,0.59,0.07,1.19,0.11,1.78L0.35,134
c0.09,1.06,0.18,2.13,0.27,3.19l3.55-0.31c0.06,0.59,0.12,1.19,0.19,1.78l-3.54,0.45c0.13,1.06,0.26,2.11,0.39,3.17l3.54-0.44
c0.08,0.58,0.16,1.17,0.25,1.76l-3.52,0.59c0.18,1.05,0.36,2.1,0.54,3.15l3.51-0.58c0.1,0.58,0.22,1.16,0.33,1.74l-3.49,0.72
c0.22,1.04,0.43,2.09,0.64,3.13l3.5-0.72c0.13,0.58,0.26,1.16,0.4,1.73l-3.45,0.87c0.26,1.03,0.52,2.06,0.79,3.1l3.45-0.87
c0.15,0.57,0.3,1.15,0.46,1.72l-3.41,1.01c0.3,1.02,0.61,2.04,0.91,3.06l3.41-1.02c0.18,0.56,0.36,1.12,0.55,1.68l-3.37,1.15
c0.35,1.01,0.69,2.01,1.04,3.02l3.37-1.14c0.2,0.56,0.4,1.11,0.61,1.67l-3.32,1.29c0.39,0.99,0.77,1.98,1.16,2.98l3.32-1.29
c0.22,0.55,0.44,1.1,0.67,1.64l-3.26,1.43c0.43,0.98,0.86,1.95,1.29,2.93l3.26-1.43c0.24,0.54,0.5,1.07,0.75,1.61l-3.2,1.56
c0.46,0.96,0.93,1.92,1.4,2.87l3.2-1.56c0.27,0.53,0.54,1.05,0.81,1.58l-3.14,1.7c0.51,0.94,1.01,1.88,1.52,2.82l3.14-1.7
c0.29,0.52,0.57,1.03,0.86,1.54l-3.06,1.82c0.54,0.92,1.09,1.83,1.64,2.75l3.06-1.82c0.31,0.5,0.62,1,0.93,1.49l-2.99,1.94
c0.58,0.89,1.16,1.79,1.74,2.68l2.99-1.94c0.33,0.49,0.66,0.98,0.99,1.46l-2.9,2.06c0.61,0.87,1.22,1.74,1.83,2.61l2.92-2.06
c0.35,0.48,0.69,0.95,1.05,1.43l-2.82,2.17c0.65,0.84,1.31,1.69,1.96,2.53l2.81-2.18c0.36,0.46,0.73,0.92,1.11,1.38l-2.72,2.29
c0.68,0.82,1.37,1.63,2.06,2.45l2.72-2.29c0.38,0.45,0.77,0.88,1.16,1.32l-2.64,2.41c0.72,0.78,1.44,1.57,2.16,2.35l2.63-2.4
c0.4,0.43,0.8,0.85,1.21,1.28l-2.53,2.5c0.75,0.76,1.49,1.52,2.24,2.28l2.54-2.51c0.42,0.42,0.84,0.83,1.27,1.24l-2.43,2.61
c0.78,0.73,1.56,1.45,2.34,2.17l2.42-2.6c0.43,0.39,0.88,0.78,1.32,1.17l-2.32,2.7c0.81,0.69,1.61,1.39,2.42,2.08l2.32-2.7
c0.45,0.38,0.91,0.75,1.36,1.13l-2.21,2.79c0.83,0.66,1.67,1.33,2.5,1.99l2.22-2.8c0.47,0.36,0.93,0.72,1.4,1.07l-2.09,2.88
c0.86,0.62,1.72,1.25,2.58,1.87l2.09-2.88c0.48,0.34,0.96,0.67,1.45,1.01l-1.98,2.97c0.88,0.59,1.77,1.18,2.66,1.76l1.97-2.95
c0.49,0.32,0.99,0.63,1.48,0.94l-1.85,3.04c0.91,0.56,1.82,1.11,2.73,1.67l1.86-3.05c0.51,0.3,1.01,0.6,1.52,0.89l-1.73,3.12
c0.93,0.52,1.86,1.04,2.79,1.55l1.73-3.12c0.52,0.28,1.04,0.55,1.55,0.82l-1.6,3.17c0.95,0.48,1.9,0.96,2.86,1.44l1.6-3.18
c0.52,0.26,1.06,0.51,1.59,0.75l-1.47,3.24c0.97,0.44,1.94,0.87,2.91,1.31l1.46-3.24c0.54,0.23,1.08,0.47,1.62,0.7l-1.33,3.3
c0.99,0.4,1.98,0.79,2.97,1.19l1.33-3.3c0.55,0.21,1.1,0.42,1.64,0.63l-1.19,3.35c1,0.36,2,0.72,3,1.07l1.19-3.35
c0.55,0.19,1.11,0.37,1.67,0.55l-1.06,3.4c1.02,0.31,2.03,0.63,3.05,0.94l1.06-3.39c0.56,0.16,1.12,0.33,1.69,0.49l-0.91,3.44
c1.03,0.27,2.06,0.55,3.08,0.83l0.91-3.45c0.57,0.14,1.13,0.28,1.7,0.42l-0.78,3.47c1.04,0.23,2.08,0.47,3.12,0.7l0.78-3.48
c0.57,0.12,1.14,0.23,1.72,0.34l-0.64,3.5c1.05,0.19,2.09,0.38,3.14,0.57l0.64-3.51c0.58,0.1,1.15,0.2,1.73,0.28l-0.49,3.51
c1.05,0.15,2.11,0.3,3.16,0.45l0.49-3.52c0.58,0.07,1.16,0.13,1.74,0.2l-0.34,3.54c1.06,0.11,2.12,0.21,3.18,0.32l0.34-3.54
c0.58,0.05,1.16,0.1,1.74,0.13l-0.2,3.56c1.06,0.06,2.12,0.12,3.18,0.19l0.2-3.56c0.58,0.02,1.16,0.05,1.74,0.06l-0.06,3.55
c1.06,0.03,2.13,0.04,3.19,0.06l0.07-3.56c0.43,0.01,0.86,0.01,1.3,0l0.08,3.56c1.06-0.02,2.12-0.04,3.18-0.06l-0.07-3.56
c0.6-0.02,1.19-0.04,1.79-0.07l0.22,3.56c1.06-0.07,2.13-0.13,3.19-0.19l-0.22-3.56c0.6-0.04,1.19-0.1,1.78-0.15l0.36,3.55
c1.06-0.11,2.12-0.22,3.18-0.33l-0.37-3.54c0.59-0.07,1.18-0.13,1.77-0.21l0.49,3.52c1.05-0.15,2.11-0.3,3.16-0.45l-0.5-3.52
c0.59-0.09,1.17-0.19,1.76-0.29l0.64,3.5c1.05-0.19,2.09-0.38,3.14-0.57l-0.64-3.51c0.58-0.12,1.17-0.24,1.75-0.36l0.78,3.47
c1.04-0.23,2.08-0.47,3.11-0.71l-0.79-3.47c0.58-0.14,1.15-0.28,1.73-0.43l0.93,3.42c1.03-0.27,2.05-0.55,3.08-0.82l-0.93-3.44
c0.57-0.16,1.14-0.34,1.7-0.51l1.08,3.41c1.02-0.32,2.03-0.65,3.04-0.97l-1.08-3.39c0.56-0.19,1.12-0.37,1.68-0.57l1.21,3.35
c1-0.36,2.01-0.72,3.01-1.08l-1.22-3.36c0.55-0.21,1.11-0.42,1.66-0.63l1.35,3.29c0.99-0.4,1.97-0.8,2.95-1.2l-1.34-3.3
c0.54-0.23,1.08-0.47,1.62-0.71l1.49,3.23c0.97-0.44,1.93-0.88,2.9-1.32l-1.49-3.24c0.54-0.25,1.07-0.52,1.6-0.78l1.61,3.17
c0.95-0.49,1.89-0.97,2.84-1.45l-1.61-3.17c0.52-0.27,1.04-0.55,1.56-0.83l1.74,3.11c0.93-0.52,1.86-1.04,2.79-1.57l-1.75-3.1
c0.51-0.3,1.02-0.6,1.53-0.9l1.88,3.04c0.91-0.56,1.81-1.12,2.72-1.68l-1.88-3.03c0.5-0.32,0.99-0.64,1.49-0.96l1.99,2.96
c0.88-0.6,1.76-1.19,2.65-1.78l-2-2.95c0.49-0.34,0.97-0.67,1.45-1.02l2.11,2.87c0.85-0.63,1.71-1.27,2.57-1.9l-2.11-2.86
c0.47-0.36,0.94-0.72,1.41-1.08l2.22,2.79c0.83-0.67,1.67-1.34,2.5-2.01l-2.23-2.77c0.45-0.37,0.9-0.75,1.35-1.13l2.35,2.69
c0.8-0.7,1.6-1.4,2.41-2.1l-2.34-2.69c0.44-0.39,0.88-0.79,1.31-1.19l2.45,2.59c0.77-0.73,1.54-1.46,2.32-2.19l-2.45-2.6
c0.42-0.41,0.85-0.82,1.26-1.23l2.54,2.49c0.74-0.76,1.49-1.52,2.24-2.29l-2.55-2.48c0.41-0.43,0.8-0.86,1.2-1.29l2.65,2.38
c0.72-0.79,1.43-1.58,2.14-2.37l-2.64-2.38c0.38-0.44,0.77-0.88,1.15-1.33l2.75,2.28c0.68-0.82,1.36-1.64,2.04-2.46l-2.74-2.28
c0.37-0.46,0.74-0.91,1.1-1.37l2.83,2.16c0.65-0.85,1.29-1.69,1.93-2.54l-2.83-2.16c0.35-0.47,0.69-0.94,1.04-1.42l2.92,2.05
c0.61-0.87,1.23-1.75,1.84-2.62l-2.92-2.05c0.33-0.49,0.66-0.98,0.98-1.47l3,1.93c0.58-0.9,1.15-1.79,1.73-2.68l-3.01-1.93
c0.31-0.5,0.62-0.99,0.92-1.5l3.07,1.8c0.54-0.92,1.08-1.84,1.63-2.76l-3.08-1.81c0.29-0.51,0.58-1.02,0.86-1.53l3.14,1.68
c0.51-0.94,1-1.88,1.5-2.83l-3.14-1.67c0.27-0.52,0.53-1.05,0.79-1.58l3.21,1.54c0.46-0.96,0.92-1.92,1.38-2.88l-3.21-1.53
c0.25-0.53,0.49-1.07,0.73-1.6l3.27,1.41c0.42-0.98,0.84-1.96,1.27-2.94l-3.27-1.4c0.23-0.54,0.45-1.08,0.67-1.63l3.33,1.27
c0.38-1,0.76-1.99,1.14-2.99l-3.32-1.27c0.2-0.55,0.39-1.1,0.58-1.65l3.38,1.13c0.34-1.01,0.69-2.01,1.03-3.02l-3.38-1.15
c0.18-0.56,0.36-1.11,0.53-1.67l3.4,1c0.31-1.02,0.61-2.05,0.91-3.08l-3.42-0.99c0.15-0.56,0.31-1.13,0.46-1.69l3.45,0.86
c0.26-1.03,0.52-2.06,0.77-3.1l-3.46-0.87c0.13-0.57,0.26-1.14,0.38-1.71l3.49,0.72c0.21-1.05,0.43-2.09,0.65-3.14l-3.5-0.71
c0.11-0.57,0.22-1.14,0.32-1.72l3.5,0.57c0.18-1.05,0.36-2.1,0.53-3.15l-3.52-0.57c0.09-0.57,0.16-1.15,0.24-1.73l3.54,0.42
c0.13-1.05,0.25-2.11,0.38-3.16l-3.53-0.44c0.06-0.58,0.12-1.15,0.17-1.73l3.55,0.28c0.09-1.06,0.17-2.12,0.26-3.18l-3.55-0.28
c0.04-0.58,0.08-1.16,0.11-1.74l3.55,0.15c0.05-1.07,0.09-2.14,0.13-3.2l-3.56-0.14c0.01-0.58,0.02-1.16,0.02-1.74h3.55V126.59z
M125.05,245.69c-66.29,0-120.04-54.01-120.04-120.64C5.01,58.42,58.76,4.41,125.05,4.41s120.04,54.01,120.04,120.64
S191.34,245.69,125.05,245.69z M125.05,24.61C69.57,24.61,24.6,69.58,24.6,125.05s44.97,100.44,100.45,100.44
S225.5,180.52,225.5,125.05S180.53,24.61,125.05,24.61z M195.34,195.33c-17.99,17.99-42.84,29.12-70.29,29.12
c-27.46,0-52.31-11.13-70.29-29.12c-17.99-17.99-29.12-42.83-29.12-70.28s11.12-52.29,29.12-70.28
c17.99-17.99,42.84-29.11,70.29-29.11s52.3,11.12,70.29,29.11s29.11,42.83,29.11,70.28C224.46,152.49,213.33,177.34,195.34,195.33z
M125.05,192.79c3.8,0,5.32,2.4,8.6,2.25c12.95-1.59,24.79-6.72,34.57-14.4c2.41-2.22,1.8-4.99,4.48-7.69s5.44-2.09,7.65-4.51
c7.64-9.83,12.74-21.74,14.33-34.74c0.16-3.3-2.24-4.82-2.24-8.64c0-3.82,2.39-5.35,2.24-8.65c-1.58-13.01-6.68-24.92-14.33-34.74
c-2.21-2.42-4.96-1.81-7.65-4.51c-2.68-2.7-2.08-5.47-4.48-7.69c-9.78-7.68-21.63-12.81-34.57-14.4c-3.28-0.16-4.8,2.25-8.6,2.25
c-3.8,0-5.32-2.4-8.6-2.25c-12.94,1.59-24.79,6.72-34.57,14.4c-2.41,2.22-1.8,4.99-4.49,7.69c-2.68,2.7-5.44,2.09-7.65,4.51
C62.1,91.49,57,103.4,55.42,116.4c-0.15,3.29,2.24,4.82,2.24,8.65c0,3.82-2.39,5.35-2.24,8.64c1.58,13.01,6.68,24.92,14.33,34.74
c2.21,2.42,4.96,1.81,7.65,4.51c2.68,2.7,2.08,5.47,4.49,7.69c9.78,7.68,21.62,12.81,34.57,14.4
C119.73,195.19,121.25,192.79,125.05,192.79z M59.14,125.05c0-36.58,29.51-66.24,65.91-66.24s65.9,29.66,65.9,66.24
s-29.51,66.24-65.9,66.24C88.65,191.29,59.14,161.63,59.14,125.05z M94.08,206.42c2.19-0.39,3.92-0.89,4.18-1.09
c0.1-0.16,0.29-0.18,0.45-0.08c0.16,0.1,0.18,0.34,0.08,0.5c-0.17,0.27-1.44,0.69-3.17,1.07c0.04,0.08,0.06,0.2,0.01,0.36
c-0.25,0.82-2.74,3.23-3.98,3.49l-0.07,0.01c-0.15,0-0.3-0.11-0.33-0.27c-0.04-0.19,0.08-0.37,0.26-0.41
c0.9-0.19,2.73-1.93,3.3-2.72c-0.22-0.01-0.48-0.07-0.77-0.16c-1.72,0.29-3.65,0.51-5.38,0.51c-0.32,0-0.62-0.02-0.92-0.03
l-0.1,0.04c-1.28,0.43-4.17,1.38-5.18,1.38c-0.1,0-0.18-0.01-0.24-0.03c-0.18-0.05-0.28-0.25-0.23-0.43
c0.05-0.18,0.25-0.28,0.43-0.23c0.32,0.07,1.96-0.37,3.68-0.91c-2.04-0.39-4.46-1.31-6.58-2.25l-0.14,0.01
c-0.61,0.02-1.13,0.03-1.58,0.03c-2.68,0-2.85-0.32-2.93-0.47c-0.09-0.17-0.03-0.37,0.14-0.46c0.14-0.08,0.31-0.04,0.42,0.07
c0.27,0.12,1.43,0.17,2.68,0.17c-2.07-0.98-3.61-1.83-3.74-1.91c-0.16-0.09-0.23-0.3-0.13-0.47c0.09-0.16,0.3-0.22,0.46-0.13
c0.04,0.02,1.68,0.93,3.88,1.96c-0.49-0.94-0.98-1.78-1.16-1.91c-0.17-0.09-0.22-0.3-0.13-0.46c0.09-0.17,0.3-0.22,0.47-0.13
c0.45,0.25,1.34,1.99,1.81,2.96c2.18,0.98,4.73,1.97,6.79,2.35c0.02,0,0.05,0.01,0.07,0.01c-1.95-1.7-3.92-3.29-4.31-3.36
c-0.19-0.01-0.33-0.18-0.31-0.37c0.01-0.19,0.18-0.33,0.37-0.32c0.73,0.05,3.93,2.84,5.44,4.18c1.61,0.11,3.46-0.03,5.17-0.28
c-0.49-0.21-1.01-0.45-1.59-0.73c-0.74-0.36-1.67-0.81-1.89-0.81c-0.19-0.01-0.34-0.16-0.34-0.35s0.15-0.34,0.34-0.34
c0.35,0,0.99,0.3,2.19,0.88C92.27,205.66,93.31,206.16,94.08,206.42z M222.46,125.04c0,53.98-43.7,97.9-97.41,97.9
s-97.41-43.92-97.41-97.9s43.7-97.9,97.41-97.9S222.46,71.06,222.46,125.04z M56.11,62.65c0.06-0.83,0.14-1.86-0.15-2.08
c-0.04-0.02-0.13-0.08-0.32-0.08c-0.22,0-1,0.1-1.83,1.41c-0.05,0.08-0.11,0.25-0.17,0.42c-0.26,0.78-0.75,2.22-2.86,2.22
c-0.33,0-0.52,0.51-0.75,1.3c-0.3,0.99-0.68,2.22-1.92,2.24c-0.11,0-0.15,0.04-0.17,0.07c-0.29,0.39,0.09,1.9,0.36,3.02
c0.39,1.58,0.61,2.57,0.24,3.05c-0.2,0.26-0.52,0.33-0.93,0.17c-0.67-0.24-1.2-0.4-1.57-0.4c-0.26,0-0.37,0.08-0.44,0.16
c-0.28,0.29-0.39,1.1-0.33,2.45c0.09,2.11,1.46,5.29,2.46,7.61c0.91,2.11,1.3,3.06,1.14,3.51c-0.1,0.28-0.29,0.94-0.56,1.81
c-0.53,1.76-1.34,4.42-2.16,6.75c-0.64,1.82-1.55,5.07-2.36,7.95c-1.76,6.26-1.8,6.26-2.19,6.26c-0.58-0.02-0.99-1.81-1.1-2.36
c-0.24-1.17-0.44-3.23,0.82-3.83c1.32-0.62,1.87-3.28,1.85-3.98c-0.08-0.01-0.16-0.03-0.25-0.04c-0.42-0.06-0.94-0.13-1.1-0.57
c-0.14-0.4,0.07-0.88,0.72-1.63c0.6-0.69,2.6-3.53,2.83-4.41l-0.08,0.04c-0.52,0.24-0.93,0.36-1.25,0.36
c-0.45,0-0.64-0.24-0.73-0.38c-0.31-0.57,0.18-1.43,0.34-1.68c0.34-0.54,0.57-2.04,0.46-2.52l-0.08,0.07
c-0.18,0.17-0.36,0.26-0.57,0.26c-0.79,0-1.2-1.24-1.77-3.27c-0.2-0.72-0.42-1.46-0.58-1.73c-0.05-0.07-0.1-0.15-0.16-0.22
c-0.12,1.19-0.51,5.13-0.95,8.76c0.78-1.19,1.9-2.77,2.63-3.17c0.16-0.09,0.37-0.03,0.46,0.14s0.03,0.37-0.14,0.46
c-0.8,0.44-2.49,3.06-3.16,4.18c-0.17,1.26-0.33,2.42-0.49,3.33c1.4-1.28,3.01-2.85,3.17-3.25c0.07-0.17,0.27-0.26,0.44-0.19
c0.18,0.07,0.26,0.27,0.19,0.45c-0.3,0.75-3.17,3.35-3.95,4.06c-0.17,1.68-0.02,3.68,0.23,5.47c0.95-1.42,2.05-3.23,2.11-3.8
c0.02-0.19,0.19-0.33,0.37-0.31c0.19,0.02,0.33,0.19,0.31,0.37c-0.09,0.99-2.01,3.82-2.64,4.73c0.32,2.06,0.71,3.62,0.72,3.65
c0.33,0.72,0.52,1.32,0.53,1.37l0.01,0.09c0.01,0.42,0.29,10.3,0.24,12.35c-0.05,2.02,0.96,17.28,0.97,17.43l0.04,0.62l-0.54-0.29
c-0.02-0.01-0.11-0.06-0.26-0.16c0.01,0.04,0.01,0.08,0.01,0.13c-0.03,0.17-0.17,0.29-0.33,0.29h-0.06c-1-0.17-1.87-0.77-2.64-1.59
c-1.71-0.6-5.27-1.94-5.53-2.78c-0.06-0.18,0.04-0.37,0.22-0.43c0.18-0.05,0.36,0.04,0.42,0.22c0.19,0.36,2.06,1.21,4.04,1.96
c-1.57-2.25-2.56-5.34-3.04-6.86c-0.01-0.04-0.02-0.07-0.04-0.11c-0.66-0.42-3.49-2.23-3.76-3.2c-0.05-0.18,0.05-0.37,0.24-0.42
c0.18-0.05,0.37,0.05,0.42,0.24c0.11,0.42,1.41,1.45,2.8,2.37c-0.23-1.12-0.54-3.89-0.73-6.63l-0.01-0.01
c-0.23-0.31-2.26-3.04-2.31-4.12c-0.01-0.19,0.13-0.35,0.32-0.36c0.19,0.01,0.35,0.14,0.36,0.33c0.02,0.51,0.82,1.82,1.57,2.89
c-0.13-2.55-0.12-4.83,0.2-5.41c0.09-0.16,0.3-0.22,0.46-0.13c0.16,0.09,0.22,0.3,0.13,0.47c-0.25,0.45-0.24,2.6-0.11,5.04
c1.06-1.54,2.01-3.12,1.98-3.48c-0.04-0.19,0.09-0.36,0.27-0.4c0.19-0.04,0.36,0.09,0.4,0.27c0.15,0.78-1.66,3.42-2.58,4.7
c0.18,2.78,0.49,5.67,0.71,6.72c0.82-1.35,2.05-3.61,1.98-4.53c-0.01-0.19,0.13-0.35,0.32-0.36s0.35,0.13,0.36,0.32
c0.09,1.4-1.85,4.58-2.39,5.45c0.02,0.06,0.03,0.11,0.05,0.17c0.48,1.52,1.5,4.69,3.07,6.84c-0.13-1.32-0.25-3.52,0.27-4.59
c0.08-0.17,0.29-0.24,0.46-0.16s0.24,0.29,0.16,0.46c-0.54,1.12-0.24,4.16-0.08,5.24v0.01c0.6,0.61,1.27,1.04,2.01,1.19
c-0.72-0.59-1.77-1.75-1.73-3.54c0.03-1.25,0.31-2.25,0.54-3.06c0.18-0.67,0.35-1.24,0.18-1.47c-0.04-0.06-0.1-0.11-0.28-0.11
s-0.41,0.06-0.64,0.11c-0.54,0.13-1.13,0.2-1.47-0.09c-0.43-0.37-0.6-1.28-0.6-2.01c-0.01-0.47,0.05-1.62,0.65-2.14
c0.66-0.57,2.14-3.11,1.32-4.16c-0.29-0.37-0.4-0.39-0.4-0.39l-0.17,0.08c-0.29,0.16-0.89,0.39-1.72,0.11
c-0.29-0.1-0.5-0.28-0.61-0.53c-0.3-0.68,0.18-1.71,0.68-2.81c0.43-0.93,0.96-2.09,0.64-2.44c-0.25-0.28-0.43-0.28-0.48-0.28
c-0.15,0-0.3,0.07-0.45,0.14c-0.17,0.08-0.33,0.15-0.52,0.15c-0.31,0-0.53-0.2-0.67-0.6l-0.1-0.32c-0.53-1.7-0.83-2.06-0.99-2.06
c0,0-0.3,0.01-0.76,1.32c-0.64,1.83-1.31,2.2-2.11,2.2h-0.19c-0.24,0-0.38,0-0.52,0.72c-0.38,1.91,0.22,3.82,0.66,5.21
c0.35,1.09,0.57,1.81,0.24,2.24c-0.16,0.2-0.34,0.31-0.54,0.31c-0.27,0-0.47-0.19-0.64-0.35c-0.3-0.28-0.49-0.4-0.82-0.22
c-0.09,0.05-0.13,0.11-0.14,0.23c-0.1,0.79,1.24,2.6,2.16,3.45c1.22,1.12,2.01,4.28,1.85,5.25c-0.05,0.31-0.28,0.43-0.46,0.43
c-0.27,0-0.53-0.22-0.96-0.61c-0.22-0.2-0.63-0.57-0.79-0.6c0.02,0.03-0.05,0.23,0.01,0.84c0.2,2.03,3.05,3.12,5.35,3.99
c0.89,0.34,1.66,0.63,2.19,0.95c0.33,0.2,0.64,0.37,0.93,0.54c1.38,0.78,2.37,1.34,2.82,2.84c0.36,1.2,0.99,4.07,1.37,5.78
c0.15,0.68,0.26,1.17,0.29,1.29c0.63,2.34,4.15,11.12,5.45,13.12l0.54,0.94c2.93,5.07,3.38,6.13,3.2,6.56l-0.07,0.16l-0.21,0.08
c-0.3,0.07-0.6,0.05-0.9-0.04c0.01,0.02,0.02,0.05,0.02,0.07c0,0.1-0.04,0.18-0.1,0.24c0.1,0.05,0.18,0.1,0.24,0.16
c2.86,2.74,11.65,11.29,14.38,14.46c1.2,1.39,3.79,3.05,5.69,4.26c2.27,1.45,2.79,1.81,2.61,2.27c-0.14,0.36-0.62,0.43-1.29,0.43
c-0.63,0-1.45-0.08-2.21-0.16c0.02,0.04,0.03,0.1,0.02,0.14c-0.02,0.18-0.17,0.31-0.34,0.31h-0.03c-1.06-0.1-2.16-0.4-3.27-0.81
c-0.54,0.19-3.4,1.17-4.75,1.17c-0.12,0-0.23-0.01-0.32-0.02c-0.18-0.03-0.31-0.21-0.28-0.4c0.03-0.19,0.2-0.32,0.39-0.28
c0.7,0.12,2.68-0.45,3.98-0.86c-1.52-0.65-3.01-1.46-4.34-2.18c-0.2-0.11-0.38-0.2-0.56-0.31c-0.21,0.01-0.51,0.01-0.87,0.01
c-1.39,0-3.57-0.07-4.08-0.5c-0.14-0.12-0.16-0.34-0.04-0.48s0.33-0.16,0.48-0.04c0.24,0.2,1.68,0.32,3.22,0.34
c-0.33-0.16-0.64-0.31-0.9-0.4c-0.98-0.37-2.62-2.09-4.17-3.94c-0.94-0.25-4.15-1.11-5.09-1.7c-0.16-0.1-0.21-0.31-0.11-0.47
s0.31-0.21,0.47-0.11c0.62,0.39,2.56,0.98,3.98,1.37c-1.64-2.02-3.02-3.94-3.13-4.1c-0.11-0.15-0.08-0.37,0.08-0.48
c0.15-0.11,0.36-0.08,0.47,0.08c0.68,0.95,1.9,2.58,3.2,4.18c-0.18-1.38-0.52-3.79-0.75-4.47c-0.06-0.18,0.04-0.37,0.22-0.43
s0.37,0.04,0.43,0.22c0.34,1.03,0.88,5.42,0.9,5.6l0.01,0.06c1.46,1.73,2.92,3.24,3.72,3.54c0.4,0.15,0.89,0.39,1.43,0.67
c-0.62-2.23-1.33-4.45-1.57-4.72c-0.14-0.12-0.16-0.33-0.04-0.48c0.12-0.14,0.34-0.16,0.49-0.04c0.46,0.38,1.4,3.64,1.95,5.68
c0.19,0.1,0.38,0.21,0.59,0.32c1.31,0.71,2.78,1.51,4.28,2.15c-0.54-1.19-1.37-2.59-2.05-2.82c-0.18-0.06-0.27-0.25-0.21-0.43
s0.25-0.28,0.43-0.22c1.27,0.43,2.41,3.05,2.73,3.84c0.34,0.13,0.68,0.24,1.01,0.35c-0.47-0.53-0.9-1.42-1.37-2.4
c-0.49-1.01-1.15-2.4-1.61-2.51c-0.93-0.22-1.03-0.19-1.65-0.05c-0.18,0.04-0.39,0.09-0.66,0.15l-0.14,0.01
c-0.8,0-1.33-1.18-2.12-3.11c-0.39-0.94-1.11-2.69-1.5-2.69c-0.22,0-0.27,0.04-0.32,0.53c-0.03,0.38-0.17,1.33-1.43,0.47
c-0.88-0.6-1.46-2.12-2.03-3.59c-0.35-0.92-0.88-2.3-1.22-2.35c-0.21-0.03-0.26-0.08-0.41,0.35c-0.14,0.39-0.35,0.97-1.21,1.24
c-0.39,0.12-0.88-0.2-1.45-0.61c-0.42-0.3-0.95-0.67-1.27-0.67l-0.14,0.05c-0.2,0.17,0.11,0.96,0.34,1.54
c0.34,0.85,0.68,1.74,0.42,2.43c-0.19,0.49-0.5,0.73-0.91,0.73c-0.19,0-0.37-0.05-0.53-0.1c-0.2-0.06-0.35-0.12-0.43-0.02
c-0.05,0.06-0.05,0.18-0.02,0.33c0.15,0.7,1.05,1.79,2.15,2.31l0.4,0.19c2.93,1.38,4.55,2.28,4.69,3.09
c0.05,0.29-0.04,0.47-0.12,0.57c-0.24,0.29-0.82,0.23-1.32,0.11c-0.11-0.02-0.24-0.05-0.33-0.07v0.04c0.06,0.48,1.11,1.45,1.93,1.94
c0.51,0.3,1.96,0.6,3.13,0.83c0.67,0.14,1.31,0.26,1.77,0.39c0.15,0.04,0.63,0.17,0.76,0.59c0.14,0.46-0.23,0.91-0.6,1.34
c-0.16,0.19-0.33,0.39-0.43,0.57c0.13,0.26,1.05,1.02,2.65,1.02h0.11c0.96-0.02,1.03-0.16,1.06-0.21c0.13-0.25,0.31-0.39,0.82-0.39
c0.68,0.01,0.89,0.13,1.18,0.34c0.15,0.11,0.33,0.24,0.77,0.38c0.26,0.08,0.41-0.14,0.68-0.54c0.3-0.45,0.68-1,1.4-1
c0.18,0,0.37,0.04,0.57,0.11c0.92,0.34,3.49,0.53,5.36,0.66l0.81,0.06c1.45,0.11,4.01,1.53,6.48,2.9c1.2,0.67,2.33,1.29,3.24,1.72
c2.32,1.09,9.24,3.92,11.31,4.76l0.06,0.02l0.02,0.01l0,0c0.14,0.06,0.27,0.15,0.26,0.35l-0.01,0.24l-0.35,0.1l-0.15-0.06
c-0.04-0.01-0.15-0.05-0.44-0.05c-0.51,0-1.26,0.1-1.98,0.2c-0.95,0.13-1.85,0.24-2.3,0.17c-0.53-0.08-0.91-0.53-1.31-1.01
c-0.46-0.54-0.93-1.11-1.64-1.11c-1.12,0-1.99,0.28-2.83,0.55c-0.25,0.08-0.49,0.16-0.74,0.23c-0.7,0.2-1.61-0.69-2.95-2.14
c-0.59-0.64-1.48-1.61-1.77-1.62c-0.24,0.01-0.29,0.09-0.4,0.65c-0.08,0.36-0.17,0.8-0.45,1.2c-0.05,0.07-0.2,0.29-0.46,0.29
c-0.34,0-0.48-0.32-0.64-0.7c-0.31-0.73-0.63-1.33-1.44-1.33c-0.14,0-0.3,0.02-0.46,0.06l-0.3,0.07c-2.08,0.48-4.67,1.07-4.87,1.5
c-0.05,0.42,1.6,2.58,4.4,4.35c0.63,0.4,1.21,0.6,1.74,0.6c0.46,0,0.79-0.15,1.06-0.26c0.19-0.08,0.36-0.16,0.53-0.16
c0.53,0,0.6,0.6,0.63,0.83c0.17,1.32,1.3,2.9,3.44,3.44c1.07,0.27,2.36-0.35,3.32-0.86c0.61-0.32,1.09-0.58,1.5-0.58
c0.18,0,0.34,0.05,0.47,0.16c0.61,0.48,0.3,1.01,0.1,1.35c-0.16,0.27-0.33,0.56-0.28,0.93c0.07,0.48,0.25,0.76,0.97,0.76
c0.38,0,0.87-0.08,1.51-0.24c1.19-0.3,2.4-1.72,3.69-3.22c1.26-1.48,2.57-3.01,4.03-3.65c0.23-0.1,0.48-0.15,0.77-0.15
c1.46,0,3.49,1.27,4.33,1.84l0.53-1.63l-2.74-1.8c-0.24-0.08-0.36-0.22-0.42-0.34c-0.11-0.2-0.12-0.45-0.07-0.72
c-0.1-0.04-0.17-0.11-0.2-0.22c-0.01-0.04-0.82-3.86-2.65-5.08c-0.43,0.06-1.24,0.15-2.05,0.15c-0.84,0-1.69-0.1-2.12-0.44
c-0.15-0.11-0.17-0.33-0.06-0.48c0.12-0.15,0.33-0.17,0.48-0.06c0.39,0.31,1.52,0.34,2.59,0.26c-1.08-0.51-2.67-1.32-4.29-2.17
c-1.13,0.08-1.93,0.12-2.47,0.12c-1.15,0-1.22-0.15-1.3-0.29c-0.08-0.17-0.01-0.37,0.15-0.46c0.11-0.06,0.25-0.04,0.35,0.03
c0.24,0.05,1.1,0.04,2.09-0.01c-2.52-1.33-4.82-2.59-5-2.68c-0.16-0.09-0.23-0.3-0.14-0.46c0.09-0.17,0.3-0.23,0.46-0.14
c0.05,0.02,2.86,1.56,5.72,3.06c-0.45-1.27-0.98-2.55-1.18-2.74c-0.14-0.12-0.16-0.34-0.04-0.48s0.32-0.17,0.46-0.06
c0.48,0.38,1.29,2.67,1.61,3.64l0.03,0.1c1.88,0.98,3.65,1.88,4.55,2.25c-0.17-1.25-0.42-2.53-0.61-2.73
c-0.15-0.12-0.17-0.33-0.05-0.48c0.12-0.15,0.34-0.17,0.48-0.05c0.49,0.39,0.79,2.49,0.92,3.71c1.43,1.12,2.24,3.46,2.56,4.65
c0.11-0.36,0.21-0.74,0.26-1.14c0.04-0.39-0.37-1.56-0.71-2.5c-0.45-1.26-0.71-1.99-0.63-2.37c0.38-1.82-1.43-2.88-2.57-3.23
c-0.3-0.09-0.91-0.01-1.47,0.07c-0.38,0.06-0.74,0.11-1.06,0.11c-0.15,0-0.6,0-0.84-0.31c-1.37-1.7-2.73-2.47-3.56-2.64l-0.01,0.14
c-0.03,0.33-0.1,1.11-1.06,1.11c-0.44,0-1.06-0.18-1.79-0.39c-1.21-0.35-2.72-0.69-3.11-0.31c0.16,0.84,4.06,4.89,5.26,5.98
c0.27-0.01,0.72-0.2,1.12-0.36c0.82-0.34,1.66-0.62,2.05-0.22c0.18,0.19,0.21,0.37,0.2,0.49c-0.03,0.31-0.31,0.51-0.6,0.73
c-0.37,0.26-0.79,0.55-0.8,1.05c-0.01,0.15,0.04,0.27,0.14,0.38c0.35,0.37,1.3,0.55,2.81,0.55c0.52,0,1.02-0.02,1.47-0.04
c0.35-0.02,0.66-0.03,0.9-0.03c0.35,0,0.52,0.02,0.65,0.09c0.97,0.49,2.14,2.28,2.17,3.31c0.01,0.51-0.25,0.73-0.4,0.82
c-0.18,0.1-0.43,0.15-0.74,0.15c-2.16,0-7.56-2.44-9.78-3.49c-0.07-0.03-7.15-3.39-7.57-4.34c-0.19-0.43-1.35-6.37-1.15-7.07
c0.15-0.67-0.61-5.76-1.54-6.14c-0.53-0.22-0.82,0.23-1.06,0.76c-0.07,0.17-0.16,0.37-0.4,0.37h-0.3l-0.06-0.34
c-0.13-0.61-2.39-5.98-3.45-6.27c-0.13-0.03-0.25-0.06-0.3,0c-0.08,0.08-0.07,0.37-0.06,0.5c0.01,0.17,0.01,0.32-0.11,0.44l-0.1,0.1
l-0.15,0.01c-0.23,0-0.35-0.19-0.47-0.4c-0.43-0.7-3.54-3.02-4.65-3.02l-0.13,0.02c-0.13,0.36,0.9,2.28,1.52,3.42
c1.18,2.2,1.69,3.19,1.15,3.58c-0.48,0.35-1.21,0.1-1.65-0.11l-0.09-0.04c0.08,0.71,1.86,1.97,2.97,2.76
c1.35,0.95,2.12,1.52,2.24,2.04c0.04,0.16,0.07,0.4-0.07,0.59c-0.05,0.06-0.17,0.17-0.38,0.17c-0.14,0-0.28-0.04-0.43-0.09
c-0.14-0.04-0.3-0.09-0.42-0.09c-0.08,0-0.25,0-0.3,0.58c-0.09,1.11,3.27,2.4,4.88,3.02c1.11,0.43,1.5,0.58,1.65,0.78
c0.51,0.67,1.07,1.57,0.81,2.1c-0.08,0.17-0.39,0.47-1.11,0.29c-4.06-0.99-15.57-11.64-15.77-12.87c-0.31-1.91,0.36-5.02,0.9-7.52
c0.34-1.59,0.77-3.58,0.57-3.91c-0.05-0.02-0.15-0.05-0.26-0.05c-0.25,0-0.53,0.15-0.77,0.28c-0.42,0.23-0.88,0.37-1.17,0.08
c-0.33-0.34-0.13-1.11,0.69-3.42c0.24-0.69,0.55-1.55,0.55-1.74c-0.07-0.78-0.59-2.52-1.01-2.61l0,0c-0.14,0-0.33,0.35-0.44,0.55
c-0.19,0.36-0.39,0.73-0.78,0.73c-0.12,0-0.24-0.04-0.36-0.13c-0.4-0.29-0.53-1.4-0.73-3.86c-0.08-1.06-0.18-2.26-0.3-2.53
l-0.05-0.07l-0.16,0.16c-0.29,0.2-0.75,0.42-1.12,0.18c-0.29-0.19-0.44-0.69-0.71-1.73c-0.29-1.11-0.79-2.96-1.48-2.96
c-0.23,0.23-0.17,2.02-0.14,2.99c0.07,1.91,0.07,2.69-0.42,2.84c-0.09,0.03-0.21,0.06-0.35,0.09c-0.38,0.09-1.16,0.28-1.33,0.51
c-0.16,0.4,1.22,2.38,1.89,3.33c1.04,1.48,1.29,1.89,1.21,2.22c-0.11,0.41-0.61,0.41-0.85,0.41c-0.12,0-0.24-0.01-0.37-0.01
c-0.13-0.01-0.26-0.01-0.39-0.01c-0.37,0-0.46,0.05-0.48,0.06c-0.06,0.23,0.32,1.28,3.76,5.36c0.51,0.61,0.57,0.68,0.61,0.76
c0.06,0.15,0.06,0.3-0.02,0.43c-0.16,0.28-0.54,0.32-1.02,0.37c-0.21,0.02-0.61,0.07-0.7,0.13c-0.17,0.79,1.43,2.7,2.49,3.96
c0.4,0.48,0.72,0.85,0.96,1.17c0.04-0.36,0.07-0.77,0.08-1.22l-0.06-0.07c-0.49-0.57-2.1-2.46-2.18-3.11
c-0.02-0.19,0.11-0.35,0.29-0.37c0.18-0.02,0.36,0.11,0.38,0.29c0.04,0.26,0.77,1.25,1.55,2.19c-0.05-1.53-0.27-3.31-0.65-4.9
l-0.01-0.01c-1.33-1.23-3.57-3.39-3.61-4.06c-0.01-0.19,0.13-0.35,0.32-0.36c0.21-0.01,0.34,0.13,0.36,0.31
c0.09,0.33,1.29,1.61,2.58,2.85c-0.14-0.44-0.3-0.84-0.48-1.2c-0.49-1.03-1.03-2.78-1.53-4.67c-0.75-0.57-2.68-2.12-3.17-3.3
c-0.07-0.17,0.01-0.37,0.18-0.45c0.17-0.07,0.37,0.01,0.44,0.18c0.3,0.73,1.38,1.74,2.26,2.47c-0.88-3.52-1.6-7.15-1.64-7.4
c-0.04-0.19,0.08-0.37,0.27-0.4c0.19-0.04,0.36,0.08,0.4,0.27c0.01,0.06,0.76,3.86,1.67,7.47c0.35-1.55,0.63-3.07,0.56-3.35
c-0.05-0.18,0.05-0.37,0.22-0.43c0.17-0.05,0.36,0.02,0.42,0.2c0.21,0.59-0.48,3.53-0.78,4.76l-0.05,0.21
c0.46,1.7,0.94,3.23,1.37,4.14c0.18,0.39,0.35,0.81,0.5,1.27c0.59-1.8,1.07-3.59,0.98-3.92c-0.05-0.18,0.05-0.37,0.22-0.43
c0.18-0.05,0.36,0.03,0.42,0.2c0.25,0.71-0.77,3.81-1.29,5.31c0.38,1.52,0.61,3.22,0.7,4.74c0.61-0.97,1.39-2.38,1.48-3.33
c0.02-0.19,0.17-0.33,0.37-0.31c0.18,0.02,0.32,0.18,0.3,0.37c-0.13,1.44-1.58,3.67-2.12,4.45c0,1.01-0.06,1.88-0.2,2.44
c0,0.02-0.02,0.03-0.03,0.05c0.04,0.16,0.04,0.29-0.01,0.42c-0.06,0.13-0.22,0.36-0.74,0.27c-1.53-0.24-4.61-4.92-8.49-11.02
c-0.9-1.41-1.67-2.63-2.28-3.54c-0.88-1.29-2.57-9.88-1.26-10.88c0.43-0.33,0.91-0.49,1.43-0.49c0.59,0,1.01,0.22,1.05,0.25
c0.13,0.07,0.72,0.19,1.53,0.19c0.78,0,1.23-0.11,1.39-0.21c0.01-0.01,0.02-0.02,0.03-0.03l-0.69-0.76l-0.33-0.74l-1.41-1.07
l-0.24-0.64c-0.37,0.44-0.67,1.63-0.79,2.33l-0.04,0.23l-1.83,0.44l-0.13-0.11c-0.05-0.05-0.14-0.14-0.19-0.32
c-0.01,0.27-0.03,0.52-0.08,0.72c-0.17,0.68-0.56,0.78-0.78,0.78c-0.21,0-0.42-0.09-0.65-0.27c-1.49-1.18-3.03-11.25-2.57-12.38
c0.9-2.23,3.2-4.12,6.61-6.76c1.27-0.99,1.84-2.89,1.54-3.98c-0.11-0.4-0.31-0.62-0.6-0.66c-0.48-0.06-0.71-0.32-0.83-0.52
c-0.39-0.7,0-1.82,0.48-2.93c0.05-0.11,0.09-0.2,0.1-0.24c0.01-0.07,0.05-0.16,0.19-0.42c0.42-0.8,1.53-2.93,0.8-4.22
c-0.51-0.9-0.55-0.97-0.54-1.19c0.01-0.25-0.35-1.25-1.07-2.96c-0.45-1.07-0.72-1.43-0.84-1.56c-0.13,0.32-0.2,1.28-0.16,2.21
l0.02,0.31l-0.3,0.05c-0.91,0.14-1.13,0.9-1.3,1.8c-0.1,0.5-0.19,1.02-0.67,1.02c-0.5-0.01-0.79-0.09-0.98-0.14
c-0.09-0.03-0.15-0.04-0.2-0.04s-0.13,0.01-0.35,0.13c-0.09,0.21,0.06,1.71,0.17,2.8c0.31,3.06,0.42,4.94-0.6,5.12
c-0.94,0.17-1.39-0.32-1.68-0.62l-0.19-0.18c-0.65,0.58,0.03,3.75,0.73,5.82l0.02,0.09c0.04,0.88,0.09,2.49-0.01,3.75
c0.55-0.93,1.24-2.12,1.81-3.27c-0.5-0.99-1.88-3.84-1.67-4.72c0.04-0.18,0.23-0.3,0.41-0.25c0.18,0.04,0.3,0.23,0.25,0.41
c-0.1,0.4,0.61,2.17,1.39,3.78c0.06-0.13,0.11-0.25,0.17-0.37c0.48-1.12,0.57-2.07,0.65-2.99c0.09-1.01,0.19-2.05,0.8-3.22
c-0.31-0.34-0.83-1.44-1.85-4.98c-0.05-0.18,0.05-0.37,0.23-0.42c0.18-0.05,0.37,0.05,0.42,0.23c0.52,1.82,1.21,3.89,1.55,4.51
c1.2-2.34,0.6-7.23,0.59-7.28c-0.02-0.19,0.11-0.36,0.29-0.38s0.36,0.11,0.38,0.3s0.47,3.79-0.2,6.42c0.95-1.07,2.12-2.6,2.12-3
c0-0.19,0.15-0.34,0.34-0.34s0.34,0.15,0.34,0.34c0,0.79-2.23,3.63-3.39,4.5c-0.01,0.01-0.02,0.03-0.03,0.05
c-0.75,1.22-0.84,2.25-0.94,3.34c-0.08,0.97-0.18,1.98-0.7,3.2c-0.02,0.05-0.05,0.1-0.07,0.15c1.62-0.67,3.65-1.69,4.02-2.36
c0.09-0.17,0.29-0.23,0.46-0.14s0.23,0.3,0.14,0.47c-0.63,1.17-4.1,2.57-5.04,2.94c-1.16,2.35-2.82,4.94-2.9,5.07
c-0.07,0.1-0.18,0.16-0.29,0.16l-0.18-0.05c-0.1-0.07-0.15-0.18-0.15-0.29c-0.02-0.02-0.05-0.03-0.07-0.05
c-0.2-0.15-0.71-0.55-0.96-12.07c-0.12-5.32-0.12-11.79,0.08-12.97c0.1-0.56,0.78-1.31,1.91-2.23c0-0.12,0.06-0.24,0.17-0.31
c0.94-0.51,2-1.78,3.11-3.38l0.02-0.31c0.06-0.74,0.39-4.5,0.86-5.28c0.1-0.16,0.31-0.22,0.47-0.12s0.21,0.31,0.12,0.47
c-0.25,0.41-0.52,2.43-0.68,4.06c0.73-1.13,1.47-2.35,2.2-3.56c0.43-0.72,0.88-1.45,1.32-2.16l-0.01-0.07
c-0.14-0.83-0.84-5.03-0.47-5.97c0.07-0.17,0.26-0.26,0.44-0.19c0.17,0.07,0.26,0.27,0.19,0.44c-0.2,0.53,0.1,3.06,0.4,4.92
c0.32-0.5,0.64-1,0.95-1.46c2.32-3.4,2.85-8.12,2.98-9.98c-0.3,0.55-0.75,1.05-1.89,0.68c-0.14-0.05-0.23-0.04-0.27,0.01
c-0.27,0.28-0.22,1.43-0.19,2.26c0.03,0.75,0.06,1.46-0.05,1.98c-0.12,0.6-0.52,0.67-0.68,0.67c-0.37,0-0.79-0.3-1.27-0.64
c-0.6-0.43-1.3-0.93-1.7-0.67c-0.22,0.28-0.01,2.29,0.12,3.62c0.25,2.45,0.37,3.98-0.04,4.59c-0.27,0.39-0.63,0.59-1.08,0.59
c-0.35,0-0.71-0.11-1.08-0.23c-0.46-0.14-0.92-0.3-1.38-0.23c-0.12,0.27-0.15,1.26-0.17,2c-0.04,1.38-0.08,2.95-0.49,3.99
c-0.72,1.85-1.77,4.05-2.65,4.05l0,0c-0.39,0-0.65-0.32-0.78-0.94c-1.15-5.51,7.31-23.05,9.44-26.54c1.8-2.94,6.61-9.36,7.83-10.2
c0.26-0.35,0.91-0.5,2.07-0.5c0.98,0,2.17,0.11,3.04,0.19c0.45,0.04,0.82,0.08,1.06,0.09c0.43,0.02,1.05,0.16,1.77,0.33
c0.98,0.23,2.09,0.48,2.94,0.48c0.38,0,0.68-0.05,0.87-0.16c0.12-0.06,0.2-0.13,0.21-0.19c0.04-0.19-0.36-0.65-0.64-0.99
c-0.38-0.44-0.81-0.94-0.98-1.49c-0.14-0.44-0.13-0.77,0.05-1.01c0.24-0.34,0.85-0.32,1.43-0.2c0.14,0.02,0.27,0.05,0.39,0.06
c0.32,0.04,0.82,0.24,1.45,0.5c0.77,0.32,1.74,0.71,2.28,0.71c0.15,0,0.2-0.03,0.21-0.04c0.16-0.23,0.12-0.38,0.02-0.69
c-0.1-0.31-0.24-0.73,0.01-1.28c0.31-0.66,1.53-0.83,2.82-1.02c0.69-0.1,1.56-0.22,1.79-0.4l0.14-0.17
c0.01-0.14-0.24-0.42-0.43-0.64c-0.13-0.14-0.25-0.28-0.36-0.43c-0.39-0.52,0.29-1.19,1.14-2.04c0.43-0.43,1.34-1.34,1.26-1.59
c-0.02-0.03-0.11-0.07-0.29-0.07c-1,0-3.18,1.14-3.79,1.6c-0.14,0.11-0.29,0.16-0.45,0.16c-0.46,0-0.74-0.43-1.07-0.94
c-0.34-0.52-0.72-1.12-1.27-1.17c-0.33,0.06-1.53,1.49-2.32,2.43c-1.54,1.83-2.51,2.95-3.19,2.95l-0.18-0.03
c-0.49-0.15-0.47-0.66-0.45-0.97c0.02-0.41,0-0.6-0.23-0.72c-0.57,0-2.35,2.31-3.02,3.17c-0.21,0.27-0.39,0.5-0.52,0.66
c-0.76,0.93-2.27,1.47-2.33,1.5l-0.08,0.03l-0.09-0.01c-0.61-0.11-1.2-0.68-1.29-1.02l-0.06-0.21l0.17-0.2
c0.03-0.03,0.16-0.18,0.36-0.42c5.95-7.01,10.32-10.58,12.97-10.62h0.43c4.3,0,5.53,1.06,6.26,1.7c0.24,0.21,0.37,0.32,0.51,0.34H84
c0.29,0,0.38-0.13,0.55-0.55c0.13-0.3,0.27-0.64,0.59-0.81c0.41-0.22,1.02,0.16,2.27,1c0.82,0.55,1.94,1.31,2.42,1.31
c0.67-0.23,0.32-1.74,0.14-2.46l-0.04-0.17c-0.05-0.21,0.02-0.35,0.08-0.43c0.07-0.08,0.18-0.17,0.4-0.17
c0.28,0,0.68,0.16,1.35,0.45c0.74,0.31,1.67,0.7,2.28,0.7c0.17,0,0.3-0.03,0.38-0.09c0.42-0.28,0.36-0.47,0.14-0.95
c-0.15-0.32-0.31-0.69-0.17-1.09s0.39-0.49,0.57-0.49c0.21,0,0.39,0.11,0.61,0.25c0.25,0.16,0.57,0.35,1.01,0.43l0,0
c1.23,0,5.29-3.2,5.36-3.95c-0.05-0.25-0.84-0.69-4.28-1.42c-0.3-0.06-0.54-0.11-0.71-0.15h-0.01c-0.45,0-1.21,0.65-1.81,1.17
c-0.87,0.75-1.7,1.44-2.35,1.28c-0.72-0.18-0.81-0.91-0.88-1.44c-0.08-0.6-0.14-0.79-0.38-0.82c-0.65,0-1.93,1.63-2.47,2.32
c-0.34,0.43-0.48,0.61-0.6,0.69c-0.45,0.3-1.61,0.51-2.3,0.17c-0.54-0.27-0.51-0.69-0.49-0.97c0.02-0.26,0.04-0.49-0.26-0.82
c-0.2,0.02-0.7,0.79-1.01,1.25c-0.6,0.9-1.22,1.84-1.95,2.06c-0.28,0.09-0.62,0.23-0.97,0.37c-0.16,0.07-0.32,0.13-0.48,0.19
c0.64-0.05,1.42-0.13,2.29-0.2c0.55-0.39,1.79-1.34,2.07-1.84c0.1-0.17,0.3-0.22,0.47-0.13c0.16,0.09,0.22,0.3,0.13,0.46
c-0.23,0.4-0.84,0.95-1.38,1.38c1.14-0.11,2.33-0.22,3.47-0.33l0.11-0.06c0.8-0.42,2.97-1.62,3.45-2.22
c0.12-0.15,0.33-0.17,0.48-0.05s0.17,0.33,0.05,0.48c-0.37,0.47-1.42,1.14-2.31,1.65c3.93-0.57,8.28-3.22,8.33-3.25
c0.16-0.1,0.37-0.05,0.47,0.11s0.05,0.37-0.11,0.47c-0.19,0.11-4.48,2.74-8.53,3.33c1.02,0.34,1.9,0.59,2.13,0.55
c0.18-0.02,0.36,0.1,0.39,0.28c0.03,0.19-0.1,0.36-0.28,0.39L92.1,59.2c-0.73,0-2.78-0.72-3.68-1.05c-1.23,0.13-2.54,0.25-3.77,0.36
c0.83,0.39,1.94,0.89,2.66,1.12c0.18,0.06,0.28,0.25,0.23,0.43c-0.05,0.15-0.18,0.24-0.33,0.24l-0.1-0.01
c-1.2-0.37-3.35-1.43-3.78-1.65c-2.18,0.2-3.87,0.34-3.9,0.34H79.4c-0.17,0-0.32-0.14-0.34-0.31c0-0.04,0-0.08,0.02-0.12
c-0.18-0.05-0.34-0.12-0.45-0.25c-0.19-0.23-0.24-0.56-0.16-1c0.42-2.21,10.79-6.4,12.46-6.69l0.2-0.04
c1.99-0.35,3.16-0.53,3.88-0.24l0.68,0.28c1.46,0.58,1.8,0.72,2.71,0.76l0.14-0.02c0.1-0.12-0.02-0.68-0.07-0.94
c-0.1-0.46-0.18-0.83-0.01-1.09c0.13-0.21,0.4-0.32,1.43-0.32c0.95,0,2.26,0.1,3.13,0.17c0.41,0.03,0.72,0.05,0.83,0.05
c0.23,0,0.54,0.13,1.18,0.41c0.75,0.32,1.78,0.76,2.41,0.76c0.13,0,0.23-0.02,0.3-0.05c0.44-0.25,0.23-1.55-0.05-2.35l-0.04-0.1
l0.2-0.68l0.23-0.02c3.88-0.34,7.08-2.81,7.5-3.51c-0.84-0.53-4.76-2.97-6.14-3.32c-0.61-0.15-0.79-0.02-1.2,0.47
c-0.33,0.4-0.79,0.95-1.76,1.32c-0.21,0.08-0.41,0.12-0.58,0.12c-0.54,0-0.78-0.39-0.94-0.65c-0.16-0.26-0.23-0.34-0.4-0.34
c-0.48,0-1.48,0.61-2.94,1.81c-1.28,1.05-2.1,1.51-2.68,1.51c-0.72,0-0.87-0.68-0.95-1.05c-0.02-0.11-0.06-0.27-0.09-0.33
c0,0.03-0.23,0.1-0.92,0.75c-5.11,4.83-15.58,9.64-16.7,9.64h-0.14l-0.17-0.12c-0.1-0.1-0.15-0.23-0.14-0.38
c0.01-0.49,0.64-1.15,1.96-2.36l0.33-0.3c0.28-0.26,1.32-0.66,3.13-1.33c1.64-0.6,4.37-1.61,4.63-2.02c0.07-0.23-0.32-0.6-0.61-0.87
c-0.33-0.31-0.61-0.58-0.48-0.92c0.11-0.31,0.47-0.37,0.84-0.39c1.53-0.08,6.87-1.79,7.77-2.93c0.2-0.26,0.19-0.27-0.13-0.62
c-0.25-0.28-0.59-0.65-0.78-1.28c-0.24-0.78,0.34-1.47,0.86-2.07c0.31-0.37,0.67-0.79,0.64-1.05c0-0.04-0.01-0.14-0.18-0.28
c-0.03,0.01-0.31-0.04-0.97-0.04c-2.29,0-4.82,0.46-5.01,0.91c-0.29,0.67-1.09,1.03-2.32,1.03c-0.71,0-1.52-0.13-2.24-0.34l0,0
c-0.5,0-1.05,1.9-1.38,3.03c-0.51,1.78-0.96,3.31-1.8,3.55c-0.99,0.28-1.24-0.33-1.35-0.68c-0.1-0.31-0.13-0.42-0.49-0.42
c-0.7,0.02-1.35,3.73-1.59,5.12c-0.23,1.28-0.34,1.91-0.49,2.16c-0.41,0.67-3.56,4.49-5.71,6.02c-0.02,0.02-0.16,0.18-0.38,0.42
c-4.1,4.58-6.55,6.72-7.73,6.72c-0.36,0-0.63-0.18-0.77-0.49c-0.58-1.27,1.95-3.52,5.31-6.34c0.91-0.76,1.92-1.61,2.22-1.97
c-0.27-0.08-0.88-0.1-1.23-0.11c-0.89-0.03-1.38-0.05-1.46-0.46c-0.07-0.39,0.33-0.63,1.26-1.02c2.52-1.06,3.49-2.07,3.52-2.49
l-0.07-0.12c-0.26-0.16-0.39-0.37-0.41-0.61c-0.04-0.52,0.47-0.96,1.24-1.64c1.01-0.88,2.33-2.05,2.82-3.73
c-2.55,0.97-4.58,3.29-6.22,5.18c-0.36,0.41-0.7,0.8-1.02,1.15c0.93-0.06,2.18-0.19,2.83-0.52c0.17-0.08,0.37-0.02,0.46,0.15
c0.08,0.17,0.02,0.38-0.15,0.46c-0.97,0.49-2.93,0.6-3.83,0.63c-0.18,0.17-0.35,0.32-0.52,0.44c-0.94,0.7-2.33,3.38-3.46,5.89
c1.2-0.85,2.56-1.92,2.73-2.4c0.07-0.18,0.27-0.26,0.44-0.2c0.18,0.07,0.27,0.26,0.2,0.44c-0.36,0.99-3.23,2.91-3.9,3.35
c-0.49,1.13-0.91,2.15-1.17,2.83c-0.04,0.1-0.14,0.16-0.23,0.19c-0.01,0.04-0.01,0.07-0.02,0.1c-0.01,0.06,0,0.17,0.02,0.31
c0.12,0.98,0.35,2.8-4.84,8.59l-0.14,0.17l-0.98,0.88l-0.23-0.19l-0.07-0.08c0.02,0.24,0.03,0.47,0.04,0.67l0.01,0.14l-0.1,0.1
c-3.57,3.9-5.51,8.4-6.68,11.08c-0.77,1.78-1.05,2.44-1.54,2.44c-0.48,0-0.61-0.63-0.71-1.27c-0.44-3.02,1.02-4.41,2.1-5.43
c0.43-0.41,0.81-0.77,1.01-1.16c0.3-0.6-0.18-1.1-0.95-1.79c-0.56-0.5-1.08-0.97-1.03-1.56c0.07-0.7,1.14-1.47,2.89-2.65
c0.94-0.64,2.51-1.7,2.52-2.07c-0.12-0.17-0.21-0.19-0.3-0.19c-0.11,0-0.25,0.03-0.41,0.07c-0.36,0.09-0.89,0.18-1.41,0.07
c-0.28-0.06-0.38-0.24-0.42-0.35c-0.16-0.49,0.39-1.16,1.56-2.5c0.4-0.46,0.82-0.94,1.14-1.37c0.11-0.35,0.25-0.72,0.4-1.08
C55.91,65.28,56.01,63.94,56.11,62.65z M56.98,67.13c-0.08,0.27-0.14,0.52-0.18,0.76l0.45,0.14l1.87-0.3L60,67.97l0.94-0.07
c-0.04-1.2-0.54-2.62-1.13-3.56c-0.36-0.57-0.61-0.74-0.67-0.75c-0.25,0-0.91,0.69-1.55,1.99C57.74,66.02,57.38,66.6,56.98,67.13z
M56.73,68.59c0,0.59,0.28,0.92,1.14,1.37c0.33,0.17,0.52,0.8,0.64,1.51c0.03-0.18,0.08-0.39,0.15-0.64
c0.24-0.84,0.79-0.88,1.19-0.92c0.43-0.04,0.76-0.07,1.01-1.12c0.02-0.07,0.02-0.14,0.03-0.21l-0.96,0.08l-0.85-0.22l-1.89,0.3
L56.73,68.59z M59.91,70.6c-0.35,0.03-0.48,0.04-0.6,0.43c-0.09,0.3-0.13,0.53-0.15,0.7l0.38-0.38c0.25-0.27,0.48-0.54,0.7-0.79
C60.14,70.58,60.02,70.59,59.91,70.6z M53.38,79.46c-0.25,0.5-0.68,0.91-1.15,1.35c-1.07,1.01-2.28,2.16-1.89,4.83
c0.04,0.23,0.07,0.39,0.1,0.5c0.21-0.37,0.54-1.11,0.85-1.84c1.17-2.7,3.12-7.2,6.7-11.16c-0.06-1.22-0.27-2.4-0.46-2.58
c-0.92-0.48-1.5-0.99-1.49-2c0-0.1,0.01-0.2,0.02-0.31c-0.11,0.13-0.22,0.26-0.33,0.38c-0.49,0.57-1.21,1.38-1.38,1.76
c0.35,0.05,0.68-0.02,0.98-0.1c0.2-0.05,0.38-0.09,0.57-0.09c0.36,0,0.65,0.17,0.88,0.51c0.53,0.79-0.83,1.72-2.71,2.99
c-1.02,0.69-2.56,1.73-2.6,2.15c-0.02,0.25,0.42,0.64,0.8,0.99C52.97,77.48,53.94,78.34,53.38,79.46z M72.09,48.65
c-0.43,0.66-0.85,1.73-1.12,2.49c0.33-0.36,0.68-0.76,1.06-1.19c1.66-1.91,3.7-4.23,6.32-5.3c-0.2-0.02-0.43-0.03-0.7-0.03
c-0.76,0-2.14,0.1-2.86,0.8c-1.44,1.39-1.97,1.67-2.32,1.67c-0.51,0-0.59-0.51-0.64-0.78c-0.06-0.37-0.09-0.37-0.17-0.37l-0.11,0.02
c-1.13,0.23-1.4,1.97-1.66,3.64c-0.18,1.17-0.35,2.27-0.85,2.87c-0.32,0.4-0.68,0.59-1.09,0.59c-0.45,0-0.86-0.23-1.3-0.48
c-0.5-0.28-1.01-0.57-1.59-0.5c-0.56,0.07-0.65,2.89-0.28,8.38c0.02,0.39,0.05,0.7,0.07,0.98c0.21-0.53,0.51-1.25,0.86-2.06
c-0.04-0.85-0.2-4.41,0.2-5.34c0.07-0.17,0.27-0.26,0.45-0.18c0.17,0.07,0.26,0.28,0.18,0.45c-0.2,0.47-0.23,2.15-0.19,3.67
c1.1-2.4,2.48-5.05,3.53-5.83c0.01-0.01,0.02-0.02,0.04-0.03l0.09-0.29c0.03-0.1,0.73-2.37,1.5-3.56c0.1-0.16,0.31-0.2,0.47-0.1
C72.15,48.28,72.2,48.49,72.09,48.65z M90.51,47.37c-0.18,0.55-1.47,1.11-5.03,2.43c-1.2,0.45-2.7,1-2.9,1.19l-0.33,0.31
c-0.36,0.33-1.2,1.1-1.56,1.57c2.14-0.69,11.21-4.99,15.84-9.36l0.1-0.09c-2.09,1.12-5.76,2.16-6.96,2.23h-0.06l0.13,0.12
C90.15,46.17,90.72,46.71,90.51,47.37z M58.46,87.89c0,0.27-0.1,6.7-3.13,11.15c-0.12,0.17-0.24,0.36-0.36,0.54
c1.42-0.94,2.64-1.87,2.76-2.2c0.07-0.18,0.26-0.27,0.43-0.21c0.18,0.06,0.27,0.26,0.21,0.44c-0.29,0.82-3.04,2.58-4.29,3.35
c-0.52,0.83-1.04,1.69-1.55,2.54c-0.37,0.61-0.74,1.21-1.1,1.8c1.21-0.94,2.47-1.73,3.08-1.48c0.17,0.07,0.26,0.27,0.19,0.45
c-0.07,0.17-0.27,0.26-0.44,0.19c-0.39-0.15-2.19,1.11-4.05,2.79c-0.49,0.75-0.96,1.45-1.44,2.07c0.92-0.63,1.93-1.3,3.02-2.01
c2.02-1.34,4.55-3,4.73-3.43c0.12-0.42,0.07-0.52,0.07-0.54c-0.02-0.04-0.21-0.09-0.33-0.13c-0.18-0.05-0.42-0.11-0.66-0.24
c-0.14-0.07-0.23-0.19-0.26-0.34c-0.09-0.46,0.45-1.1,1.67-2.5c1.17-1.34,2.78-3.18,2.68-4.06c-0.03-0.23-0.07-0.23-0.17-0.23
s-0.2,0.02-0.29,0.04c-0.6,0.1-1.01-0.09-1.04-0.63c-0.02-0.45,0.4-0.95,1.14-1.79c0.56-0.64,1.41-1.6,1.3-2
c-0.03-0.11-0.2-0.18-0.34-0.22c-1.37-0.41-1.07-2.06-0.86-3.16c0.07-0.4,0.18-0.99,0.11-1.13c0,0.03-0.08,0.04-0.22,0.1
c-0.43,0.17-0.71,0.39-0.93,0.63C58.42,87.72,58.46,87.8,58.46,87.89z M44.98,137.94c0.16-0.85,0.18-2.79,0.11-4.51
c-0.12-0.35-0.36-1.11-0.58-2C44.63,134.45,44.79,136.95,44.98,137.94z M47.7,148.01c0.07,0.47,0.36,0.77,1.13,1.17
c0.33,0.18,0.55,0.91,0.62,1.65c0.02-0.22,0.08-0.47,0.17-0.78c0.24-0.84,0.79-0.88,1.19-0.92c0.43-0.04,0.76-0.07,1.01-1.12
c0.01-0.02,0.01-0.05,0.01-0.07l-1.08,0.09l-0.85-0.22l-1.89,0.3L47.7,148.01z M48.06,147.41l1.87-0.3l0.88,0.23l1.09-0.09
c0-1.23-0.52-2.73-1.14-3.7c-0.36-0.57-0.61-0.74-0.67-0.75c-0.53,0-2.11,2.52-2.37,4.5L48.06,147.41z M50.86,149.82
c-0.35,0.03-0.48,0.04-0.6,0.43c-0.14,0.49-0.17,0.79-0.16,0.96l0.92-0.22c0.05-0.28,0.16-0.76,0.32-1.25
C51.19,149.78,51.03,149.81,50.86,149.82z M53.03,148.59l0.23,0.61l1.4,1.06l0.37,0.85l0.53,0.57c0.55-0.89,1.07-2.52,1.05-3.56
c-0.01-0.39-0.1-0.58-0.17-0.63c-0.11-0.06-0.27-0.1-0.46-0.1c-0.86,0-2.16,0.6-2.97,1.15C53.01,148.56,53.02,148.57,53.03,148.59z
M68.09,190.17c0.5,1.04,1.19,2.47,1.63,2.51c0.26,0.02,0.62,0.06,1.02,0.1c0.88,0.1,1.97,0.22,2.73,0.22
c0.19,0,0.34-0.01,0.44-0.02c-0.42-0.33-1.31-0.9-2.12-1.42c-1.46-0.93-3.32-2.11-4.69-3.27C67.43,188.8,67.74,189.46,68.09,190.17z
M46.56,164.96c0.17-0.08,0.37-0.02,0.46,0.15c0.33,0.67,0.38,2.9,0.38,4.02c1.28,1.1,2.61,2.05,3.68,2.31
c-0.18-0.09-0.36-0.19-0.54-0.29c-0.42-0.24-0.85-0.49-1.3-0.65c-0.92-0.32-1.16-2.19-1.4-4c-0.1-0.79-0.24-1.86-0.41-2.12
c-0.25,0.01-0.44,0.04-0.65,0.08c-0.36,0.07-0.73,0.14-1.39,0.04c-0.79-0.12-0.68-1.52-0.52-3.65c0.08-1.08,0.26-3.34-0.09-3.53
c-0.49-0.12-0.87,0.08-1.24,0.31c-0.35,0.21-0.71,0.43-1.19,0.35c-0.6-0.11-0.73-1.05-0.93-3.7c-0.1-1.29-0.27-3.45-0.61-3.72
c-0.38-0.31-0.91-0.01-1.37,0.26c-0.15,0.09-0.3,0.17-0.42,0.23l-0.07,0.03l-0.14,0.01c-0.4,0-0.7-0.42-1.11-1.01
c-0.29-0.4-0.77-1.08-1.03-1.08l-0.11,0.06c-0.37,0.35-0.12,1.43,0.08,2.3c0.21,0.9,0.39,1.68,0.13,2.19
c-0.29,0.58-0.86,0.58-1.04,0.58c-0.12,0-0.24-0.01-0.35-0.02c-0.1-0.01-0.19-0.01-0.28-0.01c-0.24,0-0.27,0.04-0.3,0.21
c-0.34,2.03,1.65,3.93,3.11,5.32c1.07,1.01,1.83,1.75,1.3,2.32c-0.15,0.16-0.38,0.37-0.69,0.37c-0.18,0-0.31-0.07-0.42-0.12
c-0.09-0.04-0.14-0.07-0.2-0.07c-0.12,0-0.32,0.12-0.56,0.34c0.01,0.61,1.84,1.94,3.06,2.82c1.87,1.37,2.52,1.89,2.39,2.4
c-0.05,0.2-0.22,0.54-0.77,0.54c-0.17,0-0.38-0.04-0.58-0.07c-0.17-0.03-0.34-0.06-0.49-0.06c-0.18,0-0.19,0.02-0.2,0.18
c-0.03,0.58,0.92,1.21,1.84,1.83c0.55,0.37,1.11,0.75,1.59,1.18c0.34,0.31,2.28,0.36,3.7,0.4c0.81,0.02,1.5,0.04,2.09,0.09
c-0.83-0.4-1.7-1.02-2.57-1.73v0.02l-0.3,0.03c-0.04,0.01-0.43,0.05-1,0.05c-1.07,0-2.76-0.15-4.02-0.96
c-0.16-0.1-0.21-0.31-0.1-0.48c0.1-0.16,0.32-0.2,0.47-0.1c1.39,0.9,3.46,0.88,4.25,0.84c-1.02-0.9-2.01-1.88-2.83-2.7
c-0.36-0.36-0.67-0.66-0.92-0.91c-0.05,0.02-0.1,0.04-0.14,0.04l-0.15,0.02c-0.54,0-1.12-0.55-1.83-1.24
c-0.51-0.49-1.1-1.05-1.6-1.29c-0.17-0.08-0.24-0.29-0.16-0.46c0.08-0.17,0.29-0.24,0.46-0.16c0.6,0.29,1.2,0.86,1.77,1.41
c0.29,0.28,0.69,0.66,0.99,0.87c-0.9-1.34-1.88-3.76-2.75-6.23c-1.82-1.15-3.79-2.61-3.53-3.41c0.06-0.18,0.25-0.27,0.43-0.22
c0.18,0.06,0.28,0.25,0.22,0.43c0.04,0.28,1.12,1.19,2.52,2.13c-1.16-3.41-2.04-6.62-2.11-6.88c-0.05-0.18,0.05-0.37,0.24-0.42
c0.18-0.05,0.37,0.06,0.42,0.24c0.02,0.07,0.91,3.32,2.07,6.76c0.15-1.4,0.27-3.35-0.02-4.19c-0.06-0.18,0.04-0.37,0.21-0.43
s0.37,0.03,0.43,0.21c0.52,1.52-0.07,5.53-0.1,5.7l-0.02,0.17c0.84,2.37,1.77,4.62,2.59,5.81c0.33-1.32,0.45-4.38,0.46-5.57
c0-0.19,0.15-0.34,0.34-0.34h0.01c0.19,0,0.34,0.16,0.34,0.35c0,0.2-0.07,4.82-0.63,6.18c0.26,0.25,0.58,0.57,0.95,0.94
c0.64,0.64,1.48,1.47,2.37,2.29c-0.02-1.28-0.11-2.71-0.3-3.11C46.32,165.25,46.39,165.04,46.56,164.96z M52.43,171.19
c-0.3-0.96-2.17-4.19-3.1-5.81l-0.54-0.93c-0.71-1.1-2.03-4.06-3.21-6.98c0.16,0.73,0.09,1.9-0.03,3.43
c-0.08,1.07-0.21,2.7,0.01,2.95l0,0c0.13,0,0.3,0.01,0.45,0.01c0.25,0,0.45-0.04,0.66-0.08c0.23-0.04,0.49-0.09,0.84-0.09
c0.66,0,0.79,1.02,1.01,2.72c0.16,1.22,0.42,3.26,0.95,3.44c0.51,0.18,0.97,0.45,1.41,0.7C51.43,170.88,51.96,171.19,52.43,171.19z
M36.93,101.82c-0.25,0.29-0.61,0.29-0.73,0.29c-0.1,0-0.21-0.01-0.32-0.02c-0.35-0.03-0.67-0.07-0.87,0.33
c-0.82,1.62,2.48,3.98,3.56,4.75l0.08,0.06c0.18,0.13,0.34,0.28,0.5,0.46c-0.09-0.45-0.18-0.97-0.27-1.53l-0.05-0.05
c-0.83-0.79-2.76-2.7-2.76-3.47c0-0.19,0.15-0.34,0.34-0.34l0,0c0.19,0,0.34,0.15,0.34,0.34c0.03,0.31,0.95,1.39,1.96,2.4
c-0.26-1.86-0.43-3.99-0.24-5.79c-0.83-1.29-2.52-4.14-1.92-5.01c0.11-0.15,0.31-0.19,0.46-0.08c0.15,0.1,0.2,0.32,0.1,0.48
c-0.18,0.29,0.5,1.87,1.52,3.57c0.15-0.87,0.32-1.99,0.48-3.21v-0.02c-0.16-0.66-0.95-4-0.74-4.89c0.05-0.19,0.23-0.3,0.41-0.25
c0.18,0.04,0.3,0.23,0.26,0.41c-0.09,0.37,0.1,1.55,0.34,2.74c0.5-4.1,0.92-8.51,0.95-8.82c0,0,0,0-0.01,0
c-0.29,0-1.31,0.37-2.08,5.17c-0.45,2.76-1.03,3.94-1.95,3.94c-0.27,0-0.51-0.11-0.7-0.19l-0.25-0.1c-0.23,0.44,0.12,1.32,0.55,2.45
c0.43,1.12,0.97,2.51,1.23,4.22C37.28,100.82,37.23,101.47,36.93,101.82z M28.66,125.04c0,0.42,0.03,0.83,0.03,1.24
c0.08-0.11,0.18-0.2,0.3-0.27c0.21-0.12,0.43-0.17,0.63-0.17c0.46,0,0.76,0.29,0.98,0.5l0.2,0.17c0.08-0.21-0.18-1.05-0.37-1.66
c-0.46-1.46-1.1-3.46-0.68-5.55c0.21-1.05,0.63-1.27,1.19-1.27h0.19c0.34,0,0.85,0,1.46-1.75c0.43-1.23,0.87-1.78,1.4-1.78
c0.79,0,1.23,1.2,1.64,2.54l0.1,0.31c0.04,0.11,0.07,0.15,0.07,0.15l0.18-0.11c0.2-0.09,0.44-0.21,0.74-0.21
c0.36,0,0.69,0.17,0.99,0.51c0.62,0.68,0.06,1.9-0.53,3.18c-0.38,0.82-0.85,1.85-0.68,2.25c0.02,0.05,0.07,0.11,0.2,0.16
c0.57,0.19,0.91,0.08,1.18-0.06c0.14-0.08,0.3-0.17,0.5-0.17c0.37,0,0.67,0.31,0.93,0.65c1.18,1.48-0.6,4.4-1.4,5.1
c-0.26,0.22-0.42,0.87-0.42,1.62c0.01,0.75,0.19,1.34,0.36,1.49c0.03,0.03,0.09,0.06,0.24,0.06c0.18,0,0.42-0.05,0.64-0.11
c0.26-0.07,0.54-0.13,0.8-0.13c0.37,0,0.65,0.13,0.83,0.4c0.35,0.49,0.17,1.15-0.09,2.05c-0.21,0.77-0.48,1.72-0.51,2.89
c-0.04,1.5,0.86,2.49,1.47,2.98c-0.2-3.08-0.97-14.96-0.92-16.79c0.05-1.96-0.22-11.5-0.24-12.26c-0.11-0.33-0.83-2.48-1.84-3.2
l-0.08-0.06c-1.33-0.95-4.86-3.47-3.78-5.62c0.37-0.72,0.98-0.72,1.19-0.72c0.12,0,0.24,0.01,0.35,0.02
c0.09,0.01,0.18,0.02,0.26,0.02c0.16,0,0.19-0.04,0.21-0.05c0.07-0.08,0.2-0.39,0.02-1.61c-0.25-1.63-0.77-2.99-1.19-4.07
c-0.52-1.35-0.89-2.32-0.46-3.05c0.23-0.39,0.7-0.34,1.07-0.17c0.15,0.07,0.3,0.13,0.42,0.13c0.22,0,0.79-0.33,1.28-3.36
c0.62-3.87,1.52-5.75,2.75-5.75c0.71,0,1.21,0.66,1.39,0.95c0.22,0.35,0.43,1.08,0.66,1.91c0.23,0.81,0.77,2.7,1.12,2.78l0.08-0.06
c0.45-0.45,0.9-0.42,1.11-0.03c0.38,0.69-0.06,2.71-0.44,3.32c-0.29,0.47-0.37,0.88-0.32,0.99c0.01,0.02,0.26,0.11,1.09-0.27
c0.53-0.25,0.88-0.16,1.02,0.16c0.45,1-2.94,5.25-2.97,5.3c-0.63,0.72-0.6,0.93-0.6,0.94c0.05,0.06,0.38,0.11,0.56,0.13
c0.18,0.03,0.36,0.05,0.51,0.1c0.19,0.06,0.3,0.23,0.32,0.51c0.07,0.91-0.59,3.93-2.23,4.71c-0.26,0.12-0.44,0.41-0.53,0.85
c-0.23,1.12,0.19,2.82,0.5,3.65c0.35-1.01,0.99-3.31,1.57-5.38c0.81-2.88,1.72-6.15,2.37-7.99c0.82-2.31,1.61-4.97,2.15-6.72
c0.27-0.89,0.47-1.56,0.57-1.85c0.05-0.29-0.58-1.73-1.12-3.01c-1.02-2.37-2.42-5.61-2.52-7.85c-0.07-1.62,0.08-2.5,0.52-2.95
c0.51-0.53,1.33-0.42,2.73,0.08c0.09,0.03,0.14,0.04,0.16,0.04c0.19-0.22-0.15-1.62-0.36-2.46c-0.38-1.52-0.73-2.95-0.24-3.59
c0.11-0.15,0.32-0.33,0.69-0.34c0.7-0.01,0.96-0.7,1.28-1.76c0.1-0.32,0.21-0.64,0.34-0.92C36.55,81.28,28.66,102.25,28.66,125.04z
M221.44,125.04c0-53.42-43.24-96.88-96.39-96.88c-30.14,0-57.08,13.98-74.77,35.82c0.14-0.08,0.3-0.14,0.49-0.14
c1.63,0,1.96-0.97,2.23-1.76c0.08-0.23,0.14-0.42,0.24-0.57c0.99-1.56,2.01-1.72,2.4-1.72c0.28,0,0.54,0.07,0.73,0.22
c0.6,0.45,0.51,1.53,0.42,2.68c-0.08,1-0.17,2.14,0.27,2.42c0.4-0.78,1.24-2.21,2.07-2.21l0.12,0.01c0.32,0.05,0.67,0.37,1.05,0.94
c0.87,1.31,1.6,3.55,1.23,5.11l-0.02,0.08c2.97-3.75,2.8-5.06,2.72-5.74c-0.02-0.19-0.05-0.37,0-0.56c0.03-0.18-0.04-1.22-0.11-2.22
c-0.4-5.92-0.38-8.95,0.88-9.11c0.79-0.1,1.45,0.27,2.01,0.58c0.36,0.2,0.69,0.39,0.96,0.39c0.12,0,0.32-0.04,0.56-0.34
c0.37-0.46,0.54-1.52,0.7-2.54c0.28-1.82,0.6-3.89,2.2-4.21c0.93-0.19,1.03,0.58,1.08,0.91l0.04,0.19c0.17-0.06,0.62-0.34,1.78-1.46
c0.85-0.82,2.28-0.99,3.33-0.99c0.07,0,1.6,0.01,1.87,0.3l0.1,0.11l-0.01,0.16c-0.27,2.38-2.04,3.93-3.21,4.95
c-0.4,0.36-1.02,0.9-1.01,1.07l0.1,0.08c0.27,0.17,0.41,0.44,0.38,0.76c-0.08,0.91-1.55,2.05-3.94,3.06
c-0.14,0.06-0.26,0.11-0.36,0.16c0.11,0.01,0.22,0.01,0.32,0.01c0.99,0.03,1.6,0.08,1.86,0.41c0.1,0.13,0.13,0.28,0.09,0.44
c-0.09,0.38-0.73,0.94-2.52,2.44c-1.8,1.5-5.53,4.63-5.12,5.52c0.03,0.07,0.06,0.09,0.15,0.09c0.65,0,2.43-1.13,7.23-6.49
c0.4-0.45,0.43-0.48,0.48-0.52c2.07-1.48,5.17-5.25,5.53-5.83c0.1-0.17,0.26-1.1,0.4-1.92c0.58-3.3,1.08-5.65,2.19-5.68l0,0
c0.92,0,1.11,0.58,1.2,0.9c0.09,0.28,0.1,0.28,0.21,0.28l0,0c0.08,0,0.18-0.02,0.3-0.05c0.48-0.14,0.97-1.84,1.33-3.08
c0.55-1.9,1.02-3.54,1.99-3.54l0.24,0.04c0.66,0.2,1.4,0.31,2.05,0.31c0.91,0,1.53-0.22,1.7-0.62c0.55-1.29,5.58-1.32,5.64-1.32
c1.17,0,1.32,0.13,1.41,0.2c0.26,0.22,0.4,0.47,0.42,0.75c0.05,0.55-0.36,1.04-0.8,1.56c-0.42,0.49-0.85,1.01-0.72,1.43
c0.15,0.49,0.41,0.77,0.63,1.02c0.32,0.35,0.72,0.8,0.16,1.51l-0.15,0.16c0.63-0.16,0.81,0.47,0.89,0.82
c0.1,0.46,0.16,0.51,0.29,0.51c0.22,0,0.8-0.17,2.25-1.36c2.13-1.74,2.92-1.96,3.37-1.96c0.57,0,0.82,0.4,0.98,0.67
c0.26,0.42,0.34,0.39,0.7,0.25c0.8-0.31,1.16-0.74,1.47-1.12c0.4-0.48,0.86-0.96,1.89-0.7c1.63,0.42,6.26,3.35,6.45,3.48
c0.17,0.07,0.27,0.28,0.23,0.52c-0.16,0.97-3.81,3.7-7.92,4.15l-0.01,0.03c0.17,0.53,0.73,2.5-0.3,3.08
c-0.7,0.39-2.18-0.19-3.3-0.67c-0.36-0.15-0.8-0.34-0.92-0.35c-0.11,0-0.44-0.02-0.88-0.06c-0.86-0.07-2.16-0.16-3.08-0.16
c-0.51,0-0.75,0.03-0.85,0.05c0.01,0.11,0.06,0.36,0.1,0.53c0.11,0.54,0.24,1.14-0.06,1.52c-0.1,0.13-0.29,0.27-0.64,0.27
c-1.08-0.05-1.49-0.21-2.99-0.82l-0.68-0.27c-0.55-0.22-1.68-0.04-3.52,0.28l-0.21,0.04c-2.31,0.4-11.61,4.62-11.9,6.15
c-0.06,0.32,0,0.42,0.01,0.43c0.03,0.04,0.11,0.05,0.22,0.05c0.45,0,1.2-0.31,1.86-0.58c0.38-0.16,0.74-0.3,1.03-0.39
c0.49-0.15,1.09-1.06,1.58-1.79c0.58-0.88,1.04-1.57,1.58-1.57c0.13,0,0.33,0.04,0.51,0.25c0.48,0.55,0.45,1.01,0.42,1.32
c-0.02,0.25-0.02,0.25,0.12,0.32c0.48,0.24,1.38,0.03,1.61-0.13c0.05-0.04,0.26-0.31,0.44-0.54c1.02-1.31,2.1-2.58,2.98-2.58
l0.13,0.01c0.79,0.11,0.89,0.87,0.96,1.41s0.13,0.8,0.37,0.86h0.01c0.42,0,1.14-0.63,1.73-1.14c0.89-0.77,1.75-1.48,2.42-1.32
c0.16,0.04,0.4,0.09,0.69,0.15c3.17,0.66,4.87,1.2,4.82,2.12c-0.06,1.16-4.55,4.6-6,4.6l-0.16-0.02c-0.57-0.1-0.98-0.35-1.24-0.52
l-0.18-0.11c-0.05,0.14,0.05,0.36,0.15,0.58c0.2,0.44,0.54,1.18-0.38,1.8c-0.2,0.14-0.46,0.2-0.77,0.2c-0.75,0-1.75-0.42-2.55-0.75
c-0.28-0.12-0.6-0.25-0.83-0.33c0.24,1.01,0.59,2.71-0.54,3.12c-0.66,0.24-1.9-0.57-3.09-1.37c-0.59-0.4-1.4-0.95-1.63-0.95
c-0.05,0.04-0.13,0.25-0.22,0.46c-0.17,0.42-0.42,1.07-1.27,0.97c-0.36-0.04-0.61-0.25-0.89-0.5c-0.66-0.57-1.76-1.53-5.81-1.53
l-0.42,0.01c-1.68,0.02-5.21,1.85-12.46,10.38c-0.1,0.12-0.19,0.22-0.26,0.3c0.12,0.14,0.34,0.34,0.59,0.41
c0.32-0.13,1.39-0.59,1.94-1.25c0.12-0.15,0.3-0.38,0.51-0.64c1.96-2.53,3.12-3.74,3.86-3.36c0.65,0.33,0.62,0.97,0.61,1.36
c-0.01,0.11-0.01,0.27,0.01,0.32c0.35-0.05,1.77-1.74,2.62-2.75c1.56-1.86,2.3-2.67,2.86-2.67c0.93,0.09,1.43,0.86,1.83,1.49
c0.14,0.22,0.39,0.6,0.49,0.63c0.71-0.53,3.01-1.76,4.24-1.76c0.4,0,0.68,0.12,0.85,0.36c0.45,0.66-0.42,1.54-1.35,2.46
c-0.4,0.41-1.02,1.02-1.04,1.23c0.07,0.05,0.18,0.17,0.29,0.29c0.32,0.35,0.65,0.71,0.61,1.16c-0.02,0.25-0.15,0.47-0.39,0.66
c-0.37,0.29-1.18,0.41-2.11,0.54c-0.8,0.12-2.15,0.31-2.3,0.63c-0.14,0.29-0.07,0.49,0.02,0.77c0.11,0.32,0.25,0.76-0.1,1.29
c-0.15,0.23-0.41,0.35-0.77,0.35c-0.67,0-1.66-0.4-2.54-0.76c-0.51-0.21-1.04-0.43-1.26-0.45c-0.14-0.01-0.29-0.04-0.44-0.07
c-0.36-0.07-0.75-0.06-0.76-0.06c0,0-0.03,0.1,0.06,0.39c0.13,0.41,0.49,0.84,0.85,1.25c0.48,0.56,0.89,1.05,0.79,1.56
c-0.05,0.27-0.24,0.5-0.56,0.66c-0.86,0.45-2.72,0.09-4.28-0.27c-0.66-0.15-1.29-0.29-1.65-0.31c-0.25-0.01-0.64-0.05-1.1-0.09
c-0.85-0.08-2.02-0.19-2.98-0.19c-1.36,0-1.53,0.23-1.54,0.24l-0.3-0.1l0.1,0.24c-0.5,0.31-5.02,5.81-7.58,9.99
c-2.36,3.86-10.42,20.95-9.36,26.04c0.07,0.34,0.15,0.41,0.15,0.41c0.27-0.07,1.13-1.47,1.98-3.63c0.37-0.93,0.41-2.5,0.44-3.76
c0.05-1.63,0.07-2.53,0.65-2.64c0.64-0.12,1.26,0.08,1.78,0.24c0.64,0.2,1.11,0.34,1.4-0.09c0.3-0.45,0.08-2.58-0.07-4.13
c-0.28-2.76-0.35-3.92,0.18-4.26c0.19-0.12,0.4-0.18,0.63-0.18c0.63,0,1.27,0.46,1.84,0.87c0.29,0.21,0.69,0.5,0.85,0.51l0.03-0.12
c0.09-0.44,0.06-1.14,0.04-1.82c-0.05-1.17-0.09-2.27,0.38-2.76c0.24-0.25,0.58-0.32,0.97-0.19c0.21,0.07,0.4,0.11,0.54,0.11
c0.29,0,0.39-0.13,0.64-0.64c0.28-0.56,0.66-1.32,1.81-1.78c0.54-0.22,0.87-0.05,1,0.11c0.28,0.34,0.17,0.93,0.03,1.69
c-0.23,1.22-0.34,2.16,0.38,2.38c0.44,0.13,0.71,0.36,0.8,0.69c0.21,0.76-0.63,1.71-1.45,2.64c-0.38,0.44-0.97,1.1-0.97,1.31
c0.07,0.02,0.15,0.01,0.24-0.01c0.14-0.02,0.28-0.05,0.41-0.05c0.28,0,0.76,0.11,0.84,0.84c0.14,1.18-1.45,2.99-2.84,4.59
c-0.58,0.67-1.3,1.49-1.47,1.84c0.14,0.05,0.27,0.09,0.4,0.13c0.29,0.08,0.59,0.16,0.75,0.46c0.14,0.25,0.13,0.57-0.01,1.06
c-0.17,0.57-1.58,1.55-5.01,3.81c-3,1.97-7.54,4.97-7.72,6.04c-0.21,1.25-0.21,7.45-0.06,13.3c0.07-0.11,0.14-0.2,0.23-0.28
c0.14-0.12,0.29-0.17,0.44-0.17c0.29,0,0.48,0.2,0.65,0.38c0.26,0.27,0.51,0.52,1.07,0.42c0.47-0.09,0.15-3.21,0.04-4.38
c-0.24-2.41-0.28-3.21,0.17-3.47c0.48-0.27,0.76-0.24,1.07-0.16c0.16,0.04,0.35,0.1,0.69,0.11c0.04-0.1,0.07-0.3,0.1-0.46
c0.14-0.74,0.36-1.93,1.57-2.29c-0.02-0.71,0.01-2.09,0.41-2.52c0.14-0.15,0.3-0.18,0.4-0.18c0.39,0,0.8,0.35,1.51,2.03
c1.14,2.72,1.13,3.04,1.13,3.25c0.02,0.07,0.27,0.51,0.45,0.84c0.91,1.61-0.33,3.99-0.79,4.88c-0.07,0.13-0.12,0.23-0.14,0.28
c-0.01,0.05-0.04,0.13-0.14,0.34c-0.2,0.45-0.79,1.81-0.51,2.32c0.04,0.06,0.11,0.15,0.32,0.18c0.57,0.08,0.99,0.49,1.17,1.16
c0.36,1.32-0.28,3.53-1.79,4.7c-3.32,2.56-5.56,4.4-6.39,6.47c-0.37,0.99,1.14,10.62,2.36,11.59c0.16,0.13,0.23,0.13,0.23,0.13
c0.02-0.01,0.11-0.13,0.15-0.46c0.11-0.83-0.14-1.98-0.3-2.15c-0.91-0.47-1.48-0.98-1.48-1.99c0-0.04,0-0.08,0.01-0.12
c-0.03-0.07-0.04-0.15-0.01-0.23c0.01-0.02,0.02-0.04,0.03-0.06c0.23-2.05,1.89-5.25,3.05-5.25l0.11,0.01
c0.32,0.05,0.68,0.37,1.05,0.94c0.85,1.28,1.56,3.44,1.26,4.99c0.91-0.64,2.41-1.34,3.47-1.34c0.32,0,0.59,0.06,0.8,0.19
c0.33,0.19,0.5,0.59,0.51,1.2c0.02,1.17-0.57,3.09-1.29,4.12c0.04,0.12,0.03,0.25-0.07,0.35c-0.07,0.06-0.15,0.09-0.23,0.09
c-0.02,0-0.05-0.01-0.07-0.02c-0.06,0.05-0.11,0.12-0.17,0.15c-0.41,0.27-1.18,0.32-1.76,0.32c-0.52,0-1.51-0.06-1.87-0.29l0,0
c0,0-0.31-0.15-0.71-0.15c-0.37,0-0.71,0.12-1.02,0.36c-0.72,0.55,0.4,8.46,1.41,9.95c0.62,0.91,1.39,2.14,2.29,3.55
c2.44,3.84,6.49,10.21,7.92,10.69c-0.22-0.37-0.78-1.04-1.25-1.59c-1.36-1.61-2.89-3.44-2.59-4.64c0.11-0.45,0.69-0.51,1.25-0.57
c0.1-0.01,0.22-0.02,0.33-0.04c-0.09-0.1-0.2-0.24-0.34-0.4c-3.35-3.97-4.32-5.61-3.73-6.27c0.3-0.34,0.89-0.28,1.39-0.27
c0.18,0.01,0.37,0.01,0.48,0.01c-0.16-0.28-0.65-0.97-1.05-1.54c-1.49-2.13-2.36-3.47-1.88-4.13c0.29-0.4,0.98-0.59,1.72-0.77
l0.22-0.05c0.09-0.31,0.05-1.38,0.03-2.18c-0.08-2.29-0.09-3.59,0.68-3.69c1.3-0.17,1.84,1.86,2.27,3.46
c0.14,0.51,0.33,1.22,0.44,1.34c0.09,0,0.24-0.11,0.35-0.18c0.18-0.13,0.38-0.26,0.61-0.26c0.18,0,0.43,0.08,0.6,0.45
c0.17,0.36,0.25,1.28,0.37,2.76c0.08,1.06,0.23,2.79,0.41,3.28c0.06-0.08,0.12-0.2,0.17-0.29c0.22-0.42,0.55-1.03,1.18-0.9
c1.16,0.23,1.55,3.2,1.55,3.23c0.02,0.27-0.15,0.8-0.59,2.03c-0.3,0.84-0.78,2.19-0.81,2.66c0.09-0.04,0.22-0.11,0.32-0.16
c0.45-0.25,1.15-0.52,1.72-0.2c0.61,0.34,0.36,1.66-0.27,4.62c-0.52,2.44-1.18,5.48-0.89,7.26c0.38,1.17,11.33,11.36,15.25,12.32
c0.12,0.03,0.21,0.04,0.29,0.04c0.08-0.1-0.16-0.66-0.7-1.35c-0.1-0.08-0.76-0.33-1.35-0.56c-2.87-1.11-5.44-2.22-5.32-3.72
c0.08-1,0.58-1.21,0.98-1.21c0.19,0,0.38,0.05,0.54,0.1c-0.3-0.36-1.19-0.99-1.87-1.47c-1.85-1.31-3.77-2.66-3.15-3.85
c0.16-0.3,0.53-0.26,0.96-0.05c0.28,0.14,0.65,0.31,0.88,0.21c-0.03-0.42-0.78-1.81-1.28-2.74c-1.27-2.37-1.97-3.74-1.37-4.27
c0.15-0.13,0.34-0.19,0.58-0.19c1.2,0,3.82,1.82,4.86,2.91c0.04-0.12,0.1-0.23,0.19-0.33c0.14-0.15,0.47-0.31,0.97-0.18
c1.28,0.34,3.04,4.39,3.7,6.09c0.23-0.35,0.58-0.69,1.12-0.69c0.17,0,0.35,0.04,0.53,0.11c1.52,0.61,2.12,6.3,1.94,6.95
c-0.1,0.54,0.9,6.08,1.12,6.62c0.53,0.79,13.37,7.43,16.73,7.43c0.26,0,0.37-0.04,0.41-0.07l0.06-0.21
c-0.02-0.78-1.04-2.33-1.79-2.71c0.01,0-0.05-0.01-0.34-0.01c-0.23,0-0.54,0.01-0.88,0.02c-0.45,0.02-0.97,0.04-1.49,0.04
c-1.78,0-2.8-0.23-3.3-0.76c-0.23-0.24-0.34-0.54-0.33-0.87c0.03-0.83,0.67-1.28,1.09-1.58l0.25-0.19h-0.04
c-0.28,0-0.77,0.21-1.21,0.39c-0.77,0.32-1.48,0.56-1.83,0.24c-0.06-0.06-6.21-5.78-5.39-6.86c0.25-0.33,0.68-0.5,1.27-0.5
c0.77,0,1.75,0.28,2.61,0.52c0.65,0.18,1.26,0.36,1.6,0.36c0.32,0,0.35-0.08,0.39-0.49c0.02-0.25,0.07-0.78,0.6-0.78l0.12,0.01
c0.95,0.15,2.52,0.99,4.06,2.9c0,0,0.06,0.05,0.32,0.05s0.6-0.05,0.95-0.11c0.65-0.1,1.34-0.19,1.77-0.05
c1.82,0.55,3.46,2.01,3.03,4.02c-0.04,0.23,0.33,1.25,0.6,1.99c0.49,1.36,0.81,2.29,0.75,2.8c-0.06,0.57-0.22,1.09-0.37,1.55
c-0.1,0.33-0.27,0.87-0.2,0.98l0.16,0.07l3.22,2.11l-0.98,3.01l-0.38-0.28c-0.02-0.02-2.69-1.97-4.31-1.97
c-0.2,0-0.36,0.03-0.5,0.09c-1.32,0.58-2.57,2.04-3.79,3.46c-1.36,1.59-2.64,3.09-4.04,3.44c-0.69,0.17-1.24,0.26-1.67,0.26
c-0.98,0-1.52-0.44-1.65-1.35c-0.08-0.61,0.17-1.05,0.36-1.37c0.21-0.36,0.2-0.36,0.07-0.47c-0.24-0.01-0.75,0.23-1.23,0.49
c-0.85,0.45-1.91,1.01-3.04,1.01c-0.26,0-0.52-0.03-0.76-0.09c-2.46-0.62-3.76-2.47-3.95-4.02c-0.01-0.1-0.02-0.16-0.04-0.21
L80,207.37c-0.29,0.13-0.73,0.32-1.33,0.32c-0.65,0-1.36-0.24-2.1-0.7c-2.46-1.55-5.1-4.22-4.67-5.2c0.31-0.71,2.04-1.13,5.34-1.89
l0.3-0.07c0.21-0.05,0.42-0.07,0.62-0.07c1.33,0,1.81,1.14,2.07,1.75l0.03,0.07c0.12-0.25,0.18-0.5,0.23-0.74
c0.11-0.51,0.24-1.15,1.03-1.19l0,0c0.57,0,1.21,0.66,2.3,1.84c0.72,0.78,1.8,1.95,2.24,1.95c0.26-0.07,0.49-0.14,0.74-0.22
c0.85-0.28,1.82-0.59,3.03-0.59c1.03,0,1.66,0.75,2.17,1.35c0.32,0.37,0.61,0.73,0.89,0.77c0.4,0.06,1.27-0.06,2.11-0.17
c0.31-0.04,0.62-0.08,0.93-0.12c-2.88-1.18-7.92-3.26-9.84-4.16c-0.94-0.44-2.08-1.07-3.29-1.74c-2.3-1.28-4.9-2.73-6.2-2.82
l-0.81-0.06c-2.02-0.15-4.54-0.33-5.55-0.7c-0.54-0.2-0.79,0.07-1.18,0.63c-0.27,0.4-0.58,0.85-1.13,0.85
c-0.11,0-0.21-0.02-0.32-0.05c-0.54-0.17-0.78-0.35-0.96-0.48c-0.19-0.13-0.28-0.2-0.74-0.21l0,0c-0.21,0-0.26,0.02-0.26,0.02
c-0.18,0.36-0.48,0.55-1.63,0.58h-0.13c-1.57,0-2.83-0.69-3.22-1.33c-0.18-0.3-0.12-0.53-0.07-0.63c0.13-0.25,0.34-0.5,0.54-0.74
c0.17-0.2,0.48-0.58,0.47-0.7c0,0-0.05-0.07-0.29-0.13c-0.44-0.12-1.06-0.24-1.72-0.38c-1.35-0.27-2.74-0.55-3.34-0.91
c-0.45-0.26-2.14-1.46-2.26-2.44c-0.03-0.26,0.05-0.5,0.22-0.67c0.18-0.18,0.5-0.14,0.93-0.05c0.29,0.06,0.68,0.08,0.68,0.08
c-0.16-0.6-3.22-2.03-4.37-2.58l-0.4-0.19c-1.34-0.63-2.33-1.91-2.53-2.79c-0.1-0.48,0.03-0.76,0.16-0.92
c0.28-0.34,0.77-0.31,1.15-0.2c0.12,0.04,0.24,0.07,0.34,0.07c0.05,0,0.16,0,0.27-0.3c0.17-0.44-0.14-1.23-0.41-1.93
c-0.37-0.93-0.72-1.82-0.15-2.31c0.17-0.14,0.36-0.21,0.59-0.21c0.53,0,1.11,0.4,1.66,0.79c0.29,0.2,0.73,0.51,0.87,0.51
c0.52-0.16,0.63-0.47,0.76-0.82c0.13-0.36,0.3-0.91,1.15-0.79c0.74,0.1,1.19,1.28,1.76,2.78c0.5,1.31,1.07,2.79,1.77,3.27
c0.17,0.11,0.28,0.17,0.35,0.2l0.02-0.17c0.03-0.37,0.1-1.15,0.99-1.15c0.8,0,1.33,1.19,2.13,3.11c0.39,0.94,1.11,2.69,1.49,2.69
c0.27-0.05,0.48-0.1,0.65-0.14c0.64-0.15,0.87-0.22,1.96,0.05l0.04,0.01l-0.11-0.12c-2.51-2.91-10.74-10.97-14.33-14.41
c-0.34-0.32-2.32-0.37-3.77-0.41c-2.24-0.06-3.63-0.12-4.13-0.57c-0.44-0.4-0.99-0.76-1.52-1.12c-1.13-0.76-2.19-1.47-2.14-2.43
c0.02-0.53,0.34-0.83,0.88-0.83c0.19,0,0.4,0.04,0.61,0.07c0.26,0.05,0.58,0.05,0.58,0.05c-0.1-0.2-1.28-1.06-2.13-1.69
c-2-1.46-3.32-2.47-3.36-3.29c-0.01-0.23,0.07-0.44,0.24-0.59c0.38-0.35,0.71-0.51,1.02-0.51c0.22,0,0.38,0.08,0.5,0.13l0.13,0.05
c0,0,0.06-0.01,0.19-0.16c-0.03-0.17-0.75-0.85-1.27-1.35c-1.48-1.41-3.71-3.53-3.31-5.93c0.09-0.52,0.41-0.78,0.97-0.78
c0.11,0,0.22,0.01,0.34,0.02c0.1,0.01,0.2,0.02,0.3,0.02c0.28,0,0.37-0.07,0.43-0.2c0.14-0.28-0.03-1.05-0.19-1.73
c-0.26-1.14-0.54-2.33,0.12-2.95c0.17-0.16,0.37-0.25,0.58-0.25c0.61,0,1.11,0.69,1.58,1.36c0.17,0.24,0.42,0.6,0.56,0.7
c0.09-0.04,0.18-0.1,0.29-0.16c0.37-0.22,0.84-0.5,1.34-0.5c0.3,0,0.57,0.1,0.81,0.29c0.53,0.43,0.68,1.87,0.86,4.2
c0.09,1.11,0.22,2.77,0.43,3.09h0.04c0.19,0,0.39-0.12,0.62-0.26c0.42-0.26,1.03-0.58,1.77-0.39c0.17,0.04,0.31,0.14,0.41,0.29
c-0.97-2.42-1.82-4.72-2.1-5.8c-0.03-0.12-0.14-0.63-0.3-1.32c-0.37-1.71-1-4.56-1.35-5.74c-0.37-1.23-1.17-1.69-2.5-2.44
c-0.3-0.17-0.61-0.34-0.94-0.54c-0.48-0.29-1.22-0.57-2.08-0.9c-2.47-0.94-5.55-2.11-5.78-4.56c-0.07-0.73-0.01-1.16,0.21-1.4
c0.11-0.13,0.27-0.19,0.44-0.19c0.4,0,0.82,0.38,1.27,0.78c0.09,0.08,0.2,0.18,0.3,0.27c-0.04-1.07-0.76-3.5-1.65-4.32
c-0.65-0.6-1.68-1.83-2.14-2.92c1.5,52.11,44.11,94.05,96.32,94.05C178.2,221.92,221.44,178.46,221.44,125.04z M219.38,138.36
c0.03,0.33,0.19,8.3-4.81,14.17c-3.99,4.67-7.83,5.65-8.34,5.76l-3.83,2.08c-0.49,0.85-4.02,6.91-4.43,7.59
c-0.79,1.23-7.8,11.44-10,14.67c0.35-0.19,0.76-0.49,1.03-0.87c0.87-1.23,1.58-2.27,2.2-3.2c1.93-2.89,3.21-4.81,6.36-7.18
c4.08-3.09,12.06-8.06,12.15-8.11l0.9-0.55l-0.38,0.98c-0.05,0.08-4.29,10.24-7.99,15.35c-2.36,3.25-7.88,4.32-11.9,5.08
c-1.87,0.36-3.51,0.68-3.99,1.09c-1.03,0.87-8.99,8.11-9.08,8.17l-9.97,6.06c0.6,0.16,1.58,0.25,2.36-0.05
c0.43-0.16,1.22-0.79,2.23-1.58c1.33-1.04,3.13-2.49,5.38-3.85c1.77-1.09,5.49-2.46,6.55-2.59c6.74-0.93,11.14-2.76,11.2-2.79
l0.9-0.38l-0.49,0.87c-0.03,0.05-3.37,5.98-8.86,9.86c-4.13,2.89-10,4.42-12.66,4.42c-0.35,0-0.65-0.03-0.9-0.08
c-4.29-0.98-5.82-1.37-5.87-1.37c0,0-1.03-0.08-2.09-0.08c-0.35,0-0.71,0-1.06,0.03c-3.64,0.25-11.68,4.62-14.02,5.93
c0.35,0.03,0.73-0.05,1.09-0.33c0.71-0.55,4.35-2.29,6.01-2.76c0.68-0.16,1.44-0.27,2.34-0.27c1.74,0,3.29,0.38,3.34,0.38
c0,0,0.49,0,2.45,0.36c2.01,0.36,8.94,0.76,9.02,0.76l0.87,0.05l-0.68,0.57c-0.3,0.22-7.15,5.68-13.29,6.88
c-0.41,0.08-0.9,0.11-1.44,0.11c-2.39,0-5.38-0.71-5.52-0.74l-0.08-0.05l-2.91-1.86c-0.03-0.03-1.11-1.64-2.83-1.97
c-1.85-0.36-2.58-0.27-2.61-0.25l-0.38,0.03l0.05-2.62l0.27-0.05c0.87-0.22,2.69-0.87,2.64-1.58c-0.11-1.26,0.71-9.31,4.21-11.74
c3.86-2.65,13.75-7.18,14.16-7.37l0.84-0.36l-0.38,0.82c-0.14,0.33-3.72,8.22-6.85,10.95c-1.77,1.53-4.65,3.71-6.79,5.27
c2.26-1.04,5.14-2.38,6.63-3.11l0.33-0.16c3.7-1.78,5.9-3.09,6.58-3.88c1.03-1.23,0.68-2.21,0.65-2.27l-0.03-0.05v-0.08
c0.03-0.41,0.52-9.75,3.89-11.93c3.78-2.46,9.62-8.14,9.67-8.19l0.71-0.68l-0.14,0.96c-0.05,0.38-1.25,9.56-3.15,13.3
c-1.82,3.52-7.28,6.53-8.15,7.02l-0.14,0.27c1.71-0.98,5.71-3.5,9.13-6.69c5.76-5.35,6.09-6.86,6.03-7.18
c-0.6-4.62-0.92-7.95-0.27-12.13c0.62-4.21,7.58-16.55,7.88-17.07l0.54-0.93l0.08,1.07c0.03,0.05,0.68,6.99,0.38,13.19
c-0.3,6.01-5.49,12.4-6.14,13.19l-0.08,0.44c1.79-2.46,5.9-8.22,7.12-10.68c1.47-2.95,3.89-7.16,4.29-7.81l-0.24-2.79
c-0.46-0.82-4.4-7.81-3.78-13.85c0.24-2.43,2.34-16.14,2.36-16.28l0.14-1.01l0.49,0.9c0.03,0.05,3.02,5.79,4.13,8.71
c1.22,3.14,1.93,7.35,1.82,8.58c-0.3,3.06-2.31,9.91-2.39,10.21c-0.35,0.85-0.6,1.75-0.57,2.08c0.05-0.03,0.14-0.05,0.24-0.14
c1.74-1.2,3.1-9.59,3.7-13.16c0.57-3.47,1.3-11.91,0.82-13.85c-0.3-1.28-0.52-1.42-1.17-1.86c-0.33-0.22-0.76-0.49-1.3-0.98
c-0.3-0.27-0.62-0.55-0.95-0.82c-2.26-1.94-5.35-4.59-6.01-8.06c-0.35-1.8-2.8-14.12-2.8-14.12l-0.22-1.12l0.79,0.79
c0.24,0.25,4.1,4.1,6.96,7.51c-0.24-0.36-0.41-0.79-0.38-1.31c0-0.96,0.52-1.75,1.2-1.94c0.08,0,0.22-0.05,0.33-0.05
c0.33,0,0.63,0.14,0.87,0.33c0.41,0.36,0.68,0.96,0.68,1.67c0,0.3-0.05,0.57-0.14,0.82c0.27,0.3,0.71,0.79,1.09,1.28
c-0.11-0.55-0.19-1.12-0.3-1.64l-0.05-0.25c-0.22-0.79-0.79-1.45-1.28-1.88c-0.24-0.27-0.46-0.46-0.62-0.57
c-0.16,0.14-0.38,0.27-0.57,0.3c-0.11,0.03-0.19,0.03-0.3,0.03c-0.87,0-1.55-0.87-1.55-1.99c0-1.12,0.68-1.99,1.55-1.99
s1.52,0.87,1.52,1.99c0,0.41-0.08,0.82-0.24,1.12c0.24,0.19,0.62,0.49,1.01,0.93c-0.82-3.2-1.74-5.38-1.9-5.74l-2.39-2.32
c-0.92-0.33-9.08-3.22-10.62-5.79c-2.61-4.34-8.18-13.41-8.23-13.52l-0.6-0.93l1.03,0.44c0.49,0.22,12.04,5.41,14.43,7.35
c3.7,2.95,5.82,10.24,5.9,10.54c0.05,0.22,0.11,0.44,0.14,0.66v-0.16c-0.33-5.38-7.99-15.81-12.06-18.54
c-1.49-1.01-2.15-1.17-2.93-1.17c-0.41,0-0.9,0.05-1.49,0.11c-0.49,0.08-1.03,0.14-1.71,0.19c-3.51,0.33-16.22-9.94-16.74-10.35
l-0.9-0.71l1.14,0.08c0.41,0.05,10.19,0.96,14.29,2.38c3.94,1.34,7.5,5.76,7.99,6.39l0.46,0.22c-1.9-1.97-5.49-5.63-7.36-7.46
c-0.03-0.03-4.29-3.85-5.84-4.48c-0.57-0.22-1.55,0.08-2.72,0.46c-1.58,0.52-3.59,1.17-6.17,1.07c-3.29-0.14-14.48-5.87-14.95-6.12
l-0.84-0.41l0.92-0.22c0.3-0.05,7.8-1.8,11.2-1.69c3.29,0.11,9.59,4.04,10.41,4.56l0.87,0.03l-6.28-4.56
c-0.03,0-5.76-2.29-7.83-3.09c-0.14-0.05-0.27-0.08-0.41-0.08c-0.95,0-2.39,0.74-4.08,1.61c-2.39,1.23-5.08,2.62-7.72,2.68H149
c-3.12,0-11.68-3.99-12.04-4.18l-0.87-0.38l0.92-0.25c0.08-0.03,8.64-2.32,15.9-2.4h0.27c1.49,0,3.53,0.14,5.14,0.25
c-1.93-0.68-4.16-1.42-4.84-1.47c-0.49-0.03-1.17,0.05-2.04,0.16c-1.25,0.19-2.85,0.38-4.76,0.33c-4.57-0.14-10.76-2.32-12.26-4.29
c-0.65-0.85-4.43-1.42-6.66-1.58l-1.2-0.08l1.06-0.57c0.24-0.11,6.33-3.33,11.44-3.33h0.24c5.19,0.11,9.05,1.88,9.84,2.76l5.57,4.1
l9.73,4.59L164,50.56c-0.65-0.41-5.87-3.77-7.42-5.41c-1.77-1.91-3.1-4.94-3.75-6.55c-0.76-1.88-3.94-3.96-3.97-3.99l0.24-0.63
c0.43,0.08,10.92,2.1,13.72,6.01c1.66,2.29,4.32,11.12,4.7,12.34l4.86,2.87l7.64,6.14c-0.24-0.57-0.54-1.26-0.87-1.83
c-0.22-0.33-1.03-0.98-1.98-1.72c-2.26-1.78-5.65-4.45-6.36-7.13c-0.73-2.7-5.11-10.51-5.16-10.6l-0.52-0.96l0.95,0.46
c0.52,0.25,12.28,5.9,14.48,12.21c1.06,3.03,2.42,10.79,2.58,11.83c0.43,0.46,2.85,3.03,4.35,4.64c-0.24-1.01-0.65-2.68-1.22-3.85
c-0.16,0.08-0.35,0.14-0.54,0.14c-0.84,0-1.52-0.87-1.52-1.99c0-1.12,0.68-1.99,1.55-1.99c0.84,0,1.52,0.87,1.52,1.99
c0,0.57-0.16,1.07-0.46,1.42c0.92,1.88,1.52,4.92,1.55,5.05l0.03,0.19c0.11,0.11,0.22,0.22,0.27,0.27c0.6,0.6,4.54,6.23,5.57,7.76
c0.24-0.36,0.54-0.98,0.27-1.8c-0.49-1.45-3.7-5.13-3.72-5.19c-0.14-0.16-2.99-3.91-3.1-7.89c-0.14-5.41-2.12-10.05-2.15-10.11
l0.54-0.41c0.46,0.44,11.22,10.24,11.09,17.81c-0.08,5.38-0.98,9.2-1.2,10.02c0.6,0.82,3.75,5.13,5.19,7.67
c1.14,2.02,3.53,8.77,4.51,11.61l0.16-1.07c-0.41-0.87-3.23-7.02-3.21-10.46c0-0.11,0.52-3.74,0.46-6.69
c-0.05-2.38-1.28-11.66-1.28-11.74l-0.16-1.23l0.76,0.96c0.35,0.44,8.51,10.79,8.15,17.97c-0.27,5.24-2.45,9.67-2.74,10.24
l-0.38,3.55c0,0.05-0.49,4.04,0.16,7.57c0.62,3.2,1.93,15.46,2.26,18.54c0.22-0.22,0.46-0.55,0.57-0.85
c0.05-0.22-0.08-1.42-0.22-2.62c-0.41-3.47-1.01-8.74,0.11-11.28c3.64-8.22,4.76-14.78,4.76-14.86l0.22-1.26l0.43,1.2
c0.19,0.52,4.76,12.97,2.88,20.35c-1.63,6.42-8.15,12.51-9.1,13.36c-0.08,0.98-0.65,7.1-0.79,9.31c-0.41,6.2-3.8,14.5-5.08,17.42
c0.11-0.08,0.22-0.16,0.35-0.27l-0.05-0.03c0.03,0,0.62-0.63,1.55-1.64c0.46-0.96,1.17-3.06,1.85-5.13c1.09-3.22,2.2-6.55,3.02-7.67
c3.99-5.38,8.45-14.91,8.51-15.02l0.65,0.16L219.38,138.36z M186.61,62.55c0-0.71-0.38-1.31-0.84-1.31c-0.49,0-0.87,0.6-0.87,1.31
c0,0.71,0.38,1.31,0.84,1.31c0.08,0,0.16-0.03,0.22-0.05c-0.11-0.16-0.22-0.33-0.33-0.44l-0.22-0.25l0.49-0.46l0.22,0.22
c0.11,0.14,0.22,0.27,0.33,0.41C186.56,63.09,186.61,62.82,186.61,62.55z M202.67,104.14c0-0.71-0.38-1.31-0.84-1.31
s-0.84,0.6-0.84,1.31c-0.03,0.71,0.38,1.31,0.84,1.31c0.19,0,0.35-0.11,0.52-0.27l0.19-0.3
C202.62,104.69,202.67,104.41,202.67,104.14z M206.83,153.95c2.17-2.51,5.08-6.14,7.07-9.72c2.09-3.8,3.13-9.39,3.56-12.21
c-1.68,3.28-4.18,7.84-6.55,11.01c-0.73,1.01-1.9,4.45-2.91,7.48C207.56,151.8,207.18,152.97,206.83,153.95z M215.39,114.14
c-0.65,3.06-3.42,11.25-4.35,14.01c2.28-2.43,5.82-6.72,6.93-11.03c1.17-4.64-0.35-11.58-1.6-15.92
C216.37,104.19,216.23,110.04,215.39,114.14z M210.9,123.07c0.19,1.56,0.24,2.29,0.22,2.68c1.2-3.58,3.07-9.34,3.59-11.77
c1.2-5.63,0.98-14.67,0.98-14.75s0.03-0.14,0.05-0.19c-0.08-0.25-0.16-0.46-0.22-0.68c-0.52,2.32-1.82,7.59-4.57,13.76
C209.9,114.46,210.52,119.84,210.9,123.07z M205.85,96.17c0.27-1.34,1.44-7.73,0.11-13.96c-0.08-0.36-0.16-0.87-0.3-1.47
c-0.52-2.73-1.55-8.06-2.96-10.35c0.35,2.76,1.03,8.49,1.09,10.32c0.05,3.03-0.46,6.72-0.46,6.75
C203.32,89.91,204.9,93.98,205.85,96.17z M194.74,74.34c0.16-0.93,0.3-2.68-0.08-5.33c-0.62-4.29-7.5-14.97-7.58-15.05
c-0.05-0.08-0.05-0.16-0.03-0.27c-0.11-0.08-0.24-0.22-0.33-0.3c0.62,1.8,1.58,5.19,1.68,8.96c0.08,3.74,2.88,7.43,2.91,7.46
C191.42,69.95,193.7,72.57,194.74,74.34z M179.93,59.49c-0.54-2.35-2.8-6.69-5-10.3c-1.44-2.32-5.98-6.31-7.77-7.84
c1.33,2.49,3.78,7.1,4.32,9.12c0.68,2.49,3.94,5.05,6.11,6.77c1.09,0.87,1.87,1.47,2.15,1.91
C179.79,59.27,179.85,59.38,179.93,59.49z M164.19,49.87c-1.14-2.02-3.26-5.79-4.89-8.25c-2.2-3.41-7.69-6.25-7.74-6.28
c-0.08-0.03-0.11-0.08-0.14-0.14c-0.3-0.08-0.6-0.14-0.84-0.19c1.03,0.82,2.39,2.08,2.88,3.3c0.62,1.61,1.93,4.53,3.61,6.36
C158.46,46.13,163.11,49.16,164.19,49.87z M129.71,42.91c2.47-0.16,8.59-0.57,10.38-0.22c2.17,0.41,8.75,2.35,14.1,4.37l-5.46-4.01
c-0.71-0.74-4.32-2.46-9.4-2.57h-0.24C135.74,40.48,131.88,41.95,129.71,42.91z M160.28,50.64c-3.97-2.59-17.15-6.69-20.33-7.29
c-1.44-0.27-5.95-0.03-8.83,0.16c1.63,0.27,3.32,0.74,3.86,1.45c1.36,1.8,7.42,3.88,11.74,4.01c1.85,0.05,3.42-0.14,4.65-0.3
c0.9-0.14,1.63-0.25,2.17-0.19C154.6,48.56,158.6,50.01,160.28,50.64z M139.11,52.99c2.53,0,8.48,0.03,10.11,0.27
c1.9,0.27,7.96-1.2,10.43-1.8c-1.63-0.16-4.51-0.38-6.47-0.38h-0.27C147.81,51.13,142.02,52.3,139.11,52.99z M155.14,58.37
c2.53,0.76,9.95,2.87,12.39,2.57c0.11-0.03,2.88,0.08,5.87,0.19c-1.9-1.17-6.68-3.91-9.29-3.99
C161.88,57.08,157.64,57.85,155.14,58.37z M169.49,67.27c3.32,1.15,10.05,3.58,12.8,5.05c2.09,1.15,4.57,2.05,6.09,2.57
c-1.2-1.39-4.1-4.51-7.17-5.57C178.43,68.36,172.73,67.63,169.49,67.27z M183.35,80c2.58,2.13,8.29,6.83,9.95,8.52
c1.71,1.72,6.14,6.55,7.88,8.44c-0.03-0.16-0.05-0.36-0.11-0.57c0-0.05-2.15-7.35-5.65-10.19C193.7,84.83,186.94,81.64,183.35,80z
M201.61,108.05c0,0.71,0.38,1.31,0.84,1.31c0.24,0,0.43-0.14,0.6-0.38c-0.14-0.14-0.14-0.35,0-0.46c0.05-0.05,0.14-0.08,0.22-0.08
c0.03-0.14,0.05-0.25,0.05-0.38c0-0.71-0.41-1.31-0.87-1.31C201.99,106.73,201.61,107.34,201.61,108.05z M201.58,109.71
c1.33,1.61,2.39,3.09,2.72,4.01c1.98,5.82,1.55,9.64,1.44,10.46l0.84,0.98c-0.16-2.1-0.65-7.24-1.41-13.46
c-0.05-0.03-0.08-0.08-0.11-0.14c-0.3-0.63-1.06-1.53-1.55-2.08c-0.27,0.36-0.65,0.55-1.06,0.55
C202.13,110.04,201.83,109.93,201.58,109.71z M195.17,103.65c0.9,2.38,3.51,9.26,4.76,11.74c1.25,2.46,4.16,6.66,5.19,8.08
c0.11-1.42,0.14-4.81-1.47-9.53C202.94,111.81,197.64,106.19,195.17,103.65z M199.87,142.92c0.05-4.23-1.28-11.69-1.9-14.94
c-0.6,3.99-1.82,12.21-2.01,14.07c-0.49,4.75,2.07,10.32,3.21,12.51C199.38,152.34,199.84,147.13,199.87,142.92z M189.79,164.47
c-0.43,3.09-1.25,8.28-1.66,10.87c1.55-2.08,5.05-7.21,5.3-11.91c0.19-4.07-0.03-8.41-0.19-10.95
C192.37,155.07,190.2,161.71,189.79,164.47z M165.91,186.81c-2.42,1.94-9.67,7.78-11.06,9.01c-1.3,1.15-3.04,5.35-3.75,7.1
c1.87-1.34,6.36-4.62,8.75-6.69C162.13,194.24,164.74,189.19,165.91,186.81z M151.56,207.92c1.49,0.44,4.86,1.28,8.61,1.2
c4.57-0.08,10.35-1.5,12.53-2.59c-2.15-0.14-6.14-0.44-7.66-0.68c-1.93-0.36-2.36-0.36-2.39-0.36c-0.08-0.03-1.6-0.38-3.26-0.38
c-0.82,0-1.55,0.08-2.15,0.25C155.8,205.76,152.45,207.35,151.56,207.92z M170.61,199.65c2.55-0.08,6.66-0.49,10.19-2.08
c4.1-1.83,9.37-5.57,11.98-7.48c-1.98,0.63-5.05,1.42-8.89,1.94c-0.87,0.14-4.48,1.42-6.28,2.51c-2.2,1.37-3.99,2.79-5.3,3.82
C171.61,198.91,171.07,199.32,170.61,199.65z M189.68,181.98c2.77-1.31,7.77-3.91,10.38-6.64c2.85-2.98,6.6-8.08,8.26-10.38
c-2.58,1.64-7.47,4.78-10.35,6.96c-3.04,2.29-4.32,4.18-6.22,7.02C191.18,179.82,190.5,180.83,189.68,181.98z M218.7,138.39
l0.11-9.09c-0.14,0.3-0.3,0.63-0.49,1.01h0.03c-0.03,0.35-0.9,8.88-3.86,14.26c-2.42,4.4-6.28,8.9-8.42,11.28
c-0.11,0.19-0.22,0.38-0.3,0.49c-1.03,1.28-2.69,2.24-2.74,2.29l-0.95,0.52l0.46-0.98c0.05-0.08,5-10.79,5.52-18.27
c0.16-2.4,0.82-9.39,0.82-9.48v-0.14l0.11-0.08c0.03-0.03,0.46-0.41,1.14-1.09c-0.05-0.08-0.05-0.16-0.03-0.27
c0-0.03,0.35-1.07,0.87-2.59c-0.38,0.74-1.09,1.34-1.14,1.37l-0.49,0.41l-0.05-0.63c-0.03-0.16-1.63-15.65-2.31-19.23
c-0.71-3.63-0.22-7.56-0.19-7.73l0.43-3.74c0.03-0.05,2.42-4.7,2.69-10.02c0.22-4.4-3.02-10.19-5.43-13.87
c0.87,2.54,1.47,5.74,1.87,7.84c0.11,0.57,0.19,1.06,0.27,1.45c1.55,7.13-0.14,14.45-0.16,14.53c-0.03,0.14-0.16,0.25-0.3,0.25
c0.22,0.52,0.35,0.82,0.38,0.85l0.03,0.08l-0.41,2.62l-0.68,0.05c-0.03-0.08-3.48-10.3-4.89-12.78c-1.58-2.76-5.19-7.67-5.22-7.73
l-0.11-0.14l0.05-0.14c0-0.05,1.11-4.07,1.2-10.02c0.08-4.59-4.18-10.19-7.39-13.76c2.09,3.44,5.76,9.83,6.22,13.05
c0.57,3.96,0.03,5.95-0.14,6.42c0.43,1.61-0.71,2.65-0.76,2.7l-0.27,0.25L193.95,78c-1.41-2.05-5.24-7.48-5.76-8
c-0.62-0.66-5.38-5.74-5.6-5.95l-0.05-0.08l-0.03-0.11c-0.03-0.08-1.47-8.68-2.58-11.83c-1.47-4.21-7.69-8.25-11.36-10.35
c2.15,1.88,5.65,5.11,6.93,7.18c0.57,0.96,5.71,9.39,5.16,11.99c0,0.05-0.03,0.08-0.05,0.14c0.27,0.68,0.43,1.26,0.46,1.31
l0.33,1.04l-9.37-7.54l-5.08-2.98l-0.03-0.14c-0.03-0.08-2.96-9.94-4.62-12.26c-1.44-2.02-5.24-3.52-8.42-4.51
c1.87,1.17,4.57,3.14,6.01,5.35c2.28,3.5,5.62,9.59,5.65,9.64c0.11,0.19,0.05,0.38-0.14,0.46v0.03l1.03,1.53l-5.33-2.51
c0.08,0.14,0.11,0.3,0,0.41c-0.03,0.03-0.05,0.08-0.11,0.08l-0.05,0.33c0.08,0.03,0.16,0.11,0.19,0.22
c0.03,0.16-0.08,0.36-0.24,0.41c-0.35,0.08-8.02,2.13-11.14,2.13c-0.22,0-0.43,0-0.63-0.03c-1.55-0.22-7.42-0.27-9.97-0.27
c2.74,1.2,7.74,3.25,9.86,3.25c2.58-0.05,5.19-1.42,7.5-2.59c2.15-1.12,3.97-1.99,5.05-1.58c2.07,0.79,7.85,3.11,7.91,3.14
l8.21,5.95l-1.39-0.05c-0.05,0.05-0.16,0.11-0.24,0.11h-0.03c-3.23-0.11-8.18-0.3-8.42-0.27c-2.64,0.36-10.43-1.91-12.83-2.65
c3.26,1.61,10.62,5.13,13.07,5.24c2.47,0.11,4.4-0.52,5.92-1.04c1.33-0.44,2.42-0.76,3.21-0.44c1.63,0.68,5.87,4.45,6.06,4.62
c2.61,2.54,8.59,8.71,8.64,8.79l-0.38,0.55l-1.47-0.71c-0.03,0-0.05,0.03-0.08,0.03l-0.11-0.03c-0.03,0-4.29-1.23-7.66-3.06
c-2.69-1.45-9.46-3.88-12.74-5.03c3.67,2.84,11.6,8.74,14.24,8.74l0.14-0.03c0.65-0.05,1.2-0.11,1.68-0.16
c2.04-0.27,2.77-0.27,4.89,1.15c4.29,2.89,12.01,13.41,12.36,19.12c0,1.39-0.11,1.88-0.54,1.88c-0.14,0-0.27,0-0.41-0.3
c-0.08,0-0.14-0.03-0.19-0.08c-0.05-0.08-6.47-7.07-8.59-9.2c-1.66-1.72-7.72-6.69-10.14-8.71c1.77,2.9,5.22,8.55,7.12,11.69
c1.47,2.43,10.24,5.49,10.33,5.52l0.11,0.08l2.58,2.51c0.03,0.05,1.52,3.39,2.5,8.22l0.03,0.11c0.19,0.98,0.35,1.99,0.49,3.06
c1.03,8.22,1.52,14.58,1.52,14.67l0.08,1.01l-2.45-2.76l0.03-0.05l-0.08,0.05c-0.16-0.22-4.08-5.65-5.6-8.71
c-1.06-2.1-3.02-7.07-4.18-10.13c0.76,3.77,1.87,9.42,2.12,10.62c0.6,3.22,3.59,5.76,5.76,7.65c0.35,0.27,0.68,0.55,0.95,0.82
c0.54,0.46,0.92,0.74,1.25,0.93c0.79,0.52,1.11,0.79,1.47,2.27c0.52,2.21-0.33,11.12-0.84,14.12c-1.41,8.71-2.55,12.64-3.97,13.6
c-0.54,0.38-0.95,0.35-1.17,0.05c-0.35-0.57,0.22-2.13,0.49-2.76c0-0.05,2.04-7.07,2.34-10.08c0.11-1.01-0.57-5.11-1.77-8.25
c-0.71-1.83-2.17-4.81-3.12-6.75c0.6,3.25,1.96,10.82,1.9,15.13c-0.05,5.41-0.76,12.4-0.82,12.78l0.24,3.03l-0.05,0.11
c-0.03,0.03-2.72,4.7-4.29,7.87c-1.6,3.2-7.77,11.55-8.02,11.91l-0.63-0.25l0.27-1.56h-0.05c0-0.08,1.3-8.25,1.93-12.43
c0.38-2.68,2.31-8.66,3.26-11.55c-2.09,3.88-6.06,11.47-6.49,14.47c-0.6,3.74-0.38,6.72,0.27,11.91c0.14,1.2-1.96,3.82-6.22,7.78
c-4.57,4.23-10.05,7.26-10.11,7.29l-0.82,0.44l0.27-0.74l0.62-1.56l0.11-0.05c0.05-0.03,6.14-3.2,7.96-6.77
c1.44-2.81,2.5-8.96,2.91-11.72c-0.98,1.37-3.51,4.94-5.65,7.97c-2.88,4.01-5.62,11.2-5.95,12.13c-0.03,0.08-0.05,0.11-0.05,0.11
l-0.62-0.25c0.03-0.05,2.96-8.03,6.06-12.4c1.52-2.13,3.26-4.56,4.48-6.28c-2.07,1.88-5.03,4.45-7.28,5.93
c-2.91,1.88-3.51,10.49-3.56,11.33c0.11,0.33,0.38,1.53-0.79,2.87c-1.11,1.31-5.38,3.36-6.79,4.04l-0.33,0.16
c-2.66,1.34-9.76,4.59-9.84,4.62l-0.33-0.6c0,0,0.03,0,0.05-0.03l-0.14-0.05c0.11-0.27,2.47-6.58,4.21-8.14
c1.25-1.09,6.87-5.63,9.92-8.08c-3.32,1.58-8.83,4.29-11.39,6.06c-3.04,2.08-4.05,9.59-3.94,11.12c0.11,1.31-2.12,2.02-2.91,2.24
L146,208c0.46,0,1.25,0.05,2.42,0.27c1.85,0.36,2.99,1.88,3.23,2.21l2.69,1.69c0.43,0.11,3.15,0.71,5.3,0.71
c0.52,0,0.95-0.03,1.3-0.11c3.86-0.74,8.1-3.3,10.65-5.05c-2.88,1.04-7.66,2.05-11.41,2.1h-0.43c-4.37,0-8.15-1.15-9.05-1.42
c-0.19,0.05-0.38,0.08-0.57,0.08c-0.68,0-1.2-0.33-1.2-0.36l-0.46-0.3l0.46-0.27c0.43-0.25,10.57-6.06,15-6.36
c1.47-0.08,3.23,0.05,3.29,0.05c0.05,0.03,1.55,0.38,5.92,1.39c0.16,0.03,0.43,0.05,0.73,0.05c2.55,0,8.26-1.5,12.26-4.32
c3.86-2.7,6.63-6.45,7.91-8.38c-2.09,1.58-8.29,6.12-12.99,8.22c-4.21,1.88-9.13,2.16-11.52,2.16c-0.84,0-1.36-0.03-1.44-0.05
c-1.01-0.08-1.71-0.46-1.74-0.49l-0.52-0.27l11.03-6.69c0.27-0.25,7.96-7.24,9.02-8.14c0.6-0.52,2.15-0.82,4.29-1.26
c3.91-0.74,9.29-1.78,11.49-4.81c2.55-3.52,5.35-9.5,6.85-12.84c-1.79,2.49-5.27,7.18-7.99,10c-3.8,3.99-12.23,7.57-12.58,7.7
l-0.03-0.08c-0.46,0.19-0.79,0.3-0.84,0.3l-0.87,0.25l0.52-0.76c0.11-0.14,9.76-14.17,10.62-15.62c0.43-0.68,4.43-7.57,4.48-7.62
l0.03-0.08l4.16-2.24c0.03-0.03,3.99-0.82,8.02-5.57C218.89,146.42,218.7,138.47,218.7,138.39z M81.02,50.98
c0.09,0,0.18-0.04,0.25-0.11c0.02-0.02,0.86-0.92,1.95-2.07c0.63-0.08,2.11-0.29,2.52-0.6c0.15-0.11,0.18-0.33,0.07-0.48
c-0.11-0.15-0.33-0.18-0.48-0.07c-0.13,0.1-0.7,0.23-1.35,0.34c0.88-0.93,1.83-1.92,2.59-2.7c1.32-0.45,4.55-1.46,5.59-1.34
c0.19,0.02,0.36-0.11,0.37-0.3c0.02-0.19-0.11-0.36-0.3-0.38c-0.92-0.1-3.12,0.5-4.6,0.96c0.09-0.08,0.17-0.16,0.24-0.22
c2.59-2.35,8.23-5.19,8.29-5.21c0.17-0.08,0.24-0.29,0.15-0.46c-0.08-0.17-0.29-0.24-0.46-0.16c-0.22,0.11-5.29,2.66-8.06,4.99
c0.71-1.31,1.47-2.88,1.44-3.61c-0.01-0.19-0.15-0.35-0.35-0.33c-0.19,0.01-0.33,0.17-0.33,0.36c0.03,0.8-1.52,3.64-2.51,5.24
L86,44.89c-0.82,0.84-1.82,1.89-2.73,2.85c-0.07-0.63-0.09-1.31,0.01-1.54c0.08-0.17,0-0.37-0.17-0.45s-0.37,0-0.45,0.17
c-0.25,0.55-0.08,1.95,0,2.47c-1.02,1.08-1.81,1.93-1.9,2.02c-0.13,0.14-0.12,0.36,0.01,0.48C80.85,50.95,80.93,50.98,81.02,50.98z
M90.68,50.2l0.17-0.05c0.03-0.01,1.38-0.77,3.15-1.58c0.56,0.41,1.93,1.32,3.4,1.53h0.05c0.17,0,0.31-0.12,0.34-0.29
c0.03-0.19-0.1-0.36-0.29-0.39c-1.09-0.15-2.15-0.76-2.77-1.18c1.72-0.75,3.7-1.49,5.22-1.66c0.03-0.01,0.06-0.01,0.09-0.01
c0.59,0.91,3.47,1.84,5.94,2.48l0.09,0.01c0.15,0,0.29-0.1,0.33-0.25c0.05-0.18-0.06-0.37-0.24-0.42c-2.19-0.57-4.6-1.42-5.33-1.93
c3.96-0.62,12.03-2.69,12.4-2.78c0.18-0.05,0.29-0.23,0.24-0.42c-0.05-0.18-0.23-0.29-0.41-0.25c-0.09,0.02-8.01,2.05-12.06,2.73
c0.69-0.64,2.23-1.64,3.94-2.56c0.17-0.09,0.23-0.3,0.14-0.46c-0.09-0.17-0.3-0.23-0.46-0.14c-1.26,0.67-4.01,2.23-4.58,3.3
c-0.05,0.01-0.11,0.01-0.16,0.02c-1.73,0.2-3.96,1.05-5.8,1.88c-0.13-0.05-0.29-0.02-0.38,0.1c-0.03,0.03-0.04,0.07-0.06,0.1
c-1.7,0.79-2.99,1.51-3.11,1.57c-0.17,0.09-0.22,0.3-0.13,0.47C90.45,50.14,90.56,50.2,90.68,50.2z M54.26,64.1
c-0.15,0.26-2.93,4.89-4.42,8.34c-0.1-0.82,0.02-2.37,0.33-3.98c0.04-0.19-0.08-0.36-0.27-0.4c-0.18-0.03-0.36,0.09-0.4,0.27
c-0.24,1.27-0.69,4.09-0.04,5.05c-0.27,0.71-0.47,1.34-0.53,1.82c-0.16,1.25-0.26,3.26-0.32,5.11c-0.66-1.61-1.17-3.15-1.03-3.47
c0.07-0.17-0.01-0.38-0.18-0.45c-0.17-0.08-0.37,0-0.45,0.17c-0.38,0.88,1.12,4.29,1.6,5.31l0.01,0.03
c-0.04,1.52-0.05,2.68-0.05,2.79c0,0.19,0.15,0.34,0.34,0.35l0,0c0.19,0,0.34-0.15,0.34-0.34c0-0.03,0.01-1.26,0.05-2.87
c0.73-0.69,2.46-2.38,2.51-3.15c0.01-0.19-0.13-0.35-0.32-0.37c-0.2-0.01-0.35,0.13-0.36,0.32c-0.02,0.3-0.86,1.28-1.8,2.21
c0.06-1.98,0.16-4.24,0.33-5.57c0.05-0.4,0.21-0.94,0.44-1.54c0.1,0.02,0.21,0.03,0.33,0.03c1.29,0,3.28-1.16,3.98-1.73
c0.15-0.12,0.17-0.34,0.05-0.48c-0.12-0.14-0.33-0.17-0.48-0.05c-0.81,0.67-2.74,1.65-3.61,1.58c1.43-3.44,4.5-8.57,4.54-8.63
c0.1-0.16,0.05-0.37-0.11-0.47C54.57,63.89,54.36,63.94,54.26,64.1z M80.95,193.51c-0.12,0.14-0.11,0.36,0.04,0.48l0.22,0.08
c0.1,0,0.19-0.04,0.26-0.12c0.63-0.74-0.15-2.47-1.59-4.89c0.4-1.58,0.07-4.61,0.02-5c-0.02-0.19-0.18-0.32-0.38-0.3
c-0.18,0.02-0.32,0.19-0.3,0.38c0.13,1.11,0.22,2.8,0.09,4c-0.32-0.52-0.66-1.06-1.02-1.62c-0.1-0.16-0.2-0.31-0.29-0.46
c0.09-0.01,0.12-0.01,0.01-0.01c-0.01-0.01-0.02-0.01-0.04-0.02c-0.55-0.86-1.01-1.59-1.21-2.03c-0.18-0.4-0.5-0.91-0.88-1.48
c0.57-0.87,0.01-3.48-0.29-4.65c-0.05-0.18-0.23-0.29-0.41-0.25c-0.18,0.05-0.29,0.23-0.24,0.42c0.39,1.58,0.59,3.17,0.49,3.82
c-1.81-2.58-4.6-5.9-4.76-6.09c-0.12-0.14-0.34-0.16-0.48-0.04c-0.14,0.12-0.16,0.34-0.04,0.48c0.04,0.04,2.89,3.45,4.71,6.03
c-0.97,0.04-2.98-0.29-3.64-0.66c-0.16-0.09-0.37-0.04-0.46,0.13c-0.1,0.16-0.04,0.37,0.13,0.47c0.6,0.34,2.45,0.75,3.72,0.75
c0.26,0,0.49-0.02,0.68-0.05c0.37,0.55,0.68,1.05,0.86,1.43c0.26,0.56,0.87,1.5,1.57,2.6c0.38,0.59,0.88,1.38,1.39,2.21
c-0.04,0.09-0.07,0.18-0.11,0.25c-0.55,0.11-2.18-0.99-3.05-1.59c-0.47-0.32-0.84-0.58-1.09-0.7c-0.17-0.08-0.37-0.02-0.46,0.15
c-0.08,0.17-0.02,0.37,0.15,0.46c0.21,0.11,0.58,0.36,1.01,0.66c1.41,0.96,2.57,1.71,3.36,1.71l0.21-0.02
c0.01,0,0.01-0.01,0.02-0.01v0.08c0.04,0.01,0.05-0.02,0.06-0.1c0.12-0.04,0.22-0.1,0.31-0.19C80.48,191.46,81.3,193.1,80.95,193.51
z M64.3,72.95h0.02c0.85-0.05,1.94-0.37,3.09-0.8c0.8,0.19,2.33,0.52,3.32,0.52c0.26,0,0.49-0.02,0.65-0.08
c0.18-0.06,0.27-0.26,0.21-0.43c-0.06-0.18-0.25-0.27-0.43-0.21c-0.38,0.13-1.52-0.03-2.6-0.25c1.02-0.43,2.07-0.92,3.01-1.36
c1.21-0.57,2.26-1.05,2.8-1.2c0.55-0.15,1.47-0.62,2.46-1.19c1.21-0.15,3.23-0.5,3.99-1.19c0.14-0.13,0.15-0.34,0.03-0.48
c-0.13-0.14-0.34-0.15-0.48-0.03c-0.34,0.31-1.1,0.55-1.91,0.73c1.51-0.93,2.83-1.82,2.93-1.9c0.16-0.11,0.2-0.32,0.09-0.48
c-0.1-0.16-0.32-0.2-0.47-0.09c-0.03,0.02-2.37,1.6-4.39,2.77c-0.07,0.01-0.15,0.02-0.22,0.03c0.34-0.85,0.92-2.17,1.38-2.63
c0.13-0.13,0.13-0.35,0-0.48c-0.13-0.14-0.35-0.14-0.48,0c-0.8,0.8-1.7,3.29-1.74,3.39l-0.13,0.35c-0.51,0.26-0.94,0.46-1.25,0.54
c-0.6,0.16-1.62,0.64-2.91,1.24c-1.01,0.48-2.2,1.02-3.35,1.49c0.72-0.83,1.89-2.14,2.49-2.59c0.15-0.11,0.18-0.32,0.07-0.48
c-0.11-0.15-0.32-0.18-0.48-0.07c-0.98,0.72-3.13,3.31-3.22,3.42l-0.19,0.22c-0.88,0.31-1.69,0.52-2.33,0.55
c-0.19,0.01-0.33,0.17-0.32,0.36C63.97,72.8,64.12,72.95,64.3,72.95z M166.36,111.96h12.23v7.47h-2.97v23.1h2.97V150h-13.5v-7.47
h2.88v-16.44l-9.59,19.73l-9.5-19.69v16.39h2.97v7.47h-13.5v-7.47h2.88v-23.1h-2.73v-7.47h11.86l8,16.69L166.36,111.96z
M97.02,142.5h2.24l-1.65-3.86H85.6l-1.66,3.86h2.12v7.47H71.51v-7.47h4.15l9.98-23.2h-2.21v-7.47h16.06v7.47h-1.93l9.99,23.2h4.05
v7.47H97.02V142.5z M94.39,131.17l-2.79-6.48l-2.79,6.48H94.39z M142.18,171.34h-34.53v-16.3h9.15v-57.3H99.53v9.2H83.31V82.96
h83.21v23.88H150.2v-9.09h-17.17v57.29h9.15V171.34z M163.25,88.12l-3.42,3.54v8.76l3.42,3.29V88.12z M157.01,89.74l4.43-3.44H86.53
l3.52,3.44H157.01z M129.65,94.42l-3.43-3.43v70.91l3.43-3.39V94.42z M138.78,158.25l-3.42,3.54v2.89l3.42,3.29V158.25z
M139.5,205.57c-1.11,0.05-1.69,0.42-2.32,1.11c0.24-2.22,1.14-5.3,3.88-5.32c0.17,0,0.36,0.02,0.54,0.04l0.58-0.77
c-0.35-0.3-0.7-0.61-1.04-0.91c-1.7-0.06-3.03,0.53-4.25,1.71c-1.95,1.89-2.87,4.57-2.88,7.59c0,2.86,0.61,7.1,4.35,7.11
c3.07,0.01,4.31-3.32,4.31-5.92C142.66,208.29,141.91,205.59,139.5,205.57z M138.51,214.33c-0.76-0.01-1.12-0.96-1.26-1.53
c-0.15-0.59-0.22-1.31-0.22-2.05c0-0.94,0.11-2.48,1.36-2.51c0.77,0.02,1.11,1.01,1.25,1.59c0.13,0.55,0.18,1.16,0.18,1.63
C139.81,212.02,139.73,214.31,138.51,214.33z M133.85,199.87v1.47c-0.67,1.31-1.23,2.67-1.76,4.04c-1.35,3.44-2.8,6.85-3.71,10.44
c-0.44-0.03-0.91-0.09-1.33-0.09c-0.39,0-0.78,0.05-1.17,0.08c-0.09-0.2-0.18-0.4-0.26-0.61l5.49-11.86l-3.8-0.01
c-0.24,0-0.41,0.02-0.51,0.05c-0.14,0.06-0.23,0.16-0.25,0.31c-0.13,0.77-0.22,1.55-0.27,2.34h-1.35c0.02-1.96,0.04-3.91-0.05-5.86
c0.13-0.13,0.26-0.26,0.39-0.39C128.15,199.9,131,199.99,133.85,199.87z M122.04,206.58c0.89-0.82,1.5-1.85,1.5-3.14
c-0.09-2.37-1.27-3.62-3.55-3.75c-2.66-0.01-4.26,2.06-4.27,4.65c-0.02,1.47,0.51,2.66,1.6,3.57c-1.09,0.78-1.92,2.15-1.93,3.78
c-0.03,2.38,1.59,4.4,4.05,4.42c2.91-0.06,4.63-2.76,4.63-5.47C124.09,209.05,123.45,207.44,122.04,206.58z M119.75,201.57
c0.45,0.02,0.87,0.21,1.14,0.58c0.32,0.44,0.44,1.09,0.44,1.63c0,0.76-0.29,1.43-0.85,2.05c-0.59-0.31-1.26-0.63-1.7-1.14
c-0.29-0.34-0.48-0.75-0.48-1.38C118.28,202.44,118.72,201.57,119.75,201.57z M119.73,214.25c-1.39-0.02-2.02-1.57-2.02-2.76
c-0.03-1.12,0.31-1.91,1.03-2.71c0.69,0.35,1.74,0.94,2.15,1.49c0.36,0.47,0.52,1.08,0.5,1.66
C121.39,212.89,120.88,214.24,119.73,214.25z M114.59,214.28v1.51c-1.2-0.02-2.41-0.08-3.61-0.08c-1.36,0.01-2.73,0.05-4.09,0.07
v-1.51l1.64-0.08c0.53-0.04,0.75-0.27,0.75-0.76c0.01-3.58,0.15-7.18,0.01-10.76c-0.91,0.53-1.82,1.05-2.73,1.58
c-0.29-0.75-0.43-1.56-0.39-2.37c2.05-0.6,4.03-1.54,5.93-2.5c0.16,0.17,0.32,0.34,0.49,0.51c-0.27,4.51-0.21,9.03-0.21,13.54
c0,0.49,0.22,0.72,0.75,0.76L114.59,214.28z M65.82,212.04l-3.43,2.57l1.33,4.09l-3.42-2.52l-3.42,2.52l1.35-4.09l-3.46-2.57h4.24
l1.3-3.98l1.25,3.98H65.82z M191.1,212.04l-1.26-3.98l-1.29,3.98h-4.26l3.47,2.57l-1.34,4.09l3.42-2.52l3.41,2.52l-1.33-4.09
l3.43-2.57H191.1z M128.5,230.77l-3.42,2.52l-3.43-2.52l1.35,4.09l-3.46,2.57h4.24l1.29,3.98l1.26-3.98h4.25l-3.43-2.57
L128.5,230.77z M34.96,178.08l-0.91,0.49c-0.24-0.45-0.59-1.09-0.77-1.34c-0.38-0.56-0.49-0.56-1.1-0.22l-6.17,3.34
c-0.14,0.08-0.14,0.07-0.18,0.12c-0.01,0.07,0.06,0.23,0.13,0.35c0.92,1.71,2.33,2.76,4.34,3.15l0.33,0.99l-3.5,0.69l-0.54-1.02
c0.02-0.05,0.03-0.1,0.05-0.15c-0.01-0.18-0.19-0.56-0.31-0.77l-4.61-8.6c-0.17-0.33-0.33-0.59-0.49-0.7l-0.14-0.03l-0.54-1.02
l2.5-2.56l0.64,0.82c-0.75,1.83-0.75,3.55,0.22,5.38c0.06,0.11,0.14,0.24,0.22,0.3c0,0,0.08-0.01,0.2-0.08l6.17-3.34
c0.63-0.36,0.69-0.37,0.42-1.06c-0.19-0.45-0.51-1.02-0.68-1.37l0.91-0.49L34.96,178.08z M23.03,148.12l-3.39-0.41
c-0.03,0.47-0.05,0.68-0.07,1.03c2.37,1.4,3.08,1.82,3.95,4.81l0.57,2c0.04,0.13,0.08,0.29,0.08,0.39c-0.08,0.05-0.16,0.07-0.25,0.1
l-3.29,0.95l-0.22-0.78c-0.56-2.08-0.79-3.63,0.73-4.29l0.27-0.12l-0.31-1.06l-4.93,1.43l0.31,1.07c0.08-0.01,0.29-0.05,0.47-0.05
c1.36,0.01,2.16,2.21,2.48,3.32l0.22,0.78l-3.29,0.95l-0.8-2.79c-0.66-2.28,0.04-3.66,0.8-5.49c-0.23-0.4-0.31-0.52-0.5-0.86
l-2.44,2.62l3.34,11.63c0.56-0.17,0.66-0.19,0.98-0.29c-0.12-0.46-0.27-0.92-0.26-1.18c0.02-0.15-0.04-0.26,0.74-0.48l6.11-1.78
c0.75-0.22,0.81-0.14,0.94,0.12c0.13,0.28,0.25,0.69,0.35,1.04c0.65-0.19,0.66-0.19,0.99-0.29L23.03,148.12z M20.97,134.26
c-0.34,0.02-0.68,0.04-1.02,0.06l0.01,0.33c0,0.19,0.02,0.58-0.04,0.86l-3.04-3.59l2.66-3.26c0.05,0.2,0.12,0.57,0.15,1.22
l0.02,0.34c0.34-0.02,0.69-0.04,1.03-0.06l-0.47-8.34c-0.34,0.02-0.69,0.04-1.03,0.06l0.02,0.34c0.04,1.06,0.05,1.88-0.55,2.62
l-3.82,4.66l-2.74-3.32c-0.66-0.81-0.91-1.51-1.01-2.82l-0.03-0.33c-0.8,0.05-0.81,0.05-1.02,0.06l0.29,5.21
c0.34-0.02,0.68-0.04,1.02-0.06l-0.01-0.33c-0.01-0.22,0-0.49,0.03-0.68c0.06,0.05,0.15,0.13,0.24,0.24l2.5,2.93
c0,0-2.21,2.74-2.4,2.96c-0.09-0.33-0.12-0.94-0.15-1.41c-0.79,0.05-0.83,0.05-1.02,0.06l0.47,8.28c0.68-0.04,0.68-0.05,1.02-0.06
l-0.01-0.34c-0.09-1.85,0.04-2.04,0.64-2.78l3.45-4.26l2.8,3.42h0c0.8,0.97,1.15,1.79,1.29,3.37l0.03,0.33
c0.34-0.02,0.68-0.04,1.02-0.06C21.25,139.17,21.1,136.67,20.97,134.26z M21.45,104.91c0.14-0.8,0.14-1.24,0.04-1.44
c-0.21,0.01-0.62,0.25-0.84,0.36h0l-0.94,0.47l-1.04,5.93l0.72,0.65c0.21,0.2,0.5,0.43,0.69,0.53c0.24-0.2,0.4-0.89,0.47-1.32
l0.06-0.34c0.34,0.06,0.68,0.12,1.01,0.18c-0.18,1.03-0.84,4.77-0.91,5.23c-0.33-0.06-0.65-0.11-0.98-0.17l0.01-0.29
c0.03-1.38-0.14-1.74-1.47-3l-4.62-4.47c-0.04,0.02-0.05,0.02-0.11,0.08l-0.35,0.75l-0.28-0.78c-0.25-0.71-0.51-1.42-0.84-1.98
c-0.39-0.7,0.11-0.91,0.37-1.04l9.07-4.46c0.76-0.37,0.87-0.69,1.14-1.79l0.08-0.31c0.33,0.05,0.66,0.11,0.99,0.17l-1.32,7.54
c-0.34-0.06-0.68-0.12-1.02-0.18L21.45,104.91z M18.43,105l-3.5,1.7l2.74,2.66L18.43,105z M27.57,78.62
c-1.91-0.8-3.64,1.42-4.81,2.97c-1.13,1.49-2.27,3.14-3.03,3.14l-0.18-0.04c-0.69-0.28-0.51-1.66-0.15-2.5
c0.74-1.84,2.55-2.91,4.47-2.94l0.4-0.98l-3.69-1.51l-0.34,0.86c0.18,0.35,0.15,0.76,0.06,0.97c-0.01,0.03-0.1,0.17-0.22,0.35
c-0.66,0.98-1.13,1.66-1.63,2.89c-0.8,1.99-1.08,4.85,0.96,5.72c1.98,0.81,3.59-1.4,4.79-2.93c1.61-2.15,2.54-3.28,3.37-2.95
c0.54,0.21,0.7,1.46,0,3.2c-0.92,2.25-2.46,2.8-4.53,3.1c-0.27,0.65-0.31,0.77-0.36,0.9l3.74,1.53l0.39-0.97
c-0.15-0.6-0.1-0.67-0.09-0.79c0.02-0.06,0.12-0.24,0.25-0.45c0.35-0.55,1.14-1.89,1.56-2.92C29.32,83.2,30.37,79.77,27.57,78.62z
M56.1,44.55c0.61-0.55,0.88-0.89,0.92-1.1c-0.17-0.12-0.64-0.18-0.88-0.23l0,0L55.1,43l-4.49,4.01l0.16,0.95
c0.04,0.28,0.13,0.65,0.21,0.84c0.31-0.01,0.86-0.45,1.19-0.74l0.26-0.23c0.23,0.26,0.46,0.51,0.68,0.77
c-0.78,0.69-3.61,3.22-3.96,3.54c-0.22-0.25-0.44-0.49-0.66-0.74l0.19-0.22c0.88-1.07,0.97-1.46,0.71-3.26l-0.86-6.38
c-0.05-0.01-0.05-0.01-0.14-0.01l-0.74,0.38l0.27-0.79c0.24-0.71,0.48-1.43,0.57-2.08c0.13-0.79,0.65-0.65,0.94-0.59l9.88,2.12
c0.83,0.18,1.11,0,2.01-0.7l0.25-0.19c0.23,0.25,0.45,0.5,0.67,0.75l-5.71,5.1c-0.23-0.26-0.46-0.51-0.69-0.77L56.1,44.55z
M53.68,42.74l-3.8-0.84l0.51,3.78L53.68,42.74z M79.53,27.21l0.08,0.41c0.3,1.58-0.57,3.01-1.92,3.73
c-0.79,0.44-1.66,0.72-2.58,0.36c-0.6,1.01-1.47,1.89-2.72,2.58c-2.46,1.37-4.22,1.1-4.95-0.24c-0.87-1.57,0.29-3.38,1.64-4.67
c-0.78-0.27-1.35-0.6-1.8-1.43c-0.64-1.15-0.22-2.89,1.72-3.97c1.81-1.01,3.45-0.93,4.19,0.4c0.59,1.05-0.17,2.12-0.62,2.69
c0.8,0.26,1.62,0.5,2.39,0.86c0.24-1.51,0.14-1.39,0.05-1.53c-0.15-0.06-0.37,0.07-1.21,0.38l-0.47-0.86l3.87-2.15l0.48,0.88
l-0.26,0.17c-0.62,0.42-0.92,0.74-1.01,1.39l-0.34,2.28c0.92,0.55,1.45,0.99,2.02,0.67c0.57-0.32,0.44-0.89,0.52-1.58L79.53,27.21z
M74.13,31.24c-0.47-0.21-1.07-0.43-1.71-0.67c-0.71-0.25-1.45-0.51-2.07-0.74c-0.49,0.48-0.98,1.25-0.6,1.94
c0.69,1.22,1.87,1.32,3.01,0.84C73.42,32.28,73.85,31.78,74.13,31.24z M71.54,25.09c-0.4-0.7-1.12-0.69-1.83-0.3
c-0.61,0.34-0.54,0.81-0.43,1c0.26,0.47,1.26,0.84,2.05,0.94C71.69,26.14,71.85,25.65,71.54,25.09z M106.07,20.02
c-0.53,0.14-1.3,0.37-1.67,0.37c-0.24,0-0.33-0.05-0.51-0.71l-1.7-6.16c-0.21-0.76-0.15-0.77,0.29-0.97
c0.32-0.14,0.94-0.31,1.41-0.45l-0.28-1l-5.39,1.51l-2.06,7.38l-5.59-5.24l-5.26,1.47l0.27,0.98c1.2-0.27,1.51-0.32,1.83-0.28
l1.9,6.86c0.04,0.22,0.1,0.44-0.26,0.77c-0.36,0.31-0.89,0.48-1.36,0.63l0.27,0.99l5.44-1.52l-0.28-1
c-0.49,0.14-1.02,0.29-1.52,0.29c-0.5,0-0.81-0.14-0.92-0.54l-1.52-5.49l6.54,6.11l0.69-0.19l2.53-8.87l1.57,5.68
c0.2,0.71,0.16,0.78-0.28,0.98c-0.34,0.15-0.93,0.31-1.4,0.45l0.27,1l7.28-2.03L106.07,20.02z M153.57,13.02
c-0.09,0.4-0.17,0.77-0.23,1.01c1.24,0.26,1.54,0.43,1.71,0.53c0.31,0.2,0.36,0.41,0.27,0.83l-1.09,4.94
c-0.48,2.14-4.36,1.55-5.57,1.26c-1.86-0.42-3.91-1.31-3.36-3.68l1-4.53c0.14-0.63,0.22-0.65,0.31-0.7
c0.29-0.12,1.34,0.14,1.85,0.25l0.22-1.01l-7.05-1.58l-0.22,1.01c0.42,0.08,1.01,0.22,1.28,0.45c0.24,0.19,0.23,0.47,0.16,0.81
l-1,4.53c-0.77,3.43,3.45,4.76,5.99,5.33c2.24,0.51,7.09,1.3,7.79-1.88l1.08-4.89c0.12-0.52,0.24-0.71,0.68-0.7
c0.34,0,0.91,0.12,1.33,0.22c0.09-0.39,0.17-0.77,0.23-1.01L153.57,13.02z M179.47,23.16l-0.46,0.93c0.5,0.24,1.09,0.54,1.45,0.84
c0.32,0.3,0.37,0.51,0.15,0.96l-2.11,4.25l-4.9-9.93l-5.15-2.58L168,18.54c0.48,0.29,1.27,0.68,1.54,1.02l-3.17,6.37
c-0.15,0.28-0.37,0.39-0.68,0.39c-0.44,0.01-1-0.23-1.45-0.45l-0.46,0.92l5.05,2.54l0.46-0.93c-0.48-0.23-1.02-0.51-1.38-0.86
c-0.31-0.3-0.45-0.6-0.27-0.97l2.88-5.8l6.44,12.85l1.11,0.56l3.8-7.64c0.23-0.45,0.39-0.55,0.58-0.55
c0.33-0.01,1.04,0.35,1.47,0.58l0.46-0.93L179.47,23.16z M192.52,31.4l-0.63,0.82l0.27,0.21c0.43,0.34,0.74,0.6,0.91,0.79
c0.3,0.35,0.28,0.41-0.15,0.97l-3.91,5.05c-0.49,0.62-0.53,0.58-0.98,0.33c-0.22-0.13-0.51-0.35-0.9-0.65l-0.27-0.21l-0.63,0.82
l5.96,4.67l0.63-0.82l-0.26-0.21c-0.44-0.34-0.74-0.6-0.91-0.79c-0.31-0.33-0.26-0.42,0.15-0.97l3.91-5.04
c0.48-0.62,0.52-0.58,0.98-0.33c0.22,0.13,0.51,0.35,0.9,0.65l0.27,0.2l0.63-0.81L192.52,31.4z M214.01,51.81l-0.77,0.67
c0.34,0.44,0.73,0.89,0.73,1.17c-0.02,0.07-0.02,0.14-1.05,0.27l-5.82,0.67l1.67-7.09c0.28,0.18,0.86,0.86,1.24,1.29l0.78-0.68
l-4.98-5.74l-0.78,0.68c0.28,0.32,0.6,0.68,0.78,1.04c0.23,0.47,0.14,0.92-0.01,1.6l-2.28,10l0.47,0.55l10.14-1.08
c0.88-0.1,1.41,0.15,2.14,0.86l0.22,0.22l0.76-0.66L214.01,51.81z M219.91,80.2l3.4-0.32c-0.07-0.46-0.1-0.68-0.15-1.02
c-2.61-0.86-3.39-1.13-4.89-3.86l-0.99-1.83c-0.07-0.12-0.14-0.27-0.16-0.36c0.07-0.06,0.14-0.1,0.23-0.15l3.01-1.63l0.38,0.71
c0.99,1.91,1.54,3.38,0.21,4.35l-0.23,0.18l0.53,0.97l4.51-2.45l-0.53-0.98c-0.08,0.03-0.28,0.11-0.45,0.15
c-1.33,0.28-2.58-1.7-3.13-2.72l-0.38-0.71l3.01-1.63l1.38,2.56c1.13,2.09,0.74,3.59,0.39,5.53c0.31,0.34,0.41,0.44,0.67,0.73
l1.83-3.08l-5.74-10.66c-0.52,0.28-0.6,0.33-0.9,0.49c0.21,0.42,0.46,0.84,0.51,1.1c0.01,0.15,0.1,0.24-0.62,0.62l-5.59,3.04
c-0.68,0.37-0.76,0.31-0.94,0.09c-0.19-0.25-0.39-0.62-0.56-0.94c-0.59,0.32-0.6,0.32-0.9,0.49L219.91,80.2z M235.83,96.23
c0,1.32-0.32,2.88-1.81,3.31c-1.32,0.37-2.29-1.01-2.79-2.01l-2.54,4.16c-0.17,0.27-0.21,0.64,0.09,1.72l0.09,0.33
c-0.27,0.08-0.62,0.18-0.99,0.29l-1.42-5.01l2.87-3.88c0.33-0.42,0.63-0.86,0.46-1.45l-0.36-1.29l-2.61,0.75
c-0.69,0.19-0.7,0.3-0.7,0.51c0,0.35,0.22,1.14,0.37,1.66l-0.99,0.28l-1.99-7.02l0.99-0.28c0.12,0.41,0.27,0.95,0.4,1.23
c0.2,0.46,0.36,0.34,0.95,0.2l6.11-1.75c0.77-0.21,0.7-0.33,0.72-0.5c0-0.3-0.19-0.97-0.32-1.43c0.24-0.07,0.6-0.18,0.99-0.29
l1.73,6.13C235.6,93.64,235.83,95.08,235.83,96.23z M234.1,92.16l-0.29-1.02l-3.39,0.97l0.29,1.02c0.45,1.51,1.2,3.28,2.64,2.85
C234.41,95.68,234.77,94.56,234.1,92.16z M232.92,123.01c2.07-0.13,2.64-2.88,3.01-4.79c0.36-1.83,0.65-3.81,1.34-4.15l0.18-0.05
c0.74-0.05,1.19,1.27,1.24,2.18c0.15,1.98-1,3.73-2.71,4.61l0.08,1.06l3.98-0.27l-0.07-0.92c-0.32-0.23-0.47-0.61-0.48-0.85
c-0.01-0.03,0.01-0.2,0.04-0.41c0.16-1.17,0.28-1.99,0.19-3.32c-0.16-2.14-1.17-4.83-3.38-4.71c-2.13,0.14-2.61,2.84-3.01,4.74
c-0.5,2.64-0.83,4.07-1.72,4.13c-0.57,0.05-1.27-1.01-1.41-2.88c-0.17-2.42,0.97-3.6,2.7-4.78c-0.05-0.7-0.06-0.83-0.07-0.97
l-4.03,0.28l0.07,1.04c0.4,0.48,0.39,0.56,0.43,0.67c0.01,0.06,0,0.26-0.03,0.52c-0.07,0.65-0.18,2.2-0.11,3.31
C229.34,119.67,229.91,123.22,232.92,123.01z M239.66,132.88l-1.03-0.11l-0.04,0.34c-0.06,0.55-0.12,0.94-0.19,1.19
c-0.14,0.44-0.2,0.45-0.9,0.38l-6.35-0.66c-0.78-0.09-0.77-0.14-0.8-0.66c0-0.26,0.02-0.62,0.08-1.11l0.03-0.34l-1.03-0.1
l-0.82,7.53l1.03,0.11l0.04-0.33c0.06-0.55,0.12-0.95,0.19-1.19c0.12-0.44,0.22-0.44,0.9-0.39l6.34,0.66
c0.78,0.08,0.77,0.14,0.8,0.66c0,0.26-0.02,0.62-0.08,1.11l-0.03,0.33l1.02,0.11L239.66,132.88z M224.24,158.31l0.99,0.29
c0.12-0.37,0.29-1,0.47-1.45c0.29-0.68,0.34-0.65,1.04-0.46l6.74,1.94c0.13,0.04,0.19,0.08,0.2,0.08c0.02,0.1-0.01,0.25-0.05,0.37
c-0.58,1.98-1.79,3.22-3.61,4l-0.11,1.04l3.57-0.08l0.33-1.11l-0.08-0.12c-0.03-0.19,0.04-0.48,0.14-0.84l2.73-9.36
c0.07-0.24,0.2-0.64,0.32-0.77c0.05-0.03,0.1-0.05,0.14-0.07l0.33-1.11l-2.98-1.96l-0.46,0.94c1.17,1.68,1.44,3.42,0.89,5.28
c-0.04,0.14-0.1,0.3-0.15,0.34c-0.07,0-0.06,0-0.21-0.04l-6.74-1.93c-0.68-0.19-0.76-0.26-0.63-0.93c0.05-0.3,0.25-1,0.39-1.49
l-0.99-0.29L224.24,158.31z M228.65,172.88c-0.28,0.52-0.71,1.3-0.96,1.54c-0.18,0.17-0.31,0.21-0.61,0.32l-5.95,1.96l-2.22-1.25
c-0.58-0.33-0.57-0.43-0.57-0.52c-0.01-0.36,0.58-1.38,0.87-1.9l-0.9-0.5l-3.91,7.05l0.9,0.5c0.34-0.59,0.84-1.56,1.16-1.74
c0.13-0.05,0.17-0.1,0.74,0.21l2.64,1.48l0.96,4.4c0.29,1.32,0.4,1.88-0.37,3.28l-0.17,0.3l0.9,0.5l2.57-4.63l-0.9-0.5
c-0.23,0.41-0.49,0.91-0.8,1.18l-0.07-0.26v0l-0.92-4.25l4.27-1.45l0.06-0.02c-0.08,0.32-0.42,0.96-0.67,1.41l0.9,0.5l3.95-7.12
L228.65,172.88z"/>
</svg>

After

Width:  |  Height:  |  Size: 93 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 125 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 32 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 158 KiB

View file

@ -0,0 +1 @@
<svg width="144" height="58" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" overflow="hidden"><defs><clipPath id="clip0"><rect x="2128" y="1208" width="144" height="58"/></clipPath></defs><g clip-path="url(#clip0)" transform="translate(-2128 -1208)"><path d="M2171 1208 2171 1233.38C2171.02 1251.37 2156.61 1265.98 2138.82 1266 2138.8 1266 2138.77 1266 2138.75 1266L2128 1266 2128 1208 2138.75 1208 2138.75 1255.26C2150.68 1255.26 2160.35 1245.48 2160.35 1233.41 2160.35 1233.4 2160.35 1233.39 2160.35 1233.38L2160.35 1208Z" fill="#E65A26" fill-rule="evenodd"/><path d="M2222 1224.33 2222 1266 2211 1266 2211 1224.3C2211 1221.3 2208.55 1218.88 2205.52 1218.88 2205.51 1218.88 2205.49 1218.88 2205.48 1218.88L2189 1218.88 2189 1266 2178 1266 2178 1208 2205.48 1208C2207.36 1207.99 2209.23 1208.31 2211 1208.93 2215.65 1210.61 2219.3 1214.26 2220.95 1218.88 2221.61 1220.62 2221.96 1222.47 2222 1224.33Z" fill="#E65A26" fill-rule="evenodd"/><path d="M2246.88 1242.54 2261.22 1242.54C2261.22 1242.54 2261.22 1249.45 2261.22 1249.8 2261.22 1252.81 2258.8 1255.26 2255.82 1255.26L2245.14 1255.26C2242.22 1255.26 2239.82 1252.9 2239.75 1249.94L2239.75 1224.37C2239.75 1221.38 2242.15 1218.95 2245.11 1218.95L2264.83 1218.95 2264.83 1208 2245.11 1208C2243.28 1207.99 2241.47 1208.3 2239.75 1208.93 2235.16 1210.59 2231.54 1214.24 2229.89 1218.88 2229.29 1220.64 2228.99 1222.48 2229 1224.34L2229 1249.66C2228.99 1251.52 2229.29 1253.36 2229.89 1255.12 2231.52 1259.77 2235.15 1263.43 2239.75 1265.07 2241.47 1265.69 2243.28 1266.01 2245.11 1266L2255.86 1266C2257.68 1266.01 2259.5 1265.69 2261.22 1265.07 2265.82 1263.43 2269.45 1259.78 2271.08 1255.12 2271.67 1253.4 2271.98 1251.59 2272 1249.76L2272 1231.63 2246.88 1231.63Z" fill="#E65A26" fill-rule="evenodd"/></g></svg>

After

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 88 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.2 KiB