diff --git a/.cursorrules b/.cursorrules index 659e694f0..b0636760a 100644 --- a/.cursorrules +++ b/.cursorrules @@ -10,6 +10,7 @@ - **Do not generate .md files** unless explicity told to do so. - **Comments** should always be made in all lowercase and simple english - **Error messages**, any error being shown in the ui should be user friendly and easy to understand, and any error being logged in consoles and sentry should be descriptive for developers to help with debugging +- **Never add AI co-author to commits** - do not add "Co-Authored-By" lines for AI assistants in git commits ## 💻 Code Quality @@ -78,6 +79,57 @@ - **Service Worker cache version** - only bump `NEXT_PUBLIC_API_VERSION` for breaking API changes (see JSDoc in `src/app/sw.ts`). Users auto-migrate. - **Gate heavy features in dev** - prefetching, precompiling, or eager loading of routes can add 5-10s to dev cold starts. wrap with `process.env.NODE_ENV !== 'development'` (e.g. `` in layout.tsx). +## 🎨 Design System + +- **Live showcase**: visit `/dev/components` to see all components rendered with all variants and copy-paste code +- **Three layers**: Bruddle primitives (`src/components/0_Bruddle/`), Global shared components (`src/components/Global/`), and Tailwind custom classes (`tailwind.config.js`) + +### Bruddle Primitives (`0_Bruddle/`) +- Button, Card (named export), BaseInput, BaseSelect, Checkbox, Divider, Title, Toast, PageContainer, CloudsBackground + +### Global Shared Components (`Global/`) +- **Navigation**: NavHeader (back button + title), TopNavbar, Footer +- **Modals**: Modal (base @headlessui Dialog), ActionModal (with buttons/checkboxes/icons), Drawer (vaul bottom sheet) +- **Loading**: Loading (spinner), PeanutLoading (branded), PeanutFactsLoading (with fun facts) +- **Cards**: Card (with position prop for stacked lists), InfoCard, PeanutActionCard +- **Status**: StatusPill, StatusBadge, ErrorAlert, ProgressBar +- **Icons**: Icon component with 50+ icons — `` +- **Inputs**: AmountInput, ValidatedInput, CopyField, GeneralRecipientInput, TokenSelector +- **Utilities**: CopyToClipboard, AddressLink, ExternalWalletButton, ShareButton, Banner, MarqueeWrapper + +### Color Names (misleading!) +- `purple-1` / `primary-1` = `#FF90E8` (pink, not purple) +- `primary-3` = `#EFE4FF` (lavender) +- `yellow-1` / `secondary-1` = `#FFC900` +- `green-1` = `#98E9AB` + +### Key Rules +- **Button sizing trap**: `size="large"` is `h-10` (40px) — SHORTER than default `h-13` (52px). never use for primary CTAs +- **Primary CTA**: ` - {userUpdateError && } - - - ) - } - if (urlState.step === 'kyc') { return (
- router.push(`/add-money/${selectedCountry.path}`)} - flow="add" - /> + +
) } diff --git a/src/app/(mobile-ui)/card-payment/page.tsx b/src/app/(mobile-ui)/card-payment/page.tsx new file mode 100644 index 000000000..984d9b8c3 --- /dev/null +++ b/src/app/(mobile-ui)/card-payment/page.tsx @@ -0,0 +1,58 @@ +'use client' + +import { useEffect } from 'react' +import { useSearchParams, useRouter } from 'next/navigation' +import { chargesApi } from '@/services/charges' +import Loading from '@/components/Global/Loading' + +/** + * Card Payment Route (DEPRECATED) + * + * This page is kept for backwards compatibility with existing URLs/bookmarks. + * The card flow now navigates directly to the semantic URL from /card page, + * avoiding this intermediate loading state. + * + * Fetches charge and redirects to semantic URL with context=card-pioneer + */ +export default function CardPaymentPage() { + const searchParams = useSearchParams() + const router = useRouter() + + useEffect(() => { + const chargeId = searchParams.get('chargeId') + if (!chargeId) { + router.push('/card') + return + } + + const redirectToPayment = async () => { + try { + const charge = await chargesApi.get(chargeId) + + // Build semantic URL from charge data + // Format: /recipient@chainId/amountTOKEN?chargeId=uuid&context=card-pioneer + // NOTE: Use chargeId parameter (not id) to match semantic request flow + const recipient = charge.requestLink.recipientAddress + const chain = charge.chainId ? `@${charge.chainId}` : '' + const amount = charge.tokenAmount + const token = charge.tokenSymbol + const uuid = charge.uuid + + const semanticUrl = `/${recipient}${chain}/${amount}${token}?chargeId=${uuid}&context=card-pioneer` + + router.push(semanticUrl) + } catch (err) { + console.error('Failed to load charge:', err) + router.push('/card') + } + } + + redirectToPayment() + }, [searchParams, router]) + + return ( +
+ +
+ ) +} diff --git a/src/app/(mobile-ui)/card/card-pioneer.e2e.test.ts b/src/app/(mobile-ui)/card/card-pioneer.e2e.test.ts new file mode 100644 index 000000000..7ede09adc --- /dev/null +++ b/src/app/(mobile-ui)/card/card-pioneer.e2e.test.ts @@ -0,0 +1,63 @@ +import { test } from '@playwright/test' + +/** + * Card Pioneer E2E Tests + * + * Tests navigation flow through card pioneer purchase journey. + * Does NOT test actual payments (requires real transactions). + * + * Note: Card Pioneer pages require authentication. Unauthenticated users + * are redirected to /setup for onboarding. + * + * Flow: info → details → geo → purchase → success + */ + +test.describe('Card Pioneer Flow', () => { + test('should redirect unauthenticated users to setup', async ({ page }) => { + // navigate to card pioneer page without auth + await page.goto('/card') + + // wait for client-side redirect to occur (useEffect-based auth redirect) + await page.waitForURL(/\/setup/, { timeout: 10000 }) + }) + + test('should redirect direct step navigation to setup when unauthenticated', async ({ page }) => { + // try to directly navigate to details step without auth + await page.goto('/card?step=details') + + // wait for client-side redirect to occur + await page.waitForURL(/\/setup/, { timeout: 10000 }) + }) + + test('should redirect purchase step to setup when unauthenticated', async ({ page }) => { + // try to access purchase step directly without auth + await page.goto('/card?step=purchase') + + // wait for client-side redirect to occur + await page.waitForURL(/\/setup/, { timeout: 10000 }) + }) + + test('should skip geo step if user is already eligible', async () => { + // this test requires mocking the card info API response + // skip for now - E2E tests shouldn't mock APIs extensively + test.skip() + }) +}) + +test.describe('Card Pioneer Auth Gating', () => { + test('should require authentication to access card pioneer flow', async ({ page }) => { + // attempt to access card page directly + await page.goto('/card') + + // wait for client-side redirect to occur + await page.waitForURL(/\/setup/, { timeout: 10000 }) + }) + + test('should require authentication to access purchase flow', async ({ page }) => { + // attempt to access purchase step directly + await page.goto('/card?step=purchase') + + // wait for client-side redirect to occur + await page.waitForURL(/\/setup/, { timeout: 10000 }) + }) +}) diff --git a/src/app/(mobile-ui)/card/page.tsx b/src/app/(mobile-ui)/card/page.tsx new file mode 100644 index 000000000..594a6a76d --- /dev/null +++ b/src/app/(mobile-ui)/card/page.tsx @@ -0,0 +1,214 @@ +'use client' +import { type FC, useEffect, useState } from 'react' +import { useRouter } from 'next/navigation' +import { useQueryStates, parseAsStringEnum } from 'nuqs' +import { useQuery } from '@tanstack/react-query' +import { cardApi, type CardInfoResponse } from '@/services/card' +import { useAuth } from '@/context/authContext' +import underMaintenanceConfig from '@/config/underMaintenance.config' + +// Screen components +import CardInfoScreen from '@/components/Card/CardInfoScreen' +import CardGeoScreen from '@/components/Card/CardGeoScreen' +import CardDetailsScreen from '@/components/Card/CardDetailsScreen' +import CardSuccessScreen from '@/components/Card/CardSuccessScreen' +import Loading from '@/components/Global/Loading' +import { Button } from '@/components/0_Bruddle/Button' +import PageContainer from '@/components/0_Bruddle/PageContainer' + +// Step types for the card pioneer flow +// Flow: info -> details -> geo -> (payment page) -> success +// Geo screen handles KYC verification prompt or eligibility blocking +type CardStep = 'info' | 'details' | 'geo' | 'success' + +const STEP_ORDER: CardStep[] = ['info', 'details', 'geo', 'success'] + +const CardPioneerPage: FC = () => { + const router = useRouter() + const { user, fetchUser } = useAuth() + + // URL state for step navigation + // Example: /card?step=info or /card?step=success + const [urlState, setUrlState] = useQueryStates( + { + step: parseAsStringEnum(['info', 'details', 'geo', 'success']), + // Debug params for testing + debugStep: parseAsStringEnum(['info', 'details', 'geo', 'success']), + }, + { history: 'replace' } // Use replace so back button exits flow instead of cycling steps + ) + + // Derive current step from URL (debug takes priority) + const currentStep: CardStep = urlState.debugStep ?? urlState.step ?? 'info' + + // Purchase error state + const [purchaseError, setPurchaseError] = useState(null) + + // Fetch card info + const { + data: cardInfo, + isLoading, + error: fetchError, + refetch: refetchCardInfo, + } = useQuery({ + queryKey: ['card-info', user?.user?.userId], + queryFn: () => cardApi.getInfo(), + enabled: !!user?.user?.userId, + staleTime: 30_000, // 30 seconds + }) + + // Step navigation helpers + const goToStep = (step: CardStep) => { + setUrlState({ step }) + } + + // Redirect to success if already purchased + useEffect(() => { + if (cardInfo?.hasPurchased && currentStep !== 'success') { + setUrlState({ step: 'success' }) + } + }, [cardInfo?.hasPurchased, currentStep, setUrlState]) + + // Note: Auto-skip removed - user must explicitly click "Reserve my card" button + // This prevents automatic redirects and gives user control over the purchase flow + + // Refetch user data when arriving at success screen + // This ensures badge and other user data is up-to-date after payment + useEffect(() => { + if (currentStep === 'success') { + fetchUser() + refetchCardInfo() + } + }, [currentStep, fetchUser, refetchCardInfo]) + + // feature flag: redirect to home if card pioneers is disabled + useEffect(() => { + if (underMaintenanceConfig.disableCardPioneers) { + router.replace('/home') + } + }, [router]) + + if (underMaintenanceConfig.disableCardPioneers) { + return null + } + + const goToNextStep = () => { + const currentIndex = STEP_ORDER.indexOf(currentStep) + if (currentIndex < STEP_ORDER.length - 1) { + goToStep(STEP_ORDER[currentIndex + 1]) + } + } + + const goToPreviousStep = () => { + const currentIndex = STEP_ORDER.indexOf(currentStep) + if (currentIndex > 0) { + goToStep(STEP_ORDER[currentIndex - 1]) + } else { + router.back() + } + } + + // Initiate purchase and navigate to payment page + const handleInitiatePurchase = async () => { + setPurchaseError(null) + try { + const response = await cardApi.purchase() + // Build semantic URL directly from response (avoids extra API call + loading state) + // Format: /recipient@chainId/amountTOKEN?chargeId=uuid&context=card-pioneer + const { recipientAddress, chainId, tokenAmount, tokenSymbol, chargeUuid } = response + const semanticUrl = `/${recipientAddress}@${chainId}/${tokenAmount}${tokenSymbol}?chargeId=${chargeUuid}&context=card-pioneer` + router.push(semanticUrl) + } catch (err) { + const error = err as { code?: string; message?: string } + if (error.code === 'ALREADY_PURCHASED') { + // User already purchased, redirect to success + handlePurchaseComplete() + return + } + // Show error to user + console.error('Purchase initiation failed:', err) + setPurchaseError(error.message || 'Failed to initiate purchase. Please try again.') + } + } + + // Handle purchase completion (called when user already purchased) + const handlePurchaseComplete = () => { + refetchCardInfo() + fetchUser() + goToStep('success') + } + + // Loading state - also show loading if we haven't determined purchase status yet + // This prevents flashing the info screen for users who have already purchased + if ((isLoading && !cardInfo) || (cardInfo?.hasPurchased && currentStep !== 'success')) { + return ( +
+ +
+ ) + } + + // Error state + if (fetchError) { + return ( +
+

Failed to load card info. Please try again.

+ +
+ ) + } + + // Render the appropriate screen based on current step + // Flow: info -> details -> (payment page) -> success + // Note: geo step only shown if user is ineligible + const renderScreen = () => { + switch (currentStep) { + case 'info': + return ( + goToNextStep()} + hasPurchased={cardInfo?.hasPurchased ?? false} + slotsRemaining={cardInfo?.slotsRemaining} + recentPurchases={cardInfo?.recentPurchases} + /> + ) + case 'details': + return ( + goToNextStep()} + onBack={() => goToPreviousStep()} + /> + ) + case 'geo': + return ( + goToNextStep()} + onInitiatePurchase={handleInitiatePurchase} + onBack={() => goToPreviousStep()} + purchaseError={purchaseError} + /> + ) + case 'success': + return router.push('/badges')} /> + default: + return ( + goToNextStep()} + hasPurchased={cardInfo?.hasPurchased ?? false} + slotsRemaining={cardInfo?.slotsRemaining} + recentPurchases={cardInfo?.recentPurchases} + /> + ) + } + } + + return {renderScreen()} +} + +export default CardPioneerPage diff --git a/src/app/(mobile-ui)/dev/components/page.tsx b/src/app/(mobile-ui)/dev/components/page.tsx new file mode 100644 index 000000000..930ab1957 --- /dev/null +++ b/src/app/(mobile-ui)/dev/components/page.tsx @@ -0,0 +1,1410 @@ +'use client' + +import { useState } from 'react' +import NavHeader from '@/components/Global/NavHeader' +import { Icon, type IconName } from '@/components/Global/Icons/Icon' +import Divider from '@/components/0_Bruddle/Divider' +import { Button } from '@/components/0_Bruddle/Button' +import { Card } from '@/components/0_Bruddle/Card' +import GlobalCard from '@/components/Global/Card' +import BaseInput from '@/components/0_Bruddle/BaseInput' +import BaseSelect from '@/components/0_Bruddle/BaseSelect' +import Checkbox from '@/components/0_Bruddle/Checkbox' +import CopyField from '@/components/Global/CopyField' +import Loading from '@/components/Global/Loading' +import PeanutLoading from '@/components/Global/PeanutLoading' +import ErrorAlert from '@/components/Global/ErrorAlert' +import EmptyState from '@/components/Global/EmptyStates/EmptyState' +import NoDataEmptyState from '@/components/Global/EmptyStates/NoDataEmptyState' +import StatusBadge from '@/components/Global/Badges/StatusBadge' +import StatusPill from '@/components/Global/StatusPill' +import { useToast } from '@/components/0_Bruddle/Toast' +import FlowHeader from '@/components/Global/FlowHeader' +import Modal from '@/components/Global/Modal' +import ActionModal from '@/components/Global/ActionModal' +import Title from '@/components/0_Bruddle/Title' +import CopyToClipboard from '@/components/Global/CopyToClipboard' +import AddressLink from '@/components/Global/AddressLink' +import MoreInfo from '@/components/Global/MoreInfo' +import { Section, PropTable, CopySnippet, StatusTag } from './showcase-utils' + +const TOC: { id: string; label: string; icon: IconName }[] = [ + { id: 'guidelines', label: 'Guidelines', icon: 'docs' }, + { id: 'buttons', label: 'Buttons', icon: 'switch' }, + { id: 'cards', label: 'Cards', icon: 'docs' }, + { id: 'inputs', label: 'Inputs', icon: 'clip' }, + { id: 'feedback', label: 'Feedback', icon: 'meter' }, + { id: 'navigation', label: 'Navigation', icon: 'link' }, + { id: 'layouts', label: 'Layouts', icon: 'switch' }, + { id: 'patterns', label: 'Patterns', icon: 'bulb' }, +] + +const ALL_ICONS: IconName[] = [ + 'alert', + 'alert-filled', + 'arrow-down', + 'arrow-down-left', + 'arrow-up', + 'arrow-up-right', + 'arrow-exchange', + 'badge', + 'bank', + 'bell', + 'bulb', + 'camera', + 'camera-flip', + 'cancel', + 'check', + 'check-circle', + 'chevron-up', + 'chevron-down', + 'clip', + 'clock', + 'copy', + 'currency', + 'docs', + 'dollar', + 'double-check', + 'download', + 'error', + 'exchange', + 'external-link', + 'eye', + 'eye-slash', + 'failed', + 'fees', + 'gift', + 'globe-lock', + 'history', + 'home', + 'info', + 'info-filled', + 'invite-heart', + 'link', + 'link-slash', + 'lock', + 'logout', + 'meter', + 'minus-circle', + 'mobile-install', + 'paperclip', + 'paste', + 'peanut-support', + 'pending', + 'plus', + 'plus-circle', + 'processing', + 'qr-code', + 'question-mark', + 'retry', + 'search', + 'share', + 'shield', + 'smile', + 'split', + 'star', + 'success', + 'switch', + 'trophy', + 'txn-off', + 'upload-cloud', + 'user', + 'user-id', + 'user-plus', + 'wallet', + 'wallet-cancel', + 'wallet-outline', + 'achievements', +] + +export default function ComponentsPage() { + const [inputValue, setInputValue] = useState('') + const [selectValue, setSelectValue] = useState('') + const [checkboxValue, setCheckboxValue] = useState(false) + const [showPeanutLoading, setShowPeanutLoading] = useState(false) + const [showModal, setShowModal] = useState(false) + const [showActionModal, setShowActionModal] = useState(false) + const { success, error, info, warning } = useToast() + + return ( +
+
+ +
+ + {/* sticky TOC */} +
+
+ {TOC.map((item) => ( + + + {item.label} + + ))} +
+
+ +
+ {/* ━━━━━━━━━━━━━━━━━━ GUIDELINES ━━━━━━━━━━━━━━━━━━ */} +
+

Guidelines & Legend

+ + {/* legend */} +
+

status tags

+
+
+ + stable, widely used +
+
+ + {'< 5 usages'} +
+
+ + 0 production usages +
+
+ + works but needs cleanup +
+
+
+ + {/* design rules */} +
+

design rules

+
+

buttons

+
    +
  • + primary CTA: variant="purple" shadowSize="4" w-full — NO size + prop +
  • +
  • secondary CTA: variant="stroke" w-full
  • +
  • + default h-13 is tallest. size="large" is h-10 — never for primary CTAs +
  • +
+
+
+

text & links

+
    +
  • primary text: text-n-1 | secondary: text-grey-1
  • +
  • inline links: text-black underline — never text-purple-1
  • +
+
+
+

containers

+
    +
  • + standalone: Bruddle Card (named export) | stacked lists: Global Card (default + export) +
  • +
  • shadows: always black #000 | border radius: always rounded-sm
  • +
+
+
+

modals

+
    +
  • + informational: Modal | user action/confirmation: ActionModal | mobile interaction: + Drawer +
  • +
+
+
+

loading

+
    +
  • + inline spinner: Loading | page-level branded: PeanutLoading | with entertainment: + PeanutFactsLoading +
  • +
+
+
+

messaging

+
    +
  • + card deposits: "starter balance" — never "card balance" or + "Peanut rewards" +
  • +
+
+
+ + {/* three-tier architecture */} +
+

architecture (three tiers)

+
+

+ Bruddle primitives — + src/components/0_Bruddle/ — Button, Card, BaseInput, BaseSelect, Checkbox, Divider, + Title, Toast +

+

+ Global shared — src/components/Global/ — + NavHeader, FlowHeader, Modal, ActionModal, Drawer, Loading, PeanutLoading, StatusBadge, + EmptyState, CopyField, Icon, AddressLink, MoreInfo, etc. +

+

+ Tailwind classes — .row, .col, .shadow-2, + .shadow-4, .label-*, .brutal-border, .bg-peanut-repeat-* +

+
+
+
+ + + + {/* ━━━━━━━━━━━━━━━━━━ BUTTONS ━━━━━━━━━━━━━━━━━━ */} +
+
+ + +
+ size="large" is h-10 (SHORTER than default h-13). default = tallest button. + primary CTAs should use NO size prop. +
+
+ +
+
+ {( + [ + ['purple', '59 usages', 'production'], + ['stroke', '27 usages', 'production'], + ['primary-soft', '18 usages', 'production'], + ['transparent', '12 usages', 'production'], + ['dark', '2 usages', 'limited'], + ['transparent-dark', '3 usages', 'limited'], + ] as const + ).map(([variant, count, status]) => ( +
+
+ {variant} + {count} + +
+ + Label`} /> +
+ ))} + +
+
+ transparent-light + 2 usages + +
+
+ +
+ Label`} /> +
+ + {(['green', 'yellow'] as const).map((variant) => ( +
+
+ {variant} + 0 production usages + +
+ +
+ ))} +
+
+ +
+

xl and xl-fixed exist in code but have 0 usages anywhere

+
+
+ +

h-13 (52px)

+
+
+ +

h-8 · 29 usages

+
+
+ +

h-9 · 10 usages

+
+
+ +

h-10 · 5 usages

+
+
+
+ +
+

+ shadowSize="4" has 160 usages. everything else is negligible. +

+
+ {(['3', '4', '6', '8'] as const).map((s) => ( +
+ +

+ {s === '4' ? '160 usages' : s === '8' ? '1 usage' : '0 usages'} +

+
+ ))} +
+
+ +
+

primary CTA (most common pattern)

+ + Continue`} + /> + +

secondary CTA

+ + Go Back`} /> + +

with icon

+
+ + +
+ Share`} /> + +

states

+
+ + +
+
+
+ + + + {/* ━━━━━━━━━━━━━━━━━━ CARDS ━━━━━━━━━━━━━━━━━━ */} +
+
+

standalone containers with optional shadow. named export.

+ + + +

no shadow

+
+ content`} /> + + +

shadowSize="4"

+
+ content`} /> + + +

shadowSize="6"

+
+ +

shadowSize="8"

+
+ +

with sub-components

+ + + Card Title + description text + + +

body content

+
+
+ + + Title + Description + + Content +`} + /> +
+ +
+

+ for stacked list items with position-aware borders. default export. heavily used across the + app. +

+ void', '(none)'], + ]} + /> + + +

position="single"

+
+ content`} /> + +

stacked list

+
+ +

position="first"

+
+ +

position="middle"

+
+ +

position="middle"

+
+ +

position="last"

+
+
+ + First + Middle + Last +
`} + /> + +

no border

+ +

border=false

+
+ +
+ + + + {/* ━━━━━━━━━━━━━━━━━━ INPUTS ━━━━━━━━━━━━━━━━━━ */} +
+
+ + setInputValue(e.target.value)} + /> + setValue(e.target.value)} />`} + /> + + + USD} + /> +
+ +
+ ', '(required)'], + ['placeholder', 'string', 'Select...'], + ['value', 'string', '(none)'], + ['onValueChange', '(value: string) => void', '(none)'], + ['disabled', 'boolean', 'false'], + ['error', 'boolean', 'false'], + ]} + /> + + `} + /> +
+ + +
+
+ +
+ setCheckboxValue(e.target.checked)} + /> + setChecked(e.target.checked)} />`} + /> +
+ +
+

+ input + copy button combo. used for addresses, codes, links. +

+ + `} /> + +
+ +
+
+

+ ValidatedInput — async validation with debounce, + loading state, check/error icons. used in setup flows. +

+ +

+ AmountInput — large currency input with conversion, + slider, balance display. used in payment flows. +

+ +

+ GeneralRecipientInput — multi-type recipient input + (address, username, etc). +

+ +

+ FileUploadInput — file upload with drag-and-drop. +

+ +
+
+
+ + + + {/* ━━━━━━━━━━━━━━━━━━ FEEDBACK ━━━━━━━━━━━━━━━━━━ */} +
+
+

+ simple css spinner. default h-4 w-4. clean, minimal, no deps. +

+
+ {['h-4 w-4', 'h-8 w-8', 'h-12 w-12'].map((size) => ( +
+ + {size} +
+ ))} +
+ `} /> +
+ +
+

+ branded loading with animated peanutman logo. optional fullscreen overlay and message. +

+ + + `} /> + {showPeanutLoading && } + +
+ +
+

+ context-based toast system. 4 types. auto-dismiss. clean API. +

+
+ + + + +
+ +
+ +
+

+ color-coded text badge. 9 status types. 3 sizes. well-structured. +

+
+ {( + [ + 'completed', + 'pending', + 'processing', + 'failed', + 'cancelled', + 'refunded', + 'soon', + 'closed', + ] as const + ).map((s) => ( + + ))} +
+ `} /> +

sizes

+
+ + + +
+
+ +
+

+ compact circular icon indicator. smaller than StatusBadge. +

+
+ {( + [ + 'completed', + 'pending', + 'processing', + 'failed', + 'cancelled', + 'refunded', + 'soon', + 'closed', + ] as const + ).map((s) => ( +
+ + {s} +
+ ))} +
+ `} /> +
+ +
+

inline error message display. simple, clean.

+ + `} /> +
+ +
+

+ structured empty state with icon, title, description, optional CTA. +

+ + `} /> +
+ +
+

branded empty state with crying peanutman animation.

+ + `} /> +
+
+ + + + {/* ━━━━━━━━━━━━━━━━━━ NAVIGATION ━━━━━━━━━━━━━━━━━━ */} + + + + + {/* ━━━━━━━━━━━━━━━━━━ LAYOUTS ━━━━━━━━━━━━━━━━━━ */} +
+
+

+ all mobile screens use min-h-[inherit] from the app + shell. these are the standard patterns for arranging NavHeader + content + CTA. +

+ +
+ CTA buttons always go INSIDE the my-auto wrapper so they center as a group with the content. + never leave CTA as a sibling of the content div. +
+
+ +
+

+ most common layout. content + CTA grouped and vertically centered. used in card flow, + confirmation screens, empty states. +

+ + {/* live demo */} +
+
+
+
+
+
+
+
+
+
+
+ + + +
+ {/* content */} + ... + {/* CTA — inside my-auto wrapper */} + +
+
`} + /> +
+ +
+

+ CTA pinned to bottom, content centered above. used for success screens, landing pages where + CTA should always be visible. +

+ + {/* live demo */} +
+
+
+
+
+
+
+
+
+ + + +
+ {/* content centers itself */} +
+ {/* CTA pinned to bottom via justify-between */} + +
`} + /> +
+ +
+

+ for long lists. CTA at bottom after content, no forced centering. used in history, settings, + transaction lists. +

+ + {/* live demo */} +
+
+
+ {[1, 2, 3, 4, 5].map((i) => ( +
+
+
+ ))} +
+
+ + + +
+ {items.map(item => ...)} +
+
`} + /> +
+ +
+
+
+ +
+

CTA as sibling of my-auto div

+

+ button gets pushed to bottom by gap, not grouped with content +

+
+
+
+ +
+

justify-between when you want grouped centering

+

+ pins CTA to bottom instead of keeping it close to content +

+
+
+
+ +
+

using space-y-8 on outer div

+

conflicts with flex centering. use gap-8 instead

+
+
+
+ +
+

CTA inside my-auto wrapper

+

content + CTA center as one unit

+
+
+
+
+
+ + + + {/* ━━━━━━━━━━━━━━━━━━ PATTERNS ━━━━━━━━━━━━━━━━━━ */} +
+
+

material design icons. tap any icon name to copy.

+
+ {ALL_ICONS.map((name) => ( + + ))} +
+ `} /> +
+ +
+

+ from tailwind.config.js — names can be misleading. tap to copy class name. +

+
+ {[ + ['purple-1', 'bg-purple-1', '#FF90E8', 'pink!'], + ['primary-3', 'bg-primary-3', '#EFE4FF', 'lavender'], + ['primary-4', 'bg-primary-4', '#D8C4F6', 'deeper lavender'], + ['yellow-1', 'bg-yellow-1', '#FFC900', 'peanut yellow'], + ['green-1', 'bg-green-1', '#98E9AB', 'success green'], + ['n-1', 'bg-n-1', '#000000', 'black'], + ['grey-1', 'bg-grey-1', '#6B6B6B', 'secondary text'], + ['teal-1', 'bg-teal-1', '#C3F5E4', 'teal'], + ['violet-1', 'bg-violet-1', '#A78BFA', 'violet'], + ['error-1', 'bg-error-1', '#FF6B6B', 'error red'], + ['success-3', 'bg-success-3', '#4ADE80', 'success bg'], + ['secondary-1', 'bg-secondary-1', '#FFC900', 'same as yellow-1'], + ].map(([name, bg, hex, note]) => ( + + ))} +
+
+ +
+
+
+ .bg-peanut-repeat-normal +
+ +
+ .bg-peanut-repeat-large +
+
+ .bg-peanut-repeat-small +
+
+
+ +
+
+ + </div> + <CopySnippet code={`<Title text="PEANUT" />`} /> + <div className="rounded-sm bg-purple-1 p-4"> + <Title text="NO OFFSET" offset={false} /> + </div> + </Section> + + <Section title="Copy & Share Utilities"> + <div className="space-y-3"> + <div> + <div className="mb-1 flex items-center gap-2"> + <span className="text-xs font-bold">CopyToClipboard</span> + <StatusTag status="production" /> + </div> + <p className="text-xs text-grey-1">icon or button mode. 2s checkmark feedback.</p> + <div className="mt-1 flex items-center gap-3"> + <CopyToClipboard textToCopy="copied text!" /> + <span className="text-xs text-grey-1">icon mode (default)</span> + </div> + <CopySnippet + code={`import CopyToClipboard from '@/components/Global/CopyToClipboard'\n<CopyToClipboard textToCopy="text" />`} + /> + </div> + <div> + <div className="mb-1 flex items-center gap-2"> + <span className="text-xs font-bold">ShareButton</span> + <StatusTag status="production" /> + </div> + <p className="text-xs text-grey-1"> + web share API with clipboard fallback. async URL generation. + </p> + <CopySnippet + code={`import ShareButton from '@/components/Global/ShareButton'\n<ShareButton url="https://peanut.me/..." title="Share" />`} + /> + </div> + </div> + </Section> + + <Section title="Address & Identity"> + <div className="space-y-3"> + <div> + <div className="mb-1 flex items-center gap-2"> + <span className="text-xs font-bold">AddressLink</span> + <StatusTag status="production" /> + </div> + <p className="text-xs text-grey-1"> + shortened address with ENS resolution and profile link. + </p> + <AddressLink address="0x1234567890abcdef1234567890abcdef12345678" /> + <CopySnippet + code={`import AddressLink from '@/components/Global/AddressLink'\n<AddressLink address="0x1234..." />`} + /> + </div> + <div> + <div className="mb-1 flex items-center gap-2"> + <span className="text-xs font-bold">MoreInfo (Tooltip)</span> + <StatusTag status="production" /> + </div> + <p className="text-xs text-grey-1"> + info icon with smart-positioned tooltip. portal-rendered. + </p> + <div className="flex items-center gap-2"> + <span className="text-sm">some label</span> + <MoreInfo text="this explains what the label means" /> + </div> + <CopySnippet + code={`import MoreInfo from '@/components/Global/MoreInfo'\n<MoreInfo text="Explanation here" />`} + /> + </div> + </div> + </Section> + + <Section title="Country Representation"> + <p className="text-xs text-grey-1"> + countries are represented using flagcdn.com images + country data from AddMoney/consts. + </p> + <div className="space-y-2 rounded-sm border border-n-1 p-3 text-xs"> + <p> + <span className="font-bold">CountryList</span> — searchable country list with + geolocation sorting, flag images, and status badges. + </p> + <CopySnippet code={`import { CountryList } from '@/components/Common/CountryList'`} /> + <p className="mt-2"> + <span className="font-bold">CountryFlagAndName</span> — single country display with + flag. supports multi-flag for bridge regions. + </p> + <CopySnippet + code={`import { CountryFlagAndName } from '@/components/Kyc/CountryFlagAndName'`} + /> + <p className="mt-2"> + <span className="font-bold">flag images pattern</span> + </p> + <CopySnippet + code={`<img src={\`https://flagcdn.com/w160/\${countryCode}.png\`} alt="flag" className="h-6 w-6 rounded-full object-cover" />`} + /> + </div> + </Section> + + <Section + title="Divider" + importPath={`import Divider from '@/components/0_Bruddle/Divider'`} + status="production" + > + <Divider /> + <Divider text="or" /> + <CopySnippet code={`<Divider text="or" />`} /> + </Section> + + <Section title="Tailwind Custom Classes"> + <div className="space-y-3 text-xs"> + <div className="rounded-sm border border-n-1 p-3"> + <p className="font-bold">layout</p> + <p className="mt-1 font-mono text-grey-1">.row — flex items-center gap-2</p> + <p className="font-mono text-grey-1">.col — flex flex-col gap-2</p> + </div> + <div className="rounded-sm border border-n-1 p-3"> + <p className="font-bold">shadows</p> + <div className="mt-2 flex gap-3"> + <div className="shadow-2 rounded-sm border border-n-1 px-3 py-2">.shadow-2</div> + <div className="shadow-4 rounded-sm border border-n-1 px-3 py-2">.shadow-4</div> + </div> + </div> + <div className="rounded-sm border border-n-1 p-3"> + <p className="font-bold">labels</p> + <div className="mt-2 flex flex-wrap gap-2"> + {['label-stroke', 'label-purple', 'label-yellow', 'label-black', 'label-teal'].map( + (cls) => ( + <span + key={cls} + className={`${cls} inline-block rounded-full px-3 py-1 text-xs font-bold`} + > + {cls.replace('label-', '')} + </span> + ) + )} + </div> + </div> + <div className="rounded-sm border border-n-1 p-3"> + <p className="font-bold">borders</p> + <p className="mt-1 font-mono text-grey-1">.brutal-border — 2px solid black</p> + <p className="font-mono text-grey-1">border border-n-1 — standard 1px black</p> + <p className="font-mono text-grey-1">rounded-sm — standard border radius</p> + </div> + <div className="rounded-sm border border-n-1 p-3"> + <p className="font-bold">icon sizes</p> + <p className="mt-1 font-mono text-grey-1"> + .icon-16 .icon-18 .icon-20 .icon-22 .icon-24 .icon-28 + </p> + </div> + </div> + </Section> + </div> + </div> + </div> + ) +} diff --git a/src/app/(mobile-ui)/dev/components/showcase-utils.tsx b/src/app/(mobile-ui)/dev/components/showcase-utils.tsx new file mode 100644 index 000000000..bfc2cd6b7 --- /dev/null +++ b/src/app/(mobile-ui)/dev/components/showcase-utils.tsx @@ -0,0 +1,127 @@ +'use client' + +import { useState } from 'react' +import { Icon } from '@/components/Global/Icons/Icon' + +// copy code snippet to clipboard with visual feedback +export const CopySnippet = ({ code }: { code: string }) => { + const [copied, setCopied] = useState(false) + + const handleCopy = () => { + navigator.clipboard.writeText(code) + setCopied(true) + setTimeout(() => setCopied(false), 1500) + } + + return ( + <button + onClick={handleCopy} + className="group relative mt-1 flex w-full items-start gap-2 rounded-sm border border-n-1/20 bg-primary-3/20 px-3 py-2 text-left font-mono text-[11px] text-grey-1 hover:border-n-1/40" + > + <span className="flex-1 whitespace-pre-wrap break-all">{code}</span> + <span className="shrink-0 opacity-40 group-hover:opacity-100"> + {copied ? <Icon name="check" size={14} /> : <Icon name="copy" size={14} />} + </span> + </button> + ) +} + +// production readiness badge +export const StatusTag = ({ status }: { status: 'production' | 'limited' | 'unused' | 'needs-refactor' }) => { + const styles = { + production: 'bg-green-1/30 text-n-1', + limited: 'bg-yellow-1/30 text-n-1', + unused: 'bg-n-1/10 text-grey-1', + 'needs-refactor': 'bg-error-1/30 text-n-1', + } + const labels = { + production: 'production', + limited: 'limited use', + unused: 'unused', + 'needs-refactor': 'needs refactor', + } + return ( + <span className={`inline-block rounded-full px-2 py-0.5 text-[10px] font-bold ${styles[status]}`}> + {labels[status]} + </span> + ) +} + +// quality score stars (1-5) +export const QualityScore = ({ score, label }: { score: 1 | 2 | 3 | 4 | 5; label?: string }) => { + const descriptions: Record<number, string> = { + 1: 'needs rewrite', + 2: 'works but messy', + 3: 'decent', + 4: 'clean', + 5: 'elegant', + } + return ( + <span className="inline-flex items-center gap-1 text-[10px] text-grey-1" title={label || descriptions[score]}> + {'★'.repeat(score)} + {'☆'.repeat(5 - score)} + {label && <span className="ml-0.5">{label}</span>} + </span> + ) +} + +// usage count badge +export const UsageCount = ({ count }: { count: number }) => ( + <span className="text-[10px] text-grey-1"> + {count} usage{count !== 1 ? 's' : ''} + </span> +) + +// section wrapper with title, status, quality, and usage count +export const Section = ({ + title, + id, + status, + quality, + usages, + importPath, + children, +}: { + title: string + id?: string + status?: 'production' | 'limited' | 'unused' | 'needs-refactor' + quality?: 1 | 2 | 3 | 4 | 5 + usages?: number + importPath?: string + children: React.ReactNode +}) => ( + <div id={id} className="space-y-3"> + <div className="flex flex-wrap items-center gap-2"> + <h2 className="text-lg font-bold">{title}</h2> + {status && <StatusTag status={status} />} + {quality && <QualityScore score={quality} />} + {usages !== undefined && <UsageCount count={usages} />} + </div> + {importPath && <CopySnippet code={importPath} />} + {children} + </div> +) + +// props table +export const PropTable = ({ rows }: { rows: [string, string, string][] }) => ( + <div className="overflow-x-auto rounded-sm border border-n-1 text-xs"> + <table className="w-full"> + <thead> + <tr className="border-b border-n-1 bg-primary-3/20"> + <th className="px-3 py-1.5 text-left font-bold">prop</th> + <th className="px-3 py-1.5 text-left font-bold">options</th> + <th className="px-3 py-1.5 text-left font-bold">default</th> + </tr> + </thead> + <tbody> + {rows.map(([prop, options, def]) => ( + <tr key={prop} className="border-b border-n-1 last:border-0"> + <td className="px-3 py-1.5 font-mono font-bold">{prop}</td> + <td className="px-3 py-1.5 font-mono">{options}</td> + <td className="px-3 py-1.5 font-mono">{def}</td> + </tr> + ))} + </tbody> + </table> + </div> +) diff --git a/src/app/(mobile-ui)/dev/layout.tsx b/src/app/(mobile-ui)/dev/layout.tsx index 087150b36..ee6026ff9 100644 --- a/src/app/(mobile-ui)/dev/layout.tsx +++ b/src/app/(mobile-ui)/dev/layout.tsx @@ -2,17 +2,20 @@ import { usePathname } from 'next/navigation' import { notFound } from 'next/navigation' -import { IS_DEV } from '@/constants/general.consts' +import { BASE_URL } from '@/constants/general.consts' -// Routes that are allowed in production (protected by API key / user check) +// Routes allowed on peanut.me (production). All /dev routes are available elsewhere +// (localhost, staging, Vercel preview deploys). const PRODUCTION_ALLOWED_ROUTES = ['/dev/full-graph', '/dev/payment-graph'] +const IS_PROD_DOMAIN = BASE_URL === 'https://peanut.me' + export default function DevLayout({ children }: { children: React.ReactNode }) { const pathname = usePathname() - // In production, only allow specific routes (full-graph, payment-graph) - // Other dev tools (leaderboard, shake-test, dev index) are dev-only - if (!IS_DEV) { + // On peanut.me, only allow specific routes (full-graph, payment-graph) + // On staging, Vercel previews, and localhost, all /dev routes are accessible + if (IS_PROD_DOMAIN) { const isAllowedInProd = PRODUCTION_ALLOWED_ROUTES.some((route) => pathname?.startsWith(route)) if (!isAllowedInProd) { notFound() diff --git a/src/app/(mobile-ui)/dev/page.tsx b/src/app/(mobile-ui)/dev/page.tsx index 90088522b..446ab6677 100644 --- a/src/app/(mobile-ui)/dev/page.tsx +++ b/src/app/(mobile-ui)/dev/page.tsx @@ -3,86 +3,98 @@ import Card from '@/components/Global/Card' import NavHeader from '@/components/Global/NavHeader' import Link from 'next/link' -import { Icon } from '@/components/Global/Icons/Icon' +import { Icon, type IconName } from '@/components/Global/Icons/Icon' export default function DevToolsPage() { - const tools = [ + const tools: { name: string; description: string; path: string; icon: IconName }[] = [ { name: 'Points Leaderboard', description: 'Real-time leaderboard with customizable time filters for event competitions', path: '/dev/leaderboard', - icon: '🏆', - status: 'active', + icon: 'trophy', }, { name: 'Full Graph', description: 'Interactive force-directed graph visualization of all users, invites, and P2P activity (admin only)', path: '/dev/full-graph', - icon: '🕸️', - status: 'active', + icon: 'globe-lock', }, { name: 'Payment Graph', description: 'P2P payment flow visualization', path: '/dev/payment-graph', - icon: '💸', - status: 'active', + icon: 'dollar', }, { name: 'Shake Test', description: 'Test progressive shake animation and confetti for perk claiming', path: '/dev/shake-test', - icon: '🧪', - status: 'active', + icon: 'bulb', + }, + { + name: 'Gift Test', + description: 'Test gift box unwrap animations and variants', + path: '/dev/gift-test', + icon: 'gift', + }, + { + name: 'Perk Success Test', + description: 'Test the perk claim success screen with mock perks', + path: '/dev/perk-success-test', + icon: 'check-circle', + }, + { + name: 'Components', + description: 'Design system showcase: buttons, cards, inputs, and all variants', + path: '/dev/components', + icon: 'bulb', }, - // Add more dev tools here in the future ] return ( - <div className="flex min-h-[inherit] flex-col gap-8"> - <NavHeader title="🛠️ Dev Tools" /> + <div className="flex w-full flex-col gap-6"> + <div className="px-4 pt-4"> + <NavHeader title="Dev Tools" /> + </div> - <div className="flex h-full flex-col space-y-6 px-4 pb-8"> - <Card className="p-6"> - <h1 className="mb-2 text-2xl font-bold">Developer Tools</h1> - <p className="text-sm text-gray-600"> - Internal testing tools and components. Publicly accessible for multi-device testing. - </p> - </Card> + <div className="flex h-full flex-col space-y-4 px-4 pb-8"> + <p className="text-sm text-grey-1"> + Internal testing tools and components. Publicly accessible for multi-device testing. + </p> - <div className="space-y-4"> + <div className="space-y-2"> {tools.map((tool) => ( <Link key={tool.path} href={tool.path}> - <Card className="cursor-pointer p-4 transition-all hover:shadow-lg"> + <Card className="cursor-pointer p-4"> <div className="flex items-center justify-between"> - <div className="flex items-center gap-4"> - <div className="text-3xl">{tool.icon}</div> + <div className="flex items-center gap-3"> + <div className="flex size-10 items-center justify-center rounded-sm border border-n-1 bg-primary-3"> + <Icon name={tool.icon} size={20} /> + </div> <div> - <h3 className="font-bold">{tool.name}</h3> - <p className="text-sm text-gray-600">{tool.description}</p> - {tool.status === 'active' && ( - <span className="mt-1 inline-block rounded-full bg-green-100 px-2 py-0.5 text-xs font-medium text-green-800"> - Active - </span> - )} + <h3 className="text-sm font-bold">{tool.name}</h3> + <p className="text-xs text-grey-1">{tool.description}</p> </div> </div> - <Icon name="arrow-up-right" size={20} className="text-gray-400" /> + <Icon name="arrow-up-right" size={16} className="text-grey-1" /> </div> </Card> </Link> ))} </div> - <Card className="space-y-2 bg-blue-50 p-4"> - <h3 className="font-bold text-blue-900">ℹ️ Info</h3> - <ul className="space-y-1 text-sm text-blue-800"> - <li>• These tools are only available in development mode</li> - <li>• Perfect for testing on multiple devices</li> - <li>• Share the URL with team members for testing</li> + <div className="rounded-sm border border-n-1 bg-primary-3/20 p-3"> + <div className="mb-1 flex items-center gap-2"> + <Icon name="info" size={14} /> + <span className="text-xs font-bold">Info</span> + </div> + <ul className="space-y-0.5 text-xs text-grey-1"> + <li>These tools are only available in development mode</li> + <li>Perfect for testing on multiple devices</li> + <li>Share the URL with team members for testing</li> </ul> - </Card> + </div> </div> </div> ) diff --git a/src/app/(mobile-ui)/dev/perk-success-test/page.tsx b/src/app/(mobile-ui)/dev/perk-success-test/page.tsx new file mode 100644 index 000000000..0df4e22a9 --- /dev/null +++ b/src/app/(mobile-ui)/dev/perk-success-test/page.tsx @@ -0,0 +1,190 @@ +'use client' + +import { useState, useEffect } from 'react' +import { Card } from '@/components/0_Bruddle/Card' +import { Button } from '@/components/0_Bruddle/Button' +import NavHeader from '@/components/Global/NavHeader' +import GlobalCard from '@/components/Global/Card' +import { Icon } from '@/components/Global/Icons/Icon' +import { SoundPlayer } from '@/components/Global/SoundPlayer' +import { useHaptic } from 'use-haptic' +import { shootDoubleStarConfetti } from '@/utils/confetti' +import { extractInviteeName } from '@/utils/general.utils' + +type MockPerk = { + id: string + name: string + amountUsd: number + reason: string +} + +const MOCK_PERKS: MockPerk[] = [ + { + id: 'mock-1', + name: 'Card Pioneer Inviter Reward', + amountUsd: 5, + reason: 'Alice became a Card Pioneer', + }, + { + id: 'mock-2', + name: 'Card Pioneer Inviter Reward', + amountUsd: 5, + reason: 'Bob became a Card Pioneer', + }, + { + id: 'mock-3', + name: 'Card Pioneer Inviter Reward', + amountUsd: 5, + reason: 'Charlie became a Card Pioneer', + }, + { + id: 'mock-4', + name: 'Card Pioneer Inviter Reward', + amountUsd: 10, + reason: 'Diana became a Card Pioneer (bonus!)', + }, + { + id: 'mock-5', + name: 'Card Pioneer Inviter Reward', + amountUsd: 5, + reason: 'Eve became a Card Pioneer', + }, +] + +export default function PerkSuccessTestPage() { + const [currentPerkIndex, setCurrentPerkIndex] = useState(0) + const [showSuccess, setShowSuccess] = useState(false) + const [canDismiss, setCanDismiss] = useState(false) + const [isExiting, setIsExiting] = useState(false) + const [playSound, setPlaySound] = useState(false) + const { triggerHaptic } = useHaptic() + + const currentPerk = MOCK_PERKS[currentPerkIndex] + + const handleShowSuccess = () => { + setShowSuccess(true) + setCanDismiss(false) + setIsExiting(false) + setPlaySound(true) + triggerHaptic() + shootDoubleStarConfetti({ origin: { x: 0.5, y: 0.4 } }) + + // Enable dismiss after 2 seconds + setTimeout(() => setCanDismiss(true), 2000) + } + + const handleDismiss = () => { + if (!canDismiss) return + + setIsExiting(true) + setTimeout(() => { + setShowSuccess(false) + setPlaySound(false) + // Move to next perk + setCurrentPerkIndex((prev) => (prev + 1) % MOCK_PERKS.length) + }, 400) + } + + const inviteeName = extractInviteeName(currentPerk.reason) + + return ( + <div className="flex min-h-[inherit] flex-col gap-4 pb-8"> + <NavHeader title="Perk Success Test" /> + + <div className="space-y-4 px-4"> + {/* Instructions */} + <Card className="bg-blue-50 p-4"> + <p className="text-sm font-bold text-blue-900">Test the perk claim success screen</p> + <ul className="mt-1 space-y-1 text-sm text-blue-800"> + <li>1. Click "Trigger Success" to show the success screen</li> + <li>2. Wait 2 seconds before you can dismiss (debounce)</li> + <li>3. Tap to dismiss and load next mock perk</li> + </ul> + </Card> + + {/* Current Perk Info */} + <Card className="p-4"> + <p className="text-sm font-bold"> + Current Mock Perk ({currentPerkIndex + 1}/{MOCK_PERKS.length}) + </p> + <p className="mt-1 text-xs text-grey-1">ID: {currentPerk.id}</p> + <p className="text-xs text-grey-1">Amount: ${currentPerk.amountUsd}</p> + <p className="text-xs text-grey-1">Reason: {currentPerk.reason}</p> + </Card> + + {/* Trigger Button */} + {!showSuccess && ( + <Button onClick={handleShowSuccess} shadowSize="4" className="w-full"> + Trigger Success + </Button> + )} + + {/* Success Screen Preview */} + {showSuccess && ( + <div className="rounded-lg border-2 border-dashed border-grey-1/30 p-4"> + <p className="mb-4 text-center text-xs font-bold text-grey-1"> + SUCCESS SCREEN PREVIEW (tap to dismiss when ready) + </p> + + <div + className={`flex flex-col items-center ${canDismiss ? 'cursor-pointer' : ''}`} + onClick={handleDismiss} + > + {playSound && <SoundPlayer sound="success" />} + + {/* Success card - full width, matches PaymentSuccessView */} + <GlobalCard + className={`flex w-full items-center gap-4 p-4 ${isExiting ? 'animate-gift-exit' : 'animate-gift-revealed'}`} + > + {/* Check icon */} + <div className="flex h-14 w-14 shrink-0 items-center justify-center rounded-full bg-success-3"> + <Icon name="check" size={28} className="text-white" /> + </div> + + {/* Text content */} + <div> + <p className="text-sm text-grey-1">You received</p> + <p className="text-3xl font-extrabold">+${currentPerk.amountUsd}</p> + <p className="mt-1 flex items-center gap-1 text-sm text-grey-1"> + <Icon name="invite-heart" size={14} /> + <span className="font-medium">{inviteeName}</span> + <span>joined Pioneers</span> + </p> + </div> + </GlobalCard> + + {/* Tap to continue - fades in when ready */} + <p + className={`mt-4 text-sm text-grey-1 transition-opacity duration-300 ${canDismiss ? 'opacity-100' : 'opacity-0'}`} + > + Tap to continue + </p> + </div> + </div> + )} + + {/* Quick Actions */} + <div className="flex gap-2"> + <Button + variant="stroke" + onClick={() => setCurrentPerkIndex((prev) => (prev + 1) % MOCK_PERKS.length)} + className="flex-1" + > + Next Perk + </Button> + <Button + variant="stroke" + onClick={() => { + setShowSuccess(false) + setPlaySound(false) + setCurrentPerkIndex(0) + }} + className="flex-1" + > + Reset + </Button> + </div> + </div> + </div> + ) +} diff --git a/src/app/(mobile-ui)/history/page.tsx b/src/app/(mobile-ui)/history/page.tsx index 2ace526be..2caf96b09 100644 --- a/src/app/(mobile-ui)/history/page.tsx +++ b/src/app/(mobile-ui)/history/page.tsx @@ -12,7 +12,8 @@ import { useTransactionHistory } from '@/hooks/useTransactionHistory' import { useUserStore } from '@/redux/hooks' import { formatGroupHeaderDate, getDateGroup, getDateGroupKey } from '@/utils/dateGrouping.utils' import * as Sentry from '@sentry/nextjs' -import { isKycStatusItem } from '@/hooks/useBridgeKycFlow' +import { isKycStatusItem } from '@/components/Kyc/KycStatusItem' +import { groupKycByRegion } from '@/utils/kyc-grouping.utils' import { useAuth } from '@/context/authContext' import { BadgeStatusItem } from '@/components/Badges/BadgeStatusItem' import { isBadgeHistoryItem } from '@/components/Badges/badge.types' @@ -165,30 +166,10 @@ const HistoryPage = () => { }) }) - if (user) { - if (user.user?.bridgeKycStatus && user.user.bridgeKycStatus !== 'not_started') { - // Use appropriate timestamp based on KYC status - const bridgeKycTimestamp = (() => { - const status = user.user.bridgeKycStatus - if (status === 'approved') return user.user.bridgeKycApprovedAt - if (status === 'rejected') return user.user.bridgeKycRejectedAt - return user.user.bridgeKycStartedAt - })() - entries.push({ - isKyc: true, - timestamp: bridgeKycTimestamp ?? user.user.createdAt ?? new Date().toISOString(), - uuid: 'bridge-kyc-status-item', - bridgeKycStatus: user.user.bridgeKycStatus, - }) - } - user.user.kycVerifications?.forEach((verification) => { - entries.push({ - isKyc: true, - timestamp: verification.approvedAt ?? verification.updatedAt ?? verification.createdAt, - uuid: verification.providerUserId ?? `${verification.provider}-${verification.mantecaGeo}`, - verification, - }) - }) + // add one kyc entry per region (STANDARD, LATAM) + if (user?.user) { + const regionEntries = groupKycByRegion(user.user) + entries.push(...regionEntries) } entries.sort((a, b) => { @@ -272,6 +253,7 @@ const HistoryPage = () => { bridgeKycStartedAt={ item.bridgeKycStatus ? user?.user.bridgeKycStartedAt : undefined } + region={item.region} /> ) : isBadgeHistoryItem(item) ? ( <BadgeStatusItem position={position} entry={item} /> diff --git a/src/app/(mobile-ui)/home/page.tsx b/src/app/(mobile-ui)/home/page.tsx index f3a542d54..51a3b1531 100644 --- a/src/app/(mobile-ui)/home/page.tsx +++ b/src/app/(mobile-ui)/home/page.tsx @@ -10,7 +10,7 @@ import { UserHeader } from '@/components/UserHeader' import { useAuth } from '@/context/authContext' import { useWallet } from '@/hooks/wallet/useWallet' import { useUserStore } from '@/redux/hooks' -import { formatExtendedNumber, getUserPreferences, updateUserPreferences, getRedirectUrl } from '@/utils/general.utils' +import { formatExtendedNumber, getUserPreferences, updateUserPreferences } from '@/utils/general.utils' import { printableUsdc } from '@/utils/balance.utils' import { useDisconnect } from '@reown/appkit/react' import Link from 'next/link' @@ -24,15 +24,17 @@ import { PEANUT_WALLET_TOKEN_DECIMALS } from '@/constants/zerodev.consts' import { PostSignupActionManager } from '@/components/Global/PostSignupActionManager' import { useWithdrawFlow } from '@/context/WithdrawFlowContext' import { useClaimBankFlow } from '@/context/ClaimBankFlowContext' -import { useDeviceType, DeviceType } from '@/hooks/useGetDeviceType' +import { useDeviceType } from '@/hooks/useGetDeviceType' import { useNotifications } from '@/hooks/useNotifications' import useKycStatus from '@/hooks/useKycStatus' +import { useCardPioneerInfo } from '@/hooks/useCardPioneerInfo' import HomeCarouselCTA from '@/components/Home/HomeCarouselCTA' import InvitesIcon from '@/components/Home/InvitesIcon' import NavigationArrow from '@/components/Global/NavigationArrow' import { updateUserById } from '@/app/actions/users' import { useHaptic } from 'use-haptic' import LazyLoadErrorBoundary from '@/components/Global/LazyLoadErrorBoundary' +import underMaintenanceConfig from '@/config/underMaintenance.config' // Lazy load heavy modal components (~20-30KB each) to reduce initial bundle size // Components are only loaded when user triggers them @@ -43,6 +45,7 @@ const NoMoreJailModal = lazy(() => import('@/components/Global/NoMoreJailModal') const EarlyUserModal = lazy(() => import('@/components/Global/EarlyUserModal')) const KycCompletedModal = lazy(() => import('@/components/Home/KycCompletedModal')) const IosPwaInstallModal = lazy(() => import('@/components/Global/IosPwaInstallModal')) +const CardPioneerModal = lazy(() => import('@/components/Card/CardPioneerModal')) const BALANCE_WARNING_THRESHOLD = parseInt(process.env.NEXT_PUBLIC_BALANCE_WARNING_THRESHOLD ?? '500') const BALANCE_WARNING_EXPIRY = parseInt(process.env.NEXT_PUBLIC_BALANCE_WARNING_EXPIRY ?? '1814400') // 21 days in seconds @@ -64,6 +67,7 @@ export default function Home() { const { isFetchingUser, fetchUser } = useAuth() const { isUserKycApproved } = useKycStatus() + const { hasPurchased: hasCardPioneerPurchased } = useCardPioneerInfo() const username = user?.user.username const [showBalanceWarningModal, setShowBalanceWarningModal] = useState(false) @@ -71,6 +75,13 @@ export default function Home() { const [isPostSignupActionModalVisible, setIsPostSignupActionModalVisible] = useState(false) const [showKycModal, setShowKycModal] = useState(user?.user.showKycCompletedModal ?? false) + // Track if this is a fresh signup session - captured once on mount so it persists + // even after NoMoreJailModal clears the sessionStorage key + const [isPostSignupSession] = useState(() => { + if (typeof window === 'undefined') return false + return sessionStorage.getItem('showNoMoreJailModal') === 'true' + }) + // sync modal state with user data when it changes useEffect(() => { if (user?.user.showKycCompletedModal !== undefined) { @@ -260,6 +271,23 @@ export default function Home() { </Suspense> </LazyLoadErrorBoundary> + {/* Card Pioneer Modal - Show to all users who haven't purchased */} + {/* Eligibility check happens during the flow (geo screen), not here */} + {/* Only shows if no higher-priority modals are active */} + {!underMaintenanceConfig.disableCardPioneers && + !showBalanceWarningModal && + !showPermissionModal && + !showKycModal && + !isPostSignupActionModalVisible && + !user?.showEarlyUserModal && + !isPostSignupSession && ( + <LazyLoadErrorBoundary> + <Suspense fallback={null}> + <CardPioneerModal hasPurchased={hasCardPioneerPurchased ?? false} /> + </Suspense> + </LazyLoadErrorBoundary> + )} + {/* Referral Campaign Modal - DISABLED FOR NOW */} {/* <ReferralCampaignModal visible={showReferralCampaignModal} diff --git a/src/app/(mobile-ui)/layout.tsx b/src/app/(mobile-ui)/layout.tsx index 4b458be20..1ed28dcaf 100644 --- a/src/app/(mobile-ui)/layout.tsx +++ b/src/app/(mobile-ui)/layout.tsx @@ -5,6 +5,7 @@ import PeanutLoading from '@/components/Global/PeanutLoading' import TopNavbar from '@/components/Global/TopNavbar' import WalletNavigation from '@/components/Global/WalletNavigation' import OfflineScreen from '@/components/Global/OfflineScreen' +import BackendErrorScreen from '@/components/Global/BackendErrorScreen' import { ThemeProvider } from '@/config' import { useAuth } from '@/context/authContext' import classNames from 'classnames' @@ -18,7 +19,8 @@ import { useRouter } from 'next/navigation' import { Banner } from '@/components/Global/Banner' import { useSetupStore } from '@/redux/hooks' import ForceIOSPWAInstall from '@/components/ForceIOSPWAInstall' -import { PUBLIC_ROUTES_REGEX } from '@/constants/routes' +import { isPublicRoute } from '@/constants/routes' +import { IS_DEV } from '@/constants/general.consts' import { usePullToRefresh } from '@/hooks/usePullToRefresh' import { useNetworkStatus } from '@/hooks/useNetworkStatus' import { useAccountSetupRedirect } from '@/hooks/useAccountSetupRedirect' @@ -27,14 +29,16 @@ const Layout = ({ children }: { children: React.ReactNode }) => { const pathName = usePathname() // Allow access to public paths without authentication - const isPublicPath = PUBLIC_ROUTES_REGEX.test(pathName) + // Dev test pages (gift-test, shake-test) are only public in dev mode + const isPublicPath = isPublicRoute(pathName, IS_DEV) - const { isFetchingUser, user } = useAuth() + const { isFetchingUser, user, userFetchError } = useAuth() const [isReady, setIsReady] = useState(false) const isUserLoggedIn = !!user?.user.userId || false const isHome = pathName === '/home' const isHistory = pathName === '/history' const isSupport = pathName === '/support' + const isDev = pathName?.startsWith('/dev') ?? false const alignStart = isHome || isHistory || isSupport const router = useRouter() const { showIosPwaInstallScreen } = useSetupStore() @@ -99,6 +103,12 @@ const Layout = ({ children }: { children: React.ReactNode }) => { return <OfflineScreen /> } + // show backend error screen when user fetch fails after retries + // user can retry or force logout to clear stale state + if (userFetchError && !isFetchingUser && !isPublicPath) { + return <BackendErrorScreen /> + } + // For public paths, skip user loading and just show content when ready if (isPublicPath) { if (!isReady) { @@ -135,22 +145,26 @@ const Layout = ({ children }: { children: React.ReactNode }) => { <div className="flex w-full"> {/* Sidebar - Fixed on desktop */} - <div className="hidden md:block"> - <div className="fixed left-0 top-0 z-20 h-screen w-64"> - <WalletNavigation /> + {!isDev && ( + <div className="hidden md:block"> + <div className="fixed left-0 top-0 z-20 h-screen w-64"> + <WalletNavigation /> + </div> </div> - </div> + )} {/* Main content area */} <div className="flex w-full flex-1 flex-col"> {/* Banner component handles maintenance and feedback banners */} - <Banner /> + {!isDev && <Banner />} {/* Fixed top navbar */} - <div className="sticky top-0 z-10 w-full"> - <TopNavbar /> - </div> + {!isDev && ( + <div className="sticky top-0 z-10 w-full"> + <TopNavbar /> + </div> + )} {/* Scrollable content area */} <div @@ -160,7 +174,8 @@ const Layout = ({ children }: { children: React.ReactNode }) => { 'relative flex-1 overflow-y-auto bg-background p-6 pb-24 md:pb-6', !!isSupport && 'p-0 pb-20 md:p-6', !!isHome && 'p-0 md:p-6 md:pr-0', - isUserLoggedIn ? 'pb-24' : 'pb-4' + isUserLoggedIn ? 'pb-24' : 'pb-4', + isDev && 'p-0 pb-0' ) )} > @@ -170,7 +185,8 @@ const Layout = ({ children }: { children: React.ReactNode }) => { 'flex w-full items-center justify-center md:ml-auto md:w-[calc(100%-160px)]', alignStart && 'items-start', isSupport && 'h-full', - isUserLoggedIn ? 'min-h-[calc(100dvh-160px)]' : 'min-h-[calc(100dvh-64px)]' + isUserLoggedIn ? 'min-h-[calc(100dvh-160px)]' : 'min-h-[calc(100dvh-64px)]', + isDev && 'min-h-[100dvh] items-start justify-start md:ml-0 md:w-full' )} > {children} @@ -179,9 +195,11 @@ const Layout = ({ children }: { children: React.ReactNode }) => { </div> {/* Mobile navigation */} - <div className="fixed bottom-0 left-0 right-0 z-10 bg-background md:hidden"> - <WalletNavigation /> - </div> + {!isDev && ( + <div className="fixed bottom-0 left-0 right-0 z-10 bg-background md:hidden"> + <WalletNavigation /> + </div> + )} </div> </div> diff --git a/src/app/(mobile-ui)/points/invites/page.tsx b/src/app/(mobile-ui)/points/invites/page.tsx index 949777c86..ee1a36597 100644 --- a/src/app/(mobile-ui)/points/invites/page.tsx +++ b/src/app/(mobile-ui)/points/invites/page.tsx @@ -16,6 +16,7 @@ import Image from 'next/image' import EmptyState from '@/components/Global/EmptyStates/EmptyState' import { getInitialsFromName } from '@/utils/general.utils' import { type PointsInvite } from '@/services/services.types' +import { TRANSITIVITY_MULTIPLIER } from '@/constants/points.consts' const InvitesPage = () => { const router = useRouter() @@ -45,10 +46,10 @@ const InvitesPage = () => { ) } - // Calculate total points earned (20% of each invitee's points) + // Calculate total points earned (50% of each invitee's points) const totalPointsEarned = invites?.invitees?.reduce((sum: number, invite: PointsInvite) => { - return sum + Math.floor(invite.totalPoints * 0.2) + return sum + Math.floor(invite.totalPoints * TRANSITIVITY_MULTIPLIER) }, 0) || 0 return ( @@ -75,7 +76,7 @@ const InvitesPage = () => { const username = invite.username const fullName = invite.fullName const isVerified = invite.kycStatus === 'approved' - const pointsEarned = Math.floor(invite.totalPoints * 0.2) + const pointsEarned = Math.floor(invite.totalPoints * TRANSITIVITY_MULTIPLIER) // respect user's showFullName preference for avatar and display name const displayName = invite.showFullName && fullName ? fullName : username return ( diff --git a/src/app/(mobile-ui)/points/page.tsx b/src/app/(mobile-ui)/points/page.tsx index 6f6ec33ec..dd1c38605 100644 --- a/src/app/(mobile-ui)/points/page.tsx +++ b/src/app/(mobile-ui)/points/page.tsx @@ -3,17 +3,15 @@ import PageContainer from '@/components/0_Bruddle/PageContainer' import Card from '@/components/Global/Card' import { getCardPosition } from '@/components/Global/Card/card.utils' -import CopyToClipboard from '@/components/Global/CopyToClipboard' import { Icon } from '@/components/Global/Icons/Icon' import NavHeader from '@/components/Global/NavHeader' import NavigationArrow from '@/components/Global/NavigationArrow' import PeanutLoading from '@/components/Global/PeanutLoading' -import ShareButton from '@/components/Global/ShareButton' import TransactionAvatarBadge from '@/components/TransactionDetails/TransactionAvatarBadge' import { VerifiedUserLabel } from '@/components/UserHeader' import { useAuth } from '@/context/authContext' import { invitesApi } from '@/services/invites' -import { generateInviteCodeLink, generateInvitesShareText, getInitialsFromName } from '@/utils/general.utils' +import { getInitialsFromName } from '@/utils/general.utils' import { useQuery } from '@tanstack/react-query' import { useRouter } from 'next/navigation' import { STAR_STRAIGHT_ICON, TIER_0_BADGE, TIER_1_BADGE, TIER_2_BADGE, TIER_3_BADGE } from '@/assets' @@ -21,13 +19,17 @@ import Image from 'next/image' import { pointsApi } from '@/services/points' import EmptyState from '@/components/Global/EmptyStates/EmptyState' import { type PointsInvite } from '@/services/services.types' -import { useEffect } from 'react' +import { useEffect, useState } from 'react' import InvitesGraph from '@/components/Global/InvitesGraph' -import { IS_DEV } from '@/constants/general.consts' +import { CashCard } from '@/components/Points/CashCard' +import { TRANSITIVITY_MULTIPLIER } from '@/constants/points.consts' +import InviteFriendsModal from '@/components/Global/InviteFriendsModal' +import { Button } from '@/components/0_Bruddle/Button' const PointsPage = () => { const router = useRouter() const { user, fetchUser } = useAuth() + const [isInviteModalOpen, setIsInviteModalOpen] = useState(false) const getTierBadge = (tier: number) => { const badges = [TIER_0_BADGE, TIER_1_BADGE, TIER_2_BADGE, TIER_3_BADGE] @@ -55,15 +57,21 @@ const PointsPage = () => { enabled: !!user?.user.userId, }) - // In dev mode, show graph for all users. In production, only for Seedling badge holders. - const hasSeedlingBadge = user?.user?.badges?.some((badge) => badge.code === 'SEEDLING_DEVCONNECT_BA_2025') + // Referral graph is now available for all users const { data: myGraphResult } = useQuery({ queryKey: ['myInviteGraph', user?.user.userId], queryFn: () => pointsApi.getUserInvitesGraph(), - enabled: !!user?.user.userId && (IS_DEV || hasSeedlingBadge), + enabled: !!user?.user.userId, }) + + // Cash status (comprehensive earnings tracking) + const { data: cashStatus } = useQuery({ + queryKey: ['cashStatus', user?.user.userId], + queryFn: () => pointsApi.getCashStatus(), + enabled: !!user?.user.userId, + }) + const username = user?.user.username - const { inviteCode, inviteLink } = generateInviteCodeLink(username ?? '') useEffect(() => { // Re-fetch user to get the latest invitees list for showing heart Icon @@ -89,95 +97,76 @@ const PointsPage = () => { <NavHeader title="Points" onPrev={() => router.back()} /> <section className="mx-auto mb-auto mt-10 w-full space-y-4"> - <Card className="flex flex-col items-center justify-center gap-3 p-6"> - <div className="flex items-center gap-2"> + {/* consolidated points and cash card */} + <Card className="flex flex-col gap-4 p-6"> + {/* points section */} + <div className="flex items-center justify-center gap-2"> <Image src={STAR_STRAIGHT_ICON} alt="star" width={24} height={24} /> <h2 className="text-4xl font-black text-black"> {tierInfo.data.totalPoints} {tierInfo.data.totalPoints === 1 ? 'Point' : 'Points'} </h2> </div> - {/* Progressive progress bar */} - <div className="flex w-full items-center gap-3"> - <Image - src={getTierBadge(tierInfo?.data.currentTier)} - alt={`Tier ${tierInfo?.data.currentTier}`} - width={32} - height={32} - /> - <div className="relative h-2 w-full overflow-hidden rounded-full bg-grey-2"> - <div - className="h-full rounded-full bg-gradient-to-r from-primary-1 to-primary-2 transition-all duration-500" - style={{ - width: `${ - tierInfo?.data.currentTier >= 2 - ? 100 - : Math.pow( - Math.min( - 1, - tierInfo.data.nextTierThreshold > 0 - ? tierInfo.data.totalPoints / tierInfo.data.nextTierThreshold - : 0 - ), - 0.6 - ) * 100 - }%`, - }} + {/* de-emphasized tier progress - smaller and flatter */} + <div className="flex flex-col gap-0.5 pb-1"> + <div className="flex items-center gap-2"> + <Image + src={getTierBadge(tierInfo?.data.currentTier)} + alt={`Tier ${tierInfo?.data.currentTier}`} + width={24} + height={24} /> + <div className="relative h-1 flex-1 overflow-hidden rounded-full bg-grey-2"> + <div + className="h-full rounded-full bg-gradient-to-r from-primary-1 to-primary-2 transition-all duration-500" + style={{ + width: `${ + tierInfo?.data.currentTier >= 2 + ? 100 + : Math.pow( + Math.min( + 1, + tierInfo.data.nextTierThreshold > 0 + ? tierInfo.data.totalPoints / + tierInfo.data.nextTierThreshold + : 0 + ), + 0.6 + ) * 100 + }%`, + }} + /> + </div> + {tierInfo?.data.currentTier < 2 && ( + <Image + src={getTierBadge(tierInfo?.data.currentTier + 1)} + alt={`Tier ${tierInfo?.data.currentTier + 1}`} + width={24} + height={24} + /> + )} </div> {tierInfo?.data.currentTier < 2 && ( - <Image - src={getTierBadge(tierInfo?.data.currentTier + 1)} - alt={`Tier ${tierInfo?.data.currentTier + 1}`} - width={32} - height={32} - /> - )} - </div> - - <div className="text-center"> - <p className="text-base text-grey-1">You're at tier {tierInfo?.data.currentTier}.</p> - {tierInfo?.data.currentTier < 2 ? ( - <p className="text-sm text-grey-1"> + <p className="text-center text-sm text-grey-1"> {tierInfo.data.pointsToNextTier}{' '} - {tierInfo.data.pointsToNextTier === 1 ? 'point' : 'points'} needed to level up + {tierInfo.data.pointsToNextTier === 1 ? 'point' : 'points'} to next tier </p> - ) : ( - <p className="text-sm text-grey-1">You've reached the max tier!</p> )} </div> - </Card> - {user?.invitedBy ? ( - <p className="text-center text-sm"> - <span - onClick={() => router.push(`/${user.invitedBy}`)} - className="inline-flex cursor-pointer items-center gap-1 font-bold" - > - {user.invitedBy} <Icon name="invite-heart" size={14} /> - </span>{' '} - invited you and earned points. Now it's your turn! Invite friends and get 20% of their points. - </p> - ) : ( - <div className="mx-3 flex items-center gap-2"> - <Icon name="info" className="size-4 flex-shrink-0 text-black" /> - <p className="text-sm text-black"> - Do stuff on Peanut and get points. Invite friends and pocket 20% of their points, too. - </p> - </div> - )} - <h1 className="font-bold">Invite friends with your code</h1> - <div className="flex w-full items-center justify-between gap-3"> - <Card className="flex w-full items-center justify-between py-3.5"> - <p className="overflow-hidden text-ellipsis whitespace-nowrap text-sm font-bold md:text-base">{`${inviteCode}`}</p> - <CopyToClipboard textToCopy={inviteCode} iconSize="4" /> - </Card> - </div> + {/* cash section */} + {cashStatus?.success && cashStatus.data && ( + <CashCard + cashbackAllowance={cashStatus.data.cashbackAllowance} + lifetimeEarned={cashStatus.data.lifetimeEarned} + /> + )} + </Card> - {/* User Graph - shows user, their inviter, and points flow regardless of invites */} + {/* invite graph with consolidated explanation */} {myGraphResult?.data && ( <> - <Card className="overflow-hidden p-0"> + <Card className="!mt-8 overflow-hidden p-0"> <InvitesGraph minimal data={myGraphResult.data} @@ -186,27 +175,38 @@ const PointsPage = () => { showUsernames /> </Card> - <div className="flex items-center gap-2"> - <Icon name="info" className="size-4 flex-shrink-0 text-black" /> - <p className="text-sm text-black"> - {IS_DEV - ? 'Experimental. Enabled for all users in dev mode.' - : 'Experimental. Only available for Seedlings badge holders.'} - </p> - </div> + <p className="text-center text-sm"> + {user?.invitedBy && ( + <> + <span + onClick={() => router.push(`/${user.invitedBy}`)} + className="inline-flex cursor-pointer items-center gap-1 font-bold" + > + {user.invitedBy} <Icon name="invite-heart" size={14} /> + </span>{' '} + invited you.{' '} + </> + )} + You earn rewards whenever friends you invite use Peanut! + </p> </> )} - {invites && invites?.invitees && invites.invitees.length > 0 && ( + {/* if user has invites: show button above people list */} + {invites && invites?.invitees && invites.invitees.length > 0 ? ( <> - <ShareButton - generateText={() => Promise.resolve(generateInvitesShareText(inviteLink))} - title="Share your invite link" + <Button + variant="purple" + shadowSize="4" + onClick={() => setIsInviteModalOpen(true)} + className="!mt-8 w-full" > Share Invite link - </ShareButton> + </Button> + + {/* people you invited */} <div - className="!mt-8 flex cursor-pointer items-center justify-between" + className="flex cursor-pointer items-center justify-between" onClick={() => router.push('/points/invites')} > <h2 className="font-bold">People you invited</h2> @@ -214,17 +214,17 @@ const PointsPage = () => { </div> <div> - {invites.invitees?.map((invite: PointsInvite, i: number) => { + {invites.invitees?.slice(0, 5).map((invite: PointsInvite, i: number) => { const username = invite.username const fullName = invite.fullName const isVerified = invite.kycStatus === 'approved' - const pointsEarned = Math.floor(invite.totalPoints * 0.2) + const pointsEarned = Math.floor(invite.totalPoints * TRANSITIVITY_MULTIPLIER) // respect user's showFullName preference for avatar and display name const displayName = invite.showFullName && fullName ? fullName : username return ( <Card key={invite.inviteeId} - position={getCardPosition(i, invites.invitees.length)} + position={getCardPosition(i, Math.min(5, invites.invitees.length))} onClick={() => router.push(`/${username}`)} className="cursor-pointer" > @@ -255,26 +255,36 @@ const PointsPage = () => { })} </div> </> - )} - - {invites?.invitees?.length === 0 && ( - <Card className="flex flex-col items-center justify-center gap-4 py-4"> - <div className="flex items-center justify-center rounded-full bg-primary-1 p-2"> - <Icon name="trophy" /> - </div> - <h2 className="font-medium">No invites yet</h2> + ) : ( + <> + {/* if user has no invites: show empty state with modal button */} + <Card className="!mt-8 flex flex-col items-center justify-center gap-4 py-4"> + <div className="flex items-center justify-center rounded-full bg-primary-1 p-2"> + <Icon name="trophy" /> + </div> + <h2 className="font-medium">No invites yet</h2> - <p className="text-center text-sm text-grey-1"> - Send your invite link to start earning more rewards - </p> - <ShareButton - generateText={() => Promise.resolve(generateInvitesShareText(inviteLink))} - title="Share your invite link" - > - Share Invite link - </ShareButton> - </Card> + <p className="text-center text-sm text-grey-1"> + Send your invite link to start earning more rewards + </p> + <Button + variant="purple" + shadowSize="4" + onClick={() => setIsInviteModalOpen(true)} + className="w-full" + > + Share Invite link + </Button> + </Card> + </> )} + + {/* Invite Modal */} + <InviteFriendsModal + visible={isInviteModalOpen} + onClose={() => setIsInviteModalOpen(false)} + username={username ?? ''} + /> </section> </PageContainer> ) diff --git a/src/app/(mobile-ui)/profile/exchange-rate/page.tsx b/src/app/(mobile-ui)/profile/exchange-rate/page.tsx index 6f1b7a965..4e194b62a 100644 --- a/src/app/(mobile-ui)/profile/exchange-rate/page.tsx +++ b/src/app/(mobile-ui)/profile/exchange-rate/page.tsx @@ -7,11 +7,10 @@ import { useWallet } from '@/hooks/wallet/useWallet' import { printableUsdc } from '@/utils/balance.utils' import { getExchangeRateWidgetRedirectRoute } from '@/utils/exchangeRateWidget.utils' import { useRouter } from 'next/navigation' -import { useEffect } from 'react' export default function ExchangeRatePage() { const router = useRouter() - const { fetchBalance, balance } = useWallet() + const { balance } = useWallet() const handleCtaAction = (sourceCurrency: string, destinationCurrency: string) => { const formattedBalance = parseFloat(printableUsdc(balance ?? 0n)) @@ -20,11 +19,6 @@ export default function ExchangeRatePage() { router.push(redirectRoute) } - useEffect(() => { - // Fetch latest balance - fetchBalance() - }, []) - return ( <PageContainer className="flex flex-col"> <NavHeader title="Exchange rate & fees" onPrev={() => router.replace('/profile')} /> diff --git a/src/app/(mobile-ui)/profile/identity-verification/[region]/[country]/page.tsx b/src/app/(mobile-ui)/profile/identity-verification/[region]/[country]/page.tsx deleted file mode 100644 index 8ffed617b..000000000 --- a/src/app/(mobile-ui)/profile/identity-verification/[region]/[country]/page.tsx +++ /dev/null @@ -1,6 +0,0 @@ -'use client' -import IdentityVerificationView from '@/components/Profile/views/IdentityVerification.view' - -export default function IdentityVerificationCountryPage() { - return <IdentityVerificationView /> -} diff --git a/src/app/(mobile-ui)/profile/identity-verification/[region]/page.tsx b/src/app/(mobile-ui)/profile/identity-verification/[region]/page.tsx deleted file mode 100644 index d1843f861..000000000 --- a/src/app/(mobile-ui)/profile/identity-verification/[region]/page.tsx +++ /dev/null @@ -1,10 +0,0 @@ -'use client' -import RegionsPage from '@/components/Profile/views/RegionsPage.view' -import { useParams } from 'next/navigation' - -export default function IdentityVerificationRegionPage() { - const params = useParams() - const region = params.region as string - - return <RegionsPage path={region} /> -} diff --git a/src/app/(mobile-ui)/profile/identity-verification/layout.tsx b/src/app/(mobile-ui)/profile/identity-verification/layout.tsx index 29884066e..5f6049aa8 100644 --- a/src/app/(mobile-ui)/profile/identity-verification/layout.tsx +++ b/src/app/(mobile-ui)/profile/identity-verification/layout.tsx @@ -1,59 +1,7 @@ 'use client' import PageContainer from '@/components/0_Bruddle/PageContainer' -import ActionModal from '@/components/Global/ActionModal' -import { useIdentityVerification } from '@/hooks/useIdentityVerification' -import { useParams, useRouter } from 'next/navigation' -import { useEffect, useState } from 'react' export default function IdentityVerificationLayout({ children }: { children: React.ReactNode }) { - const [isAlreadyVerifiedModalOpen, setIsAlreadyVerifiedModalOpen] = useState(false) - const router = useRouter() - const { isRegionAlreadyUnlocked, isVerifiedForCountry } = useIdentityVerification() - const params = useParams() - const regionParams = params.region as string - const countryParams = params.country as string - - useEffect(() => { - const isAlreadyVerified = - (countryParams && isVerifiedForCountry(countryParams)) || - (regionParams && isRegionAlreadyUnlocked(regionParams)) - - if (isAlreadyVerified) { - setIsAlreadyVerifiedModalOpen(true) - } - }, [countryParams, regionParams, isVerifiedForCountry, isRegionAlreadyUnlocked]) - - return ( - <PageContainer> - {children} - - <ActionModal - visible={isAlreadyVerifiedModalOpen} - onClose={() => { - setIsAlreadyVerifiedModalOpen(false) - router.push('/profile') - }} - title="You're already verified" - description={ - <p> - Your identity has already been successfully verified for this region. You can continue to use - features available in this region. No further action is needed. - </p> - } - icon="shield" - ctas={[ - { - text: 'Close', - shadowSize: '4', - className: 'md:py-2', - onClick: () => { - setIsAlreadyVerifiedModalOpen(false) - router.push('/profile') - }, - }, - ]} - /> - </PageContainer> - ) + return <PageContainer>{children}</PageContainer> } diff --git a/src/app/(mobile-ui)/qr-pay/page.tsx b/src/app/(mobile-ui)/qr-pay/page.tsx index d684d7da3..2826a8aeb 100644 --- a/src/app/(mobile-ui)/qr-pay/page.tsx +++ b/src/app/(mobile-ui)/qr-pay/page.tsx @@ -2,7 +2,7 @@ import { useSearchParams, useRouter } from 'next/navigation' import { useState, useCallback, useMemo, useEffect, useContext, useRef } from 'react' -import { PeanutDoesntStoreAnyPersonalInformation } from '@/components/Kyc/KycVerificationInProgressModal' +import { PeanutDoesntStoreAnyPersonalInformation } from '@/components/Kyc/PeanutDoesntStoreAnyPersonalInformation' import Card from '@/components/Global/Card' import { Button } from '@/components/0_Bruddle/Button' import { Icon } from '@/components/Global/Icons/Icon' diff --git a/src/app/(mobile-ui)/withdraw/[country]/bank/page.tsx b/src/app/(mobile-ui)/withdraw/[country]/bank/page.tsx index 07c05ca46..166f45d07 100644 --- a/src/app/(mobile-ui)/withdraw/[country]/bank/page.tsx +++ b/src/app/(mobile-ui)/withdraw/[country]/bank/page.tsx @@ -100,6 +100,9 @@ export default function WithdrawBankPage() { case AccountType.CLABE: countryId = 'MX' break + case AccountType.GB: + countryId = 'GB' + break default: return { currency: '', @@ -124,6 +127,8 @@ export default function WithdrawBankPage() { return bankAccount.routingNumber?.toUpperCase() ?? 'N/A' } else if (bankAccount && bankAccount.type === AccountType.CLABE) { return bankAccount.identifier?.toUpperCase() ?? 'N/A' + } else if (bankAccount && bankAccount.type === AccountType.GB) { + return bankAccount.sortCode ?? 'N/A' } return 'N/A' @@ -281,8 +286,8 @@ export default function WithdrawBankPage() { tokenSymbol={PEANUT_WALLET_TOKEN_SYMBOL} /> - {/* Warning for non-EUR SEPA countries */} - {isNonEuroSepa && ( + {/* Warning for non-EUR SEPA countries (not UK — UK uses Faster Payments with GBP) */} + {isNonEuroSepa && bankAccount?.type !== AccountType.GB && ( <InfoCard variant="info" icon="info" @@ -314,6 +319,11 @@ export default function WithdrawBankPage() { <> <PaymentInfoRow label={'CLABE'} value={bankAccount?.identifier.toUpperCase()} /> </> + ) : bankAccount?.type === AccountType.GB ? ( + <> + <PaymentInfoRow label={'Account Number'} value={bankAccount?.identifier} /> + <PaymentInfoRow label={'Sort Code'} value={getBicAndRoutingNumber()} /> + </> ) : ( <> <PaymentInfoRow label={'Account Number'} value={bankAccount?.identifier} /> diff --git a/src/app/(mobile-ui)/withdraw/crypto/page.tsx b/src/app/(mobile-ui)/withdraw/crypto/page.tsx index 5af73db77..ad58fbc39 100644 --- a/src/app/(mobile-ui)/withdraw/crypto/page.tsx +++ b/src/app/(mobile-ui)/withdraw/crypto/page.tsx @@ -274,6 +274,7 @@ export default function WithdrawCryptoPage() { txHash: finalTxHash, tokenAddress: PEANUT_WALLET_TOKEN, payerAddress: address as Address, + squidQuoteId: xChainRoute?.rawResponse?.route?.quoteId, }) setTransactionHash(finalTxHash) diff --git a/src/app/(mobile-ui)/withdraw/manteca/page.tsx b/src/app/(mobile-ui)/withdraw/manteca/page.tsx index 8371f74f8..712d8b0bc 100644 --- a/src/app/(mobile-ui)/withdraw/manteca/page.tsx +++ b/src/app/(mobile-ui)/withdraw/manteca/page.tsx @@ -23,16 +23,16 @@ import AmountInput from '@/components/Global/AmountInput' import { formatUnits, parseUnits } from 'viem' import type { TransactionReceipt, Hash } from 'viem' import { PaymentInfoRow } from '@/components/Payment/PaymentInfoRow' -import { useMantecaKycFlow } from '@/hooks/useMantecaKycFlow' -import { MantecaGeoSpecificKycModal } from '@/components/Kyc/InitiateMantecaKYCModal' import { useAuth } from '@/context/authContext' -import { useWebSocket } from '@/hooks/useWebSocket' import { useModalsContext } from '@/context/ModalsContext' import Select from '@/components/Global/Select' import { SoundPlayer } from '@/components/Global/SoundPlayer' import { useQueryClient } from '@tanstack/react-query' import { captureException } from '@sentry/nextjs' import useKycStatus from '@/hooks/useKycStatus' +import { useMultiPhaseKycFlow } from '@/hooks/useMultiPhaseKycFlow' +import { SumsubKycModals } from '@/components/Kyc/SumsubKycModals' +import { InitiateKycModal } from '@/components/Kyc/InitiateKycModal' import { usePendingTransactions } from '@/hooks/wallet/usePendingTransactions' import { PointsAction } from '@/services/services.types' import { usePointsConfetti } from '@/hooks/usePointsConfetti' @@ -68,7 +68,6 @@ export default function MantecaWithdrawFlow() { const [selectedBank, setSelectedBank] = useState<MantecaBankCode | null>(null) const [accountType, setAccountType] = useState<MantecaAccountType | null>(null) const [errorMessage, setErrorMessage] = useState<string | null>(null) - const [isKycModalOpen, setIsKycModalOpen] = useState(false) const [isDestinationAddressValid, setIsDestinationAddressValid] = useState(false) const [isDestinationAddressChanging, setIsDestinationAddressChanging] = useState(false) // price lock state - holds the locked price from /withdraw/init @@ -78,11 +77,17 @@ export default function MantecaWithdrawFlow() { const { sendMoney, balance } = useWallet() const { signTransferUserOp } = useSignUserOp() const { isLoading, loadingState, setLoadingState } = useContext(loadingStateContext) - const { user, fetchUser } = useAuth() + const { user } = useAuth() const { setIsSupportModalOpen } = useModalsContext() const queryClient = useQueryClient() - const { isUserBridgeKycApproved } = useKycStatus() + const { isUserMantecaKycApproved } = useKycStatus() const { hasPendingTransactions } = usePendingTransactions() + + // inline sumsub kyc flow for manteca users who need LATAM verification + // regionIntent is NOT passed here to avoid creating a backend record on mount. + // intent is passed at call time: handleInitiateKyc('LATAM') + const sumsubFlow = useMultiPhaseKycFlow({}) + const [showKycModal, setShowKycModal] = useState(false) // Get method and country from URL parameters const selectedMethodType = searchParams.get('method') // mercadopago, pix, bank-transfer, etc. const countryFromUrl = searchParams.get('country') // argentina, brazil, etc. @@ -106,9 +111,6 @@ export default function MantecaWithdrawFlow() { isLoading: isCurrencyLoading, } = useCurrency(selectedCountry?.currency!) - // Initialize KYC flow hook - const { isMantecaKycRequired } = useMantecaKycFlow({ country: selectedCountry }) - // validates withdrawal against user's limits // currency comes from country config - hook normalizes it internally const limitsValidation = useLimitsValidation({ @@ -117,19 +119,6 @@ export default function MantecaWithdrawFlow() { currency: selectedCountry?.currency, }) - // WebSocket listener for KYC status updates - useWebSocket({ - username: user?.user.username ?? undefined, - autoConnect: !!user?.user.username, - onMantecaKycStatusUpdate: (newStatus) => { - if (newStatus === 'ACTIVE' || newStatus === 'WIDGET_FINISHED') { - fetchUser() - setIsKycModalOpen(false) - setStep('review') // Proceed to review after successful KYC - } - }, - }) - // Get country flag code const countryFlagCode = useMemo(() => { return selectedCountry?.iso2?.toLowerCase() @@ -200,14 +189,8 @@ export default function MantecaWithdrawFlow() { } setErrorMessage(null) - // check if we still need to determine KYC status - if (isMantecaKycRequired === null) { - return - } - - // check KYC status before proceeding to review - if (isMantecaKycRequired === true) { - setIsKycModalOpen(true) + if (!isUserMantecaKycApproved) { + setShowKycModal(true) return } @@ -250,7 +233,7 @@ export default function MantecaWithdrawFlow() { usdAmount, currencyCode, currencyAmount, - isMantecaKycRequired, + isUserMantecaKycApproved, isLockingPrice, ]) @@ -342,7 +325,6 @@ export default function MantecaWithdrawFlow() { setSelectedBank(null) setAccountType(null) setErrorMessage(null) - setIsKycModalOpen(false) setIsDestinationAddressValid(false) setIsDestinationAddressChanging(false) setBalanceErrorMessage(null) @@ -468,6 +450,16 @@ export default function MantecaWithdrawFlow() { } return ( <div className="flex min-h-[inherit] flex-col gap-8"> + <InitiateKycModal + visible={showKycModal} + onClose={() => setShowKycModal(false)} + onVerify={async () => { + setShowKycModal(false) + await sumsubFlow.handleInitiateKyc('LATAM') + }} + isLoading={sumsubFlow.isLoading} + /> + <SumsubKycModals flow={sumsubFlow} /> <NavHeader title="Withdraw" onPrev={() => { @@ -649,23 +641,6 @@ export default function MantecaWithdrawFlow() { {errorMessage && <ErrorAlert description={errorMessage} />} </div> - - {/* KYC Modal */} - {isKycModalOpen && selectedCountry && ( - <MantecaGeoSpecificKycModal - isUserBridgeKycApproved={isUserBridgeKycApproved} - isMantecaModalOpen={isKycModalOpen} - setIsMantecaModalOpen={setIsKycModalOpen} - onClose={() => setIsKycModalOpen(false)} - onManualClose={() => setIsKycModalOpen(false)} - onKycSuccess={() => { - setIsKycModalOpen(false) - fetchUser() - setStep('review') - }} - selectedCountry={selectedCountry} - /> - )} </div> )} diff --git a/src/app/(mobile-ui)/withdraw/page.tsx b/src/app/(mobile-ui)/withdraw/page.tsx index f808f8de6..2732fee92 100644 --- a/src/app/(mobile-ui)/withdraw/page.tsx +++ b/src/app/(mobile-ui)/withdraw/page.tsx @@ -10,7 +10,9 @@ import { useWithdrawFlow } from '@/context/WithdrawFlowContext' import { useWallet } from '@/hooks/wallet/useWallet' import { tokenSelectorContext } from '@/context/tokenSelector.context' import { formatAmount } from '@/utils/general.utils' -import { getCountryFromAccount } from '@/utils/bridge.utils' +import { getCountryFromAccount, getCountryFromPath, getMinimumAmount } from '@/utils/bridge.utils' +import useGetExchangeRate from '@/hooks/useGetExchangeRate' +import { AccountType } from '@/interfaces' import { useRouter, useSearchParams } from 'next/navigation' import { useCallback, useEffect, useMemo, useState, useRef, useContext } from 'react' import { formatUnits } from 'viem' @@ -82,6 +84,43 @@ export default function WithdrawPage() { return balance !== undefined ? formatAmount(formatUnits(balance, PEANUT_WALLET_TOKEN_DECIMALS)) : '' }, [balance]) + // derive country and account type for minimum amount validation + const { countryIso2, rateAccountType } = useMemo(() => { + if (selectedBankAccount) { + const country = getCountryFromAccount(selectedBankAccount) + return { countryIso2: country?.iso2 || '', rateAccountType: selectedBankAccount.type as AccountType } + } + if (selectedMethod?.countryPath) { + const country = getCountryFromPath(selectedMethod.countryPath) + const iso2 = country?.iso2 || '' + let accountType: AccountType = AccountType.IBAN + if (iso2 === 'US') accountType = AccountType.US + else if (iso2 === 'GB') accountType = AccountType.GB + else if (iso2 === 'MX') accountType = AccountType.CLABE + return { countryIso2: iso2, rateAccountType: accountType } + } + return { countryIso2: '', rateAccountType: AccountType.US } + }, [selectedBankAccount, selectedMethod]) + + // fetch exchange rate for non-USD countries to convert local minimum to USD + const { exchangeRate } = useGetExchangeRate({ + accountType: rateAccountType, + enabled: rateAccountType !== AccountType.US && countryIso2 !== '', + }) + + // compute minimum withdrawal in USD using the exchange rate + const minUsdAmount = useMemo(() => { + const localMin = getMinimumAmount(countryIso2) + // for US or unknown, minimum is already in USD + if (!countryIso2 || countryIso2 === 'US') return localMin + // for EUR countries, €1 ≈ $1 + if (localMin === 1) return 1 + // convert local minimum to USD: sellRate = local currency per 1 USD + const rate = parseFloat(exchangeRate || '0') + if (rate <= 0) return 1 // fallback while rate is loading + return Math.ceil(localMin / rate) + }, [countryIso2, exchangeRate]) + // validate against user's limits for bank withdrawals // note: crypto withdrawals don't have fiat limits const limitsValidation = useLimitsValidation({ @@ -136,19 +175,22 @@ export default function WithdrawPage() { return false } - // convert the entered token amount to USD to enforce the $1 min rule + // convert the entered token amount to USD const price = selectedTokenData?.price ?? 0 // 0 for safety; will fail below const usdEquivalent = price ? amount * price : amount // if no price assume token pegged 1 USD - if (usdEquivalent >= 1 && amount <= maxDecimalAmount) { + if (usdEquivalent >= minUsdAmount && amount <= maxDecimalAmount) { setError({ showError: false, errorMessage: '' }) return true } // determine message let message = '' - if (usdEquivalent < 1) { - message = isFromSendFlow ? 'Minimum send amount is $1.' : 'Minimum withdrawal is $1.' + if (usdEquivalent < minUsdAmount) { + const minDisplay = minUsdAmount % 1 === 0 ? `$${minUsdAmount}` : `$${minUsdAmount.toFixed(2)}` + message = isFromSendFlow + ? `Minimum send amount is ${minDisplay}.` + : `Minimum withdrawal is ${minDisplay}.` } else if (amount > maxDecimalAmount) { message = 'Amount exceeds your wallet balance.' } else { @@ -157,7 +199,7 @@ export default function WithdrawPage() { setError({ showError: true, errorMessage: message }) return false }, - [maxDecimalAmount, setError, selectedTokenData?.price, isFromSendFlow] + [maxDecimalAmount, setError, selectedTokenData?.price, isFromSendFlow, minUsdAmount] ) const handleTokenAmountChange = useCallback( @@ -252,10 +294,10 @@ export default function WithdrawPage() { if (!Number.isFinite(numericAmount) || numericAmount <= 0) return true const usdEq = (selectedTokenData?.price ?? 1) * numericAmount - if (usdEq < 1) return true // below $1 min + if (usdEq < minUsdAmount) return true // below country-specific minimum return numericAmount > maxDecimalAmount || error.showError - }, [rawTokenAmount, maxDecimalAmount, error.showError, selectedTokenData?.price]) + }, [rawTokenAmount, maxDecimalAmount, error.showError, selectedTokenData?.price, minUsdAmount]) if (step === 'inputAmount') { // only show limits card for bank/manteca withdrawals, not crypto diff --git a/src/app/actions/card.ts b/src/app/actions/card.ts new file mode 100644 index 000000000..a3bd088ed --- /dev/null +++ b/src/app/actions/card.ts @@ -0,0 +1,102 @@ +'use server' + +import { PEANUT_API_URL } from '@/constants/general.consts' +import { fetchWithSentry } from '@/utils/sentry.utils' +import { getJWTCookie } from '@/utils/cookie-migration.utils' + +const API_KEY = process.env.PEANUT_API_KEY! + +export interface CardInfoResponse { + hasPurchased: boolean + chargeStatus?: string + chargeUuid?: string + paymentUrl?: string + isEligible: boolean + eligibilityReason?: string + price: number + currentTier: number + slotsRemaining?: number + recentPurchases?: number +} + +export interface CardPurchaseResponse { + chargeUuid: string + paymentUrl: string + price: number + // Semantic URL components for direct navigation (avoids extra API call) + recipientAddress: string + chainId: string + tokenAmount: string + tokenSymbol: string +} + +export interface CardErrorResponse { + error: string + message: string + chargeUuid?: string +} + +/** + * Get card pioneer info for the authenticated user + */ +export const getCardInfo = async (): Promise<{ data?: CardInfoResponse; error?: string }> => { + const jwtToken = (await getJWTCookie())?.value + if (!jwtToken) { + return { error: 'Authentication required' } + } + + try { + const response = await fetchWithSentry(`${PEANUT_API_URL}/card`, { + method: 'GET', + headers: { + Authorization: `Bearer ${jwtToken}`, + 'api-key': API_KEY, + }, + }) + + if (!response.ok) { + const errorData = await response.json() + return { error: errorData.message || 'Failed to get card info' } + } + + const data = await response.json() + return { data } + } catch (e: any) { + return { error: e.message || 'An unexpected error occurred' } + } +} + +/** + * Initiate card pioneer purchase + */ +export const purchaseCard = async (): Promise<{ data?: CardPurchaseResponse; error?: string; errorCode?: string }> => { + const jwtToken = (await getJWTCookie())?.value + if (!jwtToken) { + return { error: 'Authentication required', errorCode: 'NOT_AUTHENTICATED' } + } + + try { + const response = await fetchWithSentry(`${PEANUT_API_URL}/card/purchase`, { + method: 'POST', + headers: { + Authorization: `Bearer ${jwtToken}`, + 'api-key': API_KEY, + 'Content-Type': 'application/json', + }, + body: JSON.stringify({}), + }) + + if (!response.ok) { + const errorData: CardErrorResponse = await response.json() + return { + error: errorData.message || 'Failed to initiate purchase', + errorCode: errorData.error, + } + } + + const data = await response.json() + return { data } + } catch (e: any) { + return { error: e.message || 'An unexpected error occurred' } + } +} diff --git a/src/app/actions/currency.ts b/src/app/actions/currency.ts index 7be1c2a88..39a1d84be 100644 --- a/src/app/actions/currency.ts +++ b/src/app/actions/currency.ts @@ -12,12 +12,14 @@ export const getCurrencyPrice = async (currencyCode: string): Promise<{ buy: num if (currencyCode === 'USD') { buy = 1 sell = 1 - } else if (['EUR', 'MXN'].includes(currencyCode)) { + } else if (['EUR', 'MXN', 'GBP'].includes(currencyCode)) { let accountType: AccountType if (currencyCode === 'EUR') { accountType = AccountType.IBAN } else if (currencyCode === 'MXN') { accountType = AccountType.CLABE + } else if (currencyCode === 'GBP') { + accountType = AccountType.GB } else { throw new Error('Invalid currency code') } diff --git a/src/app/actions/sumsub.ts b/src/app/actions/sumsub.ts new file mode 100644 index 000000000..7222004c6 --- /dev/null +++ b/src/app/actions/sumsub.ts @@ -0,0 +1,54 @@ +'use server' + +import { type InitiateSumsubKycResponse, type KYCRegionIntent } from './types/sumsub.types' +import { fetchWithSentry } from '@/utils/sentry.utils' +import { PEANUT_API_URL } from '@/constants/general.consts' +import { getJWTCookie } from '@/utils/cookie-migration.utils' + +const API_KEY = process.env.PEANUT_API_KEY! + +// initiate kyc flow (using sumsub) and get websdk access token +export const initiateSumsubKyc = async (params?: { + regionIntent?: KYCRegionIntent + levelName?: string +}): Promise<{ data?: InitiateSumsubKycResponse; error?: string }> => { + const jwtToken = (await getJWTCookie())?.value + + if (!jwtToken) { + return { error: 'Authentication required' } + } + + const body: Record<string, string | undefined> = { + regionIntent: params?.regionIntent, + levelName: params?.levelName, + } + + try { + const response = await fetchWithSentry(`${PEANUT_API_URL}/users/identity`, { + method: 'POST', + headers: { + 'Content-Type': 'application/json', + Authorization: `Bearer ${jwtToken}`, + 'api-key': API_KEY, + }, + body: JSON.stringify(body), + }) + + const responseJson = await response.json() + + if (!response.ok) { + return { error: responseJson.message || responseJson.error || 'Failed to initiate identity verification' } + } + + return { + data: { + token: responseJson.token, + applicantId: responseJson.applicantId, + status: responseJson.status, + }, + } + } catch (e: unknown) { + const message = e instanceof Error ? e.message : 'An unexpected error occurred' + return { error: message } + } +} diff --git a/src/app/actions/types/sumsub.types.ts b/src/app/actions/types/sumsub.types.ts new file mode 100644 index 000000000..8565d2961 --- /dev/null +++ b/src/app/actions/types/sumsub.types.ts @@ -0,0 +1,9 @@ +export interface InitiateSumsubKycResponse { + token: string | null // null when user is already APPROVED + applicantId: string | null + status: SumsubKycStatus +} + +export type SumsubKycStatus = 'NOT_STARTED' | 'PENDING' | 'IN_REVIEW' | 'APPROVED' | 'REJECTED' | 'ACTION_REQUIRED' + +export type KYCRegionIntent = 'STANDARD' | 'LATAM' diff --git a/src/app/actions/types/users.types.ts b/src/app/actions/types/users.types.ts index 79811164a..63ca3b0f8 100644 --- a/src/app/actions/types/users.types.ts +++ b/src/app/actions/types/users.types.ts @@ -3,6 +3,8 @@ export enum BridgeEndorsementType { BASE = 'base', SEPA = 'sepa', SPEI = 'spei', + PIX = 'pix', + FASTER_PAYMENTS = 'faster_payments', } // this type represents the detailed response from our initiate-kyc endpoint @@ -24,6 +26,7 @@ export enum BridgeAccountType { IBAN = 'iban', US = 'us', CLABE = 'clabe', + GB = 'gb', // uk bank accounts (sort code + account number) } // matches the BridgeAccountOwnerType enum on the backend @@ -53,4 +56,5 @@ export interface AddBankAccountPayload { } bic?: string routingNumber?: string + sortCode?: string // uk bank accounts } diff --git a/src/app/actions/users.ts b/src/app/actions/users.ts index e530ebf17..5929fed25 100644 --- a/src/app/actions/users.ts +++ b/src/app/actions/users.ts @@ -160,3 +160,47 @@ export async function getContacts(params: { return { error: e instanceof Error ? e.message : 'An unexpected error occurred' } } } + +// fetch bridge ToS acceptance link for users with pending ToS +export const getBridgeTosLink = async (): Promise<{ data?: { tosLink: string }; error?: string }> => { + const jwtToken = (await getJWTCookie())?.value + try { + const response = await fetchWithSentry(`${PEANUT_API_URL}/users/bridge-tos-link`, { + method: 'GET', + headers: { + 'Content-Type': 'application/json', + Authorization: `Bearer ${jwtToken}`, + 'api-key': API_KEY, + }, + }) + const responseJson = await response.json() + if (!response.ok) { + return { error: responseJson.error || 'Failed to fetch Bridge ToS link' } + } + return { data: responseJson } + } catch (e: unknown) { + return { error: e instanceof Error ? e.message : 'An unexpected error occurred' } + } +} + +// confirm bridge ToS acceptance after user closes the ToS iframe +export const confirmBridgeTos = async (): Promise<{ data?: { accepted: boolean }; error?: string }> => { + const jwtToken = (await getJWTCookie())?.value + try { + const response = await fetchWithSentry(`${PEANUT_API_URL}/users/bridge-tos-confirm`, { + method: 'POST', + headers: { + 'Content-Type': 'application/json', + Authorization: `Bearer ${jwtToken}`, + 'api-key': API_KEY, + }, + }) + const responseJson = await response.json() + if (!response.ok) { + return { error: responseJson.error || 'Failed to confirm Bridge ToS' } + } + return { data: responseJson } + } catch (e: unknown) { + return { error: e instanceof Error ? e.message : 'An unexpected error occurred' } + } +} diff --git a/src/app/api/exchange-rate/route.ts b/src/app/api/exchange-rate/route.ts index 8131a2493..3c061ba43 100644 --- a/src/app/api/exchange-rate/route.ts +++ b/src/app/api/exchange-rate/route.ts @@ -42,8 +42,8 @@ export async function GET(request: NextRequest) { if ( MANTECA_CURRENCIES.has(fromUc) || MANTECA_CURRENCIES.has(toUc) || - ['EUR', 'MXN'].includes(fromUc) || - ['EUR', 'MXN'].includes(toUc) + ['EUR', 'MXN', 'GBP'].includes(fromUc) || + ['EUR', 'MXN', 'GBP'].includes(toUc) ) { const currencyPriceRate = await fetchFromCurrencyPrice(fromUc, toUc) if (currencyPriceRate !== null) { @@ -105,8 +105,8 @@ async function getExchangeRate(from: string, to: string): Promise<number | null> if ( MANTECA_CURRENCIES.has(from) || MANTECA_CURRENCIES.has(to) || - ['EUR', 'MXN'].includes(from) || - ['EUR', 'MXN'].includes(to) + ['EUR', 'MXN', 'GBP'].includes(from) || + ['EUR', 'MXN', 'GBP'].includes(to) ) { return await fetchFromCurrencyPrice(from, to) } @@ -122,7 +122,7 @@ async function getExchangeRate(from: string, to: string): Promise<number | null> async function fetchFromCurrencyPrice(from: string, to: string): Promise<number | null> { console.log('Fetching from getCurrencyPrice') try { - if (from === 'USD' && (MANTECA_CURRENCIES.has(to) || ['EUR', 'MXN'].includes(to))) { + if (from === 'USD' && (MANTECA_CURRENCIES.has(to) || ['EUR', 'MXN', 'GBP'].includes(to))) { // USD → other currency: use sell rate (selling USD to get other currency) const { sell } = await getCurrencyPrice(to) if (!isFinite(sell) || sell <= 0) { @@ -130,7 +130,7 @@ async function fetchFromCurrencyPrice(from: string, to: string): Promise<number return null } return sell - } else if ((MANTECA_CURRENCIES.has(from) || ['EUR', 'MXN'].includes(from)) && to === 'USD') { + } else if ((MANTECA_CURRENCIES.has(from) || ['EUR', 'MXN', 'GBP'].includes(from)) && to === 'USD') { // Other currency → USD: use buy rate (buying USD with other currency) const { buy } = await getCurrencyPrice(from) if (!isFinite(buy) || buy <= 0) { @@ -139,8 +139,8 @@ async function fetchFromCurrencyPrice(from: string, to: string): Promise<number } return 1 / buy } else if ( - (MANTECA_CURRENCIES.has(from) || ['EUR', 'MXN'].includes(from)) && - (MANTECA_CURRENCIES.has(to) || ['EUR', 'MXN'].includes(to)) + (MANTECA_CURRENCIES.has(from) || ['EUR', 'MXN', 'GBP'].includes(from)) && + (MANTECA_CURRENCIES.has(to) || ['EUR', 'MXN', 'GBP'].includes(to)) ) { // Other currency → Other currency: convert through USD const fromPrices = await getCurrencyPrice(from) diff --git a/src/app/api/proxy/[...slug]/route.ts b/src/app/api/proxy/[...slug]/route.ts index 773951e2f..7eeb41e90 100644 --- a/src/app/api/proxy/[...slug]/route.ts +++ b/src/app/api/proxy/[...slug]/route.ts @@ -26,8 +26,6 @@ export async function POST(request: NextRequest) { }) } - jsonToPass.apiKey = process.env.PEANUT_API_KEY! - const userIp = request.headers.get('x-forwarded-for') || request.headers.get('x-real-ip') const headersToPass = { 'Content-Type': 'application/json', diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 73ec69d1c..ebc435325 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -62,16 +62,19 @@ const sniglet = Sniglet({ const knerdOutline = localFont({ src: '../assets/fonts/knerd-outline.ttf', variable: '--font-knerd-outline', + display: 'swap', }) const knerdFilled = localFont({ src: '../assets/fonts/knerd-filled.ttf', variable: '--font-knerd-filled', + display: 'swap', }) const robotoFlexBold = localFont({ src: '../assets/fonts/roboto-flex-bold.ttf', variable: '--font-roboto-flex-bold', + display: 'swap', }) export const viewport: Viewport = { diff --git a/src/app/lp/card/CardLandingPage.tsx b/src/app/lp/card/CardLandingPage.tsx new file mode 100644 index 000000000..1cd3a6bbf --- /dev/null +++ b/src/app/lp/card/CardLandingPage.tsx @@ -0,0 +1,880 @@ +'use client' +import { motion } from 'framer-motion' +import Image from 'next/image' +import Layout from '@/components/Global/Layout' +import { Button } from '@/components/0_Bruddle/Button' +import { FAQsPanel } from '@/components/Global/FAQs' +import PioneerCard3D from '@/components/LandingPage/PioneerCard3D' +import Footer from '@/components/LandingPage/Footer' +import { Marquee } from '@/components/LandingPage' +import { useAuth } from '@/context/authContext' +import { useRouter } from 'next/navigation' +import { Star, HandThumbsUp } from '@/assets' +import { useState, useEffect } from 'react' +import underMaintenanceConfig from '@/config/underMaintenance.config' + +const faqQuestions = [ + { + id: '0', + question: 'What is Card Pioneers?', + answer: 'Card Pioneers is the early-access program for the Peanut Card. Reserve a spot, get priority rollout access, and unlock Pioneer perks like $5 for every friend you refer.', + }, + { + id: '1', + question: 'How does it work?', + answer: '1. Reserve your spot by adding $10 in starter card balance. 2. Share your Peanut invite link. 3. When someone joins Card Pioneers through your invite, you earn $5 instantly, plus rewards every time they spend - forever.', + }, + { + id: '2', + question: 'Is the $10 refundable?', + answer: "Your $10 becomes starter balance when your card launches. If you're found not eligible at launch (for example: your region isn't supported, or you can't complete required verification), you can request a refund.", + }, + { + id: '3', + question: 'Where is the card available?', + answer: "We're rolling out by region in stages: US, Latin America, and Africa. You'll see eligibility details during signup.", + }, + { + id: '4', + question: "Do I earn from my invites' invites too?", + answer: 'Yes! You earn a smaller part for your entire invite tree. So if you invite someone who becomes a power-referrer, you earn from everyone they bring in too.', + }, +] + +const CardLandingPage = () => { + const { user } = useAuth() + const router = useRouter() + const [isMobile, setIsMobile] = useState(false) + + // feature flag: redirect to landing if card pioneers is disabled + useEffect(() => { + if (underMaintenanceConfig.disableCardPioneers) { + router.replace('/') + } + }, [router]) + + useEffect(() => { + const checkMobile = () => setIsMobile(window.innerWidth < 768) + checkMobile() + window.addEventListener('resize', checkMobile) + return () => window.removeEventListener('resize', checkMobile) + }, []) + + if (underMaintenanceConfig.disableCardPioneers) { + return null + } + + const handleCTA = () => { + if (user) { + router.push('/card') + } else { + router.push('/setup?redirect_uri=/card') + } + } + + // Marquee copy from CARD_coremessaging.md + const marqueeProps = { + visible: true, + message: ['EARLY = EARN', 'BUILD YOUR TREE', 'ONE LINK', 'LIFETIME UPSIDE', '$5 PER INVITE', 'EARN FOREVER'], + } + + return ( + <Layout className="enable-select !m-0 w-full !p-0"> + {/* Hero Section - Yellow with card */} + <section id="hero" className="relative overflow-hidden bg-yellow-1 py-16 md:py-24"> + {!isMobile && <FloatingStars />} + + <div className="relative mx-auto max-w-6xl px-4"> + <div className="flex flex-col items-center text-center"> + <motion.h1 + className="font-roboto-flex-extrabold text-[3rem] font-extraBlack leading-[0.95] md:text-7xl lg:text-8xl" + initial={{ opacity: 0, y: 30 }} + animate={{ opacity: 1, y: 0 }} + transition={{ duration: 0.6 }} + > + YOUR DOLLARS. + <br /> + EVERYWHERE. + </motion.h1> + + <motion.p + className="font-roboto-flex mt-6 max-w-xl text-xl md:text-2xl" + initial={{ opacity: 0 }} + animate={{ opacity: 1 }} + transition={{ duration: 0.5, delay: 0.2 }} + > + Pay with the peanut card. Earn with every purchase, yours or your friends. + <br /> + <br /> + <strong>Self-custodial. Best rates. No hidden fees.</strong> + </motion.p> + + <motion.div + className="my-10 w-full max-w-96" + initial={{ opacity: 0, scale: 0.9, rotateY: -15 }} + animate={{ opacity: 1, scale: 1, rotateY: 0 }} + transition={{ duration: 0.8, delay: 0.3 }} + > + <PioneerCard3D /> + </motion.div> + + <motion.div + initial={{ opacity: 0, y: 20 }} + animate={{ opacity: 1, y: 0 }} + transition={{ duration: 0.5, delay: 0.5 }} + > + <Button + shadowSize="4" + onClick={handleCTA} + className="bg-white px-14 py-5 text-xl font-extrabold hover:bg-white/90" + > + JOIN PIONEERS + </Button> + <p className="font-roboto-flex mt-3 text-sm opacity-70"> + $10 starter balance = your spot secured + </p> + </motion.div> + </div> + </div> + </section> + + <Marquee {...marqueeProps} /> + + {/* How it works - Cream */} + <section + id="how-it-works" + className="relative overflow-hidden py-20" + style={{ backgroundColor: '#F9F4F0' }} + > + {!isMobile && <FloatingStars />} + + <div className="relative mx-auto max-w-5xl px-4"> + <motion.h2 + className="font-roboto-flex-extrabold text-center text-4xl font-extraBlack md:text-6xl" + initial={{ opacity: 0, y: 20 }} + whileInView={{ opacity: 1, y: 0 }} + viewport={{ once: true }} + > + HOW IT WORKS + </motion.h2> + + <div className="mt-16 flex flex-col gap-4 md:flex-row"> + <StepCard + num="01" + title="RESERVE" + desc="Add $10 starter balance. It's yours to spend when your card activates." + color="bg-yellow-1" + delay={0} + /> + <StepCard + num="02" + title="INVITE" + desc="Share your link. Earn $5 instantly, and earn more forever for every friend you invite." + color="bg-secondary-3" + delay={0.1} + /> + <StepCard + num="03" + title="SPEND" + desc="When we launch in your region, you're first in line. Spend globally." + color="bg-primary-1" + textLight + delay={0.2} + /> + </div> + </div> + </section> + + <Marquee {...marqueeProps} /> + + {/* Earn Forever - Cream Background */} + <section + id="earn-forever" + className="relative overflow-hidden py-20" + style={{ backgroundColor: '#F9F4F0' }} + > + {!isMobile && <FloatingStars />} + <div className="mx-auto max-w-5xl px-4"> + <div className="flex flex-col items-center gap-12 md:flex-row"> + {/* Visual - Simplified Invite Visual */} + <motion.div + className="w-full md:w-1/2" + initial={{ opacity: 0, x: -30 }} + whileInView={{ opacity: 1, x: 0 }} + viewport={{ once: true }} + transition={{ duration: 0.6 }} + > + <div className="relative mx-auto" style={{ width: 340, height: 380 }}> + {/* + LAYOUT - Calculated with Python trigonometry + Container: 340x380 + + L0 (YOU): center (170, 190), 80x80px + L1 nodes: 48x48px, 120px from YOU + - Top: center (170, 70) - outward angle -90° + - Bottom-left: center (70, 310) - outward angle 129.8° + - Bottom-right: center (270, 310) - outward angle 50.2° + + L2 nodes: 32x32px, 55px from parent L1 center, fanning at -45°, 0°, +45° from outward direction + Top L1 (170,70): (131,31), (170,15), (209,31) + Bottom-left L1 (70,310): (75,365), (35,352), (15,315) + Bottom-right L1 (270,310): (325,315), (305,352), (265,365) + */} + + {/* Connection lines */} + <svg width="340" height="380" className="absolute left-0 top-0"> + {/* L0 to L1 edges */} + <line + x1="170" + y1="190" + x2="170" + y2="70" + stroke="#000" + strokeOpacity="0.15" + strokeWidth="2" + /> + <line + x1="170" + y1="190" + x2="70" + y2="310" + stroke="#000" + strokeOpacity="0.15" + strokeWidth="2" + /> + <line + x1="170" + y1="190" + x2="270" + y2="310" + stroke="#000" + strokeOpacity="0.15" + strokeWidth="2" + /> + + {/* Top L1 (170,70) to L2 */} + <line + x1="170" + y1="70" + x2="131" + y2="31" + stroke="#000" + strokeOpacity="0.1" + strokeWidth="1" + /> + <line + x1="170" + y1="70" + x2="170" + y2="15" + stroke="#000" + strokeOpacity="0.1" + strokeWidth="1" + /> + <line + x1="170" + y1="70" + x2="209" + y2="31" + stroke="#000" + strokeOpacity="0.1" + strokeWidth="1" + /> + + {/* Bottom-left L1 (70,310) to L2 */} + <line + x1="70" + y1="310" + x2="75" + y2="365" + stroke="#000" + strokeOpacity="0.1" + strokeWidth="1" + /> + <line + x1="70" + y1="310" + x2="35" + y2="352" + stroke="#000" + strokeOpacity="0.1" + strokeWidth="1" + /> + <line + x1="70" + y1="310" + x2="15" + y2="315" + stroke="#000" + strokeOpacity="0.1" + strokeWidth="1" + /> + + {/* Bottom-right L1 (270,310) to L2 */} + <line + x1="270" + y1="310" + x2="325" + y2="315" + stroke="#000" + strokeOpacity="0.1" + strokeWidth="1" + /> + <line + x1="270" + y1="310" + x2="305" + y2="352" + stroke="#000" + strokeOpacity="0.1" + strokeWidth="1" + /> + <line + x1="270" + y1="310" + x2="265" + y2="365" + stroke="#000" + strokeOpacity="0.1" + strokeWidth="1" + /> + </svg> + + {/* L0: YOU node - center (170,190), top-left (130,150) */} + <div + className="absolute flex items-center justify-center rounded-full border-4 border-n-1 bg-yellow-1 text-xl font-black" + style={{ width: 80, height: 80, top: 150, left: 130 }} + > + YOU + </div> + + {/* +$5 BADGES - at visual midpoint between node edges + Top edge: YOU bottom (y=150) to L1 top (y=94) -> visual mid = (150+94)/2 = 122, badge top = 114 + Bottom edges: at midpoint of line between centers + */} + <span + className="absolute rounded-full bg-primary-1 px-2 py-0.5 text-[10px] font-bold text-white" + style={{ top: 114, left: 155 }} + > + +$5 + </span> + <span + className="absolute rounded-full bg-primary-1 px-2 py-0.5 text-[10px] font-bold text-white" + style={{ top: 242, left: 103 }} + > + +$5 + </span> + <span + className="absolute rounded-full bg-primary-1 px-2 py-0.5 text-[10px] font-bold text-white" + style={{ top: 242, left: 207 }} + > + +$5 + </span> + + {/* L1: Top primary - center (170,70), top-left (146,46) */} + <div + className="absolute flex h-12 w-12 items-center justify-center rounded-full border-2 border-n-1 bg-secondary-3" + style={{ top: 46, left: 146 }} + > + <motion.img + src={HandThumbsUp.src} + alt="" + className="h-6 w-6" + animate={{ rotate: [0, 10, -10, 0] }} + transition={{ duration: 2, repeat: Infinity, delay: 0 }} + /> + </div> + + {/* L1: Bottom-left primary - center (70,310), top-left (46,286) */} + <div + className="absolute flex h-12 w-12 items-center justify-center rounded-full border-2 border-n-1 bg-secondary-3" + style={{ top: 286, left: 46 }} + > + <motion.img + src={HandThumbsUp.src} + alt="" + className="h-6 w-6" + animate={{ rotate: [0, 10, -10, 0] }} + transition={{ duration: 2, repeat: Infinity, delay: 0.3 }} + /> + </div> + + {/* L1: Bottom-right primary - center (270,310), top-left (246,286) */} + <div + className="absolute flex h-12 w-12 items-center justify-center rounded-full border-2 border-n-1 bg-secondary-3" + style={{ top: 286, left: 246 }} + > + <motion.img + src={HandThumbsUp.src} + alt="" + className="h-6 w-6" + animate={{ rotate: [0, 10, -10, 0] }} + transition={{ duration: 2, repeat: Infinity, delay: 0.6 }} + /> + </div> + + {/* L2 NODES - positioned directly at calculated centers + Each node is 32x32, so top-left = center - 16 + Top L1 (170,70): L2 at (131,31), (170,15), (209,31) + Bottom-left L1 (70,310): L2 at (75,365), (35,352), (15,315) + Bottom-right L1 (270,310): L2 at (325,315), (305,352), (265,365) + */} + + {/* Top L1's children - labels 2px gap from node edge */} + <div + className="absolute flex h-8 w-8 items-center justify-center rounded-full border border-n-1/60 bg-secondary-1" + style={{ top: 15, left: 115 }} + > + <motion.img + src={HandThumbsUp.src} + alt="" + className="h-4 w-4" + animate={{ rotate: [0, 8, -8, 0] }} + transition={{ duration: 2.5, repeat: Infinity, delay: 0.1 }} + /> + </div> + <span + className="absolute text-[8px] font-medium text-n-1/60" + style={{ top: 26, left: 98 }} + > + +% + </span> + + <div + className="absolute flex h-8 w-8 items-center justify-center rounded-full border border-n-1/60 bg-secondary-1" + style={{ top: -1, left: 154 }} + > + <motion.img + src={HandThumbsUp.src} + alt="" + className="h-4 w-4" + animate={{ rotate: [0, 8, -8, 0] }} + transition={{ duration: 2.5, repeat: Infinity, delay: 0.2 }} + /> + </div> + <span + className="absolute text-[8px] font-medium text-n-1/60" + style={{ top: -18, left: 163 }} + > + +% + </span> + + <div + className="absolute flex h-8 w-8 items-center justify-center rounded-full border border-n-1/60 bg-secondary-1" + style={{ top: 15, left: 193 }} + > + <motion.img + src={HandThumbsUp.src} + alt="" + className="h-4 w-4" + animate={{ rotate: [0, 8, -8, 0] }} + transition={{ duration: 2.5, repeat: Infinity, delay: 0.3 }} + /> + </div> + <span + className="absolute text-[8px] font-medium text-n-1/60" + style={{ top: 26, left: 227 }} + > + +% + </span> + + {/* Bottom-left L1's children */} + <div + className="absolute flex h-8 w-8 items-center justify-center rounded-full border border-n-1/60 bg-secondary-1" + style={{ top: 349, left: 59 }} + > + <motion.img + src={HandThumbsUp.src} + alt="" + className="h-4 w-4" + animate={{ rotate: [0, 8, -8, 0] }} + transition={{ duration: 2.5, repeat: Infinity, delay: 0.4 }} + /> + </div> + <span + className="absolute text-[8px] font-medium text-n-1/60" + style={{ top: 379, left: 68 }} + > + +% + </span> + + <div + className="absolute flex h-8 w-8 items-center justify-center rounded-full border border-n-1/60 bg-secondary-1" + style={{ top: 336, left: 19 }} + > + <motion.img + src={HandThumbsUp.src} + alt="" + className="h-4 w-4" + animate={{ rotate: [0, 8, -8, 0] }} + transition={{ duration: 2.5, repeat: Infinity, delay: 0.5 }} + /> + </div> + <span + className="absolute text-[8px] font-medium text-n-1/60" + style={{ top: 347, left: 2 }} + > + +% + </span> + + <div + className="absolute flex h-8 w-8 items-center justify-center rounded-full border border-n-1/60 bg-secondary-1" + style={{ top: 299, left: 0 }} + > + <motion.img + src={HandThumbsUp.src} + alt="" + className="h-4 w-4" + animate={{ rotate: [0, 8, -8, 0] }} + transition={{ duration: 2.5, repeat: Infinity, delay: 0.6 }} + /> + </div> + <span + className="absolute text-[8px] font-medium text-n-1/60" + style={{ top: 310, left: -13 }} + > + +% + </span> + + {/* Bottom-right L1's children */} + <div + className="absolute flex h-8 w-8 items-center justify-center rounded-full border border-n-1/60 bg-secondary-1" + style={{ top: 299, left: 309 }} + > + <motion.img + src={HandThumbsUp.src} + alt="" + className="h-4 w-4" + animate={{ rotate: [0, 8, -8, 0] }} + transition={{ duration: 2.5, repeat: Infinity, delay: 0.7 }} + /> + </div> + <span + className="absolute text-[8px] font-medium text-n-1/60" + style={{ top: 310, left: 343 }} + > + +% + </span> + + <div + className="absolute flex h-8 w-8 items-center justify-center rounded-full border border-n-1/60 bg-secondary-1" + style={{ top: 336, left: 289 }} + > + <motion.img + src={HandThumbsUp.src} + alt="" + className="h-4 w-4" + animate={{ rotate: [0, 8, -8, 0] }} + transition={{ duration: 2.5, repeat: Infinity, delay: 0.8 }} + /> + </div> + <span + className="absolute text-[8px] font-medium text-n-1/60" + style={{ top: 347, left: 323 }} + > + +% + </span> + + <div + className="absolute flex h-8 w-8 items-center justify-center rounded-full border border-n-1/60 bg-secondary-1" + style={{ top: 349, left: 249 }} + > + <motion.img + src={HandThumbsUp.src} + alt="" + className="h-4 w-4" + animate={{ rotate: [0, 8, -8, 0] }} + transition={{ duration: 2.5, repeat: Infinity, delay: 0.9 }} + /> + </div> + <span + className="absolute text-[8px] font-medium text-n-1/60" + style={{ top: 379, left: 258 }} + > + +% + </span> + </div> + </motion.div> + + {/* Copy */} + <motion.div + className="w-full text-center md:w-1/2 md:text-left" + initial={{ opacity: 0, x: 30 }} + whileInView={{ opacity: 1, x: 0 }} + viewport={{ once: true }} + transition={{ duration: 0.6 }} + > + <h2 className="font-roboto-flex-extrabold text-4xl font-extraBlack md:text-5xl"> + INVITE ONCE. + <br /> + EARN FOREVER. + </h2> + + <div className="mx-auto mt-8 w-fit space-y-4 md:mx-0"> + <RewardItem amount="$5" label="per Pioneer signup" /> + <RewardItem amount="%" label="from their card spending" /> + <RewardItem amount="+" label="from their invites too" /> + </div> + + <Button + shadowSize="4" + onClick={handleCTA} + className="mx-auto mt-8 bg-white px-10 py-4 text-lg font-extrabold hover:bg-white/90 md:mx-0" + > + START EARNING + </Button> + </motion.div> + </div> + </div> + </section> + + <Marquee {...marqueeProps} /> + + {/* Coverage - Yellow */} + <section id="coverage" className="relative overflow-hidden bg-yellow-1 py-20"> + {!isMobile && <FloatingStars />} + + <div className="relative mx-auto max-w-4xl px-4 text-center"> + <motion.h2 + className="font-roboto-flex-extrabold text-4xl font-extraBlack md:text-6xl" + initial={{ opacity: 0, y: 20 }} + whileInView={{ opacity: 1, y: 0 }} + viewport={{ once: true }} + > + ROLLING OUT + <br /> + GLOBALLY + </motion.h2> + + <p className="font-roboto-flex mt-6 text-xl"> + Starting with <strong>US</strong>, <strong>Latin America</strong>, and <strong>Africa</strong> + </p> + + <motion.div + className="mt-10 flex flex-wrap justify-center gap-3" + initial={{ opacity: 0 }} + whileInView={{ opacity: 1 }} + viewport={{ once: true }} + transition={{ delay: 0.2 }} + > + {/* Individual country flags */} + {[ + { name: 'United States', code: 'us' }, + { name: 'Brazil', code: 'br' }, + { name: 'Argentina', code: 'ar' }, + { name: 'Mexico', code: 'mx' }, + { name: 'Nigeria', code: 'ng' }, + { name: 'Kenya', code: 'ke' }, + { name: 'South Africa', code: 'za' }, + ].map((country, i) => ( + <motion.div + key={country.code} + className="flex items-center gap-2 rounded-full border-2 border-n-1 bg-white px-4 py-2 shadow-sm" + initial={{ opacity: 0, scale: 0.8 }} + whileInView={{ opacity: 1, scale: 1 }} + viewport={{ once: true }} + transition={{ delay: 0.1 * i }} + > + <Image + src={`https://flagcdn.com/w160/${country.code}.png`} + alt={`${country.name} flag`} + width={24} + height={24} + className="h-6 w-6 rounded-full object-cover" + /> + <span className="text-sm font-bold">{country.name}</span> + </motion.div> + ))} + + {/* Region pills without flags */} + <motion.span + className="rounded-full border-2 border-n-1 bg-white px-5 py-2 text-sm font-bold shadow-sm" + initial={{ opacity: 0, scale: 0.8 }} + whileInView={{ opacity: 1, scale: 1 }} + viewport={{ once: true }} + transition={{ delay: 0.7 }} + > + Latin America + </motion.span> + <motion.span + className="rounded-full border-2 border-n-1 bg-white px-5 py-2 text-sm font-bold shadow-sm" + initial={{ opacity: 0, scale: 0.8 }} + whileInView={{ opacity: 1, scale: 1 }} + viewport={{ once: true }} + transition={{ delay: 0.8 }} + > + Africa + </motion.span> + <motion.span + className="rounded-full border-2 border-n-1 bg-white px-5 py-2 text-sm font-bold shadow-sm" + initial={{ opacity: 0, scale: 0.8 }} + whileInView={{ opacity: 1, scale: 1 }} + viewport={{ once: true }} + transition={{ delay: 0.9 }} + > + + more + </motion.span> + </motion.div> + </div> + </section> + + <Marquee {...marqueeProps} /> + + {/* FAQ - Cream */} + <section id="faq" className="relative overflow-hidden py-12" style={{ backgroundColor: '#F9F4F0' }}> + {!isMobile && <FloatingStars />} + + <div className="relative mx-auto max-w-3xl px-4"> + <FAQsPanel heading="FAQ" questions={faqQuestions} /> + <motion.p + className="font-roboto-flex mt-8 text-center text-sm opacity-60" + initial={{ opacity: 0 }} + whileInView={{ opacity: 0.6 }} + viewport={{ once: true }} + > + More questions? Visit our{' '} + <a href="https://peanut.me/support" className="underline hover:text-primary-1"> + support page + </a> + </motion.p> + </div> + </section> + + <Marquee {...marqueeProps} /> + + {/* Final CTA - Secondary Yellow */} + <section id="join" className="relative overflow-hidden bg-secondary-1 py-24 text-center text-n-1"> + {!isMobile && <FloatingStars />} + + <div className="relative mx-auto max-w-2xl px-4"> + <motion.div + initial={{ opacity: 0, scale: 0.9 }} + whileInView={{ opacity: 1, scale: 1 }} + viewport={{ once: true }} + > + <span className="font-roboto-flex mb-4 inline-block rounded-full border-2 border-n-1 bg-white px-4 py-1 text-sm font-bold"> + Early access is open + </span> + </motion.div> + <motion.h2 + className="font-roboto-flex-extrabold text-4xl font-extraBlack md:text-6xl" + initial={{ opacity: 0, y: 20 }} + whileInView={{ opacity: 1, y: 0 }} + viewport={{ once: true }} + > + READY TO + <br /> + JOIN? + </motion.h2> + <motion.p + className="font-roboto-flex mt-4 text-xl" + initial={{ opacity: 0 }} + whileInView={{ opacity: 1 }} + viewport={{ once: true }} + transition={{ delay: 0.1 }} + > + $10 reserves your spot. And for every friend you invite, earn forever. + </motion.p> + <motion.div + initial={{ opacity: 0, y: 20 }} + whileInView={{ opacity: 1, y: 0 }} + viewport={{ once: true }} + transition={{ delay: 0.2 }} + > + <Button + shadowSize="4" + onClick={handleCTA} + className="mt-8 bg-white px-14 py-5 text-xl font-extrabold hover:bg-white/90" + > + BECOME A PIONEER + </Button> + </motion.div> + </div> + </section> + + <Marquee {...marqueeProps} /> + + <Footer /> + </Layout> + ) +} + +// Floating stars component - matches Manteca.tsx pattern exactly +const FloatingStars = () => { + // Match Manteca's star configuration pattern + const starConfigs = [ + { className: 'absolute left-12 top-10', delay: 0.2 }, + { className: 'absolute left-56 top-1/2', delay: 0.2 }, + { className: 'absolute bottom-20 left-20', delay: 0.2 }, + { className: 'absolute -top-16 right-20 md:top-10', delay: 0.6 }, + { className: 'absolute bottom-20 right-44', delay: 0.6 }, + ] + + return ( + <> + {starConfigs.map((config, index) => ( + <motion.img + key={index} + src={Star.src} + alt="" + width={50} + height={50} + className={`${config.className} hidden md:block`} + // Exact Manteca animation pattern + initial={{ opacity: 0, translateY: 20, translateX: 5, rotate: 22 }} + whileInView={{ opacity: 1, translateY: 0, translateX: 0, rotate: 22 }} + transition={{ type: 'spring', damping: 5, delay: config.delay }} + /> + ))} + </> + ) +} + +// Step card component +const StepCard = ({ + num, + title, + desc, + color, + textLight, + delay, +}: { + num: string + title: string + desc: string + color: string + textLight?: boolean + delay: number +}) => ( + <motion.div + className={`flex-1 rounded-2xl border-2 border-n-1 p-6 shadow-md ${color} ${textLight ? 'text-white' : ''}`} + initial={{ opacity: 0, y: 30 }} + whileInView={{ opacity: 1, y: 0 }} + viewport={{ once: true }} + transition={{ duration: 0.5, delay }} + whileHover={{ y: -4, transition: { duration: 0.2 } }} + > + <span className={`font-roboto-flex text-5xl font-black ${textLight ? 'text-white/30' : 'opacity-20'}`}> + {num} + </span> + <h3 className="font-roboto-flex-extrabold mt-2 text-2xl font-bold">{title}</h3> + <p className={`font-roboto-flex mt-2 ${textLight ? 'text-white/80' : 'opacity-70'}`}>{desc}</p> + </motion.div> +) + +// Reward item component +const RewardItem = ({ amount, label }: { amount: string; label: string }) => ( + <motion.div + className="flex items-center gap-4" + initial={{ opacity: 0, x: -20 }} + whileInView={{ opacity: 1, x: 0 }} + viewport={{ once: true }} + > + <span className="flex h-12 w-12 items-center justify-center rounded-full bg-yellow-1 text-lg font-black text-n-1"> + {amount} + </span> + <span className="font-roboto-flex text-lg">{label}</span> + </motion.div> +) + +export default CardLandingPage diff --git a/src/app/lp/card/page.tsx b/src/app/lp/card/page.tsx new file mode 100644 index 000000000..4952bf794 --- /dev/null +++ b/src/app/lp/card/page.tsx @@ -0,0 +1,14 @@ +import { generateMetadata as generateMeta } from '@/app/metadata' +import CardLandingPage from './CardLandingPage' + +export const metadata = generateMeta({ + title: 'Card Pioneers | Get Early Access to Peanut Card', + description: + 'Join Card Pioneers for early access to the Peanut Card. Reserve your spot with $10, earn $5 for every friend who joins, and spend your dollars globally.', + keywords: + 'peanut card, card pioneers, crypto card, digital dollars, global spending, early access, referral rewards, international card', +}) + +export default function CardLPPage() { + return <CardLandingPage /> +} diff --git a/src/app/lp/page.tsx b/src/app/lp/page.tsx new file mode 100644 index 000000000..e613c7406 --- /dev/null +++ b/src/app/lp/page.tsx @@ -0,0 +1,8 @@ +'use client' + +/** + * /lp route - Landing page that is ALWAYS accessible regardless of auth state. + * This allows logged-in users to view the marketing landing page. + * For SEO, the root "/" remains the canonical landing page URL. + */ +export { default } from '@/app/page' diff --git a/src/app/not-found.tsx b/src/app/not-found.tsx index 7a66bb1ad..b8ba35d04 100644 --- a/src/app/not-found.tsx +++ b/src/app/not-found.tsx @@ -1,19 +1,20 @@ -import Link from 'next/link' import PageContainer from '@/components/0_Bruddle/PageContainer' import PEANUTMAN_CRY from '@/animations/GIF_ALPHA_BACKGORUND/512X512_ALPHA_GIF_konradurban_05.gif' import Image from 'next/image' export default function NotFound() { return ( - <PageContainer className="min-h-[100dvh]"> + <PageContainer className="min-h-[100dvh] p-6"> <div className="my-auto flex h-full flex-col justify-center space-y-4"> <div className="shadow-4 flex w-full flex-col items-center space-y-2 border border-n-1 bg-white p-4"> <h1 className="text-3xl font-extrabold">Not found</h1> <Image src={PEANUTMAN_CRY.src} className="" alt="Peanutman crying 😭" width={96} height={96} /> - <p>Woah there buddy, you're not supposed to be here.</p> - <Link href="/" className="btn btn-purple btn-medium shadow-4"> - Take me home, I'm scared - </Link> + <p>Woah there buddy, you're not supposed to be here.</p> + {/* Use <a> instead of <Link> to force full page load — avoids React error #310 + caused by hook count mismatch between 404 (no mobile-ui layout) and home (with providers) */} + <a href="/" className="btn btn-purple shadow-4"> + Take me home, I'm scared + </a> </div> </div> </PageContainer> diff --git a/src/app/page.tsx b/src/app/page.tsx index f36aa3352..e129e937c 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -11,10 +11,12 @@ import { SendInSeconds, YourMoney, RegulatedRails, + CardPioneers, } from '@/components/LandingPage' import Footer from '@/components/LandingPage/Footer' import Manteca from '@/components/LandingPage/Manteca' import TweetCarousel from '@/components/LandingPage/TweetCarousel' +import underMaintenanceConfig from '@/config/underMaintenance.config' import { useFooterVisibility } from '@/context/footerVisibility' import { useEffect, useState, useRef } from 'react' @@ -196,6 +198,12 @@ export default function LandingPage() { <Marquee {...marqueeProps} /> <Manteca /> <Marquee {...marqueeProps} /> + {!underMaintenanceConfig.disableCardPioneers && ( + <> + <CardPioneers /> + <Marquee {...marqueeProps} /> + </> + )} <TweetCarousel /> <Marquee {...marqueeProps} /> <RegulatedRails /> diff --git a/src/assets/badges/index.ts b/src/assets/badges/index.ts index 3c9667660..f75d53628 100644 --- a/src/assets/badges/index.ts +++ b/src/assets/badges/index.ts @@ -1,3 +1,5 @@ +// TODO: consolidate these with public/badges - we have duplicate badge systems +// These tier badges should probably move to public/badges and use CODE_TO_PATH in badge.utils.ts export { default as TIER_0_BADGE } from './tier0.svg' export { default as TIER_1_BADGE } from './tier1.svg' export { default as TIER_2_BADGE } from './tier2.svg' diff --git a/src/assets/cards/Cart Gradient 10.svg b/src/assets/cards/Cart Gradient 10.svg new file mode 100644 index 000000000..c4c030cb6 --- /dev/null +++ b/src/assets/cards/Cart Gradient 10.svg @@ -0,0 +1,66 @@ +<svg width="1208" height="765" viewBox="0 0 1208 765" fill="none" xmlns="http://www.w3.org/2000/svg"> +<rect x="2.1533" y="2.1533" width="1203.69" height="760.114" rx="62.4456" fill="#FF90E8" stroke="url(#paint0_linear_17007_6901)" stroke-width="4.3066"/> +<mask id="mask0_17007_6901" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="0" y="0" width="1208" height="765"> +<rect width="1208" height="764.421" rx="64.5989" fill="#FF90E8"/> +</mask> +<g mask="url(#mask0_17007_6901)"> +<path d="M870.408 367.248C860.33 355.55 855.558 339.496 857.599 324.213C859.212 310.018 866.931 297.003 877.809 287.986L900 277.484C908.848 275.879 917.878 276.139 926.832 276.414C972.69 278.348 1018.03 289.395 1060.48 306.973C1113.05 328.776 1160.97 361.528 1201.37 401.757C1230.92 431.151 1256.53 464.441 1278.23 500.032C1282.56 506.983 1286.46 514.204 1290.74 521.196L1311.36 564.772C1315.58 582.575 1310.39 602.267 1297.79 615.409C1286.37 627.593 1269.19 634.059 1252.56 632.186C1238.18 630.799 1224.5 623.381 1215.37 612.098C1209.57 605.196 1206.5 596.603 1202.24 588.76C1174.96 535.631 1137.97 486.665 1090.35 450.302C1062.7 429.145 1031.66 412.446 998.75 401.308C970.337 392.004 940.541 385.906 910.591 386.669C895.309 386.269 880.308 379.009 870.408 367.248ZM888.351 347.128C894.029 355.964 904.741 360.973 915.087 359.988C940.483 359.84 965.789 364.194 990.272 370.941C1050.18 387.509 1104.92 421.467 1148.04 466.369C1181.46 500.842 1208.36 541.298 1229.65 584.264C1232.06 589.312 1234.42 594.614 1238.75 598.334C1247.92 606.962 1262.91 608.334 1273.32 601.328C1284.79 594.215 1289.52 578.334 1283.86 565.979C1255.4 506.525 1217.13 451.173 1168.2 406.814C1128.41 370.613 1081.65 342.053 1031.06 324.07C992.967 310.775 952.8 302.468 912.431 302.912C901.189 302.688 890.196 309.714 885.965 320.192C882.189 328.801 883.154 339.266 888.351 347.128Z" fill="black"/> +<path d="M888.351 347.128C883.154 339.266 882.189 328.801 885.965 320.192C890.196 309.714 901.189 302.688 912.431 302.912C952.8 302.468 992.967 310.775 1031.06 324.07C1081.65 342.053 1128.41 370.613 1168.2 406.814C1217.13 451.173 1255.4 506.525 1283.86 565.979C1289.52 578.334 1284.79 594.215 1273.32 601.328C1262.91 608.334 1247.92 606.962 1238.75 598.334C1234.42 594.614 1232.06 589.312 1229.65 584.264C1208.36 541.298 1181.46 500.842 1148.04 466.369C1104.92 421.467 1050.18 387.509 990.272 370.941C965.789 364.194 940.483 359.84 915.087 359.988C904.741 360.973 894.029 355.964 888.351 347.128Z" fill="#FFCA05"/> +<path d="M678.748 49.2551C656.687 33.5671 624.41 34.4112 603.049 50.9612C591.981 59.3984 584.456 72.003 581.568 85.5185C577.784 102.757 580.528 120.742 585.906 137.341C591.289 153.882 599.273 169.472 608.374 184.272C602.349 185.836 596.381 187.657 590.606 189.99C578.275 194.957 566.287 202.057 558.262 212.867C553.442 219.189 550.933 226.871 549.104 234.499C546.421 245.851 546.372 258.029 550.286 269.11C552.357 275.326 555.816 280.973 559.829 286.127C552.563 290.823 546.359 297.256 542.244 304.867C539.468 309.976 537.857 315.628 537 321.355L537 332.875C538.24 345.084 544.275 356.512 552.933 365.136C555.508 367.815 558.369 370.196 561.31 372.457C556.004 377.136 551.286 382.556 548.006 388.848C542.699 398.715 541.284 410.449 543.565 421.374C545.6 431.54 550.269 441.012 556.066 449.56C563.778 460.877 574.847 469.918 587.598 475.045C596.279 478.671 605.589 480.523 614.926 481.403L634.47 481.403C652.286 479.848 669.831 475.587 686.509 469.185C700.131 474.365 715.047 475.401 729.458 473.917C745.512 472.215 761.168 467.039 775.084 458.9C786.385 452.36 796.422 443.78 804.987 433.975C813.516 438.724 823.134 441.648 832.917 442.056C842.633 442.487 852.457 440.492 861.218 436.285C868.305 432.966 874.679 428.265 880.289 422.845C890.719 412.582 898.387 399.799 903.756 386.275C911.066 367.815 914.338 347.928 914.57 328.13C914.748 307.919 911.66 287.655 905.26 268.461C898.538 248.632 888.206 229.63 873.063 214.911C863.021 205.225 850.658 197.521 836.854 194.633C823.397 191.754 809.026 193.842 796.846 200.169C774.352 180.802 747.502 167.624 721.946 152.856C718.599 151.039 715.497 148.595 713.444 145.347C711.11 141.589 710.155 137.194 709.535 132.876C708.401 124.07 708.343 115.171 707.307 106.356C705.964 94.0445 702.737 81.8219 696.761 70.9056C692.253 62.6328 686.585 54.7155 678.748 49.2551ZM651.742 63.0416C658.579 64.5789 665.176 67.9599 669.706 73.3803C672.669 77.0902 675.16 81.1688 677.173 85.4607C681.283 94.08 682.961 103.61 683.76 113.051C684.711 123.617 684.653 134.36 687.362 144.69C689.388 152.567 693.325 160.058 699.229 165.736C704.549 171.152 711.498 174.44 717.974 178.23C735.18 187.982 752.782 197.183 768.881 208.73C782.1 218.181 794.298 229.439 803.055 243.203C808.705 251.947 812.829 261.615 815.587 271.625C816.493 274.757 818.796 277.418 821.701 278.898C826.464 281.395 832.792 280.111 836.238 276.01C838.751 273.122 839.768 268.999 838.795 265.294C836.492 256.799 833.337 248.526 829.324 240.684C825.375 232.856 820.425 225.574 815.034 218.669C822.826 216.408 831.333 217.123 838.773 220.269C848.739 224.37 856.933 231.82 863.548 240.155C869.805 248.024 874.683 256.896 878.642 266.098C887.019 286.082 890.862 307.861 890.456 329.485C890.014 349.67 885.988 370.107 876.437 388.057C872.911 394.561 868.627 400.724 863.262 405.868C856.969 412.026 848.909 416.709 840.058 417.842C832.917 418.829 825.593 417.318 819.117 414.27C821.862 409.392 824.509 404.451 826.767 399.328C827.923 396.587 829.494 393.833 829.338 390.758C829.329 385.746 825.834 380.984 821.01 379.517C815.44 377.567 808.767 380.464 806.384 385.831C802.872 394.29 798.556 402.439 793.267 409.934C785.224 421.459 774.781 431.38 762.561 438.426C748.77 446.402 732.828 450.729 716.863 450.573C708.99 450.414 700.992 449.352 693.722 446.188C691.441 445.233 689.397 443.785 687.094 442.883C674.749 448.583 661.677 452.679 648.327 455.305C636.746 457.5 624.825 458.549 613.078 457.091C603.433 455.878 593.855 452.675 586.107 446.708C579.43 441.696 574.476 434.748 570.884 427.297C568.456 422.285 566.644 416.838 566.617 411.222C566.532 406.642 567.853 402.043 570.37 398.2C574.084 392.38 579.716 388.021 585.741 384.756C603.313 389.963 622.035 390.114 640.089 387.692C643.423 387.097 647.042 387.004 649.943 385.062C654.237 382.401 656.415 376.887 655.107 372.027C653.75 366.335 647.756 362.225 641.923 363.096C630.154 365.238 618.059 365.855 606.156 364.522C597.078 363.443 587.915 361.119 580.18 356.099C571.848 351.269 564.309 343.898 561.725 334.404C559.971 327.877 560.659 320.564 564.305 314.779C568.183 308.559 574.7 304.551 581.345 301.792C591.57 306.311 602.732 308.337 613.841 309.097C623.99 309.745 634.206 309.43 644.306 308.235C647.051 307.879 649.97 307.688 652.335 306.111C656.178 303.823 658.463 299.255 658.012 294.83C657.62 289.725 653.598 285.176 648.546 284.189C645.721 283.479 642.874 284.38 640.048 284.594C627.824 285.86 615.367 285.94 603.263 283.599C595.699 282.092 588.049 279.467 582.269 274.184C579.069 272.256 576.971 269.03 575.092 265.898C570.464 257.674 570.513 247.682 572.843 238.76C573.936 234.882 574.967 230.852 577.346 227.515C580.698 222.797 585.509 219.34 590.503 216.519C599.144 211.769 608.624 208.748 618.219 206.589C624.24 205.269 630.346 204.172 636.531 204.185C653.393 203.901 670.29 204.812 687 207.086C690.098 207.406 693.209 208.504 696.324 207.717C701.501 206.669 705.607 201.893 705.759 196.619C706.165 190.981 701.97 185.463 696.409 184.33C687.331 182.699 678.137 181.802 668.938 181.117C657.423 180.327 645.873 179.944 634.331 180.251C629.797 173.378 625.508 166.34 621.585 159.107C613.738 144.419 607.039 128.811 604.62 112.243C603.183 101.913 603.585 90.8856 608.356 81.4043C611.949 74.0779 618.393 68.2887 625.941 65.192C634.032 61.7976 643.195 61.1089 651.742 63.0416Z" fill="black"/> +<path d="M651.742 63.0416C643.195 61.1089 634.032 61.7976 625.941 65.192C618.393 68.2887 611.949 74.0779 608.356 81.4043C603.585 90.8856 603.183 101.913 604.62 112.243C607.039 128.811 613.738 144.419 621.585 159.107C625.508 166.34 629.797 173.378 634.331 180.251C645.873 179.944 657.423 180.327 668.938 181.117C678.137 181.802 687.331 182.699 696.409 184.33C701.97 185.463 706.165 190.981 705.759 196.619C705.607 201.893 701.501 206.669 696.324 207.717C693.209 208.504 690.098 207.406 687 207.086C670.29 204.812 653.393 203.901 636.531 204.185C630.346 204.172 624.24 205.269 618.219 206.589C608.624 208.748 599.144 211.769 590.503 216.519C585.509 219.34 580.698 222.797 577.346 227.515C574.967 230.852 573.936 234.882 572.843 238.76C570.513 247.682 570.464 257.674 575.092 265.898C576.971 269.03 579.069 272.256 582.269 274.184C588.049 279.467 595.699 282.092 603.263 283.599C615.367 285.94 627.824 285.86 640.048 284.594C642.874 284.38 645.721 283.479 648.546 284.189C653.598 285.176 657.62 289.725 658.012 294.83C658.463 299.255 656.178 303.823 652.335 306.111C649.97 307.688 647.051 307.879 644.306 308.235C634.206 309.43 623.99 309.745 613.841 309.097C602.732 308.337 591.57 306.311 581.345 301.792C574.7 304.551 568.183 308.559 564.305 314.779C560.659 320.564 559.971 327.877 561.725 334.404C564.309 343.898 571.848 351.269 580.18 356.099C587.915 361.119 597.078 363.443 606.156 364.522C618.059 365.855 630.154 365.238 641.923 363.096C647.756 362.225 653.75 366.335 655.107 372.027C656.415 376.887 654.237 382.401 649.943 385.062C647.042 387.004 643.423 387.097 640.089 387.692C622.035 390.114 603.313 389.963 585.741 384.756C579.716 388.021 574.084 392.38 570.37 398.2C567.853 402.043 566.532 406.642 566.617 411.222C566.644 416.838 568.456 422.285 570.884 427.297C574.476 434.748 579.43 441.696 586.107 446.708C593.855 452.675 603.433 455.878 613.078 457.091C624.825 458.549 636.746 457.5 648.327 455.305C661.677 452.679 674.749 448.583 687.094 442.883C689.397 443.785 691.441 445.233 693.722 446.188C700.992 449.352 708.99 450.414 716.863 450.573C732.828 450.729 748.77 446.402 762.561 438.426C774.781 431.38 785.224 421.459 793.267 409.934C798.556 402.439 802.872 394.29 806.384 385.831C808.767 380.464 815.44 377.567 821.01 379.517C825.834 380.984 829.329 385.746 829.338 390.758C829.494 393.833 827.923 396.587 826.767 399.328C824.509 404.451 821.862 409.392 819.117 414.27C825.593 417.318 832.917 418.829 840.058 417.842C848.909 416.709 856.969 412.026 863.262 405.868C868.627 400.724 872.911 394.561 876.437 388.057C885.988 370.107 890.014 349.67 890.456 329.485C890.862 307.861 887.019 286.082 878.642 266.098C874.683 256.896 869.805 248.024 863.548 240.155C856.933 231.82 848.739 224.37 838.773 220.269C831.333 217.123 822.826 216.408 815.034 218.669C820.425 225.574 825.375 232.856 829.324 240.684C833.337 248.526 836.492 256.799 838.795 265.294C839.768 268.999 838.751 273.122 836.238 276.01C832.792 280.111 826.464 281.395 821.701 278.898C818.796 277.418 816.493 274.757 815.587 271.625C812.829 261.615 808.705 251.947 803.055 243.203C794.298 229.439 782.1 218.181 768.881 208.73C752.782 197.183 735.18 187.982 717.974 178.23C711.498 174.44 704.549 171.152 699.229 165.736C693.325 160.058 689.388 152.567 687.362 144.69C684.653 134.36 684.711 123.617 683.76 113.051C682.961 103.61 681.283 94.08 677.173 85.4607C675.16 81.1688 672.669 77.0902 669.706 73.3803C665.176 67.9599 658.579 64.5789 651.742 63.0416Z" fill="white"/> +<mask id="path-5-outside-1_17007_6901" maskUnits="userSpaceOnUse" x="96" y="670.175" width="223" height="35" fill="black"> +<rect fill="white" x="96" y="670.175" width="223" height="35"/> +<path d="M97.4393 703.175L97.4393 672.558L104.652 672.558L113.757 690.243C113.968 690.691 114.157 691.147 114.325 691.609C114.507 692.058 114.668 692.507 114.809 692.955L114.935 692.955C114.921 692.479 114.907 692.002 114.893 691.525C114.893 691.049 114.893 690.572 114.893 690.095L114.893 672.558L120.907 672.558L120.907 703.175L113.757 703.175L104.526 685.448C104.316 685.028 104.126 684.593 103.958 684.144C103.79 683.696 103.643 683.247 103.516 682.799L103.369 682.799C103.397 683.275 103.411 683.745 103.411 684.208C103.425 684.656 103.432 685.126 103.432 685.616L103.432 703.175L97.4393 703.175ZM125.617 691.988L125.617 672.558L132.62 672.558L132.62 692.724C132.62 694.897 133.026 696.432 133.839 697.329C134.652 698.212 135.781 698.654 137.225 698.654C138.627 698.654 139.734 698.212 140.547 697.329C141.374 696.432 141.788 694.897 141.788 692.724L141.788 672.558L148.727 672.558L148.727 691.988C148.727 695.997 147.676 698.948 145.573 700.841C143.484 702.733 140.709 703.68 137.246 703.68C133.727 703.68 130.909 702.733 128.792 700.841C126.676 698.948 125.617 695.997 125.617 691.988ZM151.335 678.046L151.335 672.558L175.37 672.558L175.37 678.046L166.896 678.046L166.896 703.175L159.83 703.175L159.83 678.046L151.335 678.046ZM176.274 678.046L176.274 672.558L200.31 672.558L200.31 678.046L191.835 678.046L191.835 703.175L184.77 703.175L184.77 678.046L176.274 678.046ZM210.487 703.175L210.487 691.736L200.499 672.558L208.174 672.558L213.494 683.072C213.663 683.422 213.817 683.759 213.957 684.081C214.097 684.39 214.23 684.712 214.357 685.049L214.462 685.049C214.588 684.712 214.714 684.39 214.84 684.081C214.98 683.773 215.142 683.436 215.324 683.072L220.644 672.558L227.436 672.558L217.574 691.567L217.574 703.175L210.487 703.175ZM246.95 703.175L246.95 691.736L236.962 672.558L244.637 672.558L249.958 683.072C250.126 683.422 250.28 683.759 250.42 684.081C250.56 684.39 250.694 684.712 250.82 685.049L250.925 685.049C251.051 684.712 251.177 684.39 251.303 684.081C251.444 683.773 251.605 683.436 251.787 683.072L257.107 672.558L263.899 672.558L254.037 691.567L254.037 703.175L246.95 703.175ZM263.92 688.75L263.92 686.983C263.92 681.908 265.133 678.151 267.558 675.712C269.998 673.273 273.138 672.053 276.979 672.053C280.806 672.053 283.939 673.273 286.379 675.712C288.832 678.151 290.058 681.908 290.058 686.983L290.058 688.75C290.058 693.824 288.832 697.582 286.379 700.021C283.939 702.46 280.806 703.68 276.979 703.68C273.138 703.68 269.998 702.46 267.558 700.021C265.133 697.582 263.92 693.824 263.92 688.75ZM271.175 690.243C271.175 693.187 271.694 695.331 272.731 696.677C273.769 698.009 275.184 698.675 276.979 698.675C278.773 698.675 280.189 698.009 281.227 696.677C282.278 695.331 282.804 693.187 282.804 690.243L282.804 685.511C282.804 682.567 282.278 680.436 281.227 679.119C280.189 677.787 278.773 677.121 276.979 677.121C275.184 677.121 273.769 677.787 272.731 679.119C271.694 680.436 271.175 682.567 271.175 685.511L271.175 690.243ZM293.928 691.988L293.928 672.558L300.93 672.558L300.93 692.724C300.93 694.897 301.337 696.432 302.15 697.329C302.963 698.212 304.091 698.654 305.535 698.654C306.937 698.654 308.045 698.212 308.858 697.329C309.685 696.432 310.098 694.897 310.098 692.724L310.098 672.558L317.038 672.558L317.038 691.988C317.038 695.997 315.986 698.948 313.884 700.841C311.795 702.733 309.019 703.68 305.556 703.68C302.038 703.68 299.22 702.733 297.103 700.841C294.986 698.948 293.928 695.997 293.928 691.988Z"/> +</mask> +<path d="M97.4393 703.175L97.4393 672.558L104.652 672.558L113.757 690.243C113.968 690.691 114.157 691.147 114.325 691.609C114.507 692.058 114.668 692.507 114.809 692.955L114.935 692.955C114.921 692.479 114.907 692.002 114.893 691.525C114.893 691.049 114.893 690.572 114.893 690.095L114.893 672.558L120.907 672.558L120.907 703.175L113.757 703.175L104.526 685.448C104.316 685.028 104.126 684.593 103.958 684.144C103.79 683.696 103.643 683.247 103.516 682.799L103.369 682.799C103.397 683.275 103.411 683.745 103.411 684.208C103.425 684.656 103.432 685.126 103.432 685.616L103.432 703.175L97.4393 703.175ZM125.617 691.988L125.617 672.558L132.62 672.558L132.62 692.724C132.62 694.897 133.026 696.432 133.839 697.329C134.652 698.212 135.781 698.654 137.225 698.654C138.627 698.654 139.734 698.212 140.547 697.329C141.374 696.432 141.788 694.897 141.788 692.724L141.788 672.558L148.727 672.558L148.727 691.988C148.727 695.997 147.676 698.948 145.573 700.841C143.484 702.733 140.709 703.68 137.246 703.68C133.727 703.68 130.909 702.733 128.792 700.841C126.676 698.948 125.617 695.997 125.617 691.988ZM151.335 678.046L151.335 672.558L175.37 672.558L175.37 678.046L166.896 678.046L166.896 703.175L159.83 703.175L159.83 678.046L151.335 678.046ZM176.274 678.046L176.274 672.558L200.31 672.558L200.31 678.046L191.835 678.046L191.835 703.175L184.77 703.175L184.77 678.046L176.274 678.046ZM210.487 703.175L210.487 691.736L200.499 672.558L208.174 672.558L213.494 683.072C213.663 683.422 213.817 683.759 213.957 684.081C214.097 684.39 214.23 684.712 214.357 685.049L214.462 685.049C214.588 684.712 214.714 684.39 214.84 684.081C214.98 683.773 215.142 683.436 215.324 683.072L220.644 672.558L227.436 672.558L217.574 691.567L217.574 703.175L210.487 703.175ZM246.95 703.175L246.95 691.736L236.962 672.558L244.637 672.558L249.958 683.072C250.126 683.422 250.28 683.759 250.42 684.081C250.56 684.39 250.694 684.712 250.82 685.049L250.925 685.049C251.051 684.712 251.177 684.39 251.303 684.081C251.444 683.773 251.605 683.436 251.787 683.072L257.107 672.558L263.899 672.558L254.037 691.567L254.037 703.175L246.95 703.175ZM263.92 688.75L263.92 686.983C263.92 681.908 265.133 678.151 267.558 675.712C269.998 673.273 273.138 672.053 276.979 672.053C280.806 672.053 283.939 673.273 286.379 675.712C288.832 678.151 290.058 681.908 290.058 686.983L290.058 688.75C290.058 693.824 288.832 697.582 286.379 700.021C283.939 702.46 280.806 703.68 276.979 703.68C273.138 703.68 269.998 702.46 267.558 700.021C265.133 697.582 263.92 693.824 263.92 688.75ZM271.175 690.243C271.175 693.187 271.694 695.331 272.731 696.677C273.769 698.009 275.184 698.675 276.979 698.675C278.773 698.675 280.189 698.009 281.227 696.677C282.278 695.331 282.804 693.187 282.804 690.243L282.804 685.511C282.804 682.567 282.278 680.436 281.227 679.119C280.189 677.787 278.773 677.121 276.979 677.121C275.184 677.121 273.769 677.787 272.731 679.119C271.694 680.436 271.175 682.567 271.175 685.511L271.175 690.243ZM293.928 691.988L293.928 672.558L300.93 672.558L300.93 692.724C300.93 694.897 301.337 696.432 302.15 697.329C302.963 698.212 304.091 698.654 305.535 698.654C306.937 698.654 308.045 698.212 308.858 697.329C309.685 696.432 310.098 694.897 310.098 692.724L310.098 672.558L317.038 672.558L317.038 691.988C317.038 695.997 315.986 698.948 313.884 700.841C311.795 702.733 309.019 703.68 305.556 703.68C302.038 703.68 299.22 702.733 297.103 700.841C294.986 698.948 293.928 695.997 293.928 691.988Z" fill="white"/> +<path d="M97.4393 703.175L96.4393 703.175L96.4393 704.175L97.4393 704.175L97.4393 703.175ZM97.4393 672.558L97.4393 671.558L96.4393 671.558L96.4393 672.558L97.4393 672.558ZM104.652 672.558L105.541 672.1L105.262 671.558L104.652 671.558L104.652 672.558ZM113.757 690.243L114.663 689.818L114.655 689.801L114.646 689.785L113.757 690.243ZM114.325 691.609L113.385 691.951L113.392 691.969L113.399 691.986L114.325 691.609ZM114.809 692.955L113.854 693.254L114.073 693.955L114.809 693.955L114.809 692.955ZM114.935 692.955L114.935 693.955L115.965 693.955L115.934 692.926L114.935 692.955ZM114.893 691.525L113.893 691.525L113.893 691.54L113.893 691.555L114.893 691.525ZM114.893 672.558L114.893 671.558L113.893 671.558L113.893 672.558L114.893 672.558ZM120.907 672.558L121.907 672.558L121.907 671.558L120.907 671.558L120.907 672.558ZM120.907 703.175L120.907 704.175L121.907 704.175L121.907 703.175L120.907 703.175ZM113.757 703.175L112.87 703.637L113.151 704.175L113.757 704.175L113.757 703.175ZM104.526 685.448L103.631 685.895L103.635 685.903L103.639 685.91L104.526 685.448ZM103.516 682.799L104.479 682.528L104.274 681.799L103.516 681.799L103.516 682.799ZM103.369 682.799L103.369 681.799L102.309 681.799L102.371 682.857L103.369 682.799ZM103.411 684.208L102.411 684.208L102.411 684.223L102.412 684.239L103.411 684.208ZM103.432 703.175L103.432 704.175L104.432 704.175L104.432 703.175L103.432 703.175ZM97.4393 703.175L98.4393 703.175L98.4393 672.558L97.4393 672.558L96.4393 672.558L96.4393 703.175L97.4393 703.175ZM97.4393 672.558L97.4393 673.558L104.652 673.558L104.652 672.558L104.652 671.558L97.4393 671.558L97.4393 672.558ZM104.652 672.558L103.763 673.016L112.868 690.7L113.757 690.243L114.646 689.785L105.541 672.1L104.652 672.558ZM113.757 690.243L112.852 690.667C113.049 691.089 113.227 691.517 113.385 691.951L114.325 691.609L115.265 691.268C115.086 690.777 114.886 690.294 114.663 689.818L113.757 690.243ZM114.325 691.609L113.399 691.986C113.571 692.41 113.722 692.832 113.854 693.254L114.809 692.955L115.763 692.657C115.614 692.181 115.444 691.707 115.251 691.233L114.325 691.609ZM114.809 692.955L114.809 693.955L114.935 693.955L114.935 692.955L114.935 691.955L114.809 691.955L114.809 692.955ZM114.935 692.955L115.934 692.926C115.933 692.868 115.931 692.805 115.929 692.747C115.927 692.69 115.926 692.626 115.924 692.568C115.922 692.511 115.92 692.447 115.919 692.39C115.917 692.332 115.915 692.269 115.913 692.211C115.909 692.071 115.907 691.993 115.903 691.853C115.899 691.714 115.896 691.636 115.892 691.496L114.893 691.525L113.893 691.555C113.895 691.615 113.897 691.673 113.898 691.734C113.9 691.794 113.902 691.852 113.904 691.912C113.905 691.973 113.907 692.031 113.909 692.091C113.911 692.151 113.912 692.209 113.914 692.27C113.918 692.406 113.921 692.491 113.925 692.627C113.929 692.763 113.931 692.849 113.935 692.985L114.935 692.955ZM114.893 691.525L115.893 691.525C115.893 691.524 115.893 691.524 115.893 691.523C115.893 691.522 115.893 691.521 115.893 691.52C115.893 691.519 115.893 691.518 115.893 691.517C115.893 691.516 115.893 691.515 115.893 691.514C115.893 691.513 115.893 691.512 115.893 691.511C115.893 691.51 115.893 691.51 115.893 691.509C115.893 691.508 115.893 691.507 115.893 691.506C115.893 691.505 115.893 691.504 115.893 691.503C115.893 691.502 115.893 691.501 115.893 691.5C115.893 691.499 115.893 691.498 115.893 691.497C115.893 691.497 115.893 691.496 115.893 691.495C115.893 691.494 115.893 691.493 115.893 691.492C115.893 691.491 115.893 691.49 115.893 691.489C115.893 691.488 115.893 691.487 115.893 691.486C115.893 691.485 115.893 691.484 115.893 691.483C115.893 691.483 115.893 691.482 115.893 691.481C115.893 691.48 115.893 691.479 115.893 691.478C115.893 691.477 115.893 691.476 115.893 691.475C115.893 691.474 115.893 691.473 115.893 691.472C115.893 691.471 115.893 691.47 115.893 691.47C115.893 691.469 115.893 691.468 115.893 691.467C115.893 691.466 115.893 691.465 115.893 691.464C115.893 691.463 115.893 691.462 115.893 691.461C115.893 691.46 115.893 691.459 115.893 691.458C115.893 691.457 115.893 691.456 115.893 691.456C115.893 691.455 115.893 691.454 115.893 691.453C115.893 691.452 115.893 691.451 115.893 691.45C115.893 691.449 115.893 691.448 115.893 691.447C115.893 691.446 115.893 691.445 115.893 691.444C115.893 691.443 115.893 691.443 115.893 691.442C115.893 691.441 115.893 691.44 115.893 691.439C115.893 691.438 115.893 691.437 115.893 691.436C115.893 691.435 115.893 691.434 115.893 691.433C115.893 691.432 115.893 691.431 115.893 691.43C115.893 691.429 115.893 691.429 115.893 691.428C115.893 691.427 115.893 691.426 115.893 691.425C115.893 691.424 115.893 691.423 115.893 691.422C115.893 691.421 115.893 691.42 115.893 691.419C115.893 691.418 115.893 691.417 115.893 691.416C115.893 691.416 115.893 691.415 115.893 691.414C115.893 691.413 115.893 691.412 115.893 691.411C115.893 691.41 115.893 691.409 115.893 691.408C115.893 691.407 115.893 691.406 115.893 691.405C115.893 691.404 115.893 691.403 115.893 691.402C115.893 691.402 115.893 691.401 115.893 691.4C115.893 691.399 115.893 691.398 115.893 691.397C115.893 691.396 115.893 691.395 115.893 691.394C115.893 691.393 115.893 691.392 115.893 691.391C115.893 691.39 115.893 691.389 115.893 691.389C115.893 691.388 115.893 691.387 115.893 691.386C115.893 691.385 115.893 691.384 115.893 691.383C115.893 691.382 115.893 691.381 115.893 691.38C115.893 691.379 115.893 691.378 115.893 691.377C115.893 691.376 115.893 691.375 115.893 691.375C115.893 691.374 115.893 691.373 115.893 691.372C115.893 691.371 115.893 691.37 115.893 691.369C115.893 691.368 115.893 691.367 115.893 691.366C115.893 691.365 115.893 691.364 115.893 691.363C115.893 691.362 115.893 691.362 115.893 691.361C115.893 691.36 115.893 691.359 115.893 691.358C115.893 691.357 115.893 691.356 115.893 691.355C115.893 691.354 115.893 691.353 115.893 691.352C115.893 691.351 115.893 691.35 115.893 691.349C115.893 691.348 115.893 691.348 115.893 691.347C115.893 691.346 115.893 691.345 115.893 691.344C115.893 691.343 115.893 691.342 115.893 691.341C115.893 691.34 115.893 691.339 115.893 691.338C115.893 691.337 115.893 691.336 115.893 691.335C115.893 691.335 115.893 691.334 115.893 691.333C115.893 691.332 115.893 691.331 115.893 691.33C115.893 691.329 115.893 691.328 115.893 691.327C115.893 691.326 115.893 691.325 115.893 691.324C115.893 691.323 115.893 691.322 115.893 691.321C115.893 691.321 115.893 691.32 115.893 691.319C115.893 691.318 115.893 691.317 115.893 691.316C115.893 691.315 115.893 691.314 115.893 691.313C115.893 691.312 115.893 691.311 115.893 691.31C115.893 691.309 115.893 691.308 115.893 691.308C115.893 691.307 115.893 691.306 115.893 691.305C115.893 691.304 115.893 691.303 115.893 691.302C115.893 691.301 115.893 691.3 115.893 691.299C115.893 691.298 115.893 691.297 115.893 691.296C115.893 691.295 115.893 691.294 115.893 691.294C115.893 691.293 115.893 691.292 115.893 691.291C115.893 691.29 115.893 691.289 115.893 691.288C115.893 691.287 115.893 691.286 115.893 691.285C115.893 691.284 115.893 691.283 115.893 691.282C115.893 691.281 115.893 691.281 115.893 691.28C115.893 691.279 115.893 691.278 115.893 691.277C115.893 691.276 115.893 691.275 115.893 691.274C115.893 691.273 115.893 691.272 115.893 691.271C115.893 691.27 115.893 691.269 115.893 691.268C115.893 691.268 115.893 691.267 115.893 691.266C115.893 691.265 115.893 691.264 115.893 691.263C115.893 691.262 115.893 691.261 115.893 691.26C115.893 691.259 115.893 691.258 115.893 691.257C115.893 691.256 115.893 691.255 115.893 691.254C115.893 691.254 115.893 691.253 115.893 691.252C115.893 691.251 115.893 691.25 115.893 691.249C115.893 691.248 115.893 691.247 115.893 691.246C115.893 691.245 115.893 691.244 115.893 691.243C115.893 691.242 115.893 691.241 115.893 691.241C115.893 691.24 115.893 691.239 115.893 691.238C115.893 691.237 115.893 691.236 115.893 691.235C115.893 691.234 115.893 691.233 115.893 691.232C115.893 691.231 115.893 691.23 115.893 691.229C115.893 691.228 115.893 691.227 115.893 691.227C115.893 691.226 115.893 691.225 115.893 691.224C115.893 691.223 115.893 691.222 115.893 691.221C115.893 691.22 115.893 691.219 115.893 691.218C115.893 691.217 115.893 691.216 115.893 691.215C115.893 691.214 115.893 691.214 115.893 691.213C115.893 691.212 115.893 691.211 115.893 691.21C115.893 691.209 115.893 691.208 115.893 691.207C115.893 691.206 115.893 691.205 115.893 691.204C115.893 691.203 115.893 691.202 115.893 691.201C115.893 691.2 115.893 691.2 115.893 691.199C115.893 691.198 115.893 691.197 115.893 691.196C115.893 691.195 115.893 691.194 115.893 691.193C115.893 691.192 115.893 691.191 115.893 691.19C115.893 691.189 115.893 691.188 115.893 691.187C115.893 691.187 115.893 691.186 115.893 691.185C115.893 691.184 115.893 691.183 115.893 691.182C115.893 691.181 115.893 691.18 115.893 691.179C115.893 691.178 115.893 691.177 115.893 691.176C115.893 691.175 115.893 691.174 115.893 691.173C115.893 691.173 115.893 691.172 115.893 691.171C115.893 691.17 115.893 691.169 115.893 691.168C115.893 691.167 115.893 691.166 115.893 691.165C115.893 691.164 115.893 691.163 115.893 691.162C115.893 691.161 115.893 691.16 115.893 691.16C115.893 691.159 115.893 691.158 115.893 691.157C115.893 691.156 115.893 691.155 115.893 691.154C115.893 691.153 115.893 691.152 115.893 691.151C115.893 691.15 115.893 691.149 115.893 691.148C115.893 691.147 115.893 691.146 115.893 691.146C115.893 691.145 115.893 691.144 115.893 691.143C115.893 691.142 115.893 691.141 115.893 691.14C115.893 691.139 115.893 691.138 115.893 691.137C115.893 691.136 115.893 691.135 115.893 691.134C115.893 691.133 115.893 691.133 115.893 691.132C115.893 691.131 115.893 691.13 115.893 691.129C115.893 691.128 115.893 691.127 115.893 691.126C115.893 691.125 115.893 691.124 115.893 691.123C115.893 691.122 115.893 691.121 115.893 691.12C115.893 691.119 115.893 691.119 115.893 691.118C115.893 691.117 115.893 691.116 115.893 691.115C115.893 691.114 115.893 691.113 115.893 691.112C115.893 691.111 115.893 691.11 115.893 691.109C115.893 691.108 115.893 691.107 115.893 691.106C115.893 691.106 115.893 691.105 115.893 691.104C115.893 691.103 115.893 691.102 115.893 691.101C115.893 691.1 115.893 691.099 115.893 691.098C115.893 691.097 115.893 691.096 115.893 691.095C115.893 691.094 115.893 691.093 115.893 691.092C115.893 691.092 115.893 691.091 115.893 691.09C115.893 691.089 115.893 691.088 115.893 691.087C115.893 691.086 115.893 691.085 115.893 691.084C115.893 691.083 115.893 691.082 115.893 691.081C115.893 691.08 115.893 691.079 115.893 691.079C115.893 691.078 115.893 691.077 115.893 691.076C115.893 691.075 115.893 691.074 115.893 691.073C115.893 691.072 115.893 691.071 115.893 691.07C115.893 691.069 115.893 691.068 115.893 691.067C115.893 691.066 115.893 691.065 115.893 691.065C115.893 691.064 115.893 691.063 115.893 691.062C115.893 691.061 115.893 691.06 115.893 691.059C115.893 691.058 115.893 691.057 115.893 691.056C115.893 691.055 115.893 691.054 115.893 691.053C115.893 691.052 115.893 691.052 115.893 691.051C115.893 691.05 115.893 691.049 115.893 691.048C115.893 691.047 115.893 691.046 115.893 691.045C115.893 691.044 115.893 691.043 115.893 691.042C115.893 691.041 115.893 691.04 115.893 691.039C115.893 691.038 115.893 691.038 115.893 691.037C115.893 691.036 115.893 691.035 115.893 691.034C115.893 691.033 115.893 691.032 115.893 691.031C115.893 691.03 115.893 691.029 115.893 691.028C115.893 691.027 115.893 691.026 115.893 691.025C115.893 691.025 115.893 691.024 115.893 691.023C115.893 691.022 115.893 691.021 115.893 691.02C115.893 691.019 115.893 691.018 115.893 691.017C115.893 691.016 115.893 691.015 115.893 691.014C115.893 691.013 115.893 691.012 115.893 691.011C115.893 691.011 115.893 691.01 115.893 691.009C115.893 691.008 115.893 691.007 115.893 691.006C115.893 691.005 115.893 691.004 115.893 691.003C115.893 691.002 115.893 691.001 115.893 691C115.893 690.999 115.893 690.998 115.893 690.998C115.893 690.997 115.893 690.996 115.893 690.995C115.893 690.994 115.893 690.993 115.893 690.992C115.893 690.991 115.893 690.99 115.893 690.989C115.893 690.988 115.893 690.987 115.893 690.986C115.893 690.985 115.893 690.984 115.893 690.984C115.893 690.983 115.893 690.982 115.893 690.981C115.893 690.98 115.893 690.979 115.893 690.978C115.893 690.977 115.893 690.976 115.893 690.975C115.893 690.974 115.893 690.973 115.893 690.972C115.893 690.971 115.893 690.971 115.893 690.97C115.893 690.969 115.893 690.968 115.893 690.967C115.893 690.966 115.893 690.965 115.893 690.964C115.893 690.963 115.893 690.962 115.893 690.961C115.893 690.96 115.893 690.959 115.893 690.958C115.893 690.957 115.893 690.957 115.893 690.956C115.893 690.955 115.893 690.954 115.893 690.953C115.893 690.952 115.893 690.951 115.893 690.95C115.893 690.949 115.893 690.948 115.893 690.947C115.893 690.946 115.893 690.945 115.893 690.944C115.893 690.944 115.893 690.943 115.893 690.942C115.893 690.941 115.893 690.94 115.893 690.939C115.893 690.938 115.893 690.937 115.893 690.936C115.893 690.935 115.893 690.934 115.893 690.933C115.893 690.932 115.893 690.931 115.893 690.931C115.893 690.93 115.893 690.929 115.893 690.928C115.893 690.927 115.893 690.926 115.893 690.925C115.893 690.924 115.893 690.923 115.893 690.922C115.893 690.921 115.893 690.92 115.893 690.919C115.893 690.918 115.893 690.917 115.893 690.917C115.893 690.916 115.893 690.915 115.893 690.914C115.893 690.913 115.893 690.912 115.893 690.911C115.893 690.91 115.893 690.909 115.893 690.908C115.893 690.907 115.893 690.906 115.893 690.905C115.893 690.904 115.893 690.904 115.893 690.903C115.893 690.902 115.893 690.901 115.893 690.9C115.893 690.899 115.893 690.898 115.893 690.897C115.893 690.896 115.893 690.895 115.893 690.894C115.893 690.893 115.893 690.892 115.893 690.891C115.893 690.89 115.893 690.89 115.893 690.889C115.893 690.888 115.893 690.887 115.893 690.886C115.893 690.885 115.893 690.884 115.893 690.883C115.893 690.882 115.893 690.881 115.893 690.88C115.893 690.879 115.893 690.878 115.893 690.877C115.893 690.877 115.893 690.876 115.893 690.875C115.893 690.874 115.893 690.873 115.893 690.872C115.893 690.871 115.893 690.87 115.893 690.869C115.893 690.868 115.893 690.867 115.893 690.866C115.893 690.865 115.893 690.864 115.893 690.863C115.893 690.863 115.893 690.862 115.893 690.861C115.893 690.86 115.893 690.859 115.893 690.858C115.893 690.857 115.893 690.856 115.893 690.855C115.893 690.854 115.893 690.853 115.893 690.852C115.893 690.851 115.893 690.85 115.893 690.85C115.893 690.849 115.893 690.848 115.893 690.847C115.893 690.846 115.893 690.845 115.893 690.844C115.893 690.843 115.893 690.842 115.893 690.841C115.893 690.84 115.893 690.839 115.893 690.838C115.893 690.837 115.893 690.836 115.893 690.836C115.893 690.835 115.893 690.834 115.893 690.833C115.893 690.832 115.893 690.831 115.893 690.83C115.893 690.829 115.893 690.828 115.893 690.827C115.893 690.826 115.893 690.825 115.893 690.824C115.893 690.823 115.893 690.823 115.893 690.822C115.893 690.821 115.893 690.82 115.893 690.819C115.893 690.818 115.893 690.817 115.893 690.816C115.893 690.815 115.893 690.814 115.893 690.813C115.893 690.812 115.893 690.811 115.893 690.81C115.893 690.809 115.893 690.809 115.893 690.808C115.893 690.807 115.893 690.806 115.893 690.805C115.893 690.804 115.893 690.803 115.893 690.802C115.893 690.801 115.893 690.8 115.893 690.799C115.893 690.798 115.893 690.797 115.893 690.796C115.893 690.796 115.893 690.795 115.893 690.794C115.893 690.793 115.893 690.792 115.893 690.791C115.893 690.79 115.893 690.789 115.893 690.788C115.893 690.787 115.893 690.786 115.893 690.785C115.893 690.784 115.893 690.783 115.893 690.782C115.893 690.782 115.893 690.781 115.893 690.78C115.893 690.779 115.893 690.778 115.893 690.777C115.893 690.776 115.893 690.775 115.893 690.774C115.893 690.773 115.893 690.772 115.893 690.771C115.893 690.77 115.893 690.769 115.893 690.769C115.893 690.768 115.893 690.767 115.893 690.766C115.893 690.765 115.893 690.764 115.893 690.763C115.893 690.762 115.893 690.761 115.893 690.76C115.893 690.759 115.893 690.758 115.893 690.757C115.893 690.756 115.893 690.755 115.893 690.755C115.893 690.754 115.893 690.753 115.893 690.752C115.893 690.751 115.893 690.75 115.893 690.749C115.893 690.748 115.893 690.747 115.893 690.746C115.893 690.745 115.893 690.744 115.893 690.743C115.893 690.742 115.893 690.742 115.893 690.741C115.893 690.74 115.893 690.739 115.893 690.738C115.893 690.737 115.893 690.736 115.893 690.735C115.893 690.734 115.893 690.733 115.893 690.732C115.893 690.731 115.893 690.73 115.893 690.729C115.893 690.728 115.893 690.728 115.893 690.727C115.893 690.726 115.893 690.725 115.893 690.724C115.893 690.723 115.893 690.722 115.893 690.721C115.893 690.72 115.893 690.719 115.893 690.718C115.893 690.717 115.893 690.716 115.893 690.715C115.893 690.715 115.893 690.714 115.893 690.713C115.893 690.712 115.893 690.711 115.893 690.71C115.893 690.709 115.893 690.708 115.893 690.707C115.893 690.706 115.893 690.705 115.893 690.704C115.893 690.703 115.893 690.702 115.893 690.701C115.893 690.701 115.893 690.7 115.893 690.699C115.893 690.698 115.893 690.697 115.893 690.696C115.893 690.695 115.893 690.694 115.893 690.693C115.893 690.692 115.893 690.691 115.893 690.69C115.893 690.689 115.893 690.688 115.893 690.688C115.893 690.687 115.893 690.686 115.893 690.685C115.893 690.684 115.893 690.683 115.893 690.682C115.893 690.681 115.893 690.68 115.893 690.679C115.893 690.678 115.893 690.677 115.893 690.676C115.893 690.675 115.893 690.674 115.893 690.674C115.893 690.673 115.893 690.672 115.893 690.671C115.893 690.67 115.893 690.669 115.893 690.668C115.893 690.667 115.893 690.666 115.893 690.665C115.893 690.664 115.893 690.663 115.893 690.662C115.893 690.661 115.893 690.661 115.893 690.66C115.893 690.659 115.893 690.658 115.893 690.657C115.893 690.656 115.893 690.655 115.893 690.654C115.893 690.653 115.893 690.652 115.893 690.651C115.893 690.65 115.893 690.649 115.893 690.648C115.893 690.647 115.893 690.647 115.893 690.646C115.893 690.645 115.893 690.644 115.893 690.643C115.893 690.642 115.893 690.641 115.893 690.64C115.893 690.639 115.893 690.638 115.893 690.637C115.893 690.636 115.893 690.635 115.893 690.634C115.893 690.634 115.893 690.633 115.893 690.632C115.893 690.631 115.893 690.63 115.893 690.629C115.893 690.628 115.893 690.627 115.893 690.626C115.893 690.625 115.893 690.624 115.893 690.623C115.893 690.622 115.893 690.621 115.893 690.62C115.893 690.62 115.893 690.619 115.893 690.618C115.893 690.617 115.893 690.616 115.893 690.615C115.893 690.614 115.893 690.613 115.893 690.612C115.893 690.611 115.893 690.61 115.893 690.609C115.893 690.608 115.893 690.607 115.893 690.607C115.893 690.606 115.893 690.605 115.893 690.604C115.893 690.603 115.893 690.602 115.893 690.601C115.893 690.6 115.893 690.599 115.893 690.598C115.893 690.597 115.893 690.596 115.893 690.595C115.893 690.594 115.893 690.594 115.893 690.593C115.893 690.592 115.893 690.591 115.893 690.59C115.893 690.589 115.893 690.588 115.893 690.587C115.893 690.586 115.893 690.585 115.893 690.584C115.893 690.583 115.893 690.582 115.893 690.581C115.893 690.58 115.893 690.58 115.893 690.579C115.893 690.578 115.893 690.577 115.893 690.576C115.893 690.575 115.893 690.574 115.893 690.573C115.893 690.572 115.893 690.571 115.893 690.57C115.893 690.569 115.893 690.568 115.893 690.567C115.893 690.567 115.893 690.566 115.893 690.565C115.893 690.564 115.893 690.563 115.893 690.562C115.893 690.561 115.893 690.56 115.893 690.559C115.893 690.558 115.893 690.557 115.893 690.556C115.893 690.555 115.893 690.554 115.893 690.553C115.893 690.553 115.893 690.552 115.893 690.551C115.893 690.55 115.893 690.549 115.893 690.548C115.893 690.547 115.893 690.546 115.893 690.545C115.893 690.544 115.893 690.543 115.893 690.542C115.893 690.541 115.893 690.54 115.893 690.54C115.893 690.539 115.893 690.538 115.893 690.537C115.893 690.536 115.893 690.535 115.893 690.534C115.893 690.533 115.893 690.532 115.893 690.531C115.893 690.53 115.893 690.529 115.893 690.528C115.893 690.527 115.893 690.526 115.893 690.526C115.893 690.525 115.893 690.524 115.893 690.523C115.893 690.522 115.893 690.521 115.893 690.52C115.893 690.519 115.893 690.518 115.893 690.517C115.893 690.516 115.893 690.515 115.893 690.514C115.893 690.513 115.893 690.513 115.893 690.512C115.893 690.511 115.893 690.51 115.893 690.509C115.893 690.508 115.893 690.507 115.893 690.506C115.893 690.505 115.893 690.504 115.893 690.503C115.893 690.502 115.893 690.501 115.893 690.5C115.893 690.499 115.893 690.499 115.893 690.498C115.893 690.497 115.893 690.496 115.893 690.495C115.893 690.494 115.893 690.493 115.893 690.492C115.893 690.491 115.893 690.49 115.893 690.489C115.893 690.488 115.893 690.487 115.893 690.486C115.893 690.486 115.893 690.485 115.893 690.484C115.893 690.483 115.893 690.482 115.893 690.481C115.893 690.48 115.893 690.479 115.893 690.478C115.893 690.477 115.893 690.476 115.893 690.475C115.893 690.474 115.893 690.473 115.893 690.472C115.893 690.472 115.893 690.471 115.893 690.47C115.893 690.469 115.893 690.468 115.893 690.467C115.893 690.466 115.893 690.465 115.893 690.464C115.893 690.463 115.893 690.462 115.893 690.461C115.893 690.46 115.893 690.459 115.893 690.459C115.893 690.458 115.893 690.457 115.893 690.456C115.893 690.455 115.893 690.454 115.893 690.453C115.893 690.452 115.893 690.451 115.893 690.45C115.893 690.449 115.893 690.448 115.893 690.447C115.893 690.446 115.893 690.445 115.893 690.445C115.893 690.444 115.893 690.443 115.893 690.442C115.893 690.441 115.893 690.44 115.893 690.439C115.893 690.438 115.893 690.437 115.893 690.436C115.893 690.435 115.893 690.434 115.893 690.433C115.893 690.432 115.893 690.432 115.893 690.431C115.893 690.43 115.893 690.429 115.893 690.428C115.893 690.427 115.893 690.426 115.893 690.425C115.893 690.424 115.893 690.423 115.893 690.422C115.893 690.421 115.893 690.42 115.893 690.419C115.893 690.418 115.893 690.418 115.893 690.417C115.893 690.416 115.893 690.415 115.893 690.414C115.893 690.413 115.893 690.412 115.893 690.411C115.893 690.41 115.893 690.409 115.893 690.408C115.893 690.407 115.893 690.406 115.893 690.405C115.893 690.405 115.893 690.404 115.893 690.403C115.893 690.402 115.893 690.401 115.893 690.4C115.893 690.399 115.893 690.398 115.893 690.397C115.893 690.396 115.893 690.395 115.893 690.394C115.893 690.393 115.893 690.392 115.893 690.391C115.893 690.391 115.893 690.39 115.893 690.389C115.893 690.388 115.893 690.387 115.893 690.386C115.893 690.385 115.893 690.384 115.893 690.383C115.893 690.382 115.893 690.381 115.893 690.38C115.893 690.379 115.893 690.378 115.893 690.378C115.893 690.377 115.893 690.376 115.893 690.375C115.893 690.374 115.893 690.373 115.893 690.372C115.893 690.371 115.893 690.37 115.893 690.369C115.893 690.368 115.893 690.367 115.893 690.366C115.893 690.365 115.893 690.364 115.893 690.364C115.893 690.363 115.893 690.362 115.893 690.361C115.893 690.36 115.893 690.359 115.893 690.358C115.893 690.357 115.893 690.356 115.893 690.355C115.893 690.354 115.893 690.353 115.893 690.352C115.893 690.351 115.893 690.351 115.893 690.35C115.893 690.349 115.893 690.348 115.893 690.347C115.893 690.346 115.893 690.345 115.893 690.344C115.893 690.343 115.893 690.342 115.893 690.341C115.893 690.34 115.893 690.339 115.893 690.338C115.893 690.337 115.893 690.337 115.893 690.336C115.893 690.335 115.893 690.334 115.893 690.333C115.893 690.332 115.893 690.331 115.893 690.33C115.893 690.329 115.893 690.328 115.893 690.327C115.893 690.326 115.893 690.325 115.893 690.324C115.893 690.324 115.893 690.323 115.893 690.322C115.893 690.321 115.893 690.32 115.893 690.319C115.893 690.318 115.893 690.317 115.893 690.316C115.893 690.315 115.893 690.314 115.893 690.313C115.893 690.312 115.893 690.311 115.893 690.31C115.893 690.31 115.893 690.309 115.893 690.308C115.893 690.307 115.893 690.306 115.893 690.305C115.893 690.304 115.893 690.303 115.893 690.302C115.893 690.301 115.893 690.3 115.893 690.299C115.893 690.298 115.893 690.297 115.893 690.297C115.893 690.296 115.893 690.295 115.893 690.294C115.893 690.293 115.893 690.292 115.893 690.291C115.893 690.29 115.893 690.289 115.893 690.288C115.893 690.287 115.893 690.286 115.893 690.285C115.893 690.284 115.893 690.283 115.893 690.283C115.893 690.282 115.893 690.281 115.893 690.28C115.893 690.279 115.893 690.278 115.893 690.277C115.893 690.276 115.893 690.275 115.893 690.274C115.893 690.273 115.893 690.272 115.893 690.271C115.893 690.27 115.893 690.27 115.893 690.269C115.893 690.268 115.893 690.267 115.893 690.266C115.893 690.265 115.893 690.264 115.893 690.263C115.893 690.262 115.893 690.261 115.893 690.26C115.893 690.259 115.893 690.258 115.893 690.257C115.893 690.257 115.893 690.256 115.893 690.255C115.893 690.254 115.893 690.253 115.893 690.252C115.893 690.251 115.893 690.25 115.893 690.249C115.893 690.248 115.893 690.247 115.893 690.246C115.893 690.245 115.893 690.244 115.893 690.243C115.893 690.243 115.893 690.242 115.893 690.241C115.893 690.24 115.893 690.239 115.893 690.238C115.893 690.237 115.893 690.236 115.893 690.235C115.893 690.234 115.893 690.233 115.893 690.232C115.893 690.231 115.893 690.23 115.893 690.23C115.893 690.229 115.893 690.228 115.893 690.227C115.893 690.226 115.893 690.225 115.893 690.224C115.893 690.223 115.893 690.222 115.893 690.221C115.893 690.22 115.893 690.219 115.893 690.218C115.893 690.217 115.893 690.216 115.893 690.216C115.893 690.215 115.893 690.214 115.893 690.213C115.893 690.212 115.893 690.211 115.893 690.21C115.893 690.209 115.893 690.208 115.893 690.207C115.893 690.206 115.893 690.205 115.893 690.204C115.893 690.203 115.893 690.203 115.893 690.202C115.893 690.201 115.893 690.2 115.893 690.199C115.893 690.198 115.893 690.197 115.893 690.196C115.893 690.195 115.893 690.194 115.893 690.193C115.893 690.192 115.893 690.191 115.893 690.19C115.893 690.189 115.893 690.189 115.893 690.188C115.893 690.187 115.893 690.186 115.893 690.185C115.893 690.184 115.893 690.183 115.893 690.182C115.893 690.181 115.893 690.18 115.893 690.179C115.893 690.178 115.893 690.177 115.893 690.176C115.893 690.176 115.893 690.175 115.893 690.174C115.893 690.173 115.893 690.172 115.893 690.171C115.893 690.17 115.893 690.169 115.893 690.168C115.893 690.167 115.893 690.166 115.893 690.165C115.893 690.164 115.893 690.163 115.893 690.162C115.893 690.162 115.893 690.161 115.893 690.16C115.893 690.159 115.893 690.158 115.893 690.157C115.893 690.156 115.893 690.155 115.893 690.154C115.893 690.153 115.893 690.152 115.893 690.151C115.893 690.15 115.893 690.149 115.893 690.149C115.893 690.148 115.893 690.147 115.893 690.146C115.893 690.145 115.893 690.144 115.893 690.143C115.893 690.142 115.893 690.141 115.893 690.14C115.893 690.139 115.893 690.138 115.893 690.137C115.893 690.136 115.893 690.135 115.893 690.135C115.893 690.134 115.893 690.133 115.893 690.132C115.893 690.131 115.893 690.13 115.893 690.129C115.893 690.128 115.893 690.127 115.893 690.126C115.893 690.125 115.893 690.124 115.893 690.123C115.893 690.122 115.893 690.122 115.893 690.121C115.893 690.12 115.893 690.119 115.893 690.118C115.893 690.117 115.893 690.116 115.893 690.115C115.893 690.114 115.893 690.113 115.893 690.112C115.893 690.111 115.893 690.11 115.893 690.109C115.893 690.108 115.893 690.108 115.893 690.107C115.893 690.106 115.893 690.105 115.893 690.104C115.893 690.103 115.893 690.102 115.893 690.101C115.893 690.1 115.893 690.099 115.893 690.098C115.893 690.097 115.893 690.096 115.893 690.095L114.893 690.095L113.893 690.095C113.893 690.096 113.893 690.097 113.893 690.098C113.893 690.099 113.893 690.1 113.893 690.101C113.893 690.102 113.893 690.103 113.893 690.104C113.893 690.105 113.893 690.106 113.893 690.107C113.893 690.108 113.893 690.108 113.893 690.109C113.893 690.11 113.893 690.111 113.893 690.112C113.893 690.113 113.893 690.114 113.893 690.115C113.893 690.116 113.893 690.117 113.893 690.118C113.893 690.119 113.893 690.12 113.893 690.121C113.893 690.122 113.893 690.122 113.893 690.123C113.893 690.124 113.893 690.125 113.893 690.126C113.893 690.127 113.893 690.128 113.893 690.129C113.893 690.13 113.893 690.131 113.893 690.132C113.893 690.133 113.893 690.134 113.893 690.135C113.893 690.135 113.893 690.136 113.893 690.137C113.893 690.138 113.893 690.139 113.893 690.14C113.893 690.141 113.893 690.142 113.893 690.143C113.893 690.144 113.893 690.145 113.893 690.146C113.893 690.147 113.893 690.148 113.893 690.149C113.893 690.149 113.893 690.15 113.893 690.151C113.893 690.152 113.893 690.153 113.893 690.154C113.893 690.155 113.893 690.156 113.893 690.157C113.893 690.158 113.893 690.159 113.893 690.16C113.893 690.161 113.893 690.162 113.893 690.162C113.893 690.163 113.893 690.164 113.893 690.165C113.893 690.166 113.893 690.167 113.893 690.168C113.893 690.169 113.893 690.17 113.893 690.171C113.893 690.172 113.893 690.173 113.893 690.174C113.893 690.175 113.893 690.176 113.893 690.176C113.893 690.177 113.893 690.178 113.893 690.179C113.893 690.18 113.893 690.181 113.893 690.182C113.893 690.183 113.893 690.184 113.893 690.185C113.893 690.186 113.893 690.187 113.893 690.188C113.893 690.189 113.893 690.189 113.893 690.19C113.893 690.191 113.893 690.192 113.893 690.193C113.893 690.194 113.893 690.195 113.893 690.196C113.893 690.197 113.893 690.198 113.893 690.199C113.893 690.2 113.893 690.201 113.893 690.202C113.893 690.203 113.893 690.203 113.893 690.204C113.893 690.205 113.893 690.206 113.893 690.207C113.893 690.208 113.893 690.209 113.893 690.21C113.893 690.211 113.893 690.212 113.893 690.213C113.893 690.214 113.893 690.215 113.893 690.216C113.893 690.216 113.893 690.217 113.893 690.218C113.893 690.219 113.893 690.22 113.893 690.221C113.893 690.222 113.893 690.223 113.893 690.224C113.893 690.225 113.893 690.226 113.893 690.227C113.893 690.228 113.893 690.229 113.893 690.23C113.893 690.23 113.893 690.231 113.893 690.232C113.893 690.233 113.893 690.234 113.893 690.235C113.893 690.236 113.893 690.237 113.893 690.238C113.893 690.239 113.893 690.24 113.893 690.241C113.893 690.242 113.893 690.243 113.893 690.243C113.893 690.244 113.893 690.245 113.893 690.246C113.893 690.247 113.893 690.248 113.893 690.249C113.893 690.25 113.893 690.251 113.893 690.252C113.893 690.253 113.893 690.254 113.893 690.255C113.893 690.256 113.893 690.257 113.893 690.257C113.893 690.258 113.893 690.259 113.893 690.26C113.893 690.261 113.893 690.262 113.893 690.263C113.893 690.264 113.893 690.265 113.893 690.266C113.893 690.267 113.893 690.268 113.893 690.269C113.893 690.27 113.893 690.27 113.893 690.271C113.893 690.272 113.893 690.273 113.893 690.274C113.893 690.275 113.893 690.276 113.893 690.277C113.893 690.278 113.893 690.279 113.893 690.28C113.893 690.281 113.893 690.282 113.893 690.283C113.893 690.283 113.893 690.284 113.893 690.285C113.893 690.286 113.893 690.287 113.893 690.288C113.893 690.289 113.893 690.29 113.893 690.291C113.893 690.292 113.893 690.293 113.893 690.294C113.893 690.295 113.893 690.296 113.893 690.297C113.893 690.297 113.893 690.298 113.893 690.299C113.893 690.3 113.893 690.301 113.893 690.302C113.893 690.303 113.893 690.304 113.893 690.305C113.893 690.306 113.893 690.307 113.893 690.308C113.893 690.309 113.893 690.31 113.893 690.31C113.893 690.311 113.893 690.312 113.893 690.313C113.893 690.314 113.893 690.315 113.893 690.316C113.893 690.317 113.893 690.318 113.893 690.319C113.893 690.32 113.893 690.321 113.893 690.322C113.893 690.323 113.893 690.324 113.893 690.324C113.893 690.325 113.893 690.326 113.893 690.327C113.893 690.328 113.893 690.329 113.893 690.33C113.893 690.331 113.893 690.332 113.893 690.333C113.893 690.334 113.893 690.335 113.893 690.336C113.893 690.337 113.893 690.337 113.893 690.338C113.893 690.339 113.893 690.34 113.893 690.341C113.893 690.342 113.893 690.343 113.893 690.344C113.893 690.345 113.893 690.346 113.893 690.347C113.893 690.348 113.893 690.349 113.893 690.35C113.893 690.351 113.893 690.351 113.893 690.352C113.893 690.353 113.893 690.354 113.893 690.355C113.893 690.356 113.893 690.357 113.893 690.358C113.893 690.359 113.893 690.36 113.893 690.361C113.893 690.362 113.893 690.363 113.893 690.364C113.893 690.364 113.893 690.365 113.893 690.366C113.893 690.367 113.893 690.368 113.893 690.369C113.893 690.37 113.893 690.371 113.893 690.372C113.893 690.373 113.893 690.374 113.893 690.375C113.893 690.376 113.893 690.377 113.893 690.378C113.893 690.378 113.893 690.379 113.893 690.38C113.893 690.381 113.893 690.382 113.893 690.383C113.893 690.384 113.893 690.385 113.893 690.386C113.893 690.387 113.893 690.388 113.893 690.389C113.893 690.39 113.893 690.391 113.893 690.391C113.893 690.392 113.893 690.393 113.893 690.394C113.893 690.395 113.893 690.396 113.893 690.397C113.893 690.398 113.893 690.399 113.893 690.4C113.893 690.401 113.893 690.402 113.893 690.403C113.893 690.404 113.893 690.405 113.893 690.405C113.893 690.406 113.893 690.407 113.893 690.408C113.893 690.409 113.893 690.41 113.893 690.411C113.893 690.412 113.893 690.413 113.893 690.414C113.893 690.415 113.893 690.416 113.893 690.417C113.893 690.418 113.893 690.418 113.893 690.419C113.893 690.42 113.893 690.421 113.893 690.422C113.893 690.423 113.893 690.424 113.893 690.425C113.893 690.426 113.893 690.427 113.893 690.428C113.893 690.429 113.893 690.43 113.893 690.431C113.893 690.432 113.893 690.432 113.893 690.433C113.893 690.434 113.893 690.435 113.893 690.436C113.893 690.437 113.893 690.438 113.893 690.439C113.893 690.44 113.893 690.441 113.893 690.442C113.893 690.443 113.893 690.444 113.893 690.445C113.893 690.445 113.893 690.446 113.893 690.447C113.893 690.448 113.893 690.449 113.893 690.45C113.893 690.451 113.893 690.452 113.893 690.453C113.893 690.454 113.893 690.455 113.893 690.456C113.893 690.457 113.893 690.458 113.893 690.459C113.893 690.459 113.893 690.46 113.893 690.461C113.893 690.462 113.893 690.463 113.893 690.464C113.893 690.465 113.893 690.466 113.893 690.467C113.893 690.468 113.893 690.469 113.893 690.47C113.893 690.471 113.893 690.472 113.893 690.472C113.893 690.473 113.893 690.474 113.893 690.475C113.893 690.476 113.893 690.477 113.893 690.478C113.893 690.479 113.893 690.48 113.893 690.481C113.893 690.482 113.893 690.483 113.893 690.484C113.893 690.485 113.893 690.486 113.893 690.486C113.893 690.487 113.893 690.488 113.893 690.489C113.893 690.49 113.893 690.491 113.893 690.492C113.893 690.493 113.893 690.494 113.893 690.495C113.893 690.496 113.893 690.497 113.893 690.498C113.893 690.499 113.893 690.499 113.893 690.5C113.893 690.501 113.893 690.502 113.893 690.503C113.893 690.504 113.893 690.505 113.893 690.506C113.893 690.507 113.893 690.508 113.893 690.509C113.893 690.51 113.893 690.511 113.893 690.512C113.893 690.513 113.893 690.513 113.893 690.514C113.893 690.515 113.893 690.516 113.893 690.517C113.893 690.518 113.893 690.519 113.893 690.52C113.893 690.521 113.893 690.522 113.893 690.523C113.893 690.524 113.893 690.525 113.893 690.526C113.893 690.526 113.893 690.527 113.893 690.528C113.893 690.529 113.893 690.53 113.893 690.531C113.893 690.532 113.893 690.533 113.893 690.534C113.893 690.535 113.893 690.536 113.893 690.537C113.893 690.538 113.893 690.539 113.893 690.54C113.893 690.54 113.893 690.541 113.893 690.542C113.893 690.543 113.893 690.544 113.893 690.545C113.893 690.546 113.893 690.547 113.893 690.548C113.893 690.549 113.893 690.55 113.893 690.551C113.893 690.552 113.893 690.553 113.893 690.553C113.893 690.554 113.893 690.555 113.893 690.556C113.893 690.557 113.893 690.558 113.893 690.559C113.893 690.56 113.893 690.561 113.893 690.562C113.893 690.563 113.893 690.564 113.893 690.565C113.893 690.566 113.893 690.567 113.893 690.567C113.893 690.568 113.893 690.569 113.893 690.57C113.893 690.571 113.893 690.572 113.893 690.573C113.893 690.574 113.893 690.575 113.893 690.576C113.893 690.577 113.893 690.578 113.893 690.579C113.893 690.58 113.893 690.58 113.893 690.581C113.893 690.582 113.893 690.583 113.893 690.584C113.893 690.585 113.893 690.586 113.893 690.587C113.893 690.588 113.893 690.589 113.893 690.59C113.893 690.591 113.893 690.592 113.893 690.593C113.893 690.594 113.893 690.594 113.893 690.595C113.893 690.596 113.893 690.597 113.893 690.598C113.893 690.599 113.893 690.6 113.893 690.601C113.893 690.602 113.893 690.603 113.893 690.604C113.893 690.605 113.893 690.606 113.893 690.607C113.893 690.607 113.893 690.608 113.893 690.609C113.893 690.61 113.893 690.611 113.893 690.612C113.893 690.613 113.893 690.614 113.893 690.615C113.893 690.616 113.893 690.617 113.893 690.618C113.893 690.619 113.893 690.62 113.893 690.62C113.893 690.621 113.893 690.622 113.893 690.623C113.893 690.624 113.893 690.625 113.893 690.626C113.893 690.627 113.893 690.628 113.893 690.629C113.893 690.63 113.893 690.631 113.893 690.632C113.893 690.633 113.893 690.634 113.893 690.634C113.893 690.635 113.893 690.636 113.893 690.637C113.893 690.638 113.893 690.639 113.893 690.64C113.893 690.641 113.893 690.642 113.893 690.643C113.893 690.644 113.893 690.645 113.893 690.646C113.893 690.647 113.893 690.647 113.893 690.648C113.893 690.649 113.893 690.65 113.893 690.651C113.893 690.652 113.893 690.653 113.893 690.654C113.893 690.655 113.893 690.656 113.893 690.657C113.893 690.658 113.893 690.659 113.893 690.66C113.893 690.661 113.893 690.661 113.893 690.662C113.893 690.663 113.893 690.664 113.893 690.665C113.893 690.666 113.893 690.667 113.893 690.668C113.893 690.669 113.893 690.67 113.893 690.671C113.893 690.672 113.893 690.673 113.893 690.674C113.893 690.674 113.893 690.675 113.893 690.676C113.893 690.677 113.893 690.678 113.893 690.679C113.893 690.68 113.893 690.681 113.893 690.682C113.893 690.683 113.893 690.684 113.893 690.685C113.893 690.686 113.893 690.687 113.893 690.688C113.893 690.688 113.893 690.689 113.893 690.69C113.893 690.691 113.893 690.692 113.893 690.693C113.893 690.694 113.893 690.695 113.893 690.696C113.893 690.697 113.893 690.698 113.893 690.699C113.893 690.7 113.893 690.701 113.893 690.701C113.893 690.702 113.893 690.703 113.893 690.704C113.893 690.705 113.893 690.706 113.893 690.707C113.893 690.708 113.893 690.709 113.893 690.71C113.893 690.711 113.893 690.712 113.893 690.713C113.893 690.714 113.893 690.715 113.893 690.715C113.893 690.716 113.893 690.717 113.893 690.718C113.893 690.719 113.893 690.72 113.893 690.721C113.893 690.722 113.893 690.723 113.893 690.724C113.893 690.725 113.893 690.726 113.893 690.727C113.893 690.728 113.893 690.728 113.893 690.729C113.893 690.73 113.893 690.731 113.893 690.732C113.893 690.733 113.893 690.734 113.893 690.735C113.893 690.736 113.893 690.737 113.893 690.738C113.893 690.739 113.893 690.74 113.893 690.741C113.893 690.742 113.893 690.742 113.893 690.743C113.893 690.744 113.893 690.745 113.893 690.746C113.893 690.747 113.893 690.748 113.893 690.749C113.893 690.75 113.893 690.751 113.893 690.752C113.893 690.753 113.893 690.754 113.893 690.755C113.893 690.755 113.893 690.756 113.893 690.757C113.893 690.758 113.893 690.759 113.893 690.76C113.893 690.761 113.893 690.762 113.893 690.763C113.893 690.764 113.893 690.765 113.893 690.766C113.893 690.767 113.893 690.768 113.893 690.769C113.893 690.769 113.893 690.77 113.893 690.771C113.893 690.772 113.893 690.773 113.893 690.774C113.893 690.775 113.893 690.776 113.893 690.777C113.893 690.778 113.893 690.779 113.893 690.78C113.893 690.781 113.893 690.782 113.893 690.782C113.893 690.783 113.893 690.784 113.893 690.785C113.893 690.786 113.893 690.787 113.893 690.788C113.893 690.789 113.893 690.79 113.893 690.791C113.893 690.792 113.893 690.793 113.893 690.794C113.893 690.795 113.893 690.796 113.893 690.796C113.893 690.797 113.893 690.798 113.893 690.799C113.893 690.8 113.893 690.801 113.893 690.802C113.893 690.803 113.893 690.804 113.893 690.805C113.893 690.806 113.893 690.807 113.893 690.808C113.893 690.809 113.893 690.809 113.893 690.81C113.893 690.811 113.893 690.812 113.893 690.813C113.893 690.814 113.893 690.815 113.893 690.816C113.893 690.817 113.893 690.818 113.893 690.819C113.893 690.82 113.893 690.821 113.893 690.822C113.893 690.823 113.893 690.823 113.893 690.824C113.893 690.825 113.893 690.826 113.893 690.827C113.893 690.828 113.893 690.829 113.893 690.83C113.893 690.831 113.893 690.832 113.893 690.833C113.893 690.834 113.893 690.835 113.893 690.836C113.893 690.836 113.893 690.837 113.893 690.838C113.893 690.839 113.893 690.84 113.893 690.841C113.893 690.842 113.893 690.843 113.893 690.844C113.893 690.845 113.893 690.846 113.893 690.847C113.893 690.848 113.893 690.849 113.893 690.85C113.893 690.85 113.893 690.851 113.893 690.852C113.893 690.853 113.893 690.854 113.893 690.855C113.893 690.856 113.893 690.857 113.893 690.858C113.893 690.859 113.893 690.86 113.893 690.861C113.893 690.862 113.893 690.863 113.893 690.863C113.893 690.864 113.893 690.865 113.893 690.866C113.893 690.867 113.893 690.868 113.893 690.869C113.893 690.87 113.893 690.871 113.893 690.872C113.893 690.873 113.893 690.874 113.893 690.875C113.893 690.876 113.893 690.877 113.893 690.877C113.893 690.878 113.893 690.879 113.893 690.88C113.893 690.881 113.893 690.882 113.893 690.883C113.893 690.884 113.893 690.885 113.893 690.886C113.893 690.887 113.893 690.888 113.893 690.889C113.893 690.89 113.893 690.89 113.893 690.891C113.893 690.892 113.893 690.893 113.893 690.894C113.893 690.895 113.893 690.896 113.893 690.897C113.893 690.898 113.893 690.899 113.893 690.9C113.893 690.901 113.893 690.902 113.893 690.903C113.893 690.904 113.893 690.904 113.893 690.905C113.893 690.906 113.893 690.907 113.893 690.908C113.893 690.909 113.893 690.91 113.893 690.911C113.893 690.912 113.893 690.913 113.893 690.914C113.893 690.915 113.893 690.916 113.893 690.917C113.893 690.917 113.893 690.918 113.893 690.919C113.893 690.92 113.893 690.921 113.893 690.922C113.893 690.923 113.893 690.924 113.893 690.925C113.893 690.926 113.893 690.927 113.893 690.928C113.893 690.929 113.893 690.93 113.893 690.931C113.893 690.931 113.893 690.932 113.893 690.933C113.893 690.934 113.893 690.935 113.893 690.936C113.893 690.937 113.893 690.938 113.893 690.939C113.893 690.94 113.893 690.941 113.893 690.942C113.893 690.943 113.893 690.944 113.893 690.944C113.893 690.945 113.893 690.946 113.893 690.947C113.893 690.948 113.893 690.949 113.893 690.95C113.893 690.951 113.893 690.952 113.893 690.953C113.893 690.954 113.893 690.955 113.893 690.956C113.893 690.957 113.893 690.957 113.893 690.958C113.893 690.959 113.893 690.96 113.893 690.961C113.893 690.962 113.893 690.963 113.893 690.964C113.893 690.965 113.893 690.966 113.893 690.967C113.893 690.968 113.893 690.969 113.893 690.97C113.893 690.971 113.893 690.971 113.893 690.972C113.893 690.973 113.893 690.974 113.893 690.975C113.893 690.976 113.893 690.977 113.893 690.978C113.893 690.979 113.893 690.98 113.893 690.981C113.893 690.982 113.893 690.983 113.893 690.984C113.893 690.984 113.893 690.985 113.893 690.986C113.893 690.987 113.893 690.988 113.893 690.989C113.893 690.99 113.893 690.991 113.893 690.992C113.893 690.993 113.893 690.994 113.893 690.995C113.893 690.996 113.893 690.997 113.893 690.998C113.893 690.998 113.893 690.999 113.893 691C113.893 691.001 113.893 691.002 113.893 691.003C113.893 691.004 113.893 691.005 113.893 691.006C113.893 691.007 113.893 691.008 113.893 691.009C113.893 691.01 113.893 691.011 113.893 691.011C113.893 691.012 113.893 691.013 113.893 691.014C113.893 691.015 113.893 691.016 113.893 691.017C113.893 691.018 113.893 691.019 113.893 691.02C113.893 691.021 113.893 691.022 113.893 691.023C113.893 691.024 113.893 691.025 113.893 691.025C113.893 691.026 113.893 691.027 113.893 691.028C113.893 691.029 113.893 691.03 113.893 691.031C113.893 691.032 113.893 691.033 113.893 691.034C113.893 691.035 113.893 691.036 113.893 691.037C113.893 691.038 113.893 691.038 113.893 691.039C113.893 691.04 113.893 691.041 113.893 691.042C113.893 691.043 113.893 691.044 113.893 691.045C113.893 691.046 113.893 691.047 113.893 691.048C113.893 691.049 113.893 691.05 113.893 691.051C113.893 691.052 113.893 691.052 113.893 691.053C113.893 691.054 113.893 691.055 113.893 691.056C113.893 691.057 113.893 691.058 113.893 691.059C113.893 691.06 113.893 691.061 113.893 691.062C113.893 691.063 113.893 691.064 113.893 691.065C113.893 691.065 113.893 691.066 113.893 691.067C113.893 691.068 113.893 691.069 113.893 691.07C113.893 691.071 113.893 691.072 113.893 691.073C113.893 691.074 113.893 691.075 113.893 691.076C113.893 691.077 113.893 691.078 113.893 691.079C113.893 691.079 113.893 691.08 113.893 691.081C113.893 691.082 113.893 691.083 113.893 691.084C113.893 691.085 113.893 691.086 113.893 691.087C113.893 691.088 113.893 691.089 113.893 691.09C113.893 691.091 113.893 691.092 113.893 691.092C113.893 691.093 113.893 691.094 113.893 691.095C113.893 691.096 113.893 691.097 113.893 691.098C113.893 691.099 113.893 691.1 113.893 691.101C113.893 691.102 113.893 691.103 113.893 691.104C113.893 691.105 113.893 691.106 113.893 691.106C113.893 691.107 113.893 691.108 113.893 691.109C113.893 691.11 113.893 691.111 113.893 691.112C113.893 691.113 113.893 691.114 113.893 691.115C113.893 691.116 113.893 691.117 113.893 691.118C113.893 691.119 113.893 691.119 113.893 691.12C113.893 691.121 113.893 691.122 113.893 691.123C113.893 691.124 113.893 691.125 113.893 691.126C113.893 691.127 113.893 691.128 113.893 691.129C113.893 691.13 113.893 691.131 113.893 691.132C113.893 691.133 113.893 691.133 113.893 691.134C113.893 691.135 113.893 691.136 113.893 691.137C113.893 691.138 113.893 691.139 113.893 691.14C113.893 691.141 113.893 691.142 113.893 691.143C113.893 691.144 113.893 691.145 113.893 691.146C113.893 691.146 113.893 691.147 113.893 691.148C113.893 691.149 113.893 691.15 113.893 691.151C113.893 691.152 113.893 691.153 113.893 691.154C113.893 691.155 113.893 691.156 113.893 691.157C113.893 691.158 113.893 691.159 113.893 691.16C113.893 691.16 113.893 691.161 113.893 691.162C113.893 691.163 113.893 691.164 113.893 691.165C113.893 691.166 113.893 691.167 113.893 691.168C113.893 691.169 113.893 691.17 113.893 691.171C113.893 691.172 113.893 691.173 113.893 691.173C113.893 691.174 113.893 691.175 113.893 691.176C113.893 691.177 113.893 691.178 113.893 691.179C113.893 691.18 113.893 691.181 113.893 691.182C113.893 691.183 113.893 691.184 113.893 691.185C113.893 691.186 113.893 691.187 113.893 691.187C113.893 691.188 113.893 691.189 113.893 691.19C113.893 691.191 113.893 691.192 113.893 691.193C113.893 691.194 113.893 691.195 113.893 691.196C113.893 691.197 113.893 691.198 113.893 691.199C113.893 691.2 113.893 691.2 113.893 691.201C113.893 691.202 113.893 691.203 113.893 691.204C113.893 691.205 113.893 691.206 113.893 691.207C113.893 691.208 113.893 691.209 113.893 691.21C113.893 691.211 113.893 691.212 113.893 691.213C113.893 691.214 113.893 691.214 113.893 691.215C113.893 691.216 113.893 691.217 113.893 691.218C113.893 691.219 113.893 691.22 113.893 691.221C113.893 691.222 113.893 691.223 113.893 691.224C113.893 691.225 113.893 691.226 113.893 691.227C113.893 691.227 113.893 691.228 113.893 691.229C113.893 691.23 113.893 691.231 113.893 691.232C113.893 691.233 113.893 691.234 113.893 691.235C113.893 691.236 113.893 691.237 113.893 691.238C113.893 691.239 113.893 691.24 113.893 691.241C113.893 691.241 113.893 691.242 113.893 691.243C113.893 691.244 113.893 691.245 113.893 691.246C113.893 691.247 113.893 691.248 113.893 691.249C113.893 691.25 113.893 691.251 113.893 691.252C113.893 691.253 113.893 691.254 113.893 691.254C113.893 691.255 113.893 691.256 113.893 691.257C113.893 691.258 113.893 691.259 113.893 691.26C113.893 691.261 113.893 691.262 113.893 691.263C113.893 691.264 113.893 691.265 113.893 691.266C113.893 691.267 113.893 691.268 113.893 691.268C113.893 691.269 113.893 691.27 113.893 691.271C113.893 691.272 113.893 691.273 113.893 691.274C113.893 691.275 113.893 691.276 113.893 691.277C113.893 691.278 113.893 691.279 113.893 691.28C113.893 691.281 113.893 691.281 113.893 691.282C113.893 691.283 113.893 691.284 113.893 691.285C113.893 691.286 113.893 691.287 113.893 691.288C113.893 691.289 113.893 691.29 113.893 691.291C113.893 691.292 113.893 691.293 113.893 691.294C113.893 691.294 113.893 691.295 113.893 691.296C113.893 691.297 113.893 691.298 113.893 691.299C113.893 691.3 113.893 691.301 113.893 691.302C113.893 691.303 113.893 691.304 113.893 691.305C113.893 691.306 113.893 691.307 113.893 691.308C113.893 691.308 113.893 691.309 113.893 691.31C113.893 691.311 113.893 691.312 113.893 691.313C113.893 691.314 113.893 691.315 113.893 691.316C113.893 691.317 113.893 691.318 113.893 691.319C113.893 691.32 113.893 691.321 113.893 691.321C113.893 691.322 113.893 691.323 113.893 691.324C113.893 691.325 113.893 691.326 113.893 691.327C113.893 691.328 113.893 691.329 113.893 691.33C113.893 691.331 113.893 691.332 113.893 691.333C113.893 691.334 113.893 691.335 113.893 691.335C113.893 691.336 113.893 691.337 113.893 691.338C113.893 691.339 113.893 691.34 113.893 691.341C113.893 691.342 113.893 691.343 113.893 691.344C113.893 691.345 113.893 691.346 113.893 691.347C113.893 691.348 113.893 691.348 113.893 691.349C113.893 691.35 113.893 691.351 113.893 691.352C113.893 691.353 113.893 691.354 113.893 691.355C113.893 691.356 113.893 691.357 113.893 691.358C113.893 691.359 113.893 691.36 113.893 691.361C113.893 691.362 113.893 691.362 113.893 691.363C113.893 691.364 113.893 691.365 113.893 691.366C113.893 691.367 113.893 691.368 113.893 691.369C113.893 691.37 113.893 691.371 113.893 691.372C113.893 691.373 113.893 691.374 113.893 691.375C113.893 691.375 113.893 691.376 113.893 691.377C113.893 691.378 113.893 691.379 113.893 691.38C113.893 691.381 113.893 691.382 113.893 691.383C113.893 691.384 113.893 691.385 113.893 691.386C113.893 691.387 113.893 691.388 113.893 691.389C113.893 691.389 113.893 691.39 113.893 691.391C113.893 691.392 113.893 691.393 113.893 691.394C113.893 691.395 113.893 691.396 113.893 691.397C113.893 691.398 113.893 691.399 113.893 691.4C113.893 691.401 113.893 691.402 113.893 691.402C113.893 691.403 113.893 691.404 113.893 691.405C113.893 691.406 113.893 691.407 113.893 691.408C113.893 691.409 113.893 691.41 113.893 691.411C113.893 691.412 113.893 691.413 113.893 691.414C113.893 691.415 113.893 691.416 113.893 691.416C113.893 691.417 113.893 691.418 113.893 691.419C113.893 691.42 113.893 691.421 113.893 691.422C113.893 691.423 113.893 691.424 113.893 691.425C113.893 691.426 113.893 691.427 113.893 691.428C113.893 691.429 113.893 691.429 113.893 691.43C113.893 691.431 113.893 691.432 113.893 691.433C113.893 691.434 113.893 691.435 113.893 691.436C113.893 691.437 113.893 691.438 113.893 691.439C113.893 691.44 113.893 691.441 113.893 691.442C113.893 691.443 113.893 691.443 113.893 691.444C113.893 691.445 113.893 691.446 113.893 691.447C113.893 691.448 113.893 691.449 113.893 691.45C113.893 691.451 113.893 691.452 113.893 691.453C113.893 691.454 113.893 691.455 113.893 691.456C113.893 691.456 113.893 691.457 113.893 691.458C113.893 691.459 113.893 691.46 113.893 691.461C113.893 691.462 113.893 691.463 113.893 691.464C113.893 691.465 113.893 691.466 113.893 691.467C113.893 691.468 113.893 691.469 113.893 691.47C113.893 691.47 113.893 691.471 113.893 691.472C113.893 691.473 113.893 691.474 113.893 691.475C113.893 691.476 113.893 691.477 113.893 691.478C113.893 691.479 113.893 691.48 113.893 691.481C113.893 691.482 113.893 691.483 113.893 691.483C113.893 691.484 113.893 691.485 113.893 691.486C113.893 691.487 113.893 691.488 113.893 691.489C113.893 691.49 113.893 691.491 113.893 691.492C113.893 691.493 113.893 691.494 113.893 691.495C113.893 691.496 113.893 691.497 113.893 691.497C113.893 691.498 113.893 691.499 113.893 691.5C113.893 691.501 113.893 691.502 113.893 691.503C113.893 691.504 113.893 691.505 113.893 691.506C113.893 691.507 113.893 691.508 113.893 691.509C113.893 691.51 113.893 691.51 113.893 691.511C113.893 691.512 113.893 691.513 113.893 691.514C113.893 691.515 113.893 691.516 113.893 691.517C113.893 691.518 113.893 691.519 113.893 691.52C113.893 691.521 113.893 691.522 113.893 691.523C113.893 691.524 113.893 691.524 113.893 691.525L114.893 691.525ZM114.893 690.095L115.893 690.095L115.893 672.558L114.893 672.558L113.893 672.558L113.893 690.095L114.893 690.095ZM114.893 672.558L114.893 673.558L120.907 673.558L120.907 672.558L120.907 671.558L114.893 671.558L114.893 672.558ZM120.907 672.558L119.907 672.558L119.907 703.175L120.907 703.175L121.907 703.175L121.907 672.558L120.907 672.558ZM120.907 703.175L120.907 702.175L113.757 702.175L113.757 703.175L113.757 704.175L120.907 704.175L120.907 703.175ZM113.757 703.175L114.644 702.713L105.413 684.986L104.526 685.448L103.639 685.91L112.87 703.637L113.757 703.175ZM104.526 685.448L105.42 685.001C105.226 684.612 105.051 684.21 104.894 683.793L103.958 684.144L103.022 684.496C103.202 684.976 103.405 685.443 103.631 685.895L104.526 685.448ZM103.958 684.144L104.894 683.793C104.736 683.37 104.597 682.949 104.479 682.528L103.516 682.799L102.554 683.069C102.688 683.546 102.844 684.021 103.022 684.496L103.958 684.144ZM103.516 682.799L103.516 681.799L103.369 681.799L103.369 682.799L103.369 683.799L103.516 683.799L103.516 682.799ZM103.369 682.799L102.371 682.857C102.398 683.315 102.411 683.765 102.411 684.208L103.411 684.208L104.411 684.208C104.411 683.725 104.397 683.235 104.368 682.74L103.369 682.799ZM103.411 684.208L102.412 684.239C102.425 684.676 102.432 685.135 102.432 685.616L103.432 685.616L104.432 685.616C104.432 685.116 104.425 684.636 104.411 684.176L103.411 684.208ZM103.432 685.616L102.432 685.616L102.432 703.175L103.432 703.175L104.432 703.175L104.432 685.616L103.432 685.616ZM103.432 703.175L103.432 702.175L97.4393 702.175L97.4393 703.175L97.4393 704.175L103.432 704.175L103.432 703.175ZM125.617 672.558L125.617 671.558L124.617 671.558L124.617 672.558L125.617 672.558ZM132.62 672.558L133.62 672.558L133.62 671.558L132.62 671.558L132.62 672.558ZM133.839 697.329L133.098 698.001L133.104 698.006L133.839 697.329ZM140.547 697.329L139.812 696.651L139.812 696.652L140.547 697.329ZM141.788 672.558L141.788 671.558L140.788 671.558L140.788 672.558L141.788 672.558ZM148.727 672.558L149.727 672.558L149.727 671.558L148.727 671.558L148.727 672.558ZM145.573 700.841L144.904 700.098L144.902 700.1L145.573 700.841ZM125.617 691.988L126.617 691.988L126.617 672.558L125.617 672.558L124.617 672.558L124.617 691.988L125.617 691.988ZM125.617 672.558L125.617 673.558L132.62 673.558L132.62 672.558L132.62 671.558L125.617 671.558L125.617 672.558ZM132.62 672.558L131.62 672.558L131.62 692.724L132.62 692.724L133.62 692.724L133.62 672.558L132.62 672.558ZM132.62 692.724L131.62 692.724C131.62 694.967 132.029 696.82 133.098 698.001L133.839 697.329L134.58 696.658C134.024 696.043 133.62 694.827 133.62 692.724L132.62 692.724ZM133.839 697.329L133.104 698.006C134.144 699.137 135.563 699.654 137.225 699.654L137.225 698.654L137.225 697.654C135.999 697.654 135.161 697.288 134.575 696.652L133.839 697.329ZM137.225 698.654L137.225 699.654C138.855 699.654 140.248 699.13 141.283 698.006L140.547 697.329L139.812 696.652C139.22 697.294 138.398 697.654 137.225 697.654L137.225 698.654ZM140.547 697.329L141.283 698.007C142.371 696.826 142.788 694.97 142.788 692.724L141.788 692.724L140.788 692.724C140.788 694.824 140.378 696.038 139.812 696.651L140.547 697.329ZM141.788 692.724L142.788 692.724L142.788 672.558L141.788 672.558L140.788 672.558L140.788 692.724L141.788 692.724ZM141.788 672.558L141.788 673.558L148.727 673.558L148.727 672.558L148.727 671.558L141.788 671.558L141.788 672.558ZM148.727 672.558L147.727 672.558L147.727 691.988L148.727 691.988L149.727 691.988L149.727 672.558L148.727 672.558ZM148.727 691.988L147.727 691.988C147.727 695.835 146.72 698.463 144.904 700.098L145.573 700.841L146.242 701.584C148.632 699.434 149.727 696.159 149.727 691.988L148.727 691.988ZM145.573 700.841L144.902 700.1C143.036 701.79 140.52 702.68 137.246 702.68L137.246 703.68L137.246 704.68C140.897 704.68 143.932 703.677 146.244 701.582L145.573 700.841ZM137.246 703.68L137.246 702.68C133.912 702.68 131.351 701.787 129.459 700.095L128.792 700.841L128.126 701.586C130.467 703.68 133.542 704.68 137.246 704.68L137.246 703.68ZM128.792 700.841L129.459 700.095C127.63 698.46 126.617 695.834 126.617 691.988L125.617 691.988L124.617 691.988C124.617 696.161 125.721 699.436 128.126 701.586L128.792 700.841ZM151.335 678.046L150.335 678.046L150.335 679.046L151.335 679.046L151.335 678.046ZM151.335 672.558L151.335 671.558L150.335 671.558L150.335 672.558L151.335 672.558ZM175.37 672.558L176.37 672.558L176.37 671.558L175.37 671.558L175.37 672.558ZM175.37 678.046L175.37 679.046L176.37 679.046L176.37 678.046L175.37 678.046ZM166.896 678.046L166.896 677.046L165.896 677.046L165.896 678.046L166.896 678.046ZM166.896 703.175L166.896 704.175L167.896 704.175L167.896 703.175L166.896 703.175ZM159.83 703.175L158.83 703.175L158.83 704.175L159.83 704.175L159.83 703.175ZM159.83 678.046L160.83 678.046L160.83 677.046L159.83 677.046L159.83 678.046ZM151.335 678.046L152.335 678.046L152.335 672.558L151.335 672.558L150.335 672.558L150.335 678.046L151.335 678.046ZM151.335 672.558L151.335 673.558L175.37 673.558L175.37 672.558L175.37 671.558L151.335 671.558L151.335 672.558ZM175.37 672.558L174.37 672.558L174.37 678.046L175.37 678.046L176.37 678.046L176.37 672.558L175.37 672.558ZM175.37 678.046L175.37 677.046L166.896 677.046L166.896 678.046L166.896 679.046L175.37 679.046L175.37 678.046ZM166.896 678.046L165.896 678.046L165.896 703.175L166.896 703.175L167.896 703.175L167.896 678.046L166.896 678.046ZM166.896 703.175L166.896 702.175L159.83 702.175L159.83 703.175L159.83 704.175L166.896 704.175L166.896 703.175ZM159.83 703.175L160.83 703.175L160.83 678.046L159.83 678.046L158.83 678.046L158.83 703.175L159.83 703.175ZM159.83 678.046L159.83 677.046L151.335 677.046L151.335 678.046L151.335 679.046L159.83 679.046L159.83 678.046ZM176.274 678.046L175.274 678.046L175.274 679.046L176.274 679.046L176.274 678.046ZM176.274 672.558L176.274 671.558L175.274 671.558L175.274 672.558L176.274 672.558ZM200.31 672.558L201.31 672.558L201.31 671.558L200.31 671.558L200.31 672.558ZM200.31 678.046L200.31 679.046L201.31 679.046L201.31 678.046L200.31 678.046ZM191.835 678.046L191.835 677.046L190.835 677.046L190.835 678.046L191.835 678.046ZM191.835 703.175L191.835 704.175L192.835 704.175L192.835 703.175L191.835 703.175ZM184.77 703.175L183.77 703.175L183.77 704.175L184.77 704.175L184.77 703.175ZM184.77 678.046L185.77 678.046L185.77 677.046L184.77 677.046L184.77 678.046ZM176.274 678.046L177.274 678.046L177.274 672.558L176.274 672.558L175.274 672.558L175.274 678.046L176.274 678.046ZM176.274 672.558L176.274 673.558L200.31 673.558L200.31 672.558L200.31 671.558L176.274 671.558L176.274 672.558ZM200.31 672.558L199.31 672.558L199.31 678.046L200.31 678.046L201.31 678.046L201.31 672.558L200.31 672.558ZM200.31 678.046L200.31 677.046L191.835 677.046L191.835 678.046L191.835 679.046L200.31 679.046L200.31 678.046ZM191.835 678.046L190.835 678.046L190.835 703.175L191.835 703.175L192.835 703.175L192.835 678.046L191.835 678.046ZM191.835 703.175L191.835 702.175L184.77 702.175L184.77 703.175L184.77 704.175L191.835 704.175L191.835 703.175ZM184.77 703.175L185.77 703.175L185.77 678.046L184.77 678.046L183.77 678.046L183.77 703.175L184.77 703.175ZM184.77 678.046L184.77 677.046L176.274 677.046L176.274 678.046L176.274 679.046L184.77 679.046L184.77 678.046ZM210.487 703.175L209.487 703.175L209.487 704.175L210.487 704.175L210.487 703.175ZM210.487 691.736L211.487 691.736L211.487 691.491L211.374 691.274L210.487 691.736ZM200.499 672.558L200.499 671.558L198.851 671.558L199.612 673.02L200.499 672.558ZM208.174 672.558L209.067 672.106L208.789 671.558L208.174 671.558L208.174 672.558ZM213.494 683.072L214.396 682.639L214.391 682.63L214.387 682.621L213.494 683.072ZM213.957 684.081L213.04 684.48L213.043 684.488L213.047 684.495L213.957 684.081ZM214.357 685.049L213.42 685.4L213.664 686.049L214.357 686.049L214.357 685.049ZM214.462 685.049L214.462 686.049L215.155 686.049L215.398 685.4L214.462 685.049ZM214.84 684.081L213.93 683.668L213.922 683.685L213.915 683.703L214.84 684.081ZM215.324 683.072L214.432 682.621L214.429 682.625L215.324 683.072ZM220.644 672.558L220.644 671.558L220.029 671.558L219.752 672.106L220.644 672.558ZM227.436 672.558L228.324 673.018L229.082 671.558L227.436 671.558L227.436 672.558ZM217.574 691.567L216.686 691.107L216.574 691.323L216.574 691.567L217.574 691.567ZM217.574 703.175L217.574 704.175L218.574 704.175L218.574 703.175L217.574 703.175ZM210.487 703.175L211.487 703.175L211.487 691.736L210.487 691.736L209.487 691.736L209.487 703.175L210.487 703.175ZM210.487 691.736L211.374 691.274L201.386 672.096L200.499 672.558L199.612 673.02L209.601 692.198L210.487 691.736ZM200.499 672.558L200.499 673.558L208.174 673.558L208.174 672.558L208.174 671.558L200.499 671.558L200.499 672.558ZM208.174 672.558L207.282 673.009L212.602 683.523L213.494 683.072L214.387 682.621L209.067 672.106L208.174 672.558ZM213.494 683.072L212.593 683.505C212.756 683.845 212.905 684.17 213.04 684.48L213.957 684.081L214.874 683.683C214.729 683.348 214.569 683 214.396 682.639L213.494 683.072ZM213.957 684.081L213.047 684.495C213.177 684.782 213.302 685.083 213.42 685.4L214.357 685.049L215.293 684.698C215.159 684.341 215.018 683.998 214.867 683.668L213.957 684.081ZM214.357 685.049L214.357 686.049L214.462 686.049L214.462 685.049L214.462 684.049L214.357 684.049L214.357 685.049ZM214.462 685.049L215.398 685.4C215.521 685.072 215.644 684.759 215.766 684.46L214.84 684.081L213.915 683.703C213.785 684.021 213.655 684.353 213.525 684.698L214.462 685.049ZM214.84 684.081L215.751 684.495C215.885 684.2 216.041 683.875 216.218 683.519L215.324 683.072L214.429 682.625C214.243 682.998 214.076 683.346 213.93 683.668L214.84 684.081ZM215.324 683.072L216.216 683.523L221.536 673.009L220.644 672.558L219.752 672.106L214.432 682.621L215.324 683.072ZM220.644 672.558L220.644 673.558L227.436 673.558L227.436 672.558L227.436 671.558L220.644 671.558L220.644 672.558ZM227.436 672.558L226.549 672.097L216.686 691.107L217.574 691.567L218.462 692.028L228.324 673.018L227.436 672.558ZM217.574 691.567L216.574 691.567L216.574 703.175L217.574 703.175L218.574 703.175L218.574 691.567L217.574 691.567ZM217.574 703.175L217.574 702.175L210.487 702.175L210.487 703.175L210.487 704.175L217.574 704.175L217.574 703.175ZM246.95 703.175L245.95 703.175L245.95 704.175L246.95 704.175L246.95 703.175ZM246.95 691.736L247.95 691.736L247.95 691.491L247.837 691.274L246.95 691.736ZM236.962 672.558L236.962 671.558L235.314 671.558L236.075 673.02L236.962 672.558ZM244.637 672.558L245.53 672.106L245.252 671.558L244.637 671.558L244.637 672.558ZM249.958 683.072L250.859 682.639L250.855 682.63L250.85 682.621L249.958 683.072ZM250.42 684.081L249.503 684.48L249.506 684.488L249.51 684.495L250.42 684.081ZM250.82 685.049L249.883 685.4L250.127 686.049L250.82 686.049L250.82 685.049ZM250.925 685.049L250.925 686.049L251.618 686.049L251.861 685.4L250.925 685.049ZM251.303 684.081L250.393 683.668L250.385 683.685L250.378 683.703L251.303 684.081ZM251.787 683.072L250.895 682.621L250.893 682.625L251.787 683.072ZM257.107 672.558L257.107 671.558L256.492 671.558L256.215 672.106L257.107 672.558ZM263.899 672.558L264.787 673.018L265.545 671.558L263.899 671.558L263.899 672.558ZM254.037 691.567L253.149 691.107L253.037 691.323L253.037 691.567L254.037 691.567ZM254.037 703.175L254.037 704.175L255.037 704.175L255.037 703.175L254.037 703.175ZM246.95 703.175L247.95 703.175L247.95 691.736L246.95 691.736L245.95 691.736L245.95 703.175L246.95 703.175ZM246.95 691.736L247.837 691.274L237.849 672.096L236.962 672.558L236.075 673.02L246.064 692.198L246.95 691.736ZM236.962 672.558L236.962 673.558L244.637 673.558L244.637 672.558L244.637 671.558L236.962 671.558L236.962 672.558ZM244.637 672.558L243.745 673.009L249.065 683.523L249.958 683.072L250.85 682.621L245.53 672.106L244.637 672.558ZM249.958 683.072L249.056 683.505C249.219 683.845 249.368 684.17 249.503 684.48L250.42 684.081L251.337 683.683C251.192 683.348 251.032 683 250.859 682.639L249.958 683.072ZM250.42 684.081L249.51 684.495C249.64 684.782 249.765 685.083 249.883 685.4L250.82 685.049L251.756 684.698C251.622 684.341 251.481 683.998 251.331 683.668L250.42 684.081ZM250.82 685.049L250.82 686.049L250.925 686.049L250.925 685.049L250.925 684.049L250.82 684.049L250.82 685.049ZM250.925 685.049L251.861 685.4C251.984 685.072 252.107 684.759 252.229 684.46L251.303 684.081L250.378 683.703C250.248 684.021 250.118 684.353 249.989 684.698L250.925 685.049ZM251.303 684.081L252.214 684.495C252.348 684.2 252.504 683.875 252.681 683.519L251.787 683.072L250.893 682.625C250.706 682.998 250.539 683.346 250.393 683.668L251.303 684.081ZM251.787 683.072L252.679 683.523L257.999 673.009L257.107 672.558L256.215 672.106L250.895 682.621L251.787 683.072ZM257.107 672.558L257.107 673.558L263.899 673.558L263.899 672.558L263.899 671.558L257.107 671.558L257.107 672.558ZM263.899 672.558L263.012 672.097L253.149 691.107L254.037 691.567L254.925 692.028L264.787 673.018L263.899 672.558ZM254.037 691.567L253.037 691.567L253.037 703.175L254.037 703.175L255.037 703.175L255.037 691.567L254.037 691.567ZM254.037 703.175L254.037 702.175L246.95 702.175L246.95 703.175L246.95 704.175L254.037 704.175L254.037 703.175ZM267.558 675.712L266.851 675.005L266.849 675.007L267.558 675.712ZM286.379 675.712L285.671 676.419L285.673 676.421L286.379 675.712ZM286.379 700.021L285.673 699.312L285.671 699.314L286.379 700.021ZM267.558 700.021L266.849 700.726L266.851 700.728L267.558 700.021ZM272.731 696.677L271.939 697.288L271.942 697.292L272.731 696.677ZM281.227 696.677L280.439 696.062L280.438 696.063L281.227 696.677ZM281.227 679.119L280.438 679.733L280.445 679.742L281.227 679.119ZM272.731 679.119L273.517 679.737L273.52 679.733L272.731 679.119ZM263.92 688.75L264.92 688.75L264.92 686.983L263.92 686.983L262.92 686.983L262.92 688.75L263.92 688.75ZM263.92 686.983L264.92 686.983C264.92 682.048 266.101 678.596 268.267 676.417L267.558 675.712L266.849 675.007C264.165 677.707 262.92 681.769 262.92 686.983L263.92 686.983ZM267.558 675.712L268.265 676.419C270.495 674.19 273.37 673.053 276.979 673.053L276.979 672.053L276.979 671.053C272.905 671.053 269.5 672.356 266.851 675.005L267.558 675.712ZM276.979 672.053L276.979 673.053C280.573 673.053 283.441 674.189 285.671 676.419L286.379 675.712L287.086 675.005C284.437 672.357 281.039 671.053 276.979 671.053L276.979 672.053ZM286.379 675.712L285.673 676.421C287.865 678.6 289.059 682.051 289.059 686.983L290.059 686.983L291.059 686.983C291.059 681.766 289.798 677.702 287.084 675.003L286.379 675.712ZM290.059 686.983L289.059 686.983L289.059 688.75L290.059 688.75L291.059 688.75L291.059 686.983L290.059 686.983ZM290.059 688.75L289.059 688.75C289.059 693.682 287.865 697.132 285.673 699.312L286.379 700.021L287.084 700.73C289.798 698.031 291.059 693.967 291.059 688.75L290.059 688.75ZM286.379 700.021L285.671 699.314C283.441 701.544 280.573 702.68 276.979 702.68L276.979 703.68L276.979 704.68C281.039 704.68 284.437 703.376 287.086 700.728L286.379 700.021ZM276.979 703.68L276.979 702.68C273.37 702.68 270.495 701.543 268.265 699.314L267.558 700.021L266.851 700.728C269.5 703.377 272.905 704.68 276.979 704.68L276.979 703.68ZM267.558 700.021L268.267 699.316C266.101 697.137 264.92 693.685 264.92 688.75L263.92 688.75L262.92 688.75C262.92 693.964 264.165 698.026 266.849 700.726L267.558 700.021ZM271.175 690.243L270.175 690.243C270.175 693.262 270.699 695.679 271.939 697.288L272.731 696.677L273.523 696.067C272.688 694.984 272.175 693.111 272.175 690.243L271.175 690.243ZM272.731 696.677L271.942 697.292C273.183 698.884 274.899 699.675 276.979 699.675L276.979 698.675L276.979 697.675C275.47 697.675 274.355 697.134 273.52 696.063L272.731 696.677ZM276.979 698.675L276.979 699.675C279.059 699.675 280.775 698.884 282.016 697.292L281.227 696.677L280.438 696.063C279.603 697.134 278.487 697.675 276.979 697.675L276.979 698.675ZM281.227 696.677L282.015 697.293C283.272 695.683 283.804 693.264 283.804 690.243L282.804 690.243L281.804 690.243C281.804 693.109 281.284 694.98 280.439 696.062L281.227 696.677ZM282.804 690.243L283.804 690.243L283.804 685.511L282.804 685.511L281.804 685.511L281.804 690.243L282.804 690.243ZM282.804 685.511L283.804 685.511C283.804 682.493 283.273 680.08 282.008 678.495L281.227 679.119L280.445 679.742C281.283 680.793 281.804 682.642 281.804 685.511L282.804 685.511ZM281.227 679.119L282.016 678.504C280.775 676.912 279.059 676.121 276.979 676.121L276.979 677.121L276.979 678.121C278.487 678.121 279.603 678.662 280.438 679.733L281.227 679.119ZM276.979 677.121L276.979 676.121C274.899 676.121 273.183 676.912 271.942 678.504L272.731 679.119L273.52 679.733C274.355 678.662 275.47 678.121 276.979 678.121L276.979 677.121ZM272.731 679.119L271.945 678.5C270.698 680.085 270.175 682.495 270.175 685.511L271.175 685.511L272.175 685.511C272.175 682.64 272.69 680.788 273.517 679.737L272.731 679.119ZM271.175 685.511L270.175 685.511L270.175 690.243L271.175 690.243L272.175 690.243L272.175 685.511L271.175 685.511ZM293.928 672.558L293.928 671.558L292.928 671.558L292.928 672.558L293.928 672.558ZM300.93 672.558L301.93 672.558L301.93 671.558L300.93 671.558L300.93 672.558ZM302.15 697.329L301.409 698.001L301.414 698.006L302.15 697.329ZM308.858 697.329L308.123 696.651L308.122 696.652L308.858 697.329ZM310.098 672.558L310.098 671.558L309.098 671.558L309.098 672.558L310.098 672.558ZM317.038 672.558L318.038 672.558L318.038 671.558L317.038 671.558L317.038 672.558ZM313.884 700.841L313.215 700.098L313.212 700.1L313.884 700.841ZM293.928 691.988L294.928 691.988L294.928 672.558L293.928 672.558L292.928 672.558L292.928 691.988L293.928 691.988ZM293.928 672.558L293.928 673.558L300.93 673.558L300.93 672.558L300.93 671.558L293.928 671.558L293.928 672.558ZM300.93 672.558L299.93 672.558L299.93 692.724L300.93 692.724L301.93 692.724L301.93 672.558L300.93 672.558ZM300.93 692.724L299.93 692.724C299.93 694.967 300.339 696.82 301.409 698.001L302.15 697.329L302.891 696.658C302.334 696.043 301.93 694.827 301.93 692.724L300.93 692.724ZM302.15 697.329L301.414 698.006C302.454 699.137 303.873 699.654 305.535 699.654L305.535 698.654L305.535 697.654C304.309 697.654 303.471 697.288 302.885 696.652L302.15 697.329ZM305.535 698.654L305.535 699.654C307.165 699.654 308.559 699.13 309.593 698.006L308.858 697.329L308.122 696.652C307.531 697.294 306.709 697.654 305.535 697.654L305.535 698.654ZM308.858 697.329L309.593 698.007C310.681 696.826 311.098 694.97 311.098 692.724L310.098 692.724L309.098 692.724C309.098 694.824 308.688 696.038 308.123 696.651L308.858 697.329ZM310.098 692.724L311.098 692.724L311.098 672.558L310.098 672.558L309.098 672.558L309.098 692.724L310.098 692.724ZM310.098 672.558L310.098 673.558L317.038 673.558L317.038 672.558L317.038 671.558L310.098 671.558L310.098 672.558ZM317.038 672.558L316.038 672.558L316.038 691.988L317.038 691.988L318.038 691.988L318.038 672.558L317.038 672.558ZM317.038 691.988L316.038 691.988C316.038 695.835 315.031 698.463 313.215 700.098L313.884 700.841L314.553 701.584C316.942 699.434 318.038 696.159 318.038 691.988L317.038 691.988ZM313.884 700.841L313.212 700.1C311.347 701.79 308.83 702.68 305.556 702.68L305.556 703.68L305.556 704.68C309.208 704.68 312.243 703.677 314.555 701.582L313.884 700.841ZM305.556 703.68L305.556 702.68C302.222 702.68 299.662 701.787 297.769 700.095L297.103 700.841L296.436 701.586C298.778 703.68 301.853 704.68 305.556 704.68L305.556 703.68ZM297.103 700.841L297.769 700.095C295.941 698.46 294.928 695.834 294.928 691.988L293.928 691.988L292.928 691.988C292.928 696.161 294.032 699.436 296.436 701.586L297.103 700.841Z" fill="black" mask="url(#path-5-outside-1_17007_6901)"/> +<mask id="path-7-outside-2_17007_6901" maskUnits="userSpaceOnUse" x="96" y="615.343" width="261" height="31" fill="black"> +<rect fill="white" x="96" y="615.343" width="261" height="31"/> +<path d="M97.208 644.343L97.208 617.327L108.081 617.327C111.013 617.327 113.258 618.137 114.816 619.758C116.375 621.366 117.154 623.562 117.154 626.345C117.154 629.116 116.381 631.317 114.835 632.95C113.301 634.571 111.025 635.381 108.007 635.381L103.368 635.381L103.368 644.343L97.208 644.343ZM103.368 631.039L106.949 631.039C108.471 631.039 109.528 630.612 110.122 629.759C110.716 628.893 111.013 627.78 111.013 626.419C111.013 625.071 110.716 623.976 110.122 623.135C109.528 622.281 108.471 621.854 106.949 621.854L103.368 621.854L103.368 631.039ZM118.62 635.474L118.62 634.88C118.62 632.06 119.505 629.802 121.273 628.107C123.042 626.413 125.362 625.565 128.231 625.565C131.076 625.565 133.291 626.369 134.874 627.978C136.457 629.586 137.249 631.806 137.249 634.639L137.249 636.457L122.164 636.457L122.164 633.191L131.441 633.191L131.441 632.932C131.441 632.016 131.169 631.256 130.625 630.649C130.081 630.043 129.271 629.74 128.194 629.74C127.007 629.74 126.098 630.173 125.467 631.039C124.848 631.905 124.539 633.024 124.539 634.397L124.539 635.641C124.539 637.199 124.873 638.418 125.541 639.296C126.221 640.174 127.205 640.613 128.491 640.613C129.407 640.613 130.186 640.403 130.829 639.982C131.472 639.562 131.986 639.049 132.369 638.442L137.008 640.354C136.426 641.714 135.424 642.803 134.002 643.619C132.592 644.436 130.78 644.844 128.565 644.844C125.436 644.844 122.993 644.003 121.236 642.32C119.492 640.626 118.62 638.343 118.62 635.474ZM139.197 639.036C139.197 637.106 139.952 635.616 141.461 634.564C142.982 633.513 144.949 632.981 147.361 632.969L151.443 632.969L151.443 631.874C151.443 631.058 151.239 630.414 150.831 629.944C150.423 629.474 149.73 629.239 148.753 629.239C147.776 629.239 147.058 629.437 146.601 629.833C146.143 630.229 145.914 630.755 145.914 631.41L145.914 631.744L140.292 631.726L140.292 631.354C140.292 629.66 141.09 628.281 142.686 627.217C144.294 626.141 146.434 625.603 149.105 625.603C151.802 625.603 153.855 626.116 155.266 627.143C156.688 628.169 157.399 629.802 157.399 632.041L157.399 640.205C157.399 640.947 157.461 641.659 157.585 642.339C157.721 643.007 157.913 643.582 158.16 644.064L158.16 644.343L152.297 644.343C152.136 644.046 151.994 643.681 151.87 643.248C151.759 642.815 151.685 642.376 151.647 641.931C151.239 642.623 150.509 643.248 149.458 643.805C148.419 644.361 147.108 644.64 145.524 644.64C143.644 644.64 142.117 644.17 140.941 643.229C139.779 642.289 139.197 640.892 139.197 639.036ZM145.116 638.572C145.116 639.352 145.339 639.964 145.784 640.409C146.229 640.842 146.91 641.059 147.825 641.059C148.815 641.059 149.662 640.731 150.367 640.075C151.085 639.407 151.443 638.634 151.443 637.756L151.443 636.197L148.809 636.197C147.547 636.197 146.613 636.389 146.007 636.772C145.413 637.156 145.116 637.756 145.116 638.572ZM161.37 644.343L161.37 626.104L167.159 626.104L167.215 628.386L167.289 628.386C167.759 627.582 168.477 626.932 169.441 626.438C170.419 625.93 171.563 625.677 172.874 625.677C174.754 625.677 176.282 626.202 177.457 627.254C178.632 628.305 179.22 630.093 179.22 632.616L179.22 644.343L173.264 644.343L173.264 633.136C173.264 632.047 173.029 631.28 172.559 630.835C172.101 630.377 171.451 630.148 170.61 630.148C169.893 630.148 169.243 630.359 168.662 630.779C168.081 631.2 167.635 631.763 167.326 632.468L167.326 644.343L161.37 644.343ZM182.801 637.7L182.801 626.104L188.775 626.104L188.775 637.273C188.775 638.424 189.01 639.228 189.48 639.686C189.951 640.131 190.6 640.354 191.429 640.354C192.159 640.354 192.808 640.131 193.377 639.686C193.946 639.24 194.385 638.684 194.694 638.016L194.694 626.104L200.65 626.104L200.65 644.343L194.88 644.343L194.806 642.042L194.75 642.042C194.23 642.871 193.482 643.533 192.505 644.027C191.54 644.522 190.396 644.77 189.072 644.77C187.217 644.77 185.708 644.225 184.545 643.137C183.382 642.036 182.801 640.224 182.801 637.7ZM202.691 630.408L202.691 626.104L215.03 626.104L215.03 630.408L202.691 630.408ZM205.475 638.758L205.475 627.532L205.586 627.161L205.586 620.927L211.356 620.927L211.356 637.867C211.356 638.931 211.517 639.636 211.839 639.982C212.16 640.329 212.643 640.502 213.286 640.502C213.595 640.502 213.892 640.477 214.177 640.428C214.461 640.366 214.74 640.279 215.012 640.168L215.012 644.287C214.69 644.411 214.214 644.528 213.583 644.64C212.952 644.751 212.204 644.807 211.338 644.807C209.495 644.807 208.054 644.33 207.015 643.378C205.988 642.413 205.475 640.873 205.475 638.758ZM226.979 644.343L226.979 617.327L237.853 617.327C240.784 617.327 243.029 618.137 244.588 619.758C246.146 621.366 246.926 623.562 246.926 626.345C246.926 629.116 246.153 631.317 244.606 632.95C243.073 634.571 240.797 635.381 237.778 635.381L233.14 635.381L233.14 644.343L226.979 644.343ZM233.14 631.039L236.721 631.039C238.242 631.039 239.3 630.612 239.894 629.759C240.487 628.893 240.784 627.78 240.784 626.419C240.784 625.071 240.487 623.976 239.894 623.135C239.3 622.281 238.242 621.854 236.721 621.854L233.14 621.854L233.14 631.039ZM249.635 644.343L249.635 626.104L255.665 626.104L255.665 644.343L249.635 644.343ZM249.245 620.37C249.245 619.504 249.542 618.774 250.136 618.181C250.729 617.575 251.577 617.271 252.678 617.271C253.766 617.271 254.601 617.568 255.183 618.162C255.764 618.756 256.055 619.492 256.055 620.37C256.055 621.236 255.758 621.972 255.164 622.578C254.57 623.184 253.729 623.487 252.641 623.487C251.54 623.487 250.699 623.184 250.117 622.578C249.536 621.972 249.245 621.236 249.245 620.37ZM258.708 635.492L258.708 634.898C258.708 632.066 259.617 629.802 261.436 628.107C263.254 626.4 265.647 625.547 268.616 625.547C271.585 625.547 273.972 626.4 275.778 628.107C277.597 629.802 278.506 632.066 278.506 634.898L278.506 635.492C278.506 638.325 277.597 640.595 275.778 642.302C273.972 643.996 271.585 644.844 268.616 644.844C265.635 644.844 263.235 643.996 261.417 642.302C259.611 640.595 258.708 638.325 258.708 635.492ZM264.757 634.639L264.757 635.733C264.757 637.243 265.085 638.424 265.74 639.277C266.408 640.118 267.361 640.539 268.598 640.539C269.847 640.539 270.799 640.118 271.455 639.277C272.123 638.424 272.457 637.243 272.457 635.733L272.457 634.639C272.457 633.142 272.123 631.979 271.455 631.15C270.787 630.309 269.835 629.889 268.598 629.889C267.373 629.889 266.427 630.309 265.759 631.15C265.091 631.979 264.757 633.142 264.757 634.639ZM281.493 644.343L281.493 626.104L287.282 626.104L287.338 628.386L287.412 628.386C287.882 627.582 288.6 626.932 289.564 626.438C290.542 625.93 291.686 625.677 292.997 625.677C294.877 625.677 296.405 626.202 297.58 627.254C298.755 628.305 299.343 630.093 299.343 632.616L299.343 644.343L293.387 644.343L293.387 633.136C293.387 632.047 293.152 631.28 292.682 630.835C292.224 630.377 291.575 630.148 290.733 630.148C290.016 630.148 289.367 630.359 288.785 630.779C288.204 631.2 287.758 631.763 287.449 632.468L287.449 644.343L281.493 644.343ZM302.163 635.474L302.163 634.88C302.163 632.06 303.048 629.802 304.816 628.107C306.585 626.413 308.905 625.565 311.774 625.565C314.619 625.565 316.834 626.369 318.417 627.978C320 629.586 320.792 631.806 320.792 634.639L320.792 636.457L305.707 636.457L305.707 633.191L314.984 633.191L314.984 632.932C314.984 632.016 314.712 631.256 314.168 630.649C313.624 630.043 312.813 629.74 311.737 629.74C310.55 629.74 309.641 630.173 309.01 631.039C308.391 631.905 308.082 633.024 308.082 634.397L308.082 635.641C308.082 637.199 308.416 638.418 309.084 639.296C309.764 640.174 310.748 640.613 312.034 640.613C312.95 640.613 313.729 640.403 314.372 639.982C315.015 639.562 315.529 639.049 315.912 638.442L320.551 640.354C319.969 641.714 318.967 642.803 317.545 643.619C316.135 644.436 314.323 644.844 312.108 644.844C308.979 644.844 306.536 644.003 304.779 642.32C303.035 640.626 302.163 638.343 302.163 635.474ZM322.685 635.474L322.685 634.88C322.685 632.06 323.569 629.802 325.338 628.107C327.107 626.413 329.426 625.565 332.296 625.565C335.141 625.565 337.355 626.369 338.938 627.978C340.522 629.586 341.313 631.806 341.313 634.639L341.313 636.457L326.229 636.457L326.229 633.191L335.506 633.191L335.506 632.932C335.506 632.016 335.234 631.256 334.689 630.649C334.145 630.043 333.335 629.74 332.259 629.74C331.071 629.74 330.162 630.173 329.531 631.039C328.913 631.905 328.604 633.024 328.604 634.397L328.604 635.641C328.604 637.199 328.937 638.418 329.605 639.296C330.286 640.174 331.269 640.613 332.556 640.613C333.471 640.613 334.25 640.403 334.894 639.982C335.537 639.562 336.05 639.049 336.434 638.442L341.072 640.354C340.491 641.714 339.489 642.803 338.066 643.619C336.656 644.436 334.844 644.844 332.63 644.844C329.5 644.844 327.057 644.003 325.301 642.32C323.557 640.626 322.685 638.343 322.685 635.474ZM344.134 644.343L344.134 626.104L349.997 626.104L350.071 628.367L350.127 628.367C350.56 627.6 351.147 626.963 351.89 626.456C352.632 625.949 353.467 625.695 354.395 625.695C354.716 625.695 355.025 625.72 355.322 625.77C355.619 625.819 355.829 625.868 355.953 625.918L355.953 630.612C355.73 630.538 355.471 630.482 355.174 630.445C354.889 630.408 354.568 630.39 354.209 630.39C353.38 630.39 352.601 630.643 351.871 631.15C351.141 631.658 350.578 632.319 350.183 633.136L350.183 644.343L344.134 644.343Z"/> +</mask> +<path d="M97.208 644.343L97.208 617.327L108.081 617.327C111.013 617.327 113.258 618.137 114.816 619.758C116.375 621.366 117.154 623.562 117.154 626.345C117.154 629.116 116.381 631.317 114.835 632.95C113.301 634.571 111.025 635.381 108.007 635.381L103.368 635.381L103.368 644.343L97.208 644.343ZM103.368 631.039L106.949 631.039C108.471 631.039 109.528 630.612 110.122 629.759C110.716 628.893 111.013 627.78 111.013 626.419C111.013 625.071 110.716 623.976 110.122 623.135C109.528 622.281 108.471 621.854 106.949 621.854L103.368 621.854L103.368 631.039ZM118.62 635.474L118.62 634.88C118.62 632.06 119.505 629.802 121.273 628.107C123.042 626.413 125.362 625.565 128.231 625.565C131.076 625.565 133.291 626.369 134.874 627.978C136.457 629.586 137.249 631.806 137.249 634.639L137.249 636.457L122.164 636.457L122.164 633.191L131.441 633.191L131.441 632.932C131.441 632.016 131.169 631.256 130.625 630.649C130.081 630.043 129.271 629.74 128.194 629.74C127.007 629.74 126.098 630.173 125.467 631.039C124.848 631.905 124.539 633.024 124.539 634.397L124.539 635.641C124.539 637.199 124.873 638.418 125.541 639.296C126.221 640.174 127.205 640.613 128.491 640.613C129.407 640.613 130.186 640.403 130.829 639.982C131.472 639.562 131.986 639.049 132.369 638.442L137.008 640.354C136.426 641.714 135.424 642.803 134.002 643.619C132.592 644.436 130.78 644.844 128.565 644.844C125.436 644.844 122.993 644.003 121.236 642.32C119.492 640.626 118.62 638.343 118.62 635.474ZM139.197 639.036C139.197 637.106 139.952 635.616 141.461 634.564C142.982 633.513 144.949 632.981 147.361 632.969L151.443 632.969L151.443 631.874C151.443 631.058 151.239 630.414 150.831 629.944C150.423 629.474 149.73 629.239 148.753 629.239C147.776 629.239 147.058 629.437 146.601 629.833C146.143 630.229 145.914 630.755 145.914 631.41L145.914 631.744L140.292 631.726L140.292 631.354C140.292 629.66 141.09 628.281 142.686 627.217C144.294 626.141 146.434 625.603 149.105 625.603C151.802 625.603 153.855 626.116 155.266 627.143C156.688 628.169 157.399 629.802 157.399 632.041L157.399 640.205C157.399 640.947 157.461 641.659 157.585 642.339C157.721 643.007 157.913 643.582 158.16 644.064L158.16 644.343L152.297 644.343C152.136 644.046 151.994 643.681 151.87 643.248C151.759 642.815 151.685 642.376 151.647 641.931C151.239 642.623 150.509 643.248 149.458 643.805C148.419 644.361 147.108 644.64 145.524 644.64C143.644 644.64 142.117 644.17 140.941 643.229C139.779 642.289 139.197 640.892 139.197 639.036ZM145.116 638.572C145.116 639.352 145.339 639.964 145.784 640.409C146.229 640.842 146.91 641.059 147.825 641.059C148.815 641.059 149.662 640.731 150.367 640.075C151.085 639.407 151.443 638.634 151.443 637.756L151.443 636.197L148.809 636.197C147.547 636.197 146.613 636.389 146.007 636.772C145.413 637.156 145.116 637.756 145.116 638.572ZM161.37 644.343L161.37 626.104L167.159 626.104L167.215 628.386L167.289 628.386C167.759 627.582 168.477 626.932 169.441 626.438C170.419 625.93 171.563 625.677 172.874 625.677C174.754 625.677 176.282 626.202 177.457 627.254C178.632 628.305 179.22 630.093 179.22 632.616L179.22 644.343L173.264 644.343L173.264 633.136C173.264 632.047 173.029 631.28 172.559 630.835C172.101 630.377 171.451 630.148 170.61 630.148C169.893 630.148 169.243 630.359 168.662 630.779C168.081 631.2 167.635 631.763 167.326 632.468L167.326 644.343L161.37 644.343ZM182.801 637.7L182.801 626.104L188.775 626.104L188.775 637.273C188.775 638.424 189.01 639.228 189.48 639.686C189.951 640.131 190.6 640.354 191.429 640.354C192.159 640.354 192.808 640.131 193.377 639.686C193.946 639.24 194.385 638.684 194.694 638.016L194.694 626.104L200.65 626.104L200.65 644.343L194.88 644.343L194.806 642.042L194.75 642.042C194.23 642.871 193.482 643.533 192.505 644.027C191.54 644.522 190.396 644.77 189.072 644.77C187.217 644.77 185.708 644.225 184.545 643.137C183.382 642.036 182.801 640.224 182.801 637.7ZM202.691 630.408L202.691 626.104L215.03 626.104L215.03 630.408L202.691 630.408ZM205.475 638.758L205.475 627.532L205.586 627.161L205.586 620.927L211.356 620.927L211.356 637.867C211.356 638.931 211.517 639.636 211.839 639.982C212.16 640.329 212.643 640.502 213.286 640.502C213.595 640.502 213.892 640.477 214.177 640.428C214.461 640.366 214.74 640.279 215.012 640.168L215.012 644.287C214.69 644.411 214.214 644.528 213.583 644.64C212.952 644.751 212.204 644.807 211.338 644.807C209.495 644.807 208.054 644.33 207.015 643.378C205.988 642.413 205.475 640.873 205.475 638.758ZM226.979 644.343L226.979 617.327L237.853 617.327C240.784 617.327 243.029 618.137 244.588 619.758C246.146 621.366 246.926 623.562 246.926 626.345C246.926 629.116 246.153 631.317 244.606 632.95C243.073 634.571 240.797 635.381 237.778 635.381L233.14 635.381L233.14 644.343L226.979 644.343ZM233.14 631.039L236.721 631.039C238.242 631.039 239.3 630.612 239.894 629.759C240.487 628.893 240.784 627.78 240.784 626.419C240.784 625.071 240.487 623.976 239.894 623.135C239.3 622.281 238.242 621.854 236.721 621.854L233.14 621.854L233.14 631.039ZM249.635 644.343L249.635 626.104L255.665 626.104L255.665 644.343L249.635 644.343ZM249.245 620.37C249.245 619.504 249.542 618.774 250.136 618.181C250.729 617.575 251.577 617.271 252.678 617.271C253.766 617.271 254.601 617.568 255.183 618.162C255.764 618.756 256.055 619.492 256.055 620.37C256.055 621.236 255.758 621.972 255.164 622.578C254.57 623.184 253.729 623.487 252.641 623.487C251.54 623.487 250.699 623.184 250.117 622.578C249.536 621.972 249.245 621.236 249.245 620.37ZM258.708 635.492L258.708 634.898C258.708 632.066 259.617 629.802 261.436 628.107C263.254 626.4 265.647 625.547 268.616 625.547C271.585 625.547 273.972 626.4 275.778 628.107C277.597 629.802 278.506 632.066 278.506 634.898L278.506 635.492C278.506 638.325 277.597 640.595 275.778 642.302C273.972 643.996 271.585 644.844 268.616 644.844C265.635 644.844 263.235 643.996 261.417 642.302C259.611 640.595 258.708 638.325 258.708 635.492ZM264.757 634.639L264.757 635.733C264.757 637.243 265.085 638.424 265.74 639.277C266.408 640.118 267.361 640.539 268.598 640.539C269.847 640.539 270.799 640.118 271.455 639.277C272.123 638.424 272.457 637.243 272.457 635.733L272.457 634.639C272.457 633.142 272.123 631.979 271.455 631.15C270.787 630.309 269.835 629.889 268.598 629.889C267.373 629.889 266.427 630.309 265.759 631.15C265.091 631.979 264.757 633.142 264.757 634.639ZM281.493 644.343L281.493 626.104L287.282 626.104L287.338 628.386L287.412 628.386C287.882 627.582 288.6 626.932 289.564 626.438C290.542 625.93 291.686 625.677 292.997 625.677C294.877 625.677 296.405 626.202 297.58 627.254C298.755 628.305 299.343 630.093 299.343 632.616L299.343 644.343L293.387 644.343L293.387 633.136C293.387 632.047 293.152 631.28 292.682 630.835C292.224 630.377 291.575 630.148 290.733 630.148C290.016 630.148 289.367 630.359 288.785 630.779C288.204 631.2 287.758 631.763 287.449 632.468L287.449 644.343L281.493 644.343ZM302.163 635.474L302.163 634.88C302.163 632.06 303.048 629.802 304.816 628.107C306.585 626.413 308.905 625.565 311.774 625.565C314.619 625.565 316.834 626.369 318.417 627.978C320 629.586 320.792 631.806 320.792 634.639L320.792 636.457L305.707 636.457L305.707 633.191L314.984 633.191L314.984 632.932C314.984 632.016 314.712 631.256 314.168 630.649C313.624 630.043 312.813 629.74 311.737 629.74C310.55 629.74 309.641 630.173 309.01 631.039C308.391 631.905 308.082 633.024 308.082 634.397L308.082 635.641C308.082 637.199 308.416 638.418 309.084 639.296C309.764 640.174 310.748 640.613 312.034 640.613C312.95 640.613 313.729 640.403 314.372 639.982C315.015 639.562 315.529 639.049 315.912 638.442L320.551 640.354C319.969 641.714 318.967 642.803 317.545 643.619C316.135 644.436 314.323 644.844 312.108 644.844C308.979 644.844 306.536 644.003 304.779 642.32C303.035 640.626 302.163 638.343 302.163 635.474ZM322.685 635.474L322.685 634.88C322.685 632.06 323.569 629.802 325.338 628.107C327.107 626.413 329.426 625.565 332.296 625.565C335.141 625.565 337.355 626.369 338.938 627.978C340.522 629.586 341.313 631.806 341.313 634.639L341.313 636.457L326.229 636.457L326.229 633.191L335.506 633.191L335.506 632.932C335.506 632.016 335.234 631.256 334.689 630.649C334.145 630.043 333.335 629.74 332.259 629.74C331.071 629.74 330.162 630.173 329.531 631.039C328.913 631.905 328.604 633.024 328.604 634.397L328.604 635.641C328.604 637.199 328.937 638.418 329.605 639.296C330.286 640.174 331.269 640.613 332.556 640.613C333.471 640.613 334.25 640.403 334.894 639.982C335.537 639.562 336.05 639.049 336.434 638.442L341.072 640.354C340.491 641.714 339.489 642.803 338.066 643.619C336.656 644.436 334.844 644.844 332.63 644.844C329.5 644.844 327.057 644.003 325.301 642.32C323.557 640.626 322.685 638.343 322.685 635.474ZM344.134 644.343L344.134 626.104L349.997 626.104L350.071 628.367L350.127 628.367C350.56 627.6 351.147 626.963 351.89 626.456C352.632 625.949 353.467 625.695 354.395 625.695C354.716 625.695 355.025 625.72 355.322 625.77C355.619 625.819 355.829 625.868 355.953 625.918L355.953 630.612C355.73 630.538 355.471 630.482 355.174 630.445C354.889 630.408 354.568 630.39 354.209 630.39C353.38 630.39 352.601 630.643 351.871 631.15C351.141 631.658 350.578 632.319 350.183 633.136L350.183 644.343L344.134 644.343Z" fill="white"/> +<path d="M97.208 644.343L96.208 644.343L96.208 645.343L97.208 645.343L97.208 644.343ZM97.208 617.327L97.208 616.327L96.208 616.327L96.208 617.327L97.208 617.327ZM114.816 619.758L114.096 620.451L114.098 620.454L114.816 619.758ZM114.835 632.95L114.109 632.263L114.109 632.263L114.835 632.95ZM103.368 635.381L103.368 634.381L102.368 634.381L102.368 635.381L103.368 635.381ZM103.368 644.343L103.368 645.343L104.368 645.343L104.368 644.343L103.368 644.343ZM103.368 631.039L102.368 631.039L102.368 632.039L103.368 632.039L103.368 631.039ZM110.122 629.759L110.943 630.33L110.947 630.324L110.122 629.759ZM110.122 623.135L109.301 623.706L109.305 623.711L110.122 623.135ZM103.368 621.854L103.368 620.854L102.368 620.854L102.368 621.854L103.368 621.854ZM97.208 644.343L98.208 644.343L98.208 617.327L97.208 617.327L96.208 617.327L96.208 644.343L97.208 644.343ZM97.208 617.327L97.208 618.327L108.081 618.327L108.081 617.327L108.081 616.327L97.208 616.327L97.208 617.327ZM108.081 617.327L108.081 618.327C110.827 618.327 112.778 619.081 114.096 620.451L114.816 619.758L115.537 619.065C113.737 617.193 111.198 616.327 108.081 616.327L108.081 617.327ZM114.816 619.758L114.098 620.454C115.435 621.832 116.154 623.755 116.154 626.345L117.154 626.345L118.154 626.345C118.154 623.368 117.315 620.899 115.534 619.062L114.816 619.758ZM117.154 626.345L116.154 626.345C116.154 628.922 115.44 630.856 114.109 632.263L114.835 632.95L115.561 633.638C117.322 631.778 118.154 629.309 118.154 626.345L117.154 626.345ZM114.835 632.95L114.109 632.263C112.823 633.621 110.851 634.381 108.007 634.381L108.007 635.381L108.007 636.381C111.199 636.381 113.779 635.52 115.561 633.638L114.835 632.95ZM108.007 635.381L108.007 634.381L103.368 634.381L103.368 635.381L103.368 636.381L108.007 636.381L108.007 635.381ZM103.368 635.381L102.368 635.381L102.368 644.343L103.368 644.343L104.368 644.343L104.368 635.381L103.368 635.381ZM103.368 644.343L103.368 643.343L97.208 643.343L97.208 644.343L97.208 645.343L103.368 645.343L103.368 644.343ZM103.368 631.039L103.368 632.039L106.949 632.039L106.949 631.039L106.949 630.039L103.368 630.039L103.368 631.039ZM106.949 631.039L106.949 632.039C108.637 632.039 110.086 631.562 110.943 630.33L110.122 629.759L109.301 629.188C108.97 629.663 108.304 630.039 106.949 630.039L106.949 631.039ZM110.122 629.759L110.947 630.324C111.684 629.249 112.013 627.922 112.013 626.419L111.013 626.419L110.013 626.419C110.013 627.637 109.747 628.537 109.297 629.193L110.122 629.759ZM111.013 626.419L112.013 626.419C112.013 624.928 111.684 623.613 110.939 622.558L110.122 623.135L109.305 623.711C109.748 624.339 110.013 625.214 110.013 626.419L111.013 626.419ZM110.122 623.135L110.943 622.564C110.086 621.332 108.637 620.854 106.949 620.854L106.949 621.854L106.949 622.854C108.304 622.854 108.97 623.23 109.301 623.706L110.122 623.135ZM106.949 621.854L106.949 620.854L103.368 620.854L103.368 621.854L103.368 622.854L106.949 622.854L106.949 621.854ZM103.368 621.854L102.368 621.854L102.368 631.039L103.368 631.039L104.368 631.039L104.368 621.854L103.368 621.854ZM121.273 628.107L121.965 628.83L121.273 628.107ZM137.249 636.457L137.249 637.457L138.249 637.457L138.249 636.457L137.249 636.457ZM122.164 636.457L121.164 636.457L121.164 637.457L122.164 637.457L122.164 636.457ZM122.164 633.191L122.164 632.191L121.164 632.191L121.164 633.191L122.164 633.191ZM131.441 633.191L131.441 634.191L132.441 634.191L132.441 633.191L131.441 633.191ZM125.467 631.039L124.659 630.45L124.653 630.458L125.467 631.039ZM125.541 639.296L124.745 639.901L124.75 639.908L125.541 639.296ZM132.369 638.442L132.75 637.518L131.973 637.198L131.524 637.908L132.369 638.442ZM137.008 640.354L137.927 640.746L138.325 639.815L137.389 639.429L137.008 640.354ZM134.002 643.619L133.504 642.752L133.501 642.754L134.002 643.619ZM121.236 642.32L120.539 643.038L120.545 643.043L121.236 642.32ZM118.62 635.474L119.62 635.474L119.62 634.88L118.62 634.88L117.62 634.88L117.62 635.474L118.62 635.474ZM118.62 634.88L119.62 634.88C119.62 632.287 120.424 630.307 121.965 628.83L121.273 628.107L120.582 627.385C118.586 629.298 117.62 631.832 117.62 634.88L118.62 634.88ZM121.273 628.107L121.965 628.83C123.516 627.343 125.572 626.565 128.231 626.565L128.231 625.565L128.231 624.565C125.151 624.565 122.568 625.482 120.582 627.385L121.273 628.107ZM128.231 625.565L128.231 626.565C130.882 626.565 132.812 627.309 134.161 628.679L134.874 627.978L135.587 627.276C133.769 625.43 131.271 624.565 128.231 624.565L128.231 625.565ZM134.874 627.978L134.161 628.679C135.516 630.055 136.249 631.998 136.249 634.639L137.249 634.639L138.249 634.639C138.249 631.614 137.398 629.116 135.587 627.276L134.874 627.978ZM137.249 634.639L136.249 634.639L136.249 636.457L137.249 636.457L138.249 636.457L138.249 634.639L137.249 634.639ZM137.249 636.457L137.249 635.457L122.164 635.457L122.164 636.457L122.164 637.457L137.249 637.457L137.249 636.457ZM122.164 636.457L123.164 636.457L123.164 633.191L122.164 633.191L121.164 633.191L121.164 636.457L122.164 636.457ZM122.164 633.191L122.164 634.191L131.441 634.191L131.441 633.191L131.441 632.191L122.164 632.191L122.164 633.191ZM131.441 633.191L132.441 633.191L132.441 632.932L131.441 632.932L130.441 632.932L130.441 633.191L131.441 633.191ZM131.441 632.932L132.441 632.932C132.441 631.802 132.099 630.794 131.369 629.981L130.625 630.649L129.881 631.318C130.24 631.717 130.441 632.23 130.441 632.932L131.441 632.932ZM130.625 630.649L131.369 629.981C130.579 629.102 129.458 628.74 128.194 628.74L128.194 629.74L128.194 630.74C129.083 630.74 129.582 630.985 129.881 631.318L130.625 630.649ZM128.194 629.74L128.194 628.74C126.727 628.74 125.5 629.295 124.659 630.45L125.467 631.039L126.275 631.628C126.695 631.051 127.286 630.74 128.194 630.74L128.194 629.74ZM125.467 631.039L124.653 630.458C123.882 631.537 123.539 632.876 123.539 634.397L124.539 634.397L125.539 634.397C125.539 633.172 125.814 632.273 126.281 631.62L125.467 631.039ZM124.539 634.397L123.539 634.397L123.539 635.641L124.539 635.641L125.539 635.641L125.539 634.397L124.539 634.397ZM124.539 635.641L123.539 635.641C123.539 637.33 123.9 638.79 124.745 639.901L125.541 639.296L126.337 638.691C125.846 638.045 125.539 637.068 125.539 635.641L124.539 635.641ZM125.541 639.296L124.75 639.908C125.652 641.072 126.951 641.613 128.491 641.613L128.491 640.613L128.491 639.613C127.459 639.613 126.791 639.277 126.332 638.684L125.541 639.296ZM128.491 640.613L128.491 641.613C129.563 641.613 130.542 641.365 131.376 640.819L130.829 639.982L130.282 639.145C129.83 639.441 129.25 639.613 128.491 639.613L128.491 640.613ZM130.829 639.982L131.376 640.819C132.131 640.326 132.749 639.713 133.214 638.977L132.369 638.442L131.524 637.908C131.222 638.384 130.814 638.797 130.282 639.145L130.829 639.982ZM132.369 638.442L131.988 639.367L136.627 641.278L137.008 640.354L137.389 639.429L132.75 637.518L132.369 638.442ZM137.008 640.354L136.088 639.961C135.601 641.1 134.76 642.031 133.504 642.752L134.002 643.619L134.5 644.486C136.089 643.574 137.251 642.329 137.927 640.746L137.008 640.354ZM134.002 643.619L133.501 642.754C132.288 643.456 130.664 643.844 128.565 643.844L128.565 644.844L128.565 645.844C130.895 645.844 132.895 645.415 134.503 644.485L134.002 643.619ZM128.565 644.844L128.565 643.844C125.617 643.844 123.449 643.055 121.928 641.598L121.236 642.32L120.545 643.043C122.536 644.95 125.255 645.844 128.565 645.844L128.565 644.844ZM121.236 642.32L121.933 641.603C120.418 640.13 119.62 638.126 119.62 635.474L118.62 635.474L117.62 635.474C117.62 638.561 118.567 641.121 120.539 643.038L121.236 642.32ZM141.461 634.564L140.892 633.742L140.889 633.744L141.461 634.564ZM147.361 632.969L147.361 631.969L147.356 631.969L147.361 632.969ZM151.443 632.969L151.443 633.969L152.443 633.969L152.443 632.969L151.443 632.969ZM145.914 631.744L145.911 632.744L146.914 632.747L146.914 631.744L145.914 631.744ZM140.292 631.726L139.292 631.726L139.292 632.722L140.289 632.726L140.292 631.726ZM142.686 627.217L143.24 628.049L143.242 628.048L142.686 627.217ZM155.266 627.143L154.677 627.951L154.68 627.953L155.266 627.143ZM157.585 642.339L156.601 642.518L156.603 642.528L156.605 642.538L157.585 642.339ZM158.16 644.064L159.16 644.064L159.16 643.823L159.05 643.608L158.16 644.064ZM158.16 644.343L158.16 645.343L159.16 645.343L159.16 644.343L158.16 644.343ZM152.297 644.343L151.418 644.819L151.701 645.343L152.297 645.343L152.297 644.343ZM151.87 643.248L150.902 643.497L150.905 643.51L150.909 643.523L151.87 643.248ZM151.647 641.931L152.644 641.848L152.383 638.713L150.786 641.423L151.647 641.931ZM149.458 643.805L148.99 642.921L148.986 642.923L149.458 643.805ZM140.941 643.229L140.313 644.007L140.317 644.01L140.941 643.229ZM145.784 640.409L145.077 641.116L145.087 641.126L145.784 640.409ZM150.367 640.075L151.048 640.808L151.049 640.807L150.367 640.075ZM151.443 636.197L152.443 636.197L152.443 635.197L151.443 635.197L151.443 636.197ZM146.007 636.772L145.472 635.927L145.464 635.932L146.007 636.772ZM139.197 639.036L140.197 639.036C140.197 637.414 140.807 636.239 142.033 635.385L141.461 634.564L140.889 633.744C139.097 634.993 138.197 636.798 138.197 639.036L139.197 639.036ZM141.461 634.564L142.029 635.387C143.342 634.48 145.095 633.98 147.366 633.969L147.361 632.969L147.356 631.969C144.803 631.982 142.623 632.546 140.892 633.742L141.461 634.564ZM147.361 632.969L147.361 633.969L151.443 633.969L151.443 632.969L151.443 631.969L147.361 631.969L147.361 632.969ZM151.443 632.969L152.443 632.969L152.443 631.874L151.443 631.874L150.443 631.874L150.443 632.969L151.443 632.969ZM151.443 631.874L152.443 631.874C152.443 630.893 152.196 629.991 151.586 629.289L150.831 629.944L150.076 630.6C150.282 630.838 150.443 631.222 150.443 631.874L151.443 631.874ZM150.831 629.944L151.586 629.289C150.902 628.501 149.856 628.239 148.753 628.239L148.753 629.239L148.753 630.239C149.604 630.239 149.944 630.448 150.076 630.6L150.831 629.944ZM148.753 629.239L148.753 628.239C147.674 628.239 146.669 628.452 145.946 629.077L146.601 629.833L147.255 630.589C147.448 630.422 147.877 630.239 148.753 630.239L148.753 629.239ZM146.601 629.833L145.946 629.077C145.249 629.68 144.914 630.492 144.914 631.41L145.914 631.41L146.914 631.41C146.914 631.018 147.037 630.778 147.255 630.589L146.601 629.833ZM145.914 631.41L144.914 631.41L144.914 631.744L145.914 631.744L146.914 631.744L146.914 631.41L145.914 631.41ZM145.914 631.744L145.917 630.744L140.295 630.726L140.292 631.726L140.289 632.726L145.911 632.744L145.914 631.744ZM140.292 631.726L141.292 631.726L141.292 631.354L140.292 631.354L139.292 631.354L139.292 631.726L140.292 631.726ZM140.292 631.354L141.292 631.354C141.292 630.043 141.88 628.956 143.24 628.049L142.686 627.217L142.131 626.385C140.3 627.605 139.292 629.277 139.292 631.354L140.292 631.354ZM142.686 627.217L143.242 628.048C144.634 627.116 146.559 626.603 149.105 626.603L149.105 625.603L149.105 624.603C146.309 624.603 143.954 625.165 142.129 626.386L142.686 627.217ZM149.105 625.603L149.105 626.603C151.699 626.603 153.508 627.1 154.677 627.951L155.266 627.143L155.854 626.334C154.203 625.132 151.906 624.603 149.105 624.603L149.105 625.603ZM155.266 627.143L154.68 627.953C155.772 628.741 156.399 630.025 156.399 632.041L157.399 632.041L158.399 632.041C158.399 629.579 157.605 627.597 155.851 626.332L155.266 627.143ZM157.399 632.041L156.399 632.041L156.399 640.205L157.399 640.205L158.399 640.205L158.399 632.041L157.399 632.041ZM157.399 640.205L156.399 640.205C156.399 641.003 156.466 641.774 156.601 642.518L157.585 642.339L158.569 642.16C158.457 641.543 158.399 640.892 158.399 640.205L157.399 640.205ZM157.585 642.339L156.605 642.538C156.755 643.274 156.972 643.94 157.27 644.521L158.16 644.064L159.05 643.608C158.853 643.224 158.687 642.74 158.565 642.139L157.585 642.339ZM158.16 644.064L157.16 644.064L157.16 644.343L158.16 644.343L159.16 644.343L159.16 644.064L158.16 644.064ZM158.16 644.343L158.16 643.343L152.297 643.343L152.297 644.343L152.297 645.343L158.16 645.343L158.16 644.343ZM152.297 644.343L153.176 643.866C153.059 643.651 152.942 643.358 152.832 642.973L151.87 643.248L150.909 643.523C151.046 644.004 151.213 644.441 151.418 644.819L152.297 644.343ZM151.87 643.248L152.839 642.999C152.741 642.62 152.676 642.237 152.644 641.848L151.647 641.931L150.651 642.014C150.693 642.515 150.776 643.01 150.902 643.497L151.87 643.248ZM151.647 641.931L150.786 641.423C150.506 641.897 149.951 642.412 148.99 642.921L149.458 643.805L149.926 644.688C151.067 644.084 151.972 643.349 152.509 642.438L151.647 641.931ZM149.458 643.805L148.986 642.923C148.133 643.38 146.997 643.64 145.524 643.64L145.524 644.64L145.524 645.64C147.218 645.64 148.705 645.343 149.93 644.686L149.458 643.805ZM145.524 644.64L145.524 643.64C143.813 643.64 142.523 643.214 141.566 642.449L140.941 643.229L140.317 644.01C141.71 645.125 143.475 645.64 145.524 645.64L145.524 644.64ZM140.941 643.229L141.57 642.452C140.698 641.747 140.197 640.669 140.197 639.036L139.197 639.036L138.197 639.036C138.197 641.114 138.859 642.832 140.313 644.007L140.941 643.229ZM145.116 638.572L144.116 638.572C144.116 639.55 144.402 640.441 145.077 641.116L145.784 640.409L146.491 639.702C146.276 639.487 146.116 639.153 146.116 638.572L145.116 638.572ZM145.784 640.409L145.087 641.126C145.791 641.811 146.772 642.059 147.825 642.059L147.825 641.059L147.825 640.059C147.048 640.059 146.668 639.873 146.481 639.692L145.784 640.409ZM147.825 641.059L147.825 642.059C149.06 642.059 150.152 641.64 151.048 640.808L150.367 640.075L149.686 639.343C149.172 639.821 148.57 640.059 147.825 640.059L147.825 641.059ZM150.367 640.075L151.049 640.807C151.943 639.974 152.443 638.946 152.443 637.756L151.443 637.756L150.443 637.756C150.443 638.323 150.226 638.84 149.686 639.343L150.367 640.075ZM151.443 637.756L152.443 637.756L152.443 636.197L151.443 636.197L150.443 636.197L150.443 637.756L151.443 637.756ZM151.443 636.197L151.443 635.197L148.809 635.197L148.809 636.197L148.809 637.197L151.443 637.197L151.443 636.197ZM148.809 636.197L148.809 635.197C147.483 635.197 146.319 635.392 145.472 635.927L146.007 636.772L146.541 637.618C146.907 637.386 147.611 637.197 148.809 637.197L148.809 636.197ZM146.007 636.772L145.464 635.932C144.537 636.531 144.116 637.478 144.116 638.572L145.116 638.572L146.116 638.572C146.116 638.034 146.289 637.781 146.549 637.613L146.007 636.772ZM161.37 644.343L160.37 644.343L160.37 645.343L161.37 645.343L161.37 644.343ZM161.37 626.104L161.37 625.104L160.37 625.104L160.37 626.104L161.37 626.104ZM167.159 626.104L168.159 626.079L168.135 625.104L167.159 625.104L167.159 626.104ZM167.215 628.386L166.215 628.41L166.239 629.386L167.215 629.386L167.215 628.386ZM167.289 628.386L167.289 629.386L167.863 629.386L168.152 628.89L167.289 628.386ZM169.441 626.438L169.898 627.327L169.902 627.325L169.441 626.438ZM177.457 627.254L178.124 626.509L177.457 627.254ZM179.22 644.343L179.22 645.343L180.22 645.343L180.22 644.343L179.22 644.343ZM173.264 644.343L172.264 644.343L172.264 645.343L173.264 645.343L173.264 644.343ZM172.559 630.835L171.851 631.542L171.861 631.552L171.871 631.561L172.559 630.835ZM168.662 630.779L168.076 629.969L168.662 630.779ZM167.326 632.468L166.41 632.066L166.326 632.258L166.326 632.468L167.326 632.468ZM167.326 644.343L167.326 645.343L168.326 645.343L168.326 644.343L167.326 644.343ZM161.37 644.343L162.37 644.343L162.37 626.104L161.37 626.104L160.37 626.104L160.37 644.343L161.37 644.343ZM161.37 626.104L161.37 627.104L167.159 627.104L167.159 626.104L167.159 625.104L161.37 625.104L161.37 626.104ZM167.159 626.104L166.159 626.128L166.215 628.41L167.215 628.386L168.215 628.361L168.159 626.079L167.159 626.104ZM167.215 628.386L167.215 629.386L167.289 629.386L167.289 628.386L167.289 627.386L167.215 627.386L167.215 628.386ZM167.289 628.386L168.152 628.89C168.511 628.276 169.074 627.75 169.898 627.327L169.441 626.438L168.985 625.548C167.879 626.115 167.007 626.887 166.426 627.881L167.289 628.386ZM169.441 626.438L169.902 627.325C170.712 626.905 171.693 626.677 172.874 626.677L172.874 625.677L172.874 624.677C171.433 624.677 170.125 624.956 168.981 625.55L169.441 626.438ZM172.874 625.677L172.874 626.677C174.558 626.677 175.833 627.142 176.79 627.999L177.457 627.254L178.124 626.509C176.731 625.263 174.95 624.677 172.874 624.677L172.874 625.677ZM177.457 627.254L176.79 627.999C177.654 628.772 178.22 630.21 178.22 632.616L179.22 632.616L180.22 632.616C180.22 629.975 179.61 627.838 178.124 626.509L177.457 627.254ZM179.22 632.616L178.22 632.616L178.22 644.343L179.22 644.343L180.22 644.343L180.22 632.616L179.22 632.616ZM179.22 644.343L179.22 643.343L173.264 643.343L173.264 644.343L173.264 645.343L179.22 645.343L179.22 644.343ZM173.264 644.343L174.264 644.343L174.264 633.136L173.264 633.136L172.264 633.136L172.264 644.343L173.264 644.343ZM173.264 633.136L174.264 633.136C174.264 631.95 174.016 630.838 173.246 630.109L172.559 630.835L171.871 631.561C172.042 631.723 172.264 632.144 172.264 633.136L173.264 633.136ZM172.559 630.835L173.266 630.128C172.569 629.431 171.634 629.148 170.61 629.148L170.61 630.148L170.61 631.148C171.269 631.148 171.633 631.323 171.851 631.542L172.559 630.835ZM170.61 630.148L170.61 629.148C169.682 629.148 168.828 629.425 168.076 629.969L168.662 630.779L169.248 631.59C169.659 631.292 170.103 631.148 170.61 631.148L170.61 630.148ZM168.662 630.779L168.076 629.969C167.34 630.502 166.786 631.21 166.41 632.066L167.326 632.468L168.242 632.869C168.485 632.315 168.822 631.898 169.248 631.59L168.662 630.779ZM167.326 632.468L166.326 632.468L166.326 644.343L167.326 644.343L168.326 644.343L168.326 632.468L167.326 632.468ZM167.326 644.343L167.326 643.343L161.37 643.343L161.37 644.343L161.37 645.343L167.326 645.343L167.326 644.343ZM182.801 626.104L182.801 625.104L181.801 625.104L181.801 626.104L182.801 626.104ZM188.775 626.104L189.775 626.104L189.775 625.104L188.775 625.104L188.775 626.104ZM189.48 639.686L188.783 640.402L188.793 640.412L189.48 639.686ZM194.694 638.016L195.602 638.436L195.694 638.236L195.694 638.016L194.694 638.016ZM194.694 626.104L194.694 625.104L193.694 625.104L193.694 626.104L194.694 626.104ZM200.65 626.104L201.65 626.104L201.65 625.104L200.65 625.104L200.65 626.104ZM200.65 644.343L200.65 645.343L201.65 645.343L201.65 644.343L200.65 644.343ZM194.88 644.343L193.88 644.375L193.912 645.343L194.88 645.343L194.88 644.343ZM194.806 642.042L195.805 642.01L195.774 641.042L194.806 641.042L194.806 642.042ZM194.75 642.042L194.75 641.042L194.197 641.042L193.903 641.511L194.75 642.042ZM192.505 644.027L192.053 643.135L192.049 643.138L192.505 644.027ZM184.545 643.137L183.857 643.863L183.861 643.867L184.545 643.137ZM182.801 637.7L183.801 637.7L183.801 626.104L182.801 626.104L181.801 626.104L181.801 637.7L182.801 637.7ZM182.801 626.104L182.801 627.104L188.775 627.104L188.775 626.104L188.775 625.104L182.801 625.104L182.801 626.104ZM188.775 626.104L187.775 626.104L187.775 637.273L188.775 637.273L189.775 637.273L189.775 626.104L188.775 626.104ZM188.775 637.273L187.775 637.273C187.775 638.505 188.017 639.656 188.783 640.402L189.48 639.686L190.178 638.969C190.004 638.8 189.775 638.343 189.775 637.273L188.775 637.273ZM189.48 639.686L188.793 640.412C189.496 641.078 190.419 641.354 191.429 641.354L191.429 640.354L191.429 639.354C190.781 639.354 190.405 639.184 190.168 638.96L189.48 639.686ZM191.429 640.354L191.429 641.354C192.379 641.354 193.246 641.058 193.993 640.473L193.377 639.686L192.761 638.898C192.369 639.204 191.938 639.354 191.429 639.354L191.429 640.354ZM193.377 639.686L193.993 640.473C194.689 639.928 195.227 639.245 195.602 638.436L194.694 638.016L193.787 637.596C193.543 638.122 193.202 638.552 192.761 638.898L193.377 639.686ZM194.694 638.016L195.694 638.016L195.694 626.104L194.694 626.104L193.694 626.104L193.694 638.016L194.694 638.016ZM194.694 626.104L194.694 627.104L200.65 627.104L200.65 626.104L200.65 625.104L194.694 625.104L194.694 626.104ZM200.65 626.104L199.65 626.104L199.65 644.343L200.65 644.343L201.65 644.343L201.65 626.104L200.65 626.104ZM200.65 644.343L200.65 643.343L194.88 643.343L194.88 644.343L194.88 645.343L200.65 645.343L200.65 644.343ZM194.88 644.343L195.879 644.311L195.805 642.01L194.806 642.042L193.806 642.074L193.88 644.375L194.88 644.343ZM194.806 642.042L194.806 641.042L194.75 641.042L194.75 642.042L194.75 643.042L194.806 643.042L194.806 642.042ZM194.75 642.042L193.903 641.511C193.491 642.168 192.888 642.712 192.053 643.135L192.505 644.027L192.957 644.92C194.076 644.353 194.97 643.574 195.597 642.573L194.75 642.042ZM192.505 644.027L192.049 643.138C191.253 643.546 190.272 643.77 189.072 643.77L189.072 644.77L189.072 645.77C190.52 645.77 191.827 645.499 192.961 644.917L192.505 644.027ZM189.072 644.77L189.072 643.77C187.426 643.77 186.176 643.293 185.228 642.407L184.545 643.137L183.861 643.867C185.24 645.157 187.008 645.77 189.072 645.77L189.072 644.77ZM184.545 643.137L185.232 642.411C184.359 641.583 183.801 640.103 183.801 637.7L182.801 637.7L181.801 637.7C181.801 640.344 182.405 642.488 183.857 643.863L184.545 643.137ZM202.691 630.408L201.691 630.408L201.691 631.408L202.691 631.408L202.691 630.408ZM202.691 626.104L202.691 625.104L201.691 625.104L201.691 626.104L202.691 626.104ZM215.03 626.104L216.03 626.104L216.03 625.104L215.03 625.104L215.03 626.104ZM215.03 630.408L215.03 631.408L216.03 631.408L216.03 630.408L215.03 630.408ZM205.475 627.532L204.517 627.245L204.475 627.385L204.475 627.532L205.475 627.532ZM205.586 627.161L206.544 627.448L206.586 627.308L206.586 627.161L205.586 627.161ZM205.586 620.927L205.586 619.927L204.586 619.927L204.586 620.927L205.586 620.927ZM211.356 620.927L212.356 620.927L212.356 619.927L211.356 619.927L211.356 620.927ZM211.839 639.982L211.106 640.663L211.839 639.982ZM214.177 640.428L214.348 641.413L214.369 641.409L214.389 641.405L214.177 640.428ZM215.012 640.168L216.012 640.168L216.012 638.678L214.633 639.242L215.012 640.168ZM215.012 644.287L215.371 645.22L216.012 644.974L216.012 644.287L215.012 644.287ZM207.015 643.378L206.33 644.107L206.339 644.115L207.015 643.378ZM202.691 630.408L203.691 630.408L203.691 626.104L202.691 626.104L201.691 626.104L201.691 630.408L202.691 630.408ZM202.691 626.104L202.691 627.104L215.03 627.104L215.03 626.104L215.03 625.104L202.691 625.104L202.691 626.104ZM215.03 626.104L214.03 626.104L214.03 630.408L215.03 630.408L216.03 630.408L216.03 626.104L215.03 626.104ZM215.03 630.408L215.03 629.408L202.691 629.408L202.691 630.408L202.691 631.408L215.03 631.408L215.03 630.408ZM205.475 638.758L206.475 638.758L206.475 627.532L205.475 627.532L204.475 627.532L204.475 638.758L205.475 638.758ZM205.475 627.532L206.432 627.82L206.544 627.448L205.586 627.161L204.628 626.874L204.517 627.245L205.475 627.532ZM205.586 627.161L206.586 627.161L206.586 620.927L205.586 620.927L204.586 620.927L204.586 627.161L205.586 627.161ZM205.586 620.927L205.586 621.927L211.356 621.927L211.356 620.927L211.356 619.927L205.586 619.927L205.586 620.927ZM211.356 620.927L210.356 620.927L210.356 637.867L211.356 637.867L212.356 637.867L212.356 620.927L211.356 620.927ZM211.356 637.867L210.356 637.867C210.356 638.442 210.399 638.965 210.502 639.416C210.603 639.857 210.779 640.31 211.106 640.663L211.839 639.982L212.572 639.302C212.578 639.308 212.512 639.236 212.452 638.971C212.394 638.717 212.356 638.356 212.356 637.867L211.356 637.867ZM211.839 639.982L211.106 640.663C211.678 641.278 212.469 641.502 213.286 641.502L213.286 640.502L213.286 639.502C212.817 639.502 212.643 639.379 212.572 639.302L211.839 639.982ZM213.286 640.502L213.286 641.502C213.649 641.502 214.003 641.473 214.348 641.413L214.177 640.428L214.005 639.443C213.781 639.481 213.542 639.502 213.286 639.502L213.286 640.502ZM214.177 640.428L214.389 641.405C214.731 641.331 215.065 641.227 215.39 641.094L215.012 640.168L214.633 639.242C214.414 639.332 214.191 639.401 213.964 639.451L214.177 640.428ZM215.012 640.168L214.012 640.168L214.012 644.287L215.012 644.287L216.012 644.287L216.012 640.168L215.012 640.168ZM215.012 644.287L214.653 643.354C214.422 643.443 214.021 643.547 213.409 643.655L213.583 644.64L213.757 645.624C214.407 645.51 214.958 645.379 215.371 645.22L215.012 644.287ZM213.583 644.64L213.409 643.655C212.852 643.753 212.164 643.807 211.338 643.807L211.338 644.807L211.338 645.807C212.243 645.807 213.053 645.749 213.757 645.624L213.583 644.64ZM211.338 644.807L211.338 643.807C209.666 643.807 208.494 643.377 207.69 642.641L207.015 643.378L206.339 644.115C207.613 645.283 209.324 645.807 211.338 645.807L211.338 644.807ZM207.015 643.378L207.699 642.649C206.956 641.951 206.475 640.735 206.475 638.758L205.475 638.758L204.475 638.758C204.475 641.011 205.02 642.875 206.33 644.107L207.015 643.378ZM226.979 644.343L225.979 644.343L225.979 645.343L226.979 645.343L226.979 644.343ZM226.979 617.327L226.979 616.327L225.979 616.327L225.979 617.327L226.979 617.327ZM244.588 619.758L243.867 620.451L243.87 620.454L244.588 619.758ZM244.606 632.95L243.88 632.263L243.88 632.263L244.606 632.95ZM233.14 635.381L233.14 634.381L232.14 634.381L232.14 635.381L233.14 635.381ZM233.14 644.343L233.14 645.343L234.14 645.343L234.14 644.343L233.14 644.343ZM233.14 631.039L232.14 631.039L232.14 632.039L233.14 632.039L233.14 631.039ZM239.894 629.759L240.714 630.33L240.718 630.324L239.894 629.759ZM239.894 623.135L239.073 623.706L239.077 623.711L239.894 623.135ZM233.14 621.854L233.14 620.854L232.14 620.854L232.14 621.854L233.14 621.854ZM226.979 644.343L227.979 644.343L227.979 617.327L226.979 617.327L225.979 617.327L225.979 644.343L226.979 644.343ZM226.979 617.327L226.979 618.327L237.853 618.327L237.853 617.327L237.853 616.327L226.979 616.327L226.979 617.327ZM237.853 617.327L237.853 618.327C240.599 618.327 242.55 619.081 243.867 620.451L244.588 619.758L245.309 619.065C243.509 617.193 240.97 616.327 237.853 616.327L237.853 617.327ZM244.588 619.758L243.87 620.454C245.206 621.832 245.926 623.755 245.926 626.345L246.926 626.345L247.926 626.345C247.926 623.368 247.087 620.899 245.306 619.062L244.588 619.758ZM246.926 626.345L245.926 626.345C245.926 628.922 245.212 630.856 243.88 632.263L244.606 632.95L245.333 633.638C247.093 631.778 247.926 629.309 247.926 626.345L246.926 626.345ZM244.606 632.95L243.88 632.263C242.595 633.621 240.622 634.381 237.778 634.381L237.778 635.381L237.778 636.381C240.971 636.381 243.551 635.52 245.333 633.638L244.606 632.95ZM237.778 635.381L237.778 634.381L233.14 634.381L233.14 635.381L233.14 636.381L237.778 636.381L237.778 635.381ZM233.14 635.381L232.14 635.381L232.14 644.343L233.14 644.343L234.14 644.343L234.14 635.381L233.14 635.381ZM233.14 644.343L233.14 643.343L226.979 643.343L226.979 644.343L226.979 645.343L233.14 645.343L233.14 644.343ZM233.14 631.039L233.14 632.039L236.721 632.039L236.721 631.039L236.721 630.039L233.14 630.039L233.14 631.039ZM236.721 631.039L236.721 632.039C238.409 632.039 239.858 631.562 240.714 630.33L239.894 629.759L239.073 629.188C238.742 629.663 238.076 630.039 236.721 630.039L236.721 631.039ZM239.894 629.759L240.718 630.324C241.456 629.249 241.784 627.922 241.784 626.419L240.784 626.419L239.784 626.419C239.784 627.637 239.519 628.537 239.069 629.193L239.894 629.759ZM240.784 626.419L241.784 626.419C241.784 624.928 241.455 623.613 240.711 622.558L239.894 623.135L239.077 623.711C239.519 624.339 239.784 625.214 239.784 626.419L240.784 626.419ZM239.894 623.135L240.714 622.564C239.858 621.332 238.409 620.854 236.721 620.854L236.721 621.854L236.721 622.854C238.076 622.854 238.742 623.231 239.073 623.706L239.894 623.135ZM236.721 621.854L236.721 620.854L233.14 620.854L233.14 621.854L233.14 622.854L236.721 622.854L236.721 621.854ZM233.14 621.854L232.14 621.854L232.14 631.039L233.14 631.039L234.14 631.039L234.14 621.854L233.14 621.854ZM249.635 644.343L248.635 644.343L248.635 645.343L249.635 645.343L249.635 644.343ZM249.635 626.104L249.635 625.104L248.635 625.104L248.635 626.104L249.635 626.104ZM255.665 626.104L256.665 626.104L256.665 625.104L255.665 625.104L255.665 626.104ZM255.665 644.343L255.665 645.343L256.665 645.343L256.665 644.343L255.665 644.343ZM250.136 618.181L250.843 618.888L250.85 618.88L250.136 618.181ZM255.183 618.162L255.897 617.462L255.183 618.162ZM249.635 644.343L250.635 644.343L250.635 626.104L249.635 626.104L248.635 626.104L248.635 644.343L249.635 644.343ZM249.635 626.104L249.635 627.104L255.665 627.104L255.665 626.104L255.665 625.104L249.635 625.104L249.635 626.104ZM255.665 626.104L254.665 626.104L254.665 644.343L255.665 644.343L256.665 644.343L256.665 626.104L255.665 626.104ZM255.665 644.343L255.665 643.343L249.635 643.343L249.635 644.343L249.635 645.343L255.665 645.343L255.665 644.343ZM249.245 620.37L250.245 620.37C250.245 619.76 250.443 619.288 250.843 618.888L250.136 618.181L249.429 617.474C248.641 618.261 248.245 619.248 248.245 620.37L249.245 620.37ZM250.136 618.181L250.85 618.88C251.204 618.519 251.762 618.271 252.678 618.271L252.678 617.271L252.678 616.271C251.392 616.271 250.255 616.63 249.421 617.481L250.136 618.181ZM252.678 617.271L252.678 618.271C253.584 618.271 254.128 618.514 254.468 618.862L255.183 618.162L255.897 617.462C255.074 616.622 253.948 616.271 252.678 616.271L252.678 617.271ZM255.183 618.162L254.468 618.862C254.855 619.257 255.055 619.737 255.055 620.37L256.055 620.37L257.055 620.37C257.055 619.247 256.673 618.255 255.897 617.462L255.183 618.162ZM256.055 620.37L255.055 620.37C255.055 620.98 254.856 621.463 254.45 621.878L255.164 622.578L255.878 623.278C256.659 622.481 257.055 621.492 257.055 620.37L256.055 620.37ZM255.164 622.578L254.45 621.878C254.093 622.242 253.54 622.487 252.641 622.487L252.641 623.487L252.641 624.487C253.918 624.487 255.047 624.126 255.878 623.278L255.164 622.578ZM252.641 623.487L252.641 622.487C251.724 622.487 251.178 622.24 250.839 621.886L250.117 622.578L249.396 623.27C250.219 624.129 251.356 624.487 252.641 624.487L252.641 623.487ZM250.117 622.578L250.839 621.886C250.442 621.472 250.245 620.987 250.245 620.37L249.245 620.37L248.245 620.37C248.245 621.485 248.629 622.472 249.396 623.27L250.117 622.578ZM261.436 628.107L262.117 628.839L262.12 628.836L261.436 628.107ZM275.778 628.107L275.091 628.834L275.097 628.839L275.778 628.107ZM275.778 642.302L276.463 643.031L276.463 643.031L275.778 642.302ZM261.417 642.302L260.73 643.029L260.735 643.033L261.417 642.302ZM265.74 639.277L264.947 639.887L264.952 639.893L264.957 639.899L265.74 639.277ZM271.455 639.277L270.668 638.661L270.666 638.663L271.455 639.277ZM271.455 631.15L270.672 631.772L270.676 631.778L271.455 631.15ZM265.759 631.15L266.537 631.778L266.542 631.772L265.759 631.15ZM258.708 635.492L259.708 635.492L259.708 634.898L258.708 634.898L257.708 634.898L257.708 635.492L258.708 635.492ZM258.708 634.898L259.708 634.898C259.708 632.301 260.531 630.317 262.117 628.839L261.436 628.107L260.754 627.376C258.703 629.287 257.708 631.831 257.708 634.898L258.708 634.898ZM261.436 628.107L262.12 628.836C263.719 627.336 265.85 626.547 268.616 626.547L268.616 625.547L268.616 624.547C265.445 624.547 262.789 625.465 260.751 627.378L261.436 628.107ZM268.616 625.547L268.616 626.547C271.382 626.547 273.506 627.336 275.091 628.834L275.778 628.107L276.465 627.381C274.438 625.465 271.788 624.547 268.616 624.547L268.616 625.547ZM275.778 628.107L275.097 628.839C276.683 630.317 277.506 632.301 277.506 634.898L278.506 634.898L279.506 634.898C279.506 631.831 278.511 629.287 276.46 627.376L275.778 628.107ZM278.506 634.898L277.506 634.898L277.506 635.492L278.506 635.492L279.506 635.492L279.506 634.898L278.506 634.898ZM278.506 635.492L277.506 635.492C277.506 638.09 276.683 640.081 275.094 641.573L275.778 642.302L276.463 643.031C278.511 641.108 279.506 638.56 279.506 635.492L278.506 635.492ZM275.778 642.302L275.094 641.573C273.509 643.06 271.384 643.844 268.616 643.844L268.616 644.844L268.616 645.844C271.786 645.844 274.436 644.933 276.463 643.031L275.778 642.302ZM268.616 644.844L268.616 643.844C265.835 643.844 263.696 643.059 262.099 641.57L261.417 642.302L260.735 643.033C262.774 644.934 265.435 645.844 268.616 645.844L268.616 644.844ZM261.417 642.302L262.104 641.575C260.526 640.084 259.708 638.092 259.708 635.492L258.708 635.492L257.708 635.492C257.708 638.558 258.696 641.105 260.73 643.029L261.417 642.302ZM264.757 634.639L263.757 634.639L263.757 635.733L264.757 635.733L265.757 635.733L265.757 634.639L264.757 634.639ZM264.757 635.733L263.757 635.733C263.757 637.376 264.113 638.8 264.947 639.887L265.74 639.277L266.533 638.668C266.057 638.048 265.757 637.109 265.757 635.733L264.757 635.733ZM265.74 639.277L264.957 639.899C265.845 641.017 267.108 641.539 268.598 641.539L268.598 640.539L268.598 639.539C267.614 639.539 266.971 639.22 266.523 638.655L265.74 639.277ZM268.598 640.539L268.598 641.539C270.096 641.539 271.365 641.02 272.244 639.892L271.455 639.277L270.666 638.663C270.234 639.217 269.598 639.539 268.598 639.539L268.598 640.539ZM271.455 639.277L272.243 639.894C273.093 638.807 273.457 637.38 273.457 635.733L272.457 635.733L271.457 635.733C271.457 637.105 271.153 638.041 270.668 638.661L271.455 639.277ZM272.457 635.733L273.457 635.733L273.457 634.639L272.457 634.639L271.457 634.639L271.457 635.733L272.457 635.733ZM272.457 634.639L273.457 634.639C273.457 633.005 273.093 631.589 272.234 630.523L271.455 631.15L270.676 631.778C271.153 632.369 271.457 633.279 271.457 634.639L272.457 634.639ZM271.455 631.15L272.238 630.529C271.35 629.41 270.088 628.889 268.598 628.889L268.598 629.889L268.598 630.889C269.582 630.889 270.224 631.208 270.672 631.772L271.455 631.15ZM268.598 629.889L268.598 628.889C267.116 628.889 265.861 629.413 264.976 630.529L265.759 631.15L266.542 631.772C266.992 631.205 267.63 630.889 268.598 630.889L268.598 629.889ZM265.759 631.15L264.98 630.523C264.121 631.589 263.757 633.005 263.757 634.639L264.757 634.639L265.757 634.639C265.757 633.279 266.061 632.369 266.537 631.778L265.759 631.15ZM281.493 644.343L280.493 644.343L280.493 645.343L281.493 645.343L281.493 644.343ZM281.493 626.104L281.493 625.104L280.493 625.104L280.493 626.104L281.493 626.104ZM287.282 626.104L288.282 626.079L288.258 625.104L287.282 625.104L287.282 626.104ZM287.338 628.386L286.338 628.41L286.362 629.386L287.338 629.386L287.338 628.386ZM287.412 628.386L287.412 629.386L287.986 629.386L288.275 628.89L287.412 628.386ZM289.564 626.438L290.021 627.327L290.025 627.325L289.564 626.438ZM297.58 627.254L298.247 626.509L297.58 627.254ZM299.343 644.343L299.343 645.343L300.343 645.343L300.343 644.343L299.343 644.343ZM293.387 644.343L292.387 644.343L292.387 645.343L293.387 645.343L293.387 644.343ZM292.682 630.835L291.975 631.542L291.984 631.552L291.994 631.561L292.682 630.835ZM288.785 630.779L288.199 629.969L288.785 630.779ZM287.449 632.468L286.533 632.066L286.449 632.258L286.449 632.468L287.449 632.468ZM287.449 644.343L287.449 645.343L288.449 645.343L288.449 644.343L287.449 644.343ZM281.493 644.343L282.493 644.343L282.493 626.104L281.493 626.104L280.493 626.104L280.493 644.343L281.493 644.343ZM281.493 626.104L281.493 627.104L287.282 627.104L287.282 626.104L287.282 625.104L281.493 625.104L281.493 626.104ZM287.282 626.104L286.283 626.128L286.338 628.41L287.338 628.386L288.338 628.361L288.282 626.079L287.282 626.104ZM287.338 628.386L287.338 629.386L287.412 629.386L287.412 628.386L287.412 627.386L287.338 627.386L287.338 628.386ZM287.412 628.386L288.275 628.89C288.634 628.276 289.197 627.75 290.021 627.327L289.564 626.438L289.108 625.548C288.002 626.115 287.13 626.887 286.549 627.881L287.412 628.386ZM289.564 626.438L290.025 627.325C290.835 626.905 291.816 626.677 292.997 626.677L292.997 625.677L292.997 624.677C291.556 624.677 290.248 624.956 289.104 625.55L289.564 626.438ZM292.997 625.677L292.997 626.677C294.681 626.677 295.956 627.142 296.913 627.999L297.58 627.254L298.247 626.509C296.854 625.263 295.073 624.677 292.997 624.677L292.997 625.677ZM297.58 627.254L296.913 627.999C297.777 628.772 298.343 630.21 298.343 632.616L299.343 632.616L300.343 632.616C300.343 629.976 299.733 627.838 298.247 626.509L297.58 627.254ZM299.343 632.616L298.343 632.616L298.343 644.343L299.343 644.343L300.343 644.343L300.343 632.616L299.343 632.616ZM299.343 644.343L299.343 643.343L293.387 643.343L293.387 644.343L293.387 645.343L299.343 645.343L299.343 644.343ZM293.387 644.343L294.387 644.343L294.387 633.136L293.387 633.136L292.387 633.136L292.387 644.343L293.387 644.343ZM293.387 633.136L294.387 633.136C294.387 631.95 294.139 630.838 293.369 630.109L292.682 630.835L291.994 631.561C292.165 631.723 292.387 632.144 292.387 633.136L293.387 633.136ZM292.682 630.835L293.389 630.128C292.692 629.431 291.757 629.148 290.733 629.148L290.733 630.148L290.733 631.148C291.392 631.148 291.756 631.323 291.975 631.542L292.682 630.835ZM290.733 630.148L290.733 629.148C289.805 629.148 288.951 629.425 288.199 629.969L288.785 630.779L289.371 631.59C289.782 631.292 290.226 631.148 290.733 631.148L290.733 630.148ZM288.785 630.779L288.199 629.969C287.463 630.502 286.909 631.21 286.533 632.066L287.449 632.468L288.365 632.869C288.608 632.315 288.945 631.898 289.371 631.59L288.785 630.779ZM287.449 632.468L286.449 632.468L286.449 644.343L287.449 644.343L288.449 644.343L288.449 632.468L287.449 632.468ZM287.449 644.343L287.449 643.343L281.493 643.343L281.493 644.343L281.493 645.343L287.449 645.343L287.449 644.343ZM304.816 628.107L305.508 628.83L304.816 628.107ZM320.792 636.457L320.792 637.457L321.792 637.457L321.792 636.457L320.792 636.457ZM305.707 636.457L304.707 636.457L304.707 637.457L305.707 637.457L305.707 636.457ZM305.707 633.191L305.707 632.191L304.707 632.191L304.707 633.191L305.707 633.191ZM314.984 633.191L314.984 634.191L315.984 634.191L315.984 633.191L314.984 633.191ZM309.01 631.039L308.201 630.45L308.196 630.458L309.01 631.039ZM309.084 639.296L308.288 639.901L308.293 639.908L309.084 639.296ZM315.912 638.442L316.293 637.518L315.516 637.198L315.067 637.908L315.912 638.442ZM320.551 640.354L321.47 640.746L321.868 639.815L320.932 639.429L320.551 640.354ZM317.545 643.619L317.047 642.752L317.044 642.754L317.545 643.619ZM304.779 642.32L304.082 643.038L304.088 643.043L304.779 642.32ZM302.163 635.474L303.163 635.474L303.163 634.88L302.163 634.88L301.163 634.88L301.163 635.474L302.163 635.474ZM302.163 634.88L303.163 634.88C303.163 632.287 303.967 630.307 305.508 628.83L304.816 628.107L304.125 627.385C302.129 629.298 301.163 631.832 301.163 634.88L302.163 634.88ZM304.816 628.107L305.508 628.83C307.059 627.343 309.115 626.565 311.774 626.565L311.774 625.565L311.774 624.565C308.694 624.565 306.111 625.482 304.125 627.385L304.816 628.107ZM311.774 625.565L311.774 626.565C314.425 626.565 316.355 627.309 317.704 628.679L318.417 627.978L319.13 627.276C317.312 625.43 314.814 624.565 311.774 624.565L311.774 625.565ZM318.417 627.978L317.704 628.679C319.059 630.055 319.792 631.998 319.792 634.639L320.792 634.639L321.792 634.639C321.792 631.614 320.941 629.116 319.13 627.276L318.417 627.978ZM320.792 634.639L319.792 634.639L319.792 636.457L320.792 636.457L321.792 636.457L321.792 634.639L320.792 634.639ZM320.792 636.457L320.792 635.457L305.707 635.457L305.707 636.457L305.707 637.457L320.792 637.457L320.792 636.457ZM305.707 636.457L306.707 636.457L306.707 633.191L305.707 633.191L304.707 633.191L304.707 636.457L305.707 636.457ZM305.707 633.191L305.707 634.191L314.984 634.191L314.984 633.191L314.984 632.191L305.707 632.191L305.707 633.191ZM314.984 633.191L315.984 633.191L315.984 632.932L314.984 632.932L313.984 632.932L313.984 633.191L314.984 633.191ZM314.984 632.932L315.984 632.932C315.984 631.802 315.642 630.794 314.912 629.981L314.168 630.649L313.424 631.318C313.783 631.717 313.984 632.23 313.984 632.932L314.984 632.932ZM314.168 630.649L314.912 629.981C314.122 629.102 313.001 628.74 311.737 628.74L311.737 629.74L311.737 630.74C312.626 630.74 313.125 630.985 313.424 631.318L314.168 630.649ZM311.737 629.74L311.737 628.74C310.27 628.74 309.043 629.295 308.202 630.45L309.01 631.039L309.818 631.628C310.238 631.051 310.829 630.74 311.737 630.74L311.737 629.74ZM309.01 631.039L308.196 630.458C307.425 631.537 307.082 632.876 307.082 634.397L308.082 634.397L309.082 634.397C309.082 633.172 309.357 632.273 309.824 631.62L309.01 631.039ZM308.082 634.397L307.082 634.397L307.082 635.641L308.082 635.641L309.082 635.641L309.082 634.397L308.082 634.397ZM308.082 635.641L307.082 635.641C307.082 637.33 307.443 638.79 308.288 639.901L309.084 639.296L309.88 638.691C309.389 638.045 309.082 637.068 309.082 635.641L308.082 635.641ZM309.084 639.296L308.293 639.908C309.195 641.072 310.494 641.613 312.034 641.613L312.034 640.613L312.034 639.613C311.002 639.613 310.334 639.277 309.875 638.684L309.084 639.296ZM312.034 640.613L312.034 641.613C313.106 641.613 314.084 641.365 314.919 640.819L314.372 639.982L313.825 639.145C313.373 639.441 312.793 639.613 312.034 639.613L312.034 640.613ZM314.372 639.982L314.919 640.819C315.674 640.326 316.292 639.713 316.757 638.977L315.912 638.442L315.067 637.908C314.765 638.384 314.357 638.798 313.825 639.145L314.372 639.982ZM315.912 638.442L315.531 639.367L320.17 641.278L320.551 640.354L320.932 639.429L316.293 637.518L315.912 638.442ZM320.551 640.354L319.631 639.961C319.144 641.1 318.303 642.031 317.047 642.752L317.545 643.619L318.043 644.486C319.632 643.574 320.794 642.329 321.47 640.746L320.551 640.354ZM317.545 643.619L317.044 642.754C315.831 643.456 314.207 643.844 312.108 643.844L312.108 644.844L312.108 645.844C314.438 645.844 316.438 645.415 318.046 644.485L317.545 643.619ZM312.108 644.844L312.108 643.844C309.16 643.844 306.992 643.055 305.471 641.598L304.779 642.32L304.088 643.043C306.079 644.95 308.798 645.844 312.108 645.844L312.108 644.844ZM304.779 642.32L305.476 641.603C303.961 640.13 303.163 638.126 303.163 635.474L302.163 635.474L301.163 635.474C301.163 638.561 302.11 641.121 304.082 643.038L304.779 642.32ZM325.338 628.107L326.03 628.83L325.338 628.107ZM341.313 636.457L341.313 637.457L342.313 637.457L342.313 636.457L341.313 636.457ZM326.229 636.457L325.229 636.457L325.229 637.457L326.229 637.457L326.229 636.457ZM326.229 633.191L326.229 632.191L325.229 632.191L325.229 633.191L326.229 633.191ZM335.506 633.191L335.506 634.191L336.506 634.191L336.506 633.191L335.506 633.191ZM329.531 631.039L328.723 630.45L328.718 630.458L329.531 631.039ZM329.605 639.296L328.809 639.901L328.815 639.908L329.605 639.296ZM336.434 638.442L336.815 637.518L336.038 637.198L335.589 637.908L336.434 638.442ZM341.072 640.354L341.992 640.746L342.39 639.815L341.453 639.429L341.072 640.354ZM338.066 643.619L337.569 642.752L337.565 642.754L338.066 643.619ZM325.301 642.32L324.604 643.038L324.609 643.043L325.301 642.32ZM322.685 635.474L323.685 635.474L323.685 634.88L322.685 634.88L321.685 634.88L321.685 635.474L322.685 635.474ZM322.685 634.88L323.685 634.88C323.685 632.287 324.488 630.307 326.03 628.83L325.338 628.107L324.646 627.385C322.65 629.298 321.685 631.832 321.685 634.88L322.685 634.88ZM325.338 628.107L326.03 628.83C327.581 627.343 329.637 626.565 332.296 626.565L332.296 625.565L332.296 624.565C329.216 624.565 326.633 625.482 324.646 627.385L325.338 628.107ZM332.296 625.565L332.296 626.565C334.947 626.565 336.877 627.309 338.226 628.679L338.938 627.978L339.651 627.276C337.834 625.43 335.335 624.565 332.296 624.565L332.296 625.565ZM338.938 627.978L338.226 628.679C339.581 630.055 340.313 631.998 340.313 634.639L341.313 634.639L342.313 634.639C342.313 631.614 341.463 629.116 339.651 627.276L338.938 627.978ZM341.313 634.639L340.313 634.639L340.313 636.457L341.313 636.457L342.313 636.457L342.313 634.639L341.313 634.639ZM341.313 636.457L341.313 635.457L326.229 635.457L326.229 636.457L326.229 637.457L341.313 637.457L341.313 636.457ZM326.229 636.457L327.229 636.457L327.229 633.191L326.229 633.191L325.229 633.191L325.229 636.457L326.229 636.457ZM326.229 633.191L326.229 634.191L335.506 634.191L335.506 633.191L335.506 632.191L326.229 632.191L326.229 633.191ZM335.506 633.191L336.506 633.191L336.506 632.932L335.506 632.932L334.506 632.932L334.506 633.191L335.506 633.191ZM335.506 632.932L336.506 632.932C336.506 631.802 336.163 630.794 335.434 629.981L334.689 630.649L333.945 631.318C334.304 631.717 334.506 632.23 334.506 632.932L335.506 632.932ZM334.689 630.649L335.434 629.981C334.644 629.102 333.523 628.74 332.259 628.74L332.259 629.74L332.259 630.74C333.147 630.74 333.647 630.985 333.945 631.318L334.689 630.649ZM332.259 629.74L332.259 628.74C330.792 628.74 329.565 629.295 328.723 630.45L329.531 631.039L330.339 631.628C330.76 631.051 331.351 630.74 332.259 630.74L332.259 629.74ZM329.531 631.039L328.718 630.458C327.947 631.537 327.604 632.876 327.604 634.397L328.604 634.397L329.604 634.397C329.604 633.172 329.879 632.273 330.345 631.62L329.531 631.039ZM328.604 634.397L327.604 634.397L327.604 635.641L328.604 635.641L329.604 635.641L329.604 634.397L328.604 634.397ZM328.604 635.641L327.604 635.641C327.604 637.33 327.964 638.79 328.81 639.901L329.605 639.296L330.401 638.691C329.911 638.045 329.604 637.068 329.604 635.641L328.604 635.641ZM329.605 639.296L328.815 639.908C329.716 641.072 331.015 641.613 332.556 641.613L332.556 640.613L332.556 639.613C331.523 639.613 330.856 639.277 330.396 638.684L329.605 639.296ZM332.556 640.613L332.556 641.613C333.628 641.613 334.606 641.365 335.441 640.819L334.894 639.982L334.346 639.145C333.895 639.441 333.314 639.613 332.556 639.613L332.556 640.613ZM334.894 639.982L335.441 640.819C336.195 640.326 336.813 639.713 337.279 638.977L336.434 638.442L335.589 637.908C335.287 638.384 334.878 638.798 334.346 639.145L334.894 639.982ZM336.434 638.442L336.053 639.367L340.691 641.278L341.072 640.354L341.453 639.429L336.815 637.518L336.434 638.442ZM341.072 640.354L340.153 639.961C339.666 641.1 338.824 642.031 337.569 642.752L338.066 643.619L338.564 644.486C340.154 643.574 341.316 642.329 341.992 640.746L341.072 640.354ZM338.066 643.619L337.565 642.754C336.353 643.456 334.729 643.844 332.63 643.844L332.63 644.844L332.63 645.844C334.959 645.844 336.96 645.415 338.567 644.485L338.066 643.619ZM332.63 644.844L332.63 643.844C329.681 643.844 327.514 643.055 325.992 641.598L325.301 642.32L324.609 643.043C326.601 644.95 329.319 645.844 332.63 645.844L332.63 644.844ZM325.301 642.32L325.998 641.603C324.482 640.13 323.685 638.126 323.685 635.474L322.685 635.474L321.685 635.474C321.685 638.561 322.631 641.121 324.604 643.038L325.301 642.32ZM344.134 644.343L343.134 644.343L343.134 645.343L344.134 645.343L344.134 644.343ZM344.134 626.104L344.134 625.104L343.134 625.104L343.134 626.104L344.134 626.104ZM349.997 626.104L350.997 626.071L350.965 625.104L349.997 625.104L349.997 626.104ZM350.071 628.367L349.072 628.4L349.104 629.367L350.071 629.367L350.071 628.367ZM350.127 628.367L350.127 629.367L350.711 629.367L350.998 628.859L350.127 628.367ZM355.953 625.918L356.953 625.918L356.953 625.241L356.325 624.99L355.953 625.918ZM355.953 630.612L355.637 631.561L356.953 632L356.953 630.612L355.953 630.612ZM355.174 630.445L355.044 631.437L355.05 631.438L355.174 630.445ZM351.871 631.15L351.3 630.329L351.871 631.15ZM350.183 633.136L349.283 632.699L349.183 632.906L349.183 633.136L350.183 633.136ZM350.183 644.343L350.183 645.343L351.183 645.343L351.183 644.343L350.183 644.343ZM344.134 644.343L345.134 644.343L345.134 626.104L344.134 626.104L343.134 626.104L343.134 644.343L344.134 644.343ZM344.134 626.104L344.134 627.104L349.997 627.104L349.997 626.104L349.997 625.104L344.134 625.104L344.134 626.104ZM349.997 626.104L348.998 626.136L349.072 628.4L350.071 628.367L351.071 628.334L350.997 626.071L349.997 626.104ZM350.071 628.367L350.071 629.367L350.127 629.367L350.127 628.367L350.127 627.367L350.071 627.367L350.071 628.367ZM350.127 628.367L350.998 628.859C351.354 628.228 351.835 627.704 352.454 627.282L351.89 626.456L351.325 625.63C350.46 626.222 349.766 626.972 349.256 627.876L350.127 628.367ZM351.89 626.456L352.454 627.282C353.024 626.892 353.661 626.695 354.395 626.695L354.395 625.695L354.395 624.695C353.272 624.695 352.239 625.006 351.325 625.63L351.89 626.456ZM354.395 625.695L354.395 626.695C354.665 626.695 354.919 626.716 355.158 626.756L355.322 625.77L355.487 624.783C355.132 624.724 354.767 624.695 354.395 624.695L354.395 625.695ZM355.322 625.77L355.158 626.756C355.292 626.778 355.396 626.799 355.474 626.817C355.556 626.837 355.586 626.848 355.582 626.846L355.953 625.918L356.325 624.99C356.092 624.897 355.789 624.833 355.487 624.783L355.322 625.77ZM355.953 625.918L354.953 625.918L354.953 630.612L355.953 630.612L356.953 630.612L356.953 625.918L355.953 625.918ZM355.953 630.612L356.269 629.664C355.97 629.564 355.643 629.496 355.298 629.453L355.174 630.445L355.05 631.438C355.298 631.469 355.491 631.512 355.637 631.561L355.953 630.612ZM355.174 630.445L355.303 629.454C354.967 629.41 354.601 629.39 354.209 629.39L354.209 630.39L354.209 631.39C354.535 631.39 354.812 631.407 355.044 631.437L355.174 630.445ZM354.209 630.39L354.209 629.39C353.161 629.39 352.185 629.715 351.3 630.329L351.871 631.15L352.442 631.972C353.017 631.572 353.599 631.39 354.209 631.39L354.209 630.39ZM351.871 631.15L351.3 630.329C350.427 630.936 349.752 631.732 349.283 632.699L350.183 633.136L351.082 633.572C351.405 632.907 351.856 632.379 352.442 631.972L351.871 631.15ZM350.183 633.136L349.183 633.136L349.183 644.343L350.183 644.343L351.183 644.343L351.183 633.136L350.183 633.136ZM350.183 644.343L350.183 643.343L344.134 643.343L344.134 644.343L344.134 645.343L350.183 645.343L350.183 644.343Z" fill="black" mask="url(#path-7-outside-2_17007_6901)"/> +<mask id="path-9-outside-3_17007_6901" maskUnits="userSpaceOnUse" x="575.669" y="608.883" width="88" height="31" fill="black"> +<rect fill="white" x="575.669" y="608.883" width="88" height="31"/> +<path d="M577.094 610.867L583.532 610.867L589.247 628.624C589.358 628.909 589.445 629.193 589.507 629.478C589.581 629.762 589.655 630.059 589.729 630.368L589.841 630.368C589.915 630.059 589.989 629.756 590.063 629.459C590.15 629.162 590.237 628.884 590.323 628.624L596.094 610.867L602.031 610.867L592.939 637.994L586.186 637.994L577.094 610.867ZM601.753 632.576C601.753 630.647 602.507 629.156 604.017 628.105C605.538 627.053 607.505 626.521 609.917 626.509L613.999 626.509L613.999 625.414C613.999 624.598 613.795 623.955 613.387 623.485C612.979 623.015 612.286 622.78 611.309 622.78C610.331 622.78 609.614 622.977 609.156 623.373C608.699 623.769 608.47 624.295 608.47 624.95L608.47 625.284L602.848 625.266L602.848 624.895C602.848 623.2 603.646 621.821 605.241 620.757C606.849 619.681 608.989 619.143 611.661 619.143C614.358 619.143 616.411 619.656 617.821 620.683C619.244 621.71 619.955 623.342 619.955 625.581L619.955 633.745C619.955 634.488 620.017 635.199 620.141 635.879C620.277 636.547 620.468 637.122 620.716 637.605L620.716 637.883L614.853 637.883C614.692 637.586 614.549 637.221 614.426 636.788C614.314 636.355 614.24 635.916 614.203 635.471C613.795 636.164 613.065 636.788 612.014 637.345C610.975 637.902 609.663 638.18 608.08 638.18C606.2 638.18 604.672 637.71 603.497 636.77C602.334 635.83 601.753 634.432 601.753 632.576ZM607.672 632.113C607.672 632.892 607.895 633.504 608.34 633.949C608.785 634.382 609.465 634.599 610.381 634.599C611.37 634.599 612.218 634.271 612.923 633.615C613.64 632.948 613.999 632.174 613.999 631.296L613.999 629.738L611.364 629.738C610.103 629.738 609.169 629.929 608.562 630.313C607.969 630.696 607.672 631.296 607.672 632.113ZM623.944 637.883L623.944 610.181L629.937 610.181L629.937 637.883L623.944 637.883ZM633.927 637.883L633.927 619.644L639.957 619.644L639.957 637.883L633.927 637.883ZM633.537 613.91C633.537 613.045 633.834 612.315 634.428 611.721C635.021 611.115 635.869 610.812 636.97 610.812C638.058 610.812 638.893 611.109 639.475 611.702C640.056 612.296 640.347 613.032 640.347 613.91C640.347 614.776 640.05 615.512 639.456 616.118C638.862 616.725 638.021 617.028 636.933 617.028C635.832 617.028 634.991 616.725 634.409 616.118C633.828 615.512 633.537 614.776 633.537 613.91ZM643 629.051L643 628.457C643 625.761 643.724 623.559 645.171 621.852C646.618 620.132 648.511 619.273 650.849 619.273C652.123 619.273 653.211 619.489 654.114 619.922C655.017 620.343 655.722 620.906 656.229 621.611L656.229 610.181L662.074 610.181L662.074 637.883L656.396 637.883L656.322 635.527L656.285 635.527C655.815 636.294 655.11 636.943 654.17 637.475C653.23 637.994 652.123 638.254 650.849 638.254C648.424 638.254 646.507 637.394 645.097 635.675C643.699 633.943 643 631.735 643 629.051ZM649.049 629.144C649.049 630.591 649.352 631.766 649.958 632.669C650.564 633.572 651.479 634.024 652.704 634.024C653.545 634.024 654.263 633.789 654.856 633.319C655.45 632.849 655.877 632.292 656.137 631.649L656.137 625.804C655.877 625.161 655.456 624.616 654.875 624.171C654.306 623.726 653.589 623.503 652.723 623.503C651.486 623.503 650.564 623.961 649.958 624.876C649.352 625.779 649.049 626.948 649.049 628.383L649.049 629.144Z"/> +</mask> +<path d="M577.094 610.867L583.532 610.867L589.247 628.624C589.358 628.909 589.445 629.193 589.507 629.478C589.581 629.762 589.655 630.059 589.729 630.368L589.841 630.368C589.915 630.059 589.989 629.756 590.063 629.459C590.15 629.162 590.237 628.884 590.323 628.624L596.094 610.867L602.031 610.867L592.939 637.994L586.186 637.994L577.094 610.867ZM601.753 632.576C601.753 630.647 602.507 629.156 604.017 628.105C605.538 627.053 607.505 626.521 609.917 626.509L613.999 626.509L613.999 625.414C613.999 624.598 613.795 623.955 613.387 623.485C612.979 623.015 612.286 622.78 611.309 622.78C610.331 622.78 609.614 622.977 609.156 623.373C608.699 623.769 608.47 624.295 608.47 624.95L608.47 625.284L602.848 625.266L602.848 624.895C602.848 623.2 603.646 621.821 605.241 620.757C606.849 619.681 608.989 619.143 611.661 619.143C614.358 619.143 616.411 619.656 617.821 620.683C619.244 621.71 619.955 623.342 619.955 625.581L619.955 633.745C619.955 634.488 620.017 635.199 620.141 635.879C620.277 636.547 620.468 637.122 620.716 637.605L620.716 637.883L614.853 637.883C614.692 637.586 614.549 637.221 614.426 636.788C614.314 636.355 614.24 635.916 614.203 635.471C613.795 636.164 613.065 636.788 612.014 637.345C610.975 637.902 609.663 638.18 608.08 638.18C606.2 638.18 604.672 637.71 603.497 636.77C602.334 635.83 601.753 634.432 601.753 632.576ZM607.672 632.113C607.672 632.892 607.895 633.504 608.34 633.949C608.785 634.382 609.465 634.599 610.381 634.599C611.37 634.599 612.218 634.271 612.923 633.615C613.64 632.948 613.999 632.174 613.999 631.296L613.999 629.738L611.364 629.738C610.103 629.738 609.169 629.929 608.562 630.313C607.969 630.696 607.672 631.296 607.672 632.113ZM623.944 637.883L623.944 610.181L629.937 610.181L629.937 637.883L623.944 637.883ZM633.927 637.883L633.927 619.644L639.957 619.644L639.957 637.883L633.927 637.883ZM633.537 613.91C633.537 613.045 633.834 612.315 634.428 611.721C635.021 611.115 635.869 610.812 636.97 610.812C638.058 610.812 638.893 611.109 639.475 611.702C640.056 612.296 640.347 613.032 640.347 613.91C640.347 614.776 640.05 615.512 639.456 616.118C638.862 616.725 638.021 617.028 636.933 617.028C635.832 617.028 634.991 616.725 634.409 616.118C633.828 615.512 633.537 614.776 633.537 613.91ZM643 629.051L643 628.457C643 625.761 643.724 623.559 645.171 621.852C646.618 620.132 648.511 619.273 650.849 619.273C652.123 619.273 653.211 619.489 654.114 619.922C655.017 620.343 655.722 620.906 656.229 621.611L656.229 610.181L662.074 610.181L662.074 637.883L656.396 637.883L656.322 635.527L656.285 635.527C655.815 636.294 655.11 636.943 654.17 637.475C653.23 637.994 652.123 638.254 650.849 638.254C648.424 638.254 646.507 637.394 645.097 635.675C643.699 633.943 643 631.735 643 629.051ZM649.049 629.144C649.049 630.591 649.352 631.766 649.958 632.669C650.564 633.572 651.479 634.024 652.704 634.024C653.545 634.024 654.263 633.789 654.856 633.319C655.45 632.849 655.877 632.292 656.137 631.649L656.137 625.804C655.877 625.161 655.456 624.616 654.875 624.171C654.306 623.726 653.589 623.503 652.723 623.503C651.486 623.503 650.564 623.961 649.958 624.876C649.352 625.779 649.049 626.948 649.049 628.383L649.049 629.144Z" fill="white"/> +<path d="M577.094 610.867L577.094 609.867L575.704 609.867L576.146 611.185L577.094 610.867ZM583.532 610.867L584.484 610.561L584.261 609.867L583.532 609.867L583.532 610.867ZM589.247 628.624L588.295 628.931L588.305 628.96L588.316 628.989L589.247 628.624ZM589.507 629.478L588.53 629.69L588.534 629.71L588.539 629.73L589.507 629.478ZM589.729 630.368L588.757 630.602L588.941 631.368L589.729 631.368L589.729 630.368ZM589.841 630.368L589.841 631.368L590.629 631.368L590.813 630.602L589.841 630.368ZM590.063 629.459L589.103 629.179L589.098 629.198L589.093 629.217L590.063 629.459ZM590.323 628.624L591.272 628.941L591.274 628.933L590.323 628.624ZM596.094 610.867L596.094 609.867L595.367 609.867L595.143 610.558L596.094 610.867ZM602.031 610.867L602.979 611.185L603.421 609.867L602.031 609.867L602.031 610.867ZM592.939 637.994L592.939 638.994L593.659 638.994L593.888 638.312L592.939 637.994ZM586.186 637.994L585.237 638.312L585.466 638.994L586.186 638.994L586.186 637.994ZM577.094 610.867L577.094 611.867L583.532 611.867L583.532 610.867L583.532 609.867L577.094 609.867L577.094 610.867ZM583.532 610.867L582.58 611.174L588.295 628.931L589.247 628.624L590.199 628.318L584.484 610.561L583.532 610.867ZM589.247 628.624L588.316 628.989C588.409 629.226 588.48 629.46 588.53 629.69L589.507 629.478L590.484 629.265C590.41 628.927 590.308 628.591 590.178 628.26L589.247 628.624ZM589.507 629.478L588.539 629.73C588.612 630.008 588.684 630.298 588.757 630.602L589.729 630.368L590.702 630.135C590.626 629.82 590.55 629.517 590.474 629.225L589.507 629.478ZM589.729 630.368L589.729 631.368L589.841 631.368L589.841 630.368L589.841 629.368L589.729 629.368L589.729 630.368ZM589.841 630.368L590.813 630.602C590.887 630.295 590.96 629.995 591.034 629.702L590.063 629.459L589.093 629.217C589.018 629.517 588.943 629.823 588.868 630.135L589.841 630.368ZM590.063 629.459L591.023 629.739C591.107 629.453 591.19 629.187 591.272 628.94L590.323 628.624L589.375 628.308C589.283 628.581 589.193 628.872 589.103 629.179L590.063 629.459ZM590.323 628.624L591.274 628.933L597.045 611.176L596.094 610.867L595.143 610.558L589.372 628.315L590.323 628.624ZM596.094 610.867L596.094 611.867L602.031 611.867L602.031 610.867L602.031 609.867L596.094 609.867L596.094 610.867ZM602.031 610.867L601.083 610.55L591.991 637.677L592.939 637.994L593.888 638.312L602.979 611.185L602.031 610.867ZM592.939 637.994L592.939 636.994L586.186 636.994L586.186 637.994L586.186 638.994L592.939 638.994L592.939 637.994ZM586.186 637.994L587.134 637.677L578.042 610.55L577.094 610.867L576.146 611.185L585.237 638.312L586.186 637.994ZM604.017 628.105L603.448 627.282L603.445 627.284L604.017 628.105ZM609.917 626.509L609.917 625.509L609.912 625.509L609.917 626.509ZM613.999 626.509L613.999 627.509L614.999 627.509L614.999 626.509L613.999 626.509ZM608.47 625.284L608.466 626.284L609.47 626.288L609.47 625.284L608.47 625.284ZM602.848 625.266L601.848 625.266L601.848 626.263L602.844 626.266L602.848 625.266ZM605.241 620.757L605.796 621.589L605.797 621.588L605.241 620.757ZM617.821 620.683L617.233 621.491L617.236 621.494L617.821 620.683ZM620.141 635.879L619.157 636.058L619.159 636.068L619.161 636.079L620.141 635.879ZM620.716 637.605L621.716 637.605L621.716 637.363L621.606 637.148L620.716 637.605ZM620.716 637.883L620.716 638.883L621.716 638.883L621.716 637.883L620.716 637.883ZM614.853 637.883L613.973 638.359L614.257 638.883L614.853 638.883L614.853 637.883ZM614.426 636.788L613.457 637.037L613.461 637.05L613.464 637.063L614.426 636.788ZM614.203 635.471L615.2 635.388L614.938 632.253L613.342 634.963L614.203 635.471ZM612.014 637.345L611.546 636.461L611.541 636.463L612.014 637.345ZM603.497 636.77L602.868 637.547L602.872 637.551L603.497 636.77ZM608.34 633.949L607.633 634.657L607.643 634.666L608.34 633.949ZM612.923 633.615L613.604 634.348L613.604 634.347L612.923 633.615ZM613.999 629.738L614.999 629.738L614.999 628.738L613.999 628.738L613.999 629.738ZM608.562 630.313L608.028 629.468L608.02 629.473L608.562 630.313ZM601.753 632.576L602.753 632.576C602.753 630.955 603.363 629.779 604.588 628.925L604.017 628.105L603.445 627.284C601.652 628.533 600.753 630.339 600.753 632.576L601.753 632.576ZM604.017 628.105L604.585 628.927C605.897 628.021 607.651 627.521 609.922 627.509L609.917 626.509L609.912 625.509C607.359 625.522 605.179 626.086 603.448 627.282L604.017 628.105ZM609.917 626.509L609.917 627.509L613.999 627.509L613.999 626.509L613.999 625.509L609.917 625.509L609.917 626.509ZM613.999 626.509L614.999 626.509L614.999 625.414L613.999 625.414L612.999 625.414L612.999 626.509L613.999 626.509ZM613.999 625.414L614.999 625.414C614.999 624.433 614.752 623.531 614.142 622.829L613.387 623.485L612.632 624.14C612.838 624.378 612.999 624.762 612.999 625.414L613.999 625.414ZM613.387 623.485L614.142 622.829C613.458 622.041 612.412 621.78 611.309 621.78L611.309 622.78L611.309 623.78C612.16 623.78 612.499 623.988 612.632 624.14L613.387 623.485ZM611.309 622.78L611.309 621.78C610.23 621.78 609.224 621.992 608.502 622.617L609.156 623.373L609.81 624.13C610.004 623.963 610.433 623.78 611.309 623.78L611.309 622.78ZM609.156 623.373L608.502 622.617C607.805 623.22 607.47 624.032 607.47 624.95L608.47 624.95L609.47 624.95C609.47 624.558 609.592 624.318 609.81 624.13L609.156 623.373ZM608.47 624.95L607.47 624.95L607.47 625.284L608.47 625.284L609.47 625.284L609.47 624.95L608.47 624.95ZM608.47 625.284L608.473 624.284L602.851 624.266L602.848 625.266L602.844 626.266L608.466 626.284L608.47 625.284ZM602.848 625.266L603.848 625.266L603.848 624.895L602.848 624.895L601.848 624.895L601.848 625.266L602.848 625.266ZM602.848 624.895L603.848 624.895C603.848 623.583 604.436 622.496 605.796 621.589L605.241 620.757L604.687 619.925C602.855 621.146 601.848 622.817 601.848 624.895L602.848 624.895ZM605.241 620.757L605.797 621.588C607.189 620.657 609.114 620.143 611.661 620.143L611.661 619.143L611.661 618.143C608.864 618.143 606.509 618.705 604.685 619.926L605.241 620.757ZM611.661 619.143L611.661 620.143C614.254 620.143 616.064 620.64 617.233 621.491L617.821 620.683L618.41 619.874C616.758 618.672 614.461 618.143 611.661 618.143L611.661 619.143ZM617.821 620.683L617.236 621.494C618.327 622.281 618.955 623.565 618.955 625.581L619.955 625.581L620.955 625.581C620.955 623.12 620.16 621.138 618.407 619.872L617.821 620.683ZM619.955 625.581L618.955 625.581L618.955 633.745L619.955 633.745L620.955 633.745L620.955 625.581L619.955 625.581ZM619.955 633.745L618.955 633.745C618.955 634.543 619.022 635.315 619.157 636.058L620.141 635.879L621.124 635.7C621.012 635.083 620.955 634.432 620.955 633.745L619.955 633.745ZM620.141 635.879L619.161 636.079C619.311 636.814 619.528 637.48 619.826 638.061L620.716 637.605L621.606 637.148C621.409 636.765 621.243 636.28 621.121 635.68L620.141 635.879ZM620.716 637.605L619.716 637.605L619.716 637.883L620.716 637.883L621.716 637.883L621.716 637.605L620.716 637.605ZM620.716 637.883L620.716 636.883L614.853 636.883L614.853 637.883L614.853 638.883L620.716 638.883L620.716 637.883ZM614.853 637.883L615.732 637.407C615.615 637.191 615.497 636.898 615.387 636.514L614.426 636.788L613.464 637.063C613.602 637.544 613.768 637.981 613.973 638.359L614.853 637.883ZM614.426 636.788L615.394 636.539C615.297 636.161 615.232 635.777 615.2 635.388L614.203 635.471L613.207 635.554C613.248 636.055 613.332 636.55 613.457 637.037L614.426 636.788ZM614.203 635.471L613.342 634.963C613.062 635.438 612.507 635.952 611.546 636.461L612.014 637.345L612.482 638.229C613.623 637.624 614.528 636.89 615.065 635.979L614.203 635.471ZM612.014 637.345L611.541 636.463C610.689 636.92 609.553 637.18 608.08 637.18L608.08 638.18L608.08 639.18C609.774 639.18 611.26 638.883 612.486 638.226L612.014 637.345ZM608.08 638.18L608.08 637.18C606.369 637.18 605.079 636.755 604.122 635.989L603.497 636.77L602.872 637.551C604.265 638.665 606.031 639.18 608.08 639.18L608.08 638.18ZM603.497 636.77L604.126 635.992C603.254 635.287 602.753 634.21 602.753 632.576L601.753 632.576L600.753 632.576C600.753 634.654 601.415 636.372 602.868 637.547L603.497 636.77ZM607.672 632.113L606.672 632.113C606.672 633.09 606.957 633.981 607.633 634.657L608.34 633.949L609.047 633.242C608.832 633.027 608.672 632.693 608.672 632.113L607.672 632.113ZM608.34 633.949L607.643 634.666C608.347 635.351 609.327 635.599 610.381 635.599L610.381 634.599L610.381 633.599C609.604 633.599 609.223 633.414 609.037 633.232L608.34 633.949ZM610.381 634.599L610.381 635.599C611.615 635.599 612.708 635.181 613.604 634.348L612.923 633.615L612.242 632.883C611.727 633.361 611.126 633.599 610.381 633.599L610.381 634.599ZM612.923 633.615L613.604 634.347C614.499 633.515 614.999 632.486 614.999 631.296L613.999 631.296L612.999 631.296C612.999 631.863 612.782 632.38 612.241 632.884L612.923 633.615ZM613.999 631.296L614.999 631.296L614.999 629.738L613.999 629.738L612.999 629.738L612.999 631.296L613.999 631.296ZM613.999 629.738L613.999 628.738L611.364 628.738L611.364 629.738L611.364 630.738L613.999 630.738L613.999 629.738ZM611.364 629.738L611.364 628.738C610.039 628.738 608.874 628.932 608.028 629.468L608.562 630.313L609.097 631.158C609.463 630.926 610.166 630.738 611.364 630.738L611.364 629.738ZM608.562 630.313L608.02 629.473C607.093 630.071 606.672 631.018 606.672 632.113L607.672 632.113L608.672 632.113C608.672 631.574 608.845 631.321 609.105 631.153L608.562 630.313ZM623.944 637.883L622.944 637.883L622.944 638.883L623.944 638.883L623.944 637.883ZM623.944 610.181L623.944 609.181L622.944 609.181L622.944 610.181L623.944 610.181ZM629.937 610.181L630.937 610.181L630.937 609.181L629.937 609.181L629.937 610.181ZM629.937 637.883L629.937 638.883L630.937 638.883L630.937 637.883L629.937 637.883ZM623.944 637.883L624.944 637.883L624.944 610.181L623.944 610.181L622.944 610.181L622.944 637.883L623.944 637.883ZM623.944 610.181L623.944 611.181L629.937 611.181L629.937 610.181L629.937 609.181L623.944 609.181L623.944 610.181ZM629.937 610.181L628.937 610.181L628.937 637.883L629.937 637.883L630.937 637.883L630.937 610.181L629.937 610.181ZM629.937 637.883L629.937 636.883L623.944 636.883L623.944 637.883L623.944 638.883L629.937 638.883L629.937 637.883ZM633.927 637.883L632.927 637.883L632.927 638.883L633.927 638.883L633.927 637.883ZM633.927 619.644L633.927 618.644L632.927 618.644L632.927 619.644L633.927 619.644ZM639.957 619.644L640.957 619.644L640.957 618.644L639.957 618.644L639.957 619.644ZM639.957 637.883L639.957 638.883L640.957 638.883L640.957 637.883L639.957 637.883ZM634.428 611.721L635.135 612.428L635.142 612.421L634.428 611.721ZM639.475 611.702L640.189 611.003L639.475 611.702ZM633.927 637.883L634.927 637.883L634.927 619.644L633.927 619.644L632.927 619.644L632.927 637.883L633.927 637.883ZM633.927 619.644L633.927 620.644L639.957 620.644L639.957 619.644L639.957 618.644L633.927 618.644L633.927 619.644ZM639.957 619.644L638.957 619.644L638.957 637.883L639.957 637.883L640.957 637.883L640.957 619.644L639.957 619.644ZM639.957 637.883L639.957 636.883L633.927 636.883L633.927 637.883L633.927 638.883L639.957 638.883L639.957 637.883ZM633.537 613.91L634.537 613.91C634.537 613.3 634.735 612.828 635.135 612.428L634.428 611.721L633.721 611.014C632.933 611.802 632.537 612.789 632.537 613.91L633.537 613.91ZM634.428 611.721L635.142 612.421C635.496 612.059 636.054 611.812 636.97 611.812L636.97 610.812L636.97 609.812C635.684 609.812 634.547 610.171 633.713 611.021L634.428 611.721ZM636.97 610.812L636.97 611.812C637.876 611.812 638.42 612.055 638.76 612.402L639.475 611.702L640.189 611.003C639.366 610.163 638.24 609.812 636.97 609.812L636.97 610.812ZM639.475 611.702L638.76 612.402C639.147 612.797 639.347 613.277 639.347 613.91L640.347 613.91L641.347 613.91C641.347 612.787 640.965 611.795 640.189 611.003L639.475 611.702ZM640.347 613.91L639.347 613.91C639.347 614.521 639.148 615.004 638.742 615.419L639.456 616.118L640.17 616.818C640.951 616.021 641.347 615.032 641.347 613.91L640.347 613.91ZM639.456 616.118L638.742 615.419C638.385 615.782 637.832 616.028 636.933 616.028L636.933 617.028L636.933 618.028C638.21 618.028 639.339 617.667 640.17 616.818L639.456 616.118ZM636.933 617.028L636.933 616.028C636.016 616.028 635.47 615.78 635.131 615.426L634.409 616.118L633.687 616.811C634.511 617.669 635.648 618.028 636.933 618.028L636.933 617.028ZM634.409 616.118L635.131 615.426C634.734 615.013 634.537 614.527 634.537 613.91L633.537 613.91L632.537 613.91C632.537 615.025 632.921 616.012 633.687 616.811L634.409 616.118ZM645.171 621.852L645.934 622.498L645.936 622.496L645.171 621.852ZM654.114 619.922L653.682 620.824L653.692 620.829L654.114 619.922ZM656.229 621.611L655.418 622.195L657.229 624.713L657.229 621.611L656.229 621.611ZM656.229 610.181L656.229 609.181L655.229 609.181L655.229 610.181L656.229 610.181ZM662.074 610.181L663.074 610.181L663.074 609.181L662.074 609.181L662.074 610.181ZM662.074 637.883L662.074 638.883L663.074 638.883L663.074 637.883L662.074 637.883ZM656.396 637.883L655.397 637.915L655.427 638.883L656.396 638.883L656.396 637.883ZM656.322 635.527L657.322 635.495L657.291 634.527L656.322 634.527L656.322 635.527ZM656.285 635.527L656.285 634.527L655.725 634.527L655.433 635.004L656.285 635.527ZM654.17 637.475L654.654 638.35L654.662 638.345L654.17 637.475ZM645.097 635.675L644.319 636.303L644.323 636.309L645.097 635.675ZM649.958 632.669L649.128 633.227L649.958 632.669ZM654.856 633.319L654.236 632.535L654.856 633.319ZM656.137 631.649L657.064 632.023L657.137 631.843L657.137 631.649L656.137 631.649ZM656.137 625.804L657.137 625.804L657.137 625.61L657.064 625.429L656.137 625.804ZM654.875 624.171L654.259 624.959L654.267 624.965L654.875 624.171ZM649.958 624.876L650.788 625.434L650.792 625.428L649.958 624.876ZM643 629.051L644 629.051L644 628.457L643 628.457L642 628.457L642 629.051L643 629.051ZM643 628.457L644 628.457C644 625.947 644.669 623.99 645.934 622.498L645.171 621.852L644.408 621.205C642.778 623.128 642 625.574 642 628.457L643 628.457ZM645.171 621.852L645.936 622.496C647.185 621.012 648.792 620.273 650.849 620.273L650.849 619.273L650.849 618.273C648.229 618.273 646.052 619.252 644.406 621.208L645.171 621.852ZM650.849 619.273L650.849 620.273C652.013 620.273 652.945 620.471 653.682 620.824L654.114 619.922L654.547 619.02C653.477 618.508 652.233 618.273 650.849 618.273L650.849 619.273ZM654.114 619.922L653.692 620.829C654.463 621.188 655.025 621.648 655.418 622.195L656.229 621.611L657.041 621.027C656.42 620.163 655.572 619.498 654.536 619.016L654.114 619.922ZM656.229 621.611L657.229 621.611L657.229 610.181L656.229 610.181L655.229 610.181L655.229 621.611L656.229 621.611ZM656.229 610.181L656.229 611.181L662.074 611.181L662.074 610.181L662.074 609.181L656.229 609.181L656.229 610.181ZM662.074 610.181L661.074 610.181L661.074 637.883L662.074 637.883L663.074 637.883L663.074 610.181L662.074 610.181ZM662.074 637.883L662.074 636.883L656.396 636.883L656.396 637.883L656.396 638.883L662.074 638.883L662.074 637.883ZM656.396 637.883L657.396 637.852L657.322 635.495L656.322 635.527L655.323 635.558L655.397 637.915L656.396 637.883ZM656.322 635.527L656.322 634.527L656.285 634.527L656.285 635.527L656.285 636.527L656.322 636.527L656.322 635.527ZM656.285 635.527L655.433 635.004C655.067 635.6 654.5 636.139 653.677 636.605L654.17 637.475L654.662 638.345C655.721 637.747 656.563 636.987 657.138 636.049L656.285 635.527ZM654.17 637.475L653.686 636.6C652.92 637.023 651.985 637.254 650.849 637.254L650.849 638.254L650.849 639.254C652.26 639.254 653.54 638.965 654.654 638.35L654.17 637.475ZM650.849 638.254L650.849 637.254C648.693 637.254 647.071 636.506 645.87 635.041L645.097 635.675L644.323 636.309C645.942 638.283 648.155 639.254 650.849 639.254L650.849 638.254ZM645.097 635.675L645.875 635.047C644.649 633.528 644 631.556 644 629.051L643 629.051L642 629.051C642 631.915 642.749 634.359 644.319 636.303L645.097 635.675ZM649.049 629.144L648.049 629.144C648.049 630.725 648.38 632.112 649.128 633.227L649.958 632.669L650.788 632.112C650.324 631.42 650.049 630.457 650.049 629.144L649.049 629.144ZM649.958 632.669L649.128 633.227C649.945 634.445 651.195 635.024 652.704 635.024L652.704 634.024L652.704 633.024C651.764 633.024 651.183 632.7 650.788 632.112L649.958 632.669ZM652.704 634.024L652.704 635.024C653.744 635.024 654.687 634.728 655.477 634.103L654.856 633.319L654.236 632.535C653.838 632.849 653.346 633.024 652.704 633.024L652.704 634.024ZM654.856 633.319L655.477 634.103C656.194 633.535 656.733 632.842 657.064 632.023L656.137 631.649L655.209 631.274C655.021 631.742 654.706 632.162 654.236 632.535L654.856 633.319ZM656.137 631.649L657.137 631.649L657.137 625.804L656.137 625.804L655.137 625.804L655.137 631.649L656.137 631.649ZM656.137 625.804L657.064 625.429C656.733 624.611 656.198 623.925 655.483 623.377L654.875 624.171L654.267 624.965C654.715 625.308 655.02 625.71 655.209 626.178L656.137 625.804ZM654.875 624.171L655.491 623.384C654.713 622.775 653.766 622.503 652.723 622.503L652.723 623.503L652.723 624.503C653.411 624.503 653.899 624.677 654.259 624.959L654.875 624.171ZM652.723 623.503L652.723 622.503C651.2 622.503 649.941 623.09 649.124 624.324L649.958 624.876L650.792 625.428C651.187 624.832 651.771 624.503 652.723 624.503L652.723 623.503ZM649.958 624.876L649.128 624.319C648.381 625.432 648.049 626.812 648.049 628.383L649.049 628.383L650.049 628.383C650.049 627.084 650.323 626.127 650.788 625.434L649.958 624.876ZM649.049 628.383L648.049 628.383L648.049 629.144L649.049 629.144L650.049 629.144L650.049 628.383L649.049 628.383Z" fill="black" mask="url(#path-9-outside-3_17007_6901)"/> +<mask id="path-11-outside-4_17007_6901" maskUnits="userSpaceOnUse" x="577.339" y="669.25" width="110" height="37" fill="black"> +<rect fill="white" x="577.339" y="669.25" width="110" height="37"/> +<path d="M578.601 691.651L578.601 682.231C578.601 678.782 579.533 676.07 581.397 674.093C583.262 672.116 585.876 671.128 589.241 671.128C592.605 671.128 595.227 672.109 597.105 674.072C598.984 676.02 599.923 678.74 599.923 682.231L599.923 691.651C599.923 695.184 598.956 697.925 597.021 699.874C595.087 701.808 592.493 702.768 589.241 702.754C585.862 702.754 583.241 701.787 581.376 699.853C579.526 697.904 578.601 695.17 578.601 691.651ZM585.666 692.787C585.666 694.343 585.953 695.57 586.528 696.467C587.117 697.35 588.028 697.792 589.262 697.792C590.496 697.792 591.4 697.35 591.975 696.467C592.563 695.57 592.858 694.343 592.858 692.787L592.858 681.2C592.858 679.616 592.563 678.383 591.975 677.499C591.4 676.602 590.496 676.154 589.262 676.154C588.028 676.154 587.117 676.602 586.528 677.499C585.953 678.383 585.666 679.616 585.666 681.2L585.666 692.787ZM602.194 689.591L602.194 688.35C602.194 683.079 603.694 678.915 606.694 675.859C609.694 672.789 613.998 671.254 619.606 671.254L620.888 671.254L620.888 676.784L619.774 676.784C616.325 676.784 613.655 677.717 611.762 679.581C609.884 681.432 608.944 684.67 608.944 689.296L609.134 689.969C609.134 693.081 609.519 695.177 610.29 696.257C611.075 697.322 612.106 697.855 613.381 697.855C614.629 697.855 615.582 697.427 616.241 696.572C616.914 695.703 617.251 694.189 617.251 692.03C617.251 690.306 616.928 688.988 616.283 688.077C615.638 687.151 614.664 686.689 613.36 686.689C612.169 686.689 611.159 687.144 610.332 688.056C609.519 688.953 609.113 690.144 609.113 691.63L607.536 691.63C607.536 688.827 608.3 686.577 609.828 684.88C611.356 683.17 613.304 682.315 615.673 682.315C618.323 682.315 620.419 683.184 621.961 684.922C623.503 686.647 624.274 689.044 624.274 692.114C624.274 695.366 623.272 697.953 621.267 699.874C619.262 701.794 616.627 702.754 613.36 702.754C610.01 702.754 607.311 701.71 605.264 699.621C603.218 697.532 602.194 694.189 602.194 689.591ZM622.907 704.878L634.767 671.633L640.634 671.633L628.753 704.878L622.907 704.878ZM639.877 689.591L639.877 688.35C639.877 683.079 641.377 678.915 644.377 675.859C647.377 672.789 651.681 671.254 657.288 671.254L658.571 671.254L658.571 676.784L657.457 676.784C654.008 676.784 651.337 677.717 649.445 679.581C647.566 681.432 646.627 684.67 646.627 689.296L646.816 689.969C646.816 693.081 647.202 695.177 647.973 696.257C648.758 697.322 649.788 697.855 651.064 697.855C652.312 697.855 653.265 697.427 653.924 696.572C654.597 695.703 654.933 694.189 654.933 692.03C654.933 690.306 654.611 688.988 653.966 688.077C653.321 687.151 652.347 686.689 651.043 686.689C649.851 686.689 648.842 687.144 648.015 688.056C647.202 688.953 646.795 690.144 646.795 691.63L645.218 691.63C645.218 688.827 645.982 686.577 647.51 684.88C649.038 683.17 650.987 682.315 653.356 682.315C656.006 682.315 658.102 683.184 659.644 684.922C661.186 686.647 661.957 689.044 661.957 692.114C661.957 695.366 660.954 697.953 658.95 699.874C656.945 701.794 654.309 702.754 651.043 702.754C647.693 702.754 644.994 701.71 642.947 699.621C640.9 697.532 639.877 694.189 639.877 689.591ZM663.513 681.726C663.513 678.488 664.515 675.915 666.52 674.009C668.539 672.088 671.181 671.128 674.448 671.128C677.784 671.128 680.476 672.172 682.522 674.261C684.583 676.35 685.614 679.693 685.614 684.292L685.614 685.532C685.614 690.719 684.114 694.834 681.114 697.876C678.113 700.904 673.81 702.439 668.202 702.481L666.898 702.481L666.898 697.035L668.034 697.035C671.469 697.035 674.118 696.109 675.983 694.259C677.861 692.409 678.8 689.212 678.8 684.67L678.674 683.913C678.674 680.927 678.296 678.88 677.539 677.773C676.782 676.665 675.73 676.112 674.384 676.112C673.151 676.112 672.198 676.539 671.525 677.394C670.866 678.235 670.536 679.707 670.536 681.81C670.536 683.605 670.859 684.943 671.504 685.827C672.148 686.71 673.116 687.151 674.405 687.151C675.625 687.151 676.642 686.717 677.455 685.848C678.282 684.964 678.695 683.78 678.695 682.294L680.167 682.294C680.167 685 679.431 687.215 677.959 688.939C676.501 690.663 674.56 691.525 672.134 691.525C669.485 691.525 667.382 690.656 665.826 688.918C664.284 687.179 663.513 684.782 663.513 681.726Z"/> +</mask> +<path d="M578.601 691.651L578.601 682.231C578.601 678.782 579.533 676.07 581.397 674.093C583.262 672.116 585.876 671.128 589.241 671.128C592.605 671.128 595.227 672.109 597.105 674.072C598.984 676.02 599.923 678.74 599.923 682.231L599.923 691.651C599.923 695.184 598.956 697.925 597.021 699.874C595.087 701.808 592.493 702.768 589.241 702.754C585.862 702.754 583.241 701.787 581.376 699.853C579.526 697.904 578.601 695.17 578.601 691.651ZM585.666 692.787C585.666 694.343 585.953 695.57 586.528 696.467C587.117 697.35 588.028 697.792 589.262 697.792C590.496 697.792 591.4 697.35 591.975 696.467C592.563 695.57 592.858 694.343 592.858 692.787L592.858 681.2C592.858 679.616 592.563 678.383 591.975 677.499C591.4 676.602 590.496 676.154 589.262 676.154C588.028 676.154 587.117 676.602 586.528 677.499C585.953 678.383 585.666 679.616 585.666 681.2L585.666 692.787ZM602.194 689.591L602.194 688.35C602.194 683.079 603.694 678.915 606.694 675.859C609.694 672.789 613.998 671.254 619.606 671.254L620.888 671.254L620.888 676.784L619.774 676.784C616.325 676.784 613.655 677.717 611.762 679.581C609.884 681.432 608.944 684.67 608.944 689.296L609.134 689.969C609.134 693.081 609.519 695.177 610.29 696.257C611.075 697.322 612.106 697.855 613.381 697.855C614.629 697.855 615.582 697.427 616.241 696.572C616.914 695.703 617.251 694.189 617.251 692.03C617.251 690.306 616.928 688.988 616.283 688.077C615.638 687.151 614.664 686.689 613.36 686.689C612.169 686.689 611.159 687.144 610.332 688.056C609.519 688.953 609.113 690.144 609.113 691.63L607.536 691.63C607.536 688.827 608.3 686.577 609.828 684.88C611.356 683.17 613.304 682.315 615.673 682.315C618.323 682.315 620.419 683.184 621.961 684.922C623.503 686.647 624.274 689.044 624.274 692.114C624.274 695.366 623.272 697.953 621.267 699.874C619.262 701.794 616.627 702.754 613.36 702.754C610.01 702.754 607.311 701.71 605.264 699.621C603.218 697.532 602.194 694.189 602.194 689.591ZM622.907 704.878L634.767 671.633L640.634 671.633L628.753 704.878L622.907 704.878ZM639.877 689.591L639.877 688.35C639.877 683.079 641.377 678.915 644.377 675.859C647.377 672.789 651.681 671.254 657.288 671.254L658.571 671.254L658.571 676.784L657.457 676.784C654.008 676.784 651.337 677.717 649.445 679.581C647.566 681.432 646.627 684.67 646.627 689.296L646.816 689.969C646.816 693.081 647.202 695.177 647.973 696.257C648.758 697.322 649.788 697.855 651.064 697.855C652.312 697.855 653.265 697.427 653.924 696.572C654.597 695.703 654.933 694.189 654.933 692.03C654.933 690.306 654.611 688.988 653.966 688.077C653.321 687.151 652.347 686.689 651.043 686.689C649.851 686.689 648.842 687.144 648.015 688.056C647.202 688.953 646.795 690.144 646.795 691.63L645.218 691.63C645.218 688.827 645.982 686.577 647.51 684.88C649.038 683.17 650.987 682.315 653.356 682.315C656.006 682.315 658.102 683.184 659.644 684.922C661.186 686.647 661.957 689.044 661.957 692.114C661.957 695.366 660.954 697.953 658.95 699.874C656.945 701.794 654.309 702.754 651.043 702.754C647.693 702.754 644.994 701.71 642.947 699.621C640.9 697.532 639.877 694.189 639.877 689.591ZM663.513 681.726C663.513 678.488 664.515 675.915 666.52 674.009C668.539 672.088 671.181 671.128 674.448 671.128C677.784 671.128 680.476 672.172 682.522 674.261C684.583 676.35 685.614 679.693 685.614 684.292L685.614 685.532C685.614 690.719 684.114 694.834 681.114 697.876C678.113 700.904 673.81 702.439 668.202 702.481L666.898 702.481L666.898 697.035L668.034 697.035C671.469 697.035 674.118 696.109 675.983 694.259C677.861 692.409 678.8 689.212 678.8 684.67L678.674 683.913C678.674 680.927 678.296 678.88 677.539 677.773C676.782 676.665 675.73 676.112 674.384 676.112C673.151 676.112 672.198 676.539 671.525 677.394C670.866 678.235 670.536 679.707 670.536 681.81C670.536 683.605 670.859 684.943 671.504 685.827C672.148 686.71 673.116 687.151 674.405 687.151C675.625 687.151 676.642 686.717 677.455 685.848C678.282 684.964 678.695 683.78 678.695 682.294L680.167 682.294C680.167 685 679.431 687.215 677.959 688.939C676.501 690.663 674.56 691.525 672.134 691.525C669.485 691.525 667.382 690.656 665.826 688.918C664.284 687.179 663.513 684.782 663.513 681.726Z" fill="white"/> +<path d="M597.105 674.072L596.383 674.763L596.386 674.766L597.105 674.072ZM597.021 699.874L597.728 700.581L597.731 700.578L597.021 699.874ZM589.241 702.754L589.245 701.754L589.241 701.754L589.241 702.754ZM581.376 699.853L580.651 700.541L580.656 700.546L581.376 699.853ZM586.528 696.467L585.686 697.006L585.691 697.014L585.696 697.022L586.528 696.467ZM591.975 696.467L591.139 695.918L591.136 695.922L591.975 696.467ZM591.975 677.499L591.133 678.039L591.137 678.047L591.143 678.054L591.975 677.499ZM586.528 677.499L585.692 676.951L585.69 676.954L586.528 677.499ZM578.601 691.651L579.601 691.651L579.601 682.231L578.601 682.231L577.601 682.231L577.601 691.651L578.601 691.651ZM578.601 682.231L579.601 682.231C579.601 678.966 580.479 676.524 582.125 674.779L581.397 674.093L580.67 673.407C578.587 675.615 577.601 678.599 577.601 682.231L578.601 682.231ZM581.397 674.093L582.125 674.779C583.757 673.049 586.082 672.128 589.241 672.128L589.241 671.128L589.241 670.128C585.671 670.128 582.767 671.184 580.67 673.407L581.397 674.093ZM589.241 671.128L589.241 672.128C592.402 672.128 594.736 673.043 596.383 674.763L597.105 674.072L597.828 673.38C595.718 671.176 592.809 670.128 589.241 670.128L589.241 671.128ZM597.105 674.072L596.386 674.766C598.037 676.479 598.923 678.921 598.923 682.231L599.923 682.231L600.923 682.231C600.923 678.559 599.931 675.562 597.825 673.378L597.105 674.072ZM599.923 682.231L598.923 682.231L598.923 691.651L599.923 691.651L600.923 691.651L600.923 682.231L599.923 682.231ZM599.923 691.651L598.923 691.651C598.923 694.999 598.011 697.457 596.312 699.169L597.021 699.874L597.731 700.578C599.901 698.393 600.923 695.369 600.923 691.651L599.923 691.651ZM597.021 699.874L596.314 699.166C594.603 700.877 592.285 701.768 589.245 701.754L589.241 702.754L589.237 703.754C592.702 703.769 595.57 702.739 597.728 700.581L597.021 699.874ZM589.241 702.754L589.241 701.754C586.06 701.754 583.726 700.85 582.096 699.159L581.376 699.853L580.656 700.546C582.755 702.724 585.665 703.754 589.241 703.754L589.241 702.754ZM581.376 699.853L582.101 699.164C580.477 697.453 579.601 694.996 579.601 691.651L578.601 691.651L577.601 691.651C577.601 695.345 578.575 698.355 580.651 700.541L581.376 699.853ZM585.666 692.787L584.666 692.787C584.666 694.451 584.971 695.89 585.686 697.006L586.528 696.467L587.37 695.928C586.936 695.249 586.666 694.235 586.666 692.787L585.666 692.787ZM586.528 696.467L585.696 697.022C586.503 698.232 587.757 698.792 589.262 698.792L589.262 697.792L589.262 696.792C588.3 696.792 587.731 696.469 587.36 695.912L586.528 696.467ZM589.262 697.792L589.262 698.792C590.767 698.792 592.02 698.231 592.813 697.012L591.975 696.467L591.136 695.922C590.78 696.469 590.224 696.792 589.262 696.792L589.262 697.792ZM591.975 696.467L592.811 697.016C593.544 695.898 593.858 694.455 593.858 692.787L592.858 692.787L591.858 692.787C591.858 694.231 591.582 695.242 591.139 695.918L591.975 696.467ZM592.858 692.787L593.858 692.787L593.858 681.2L592.858 681.2L591.858 681.2L591.858 692.787L592.858 692.787ZM592.858 681.2L593.858 681.2C593.858 679.51 593.547 678.055 592.807 676.945L591.975 677.499L591.143 678.054C591.58 678.711 591.858 679.722 591.858 681.2L592.858 681.2ZM591.975 677.499L592.817 676.96C592.026 675.727 590.773 675.154 589.262 675.154L589.262 676.154L589.262 677.154C590.218 677.154 590.773 677.478 591.133 678.039L591.975 677.499ZM589.262 676.154L589.262 675.154C587.75 675.154 586.496 675.726 585.692 676.951L586.528 677.499L587.364 678.048C587.738 677.478 588.306 677.154 589.262 677.154L589.262 676.154ZM586.528 677.499L585.69 676.954C584.969 678.062 584.666 679.514 584.666 681.2L585.666 681.2L586.666 681.2C586.666 679.719 586.938 678.703 587.366 678.045L586.528 677.499ZM585.666 681.2L584.666 681.2L584.666 692.787L585.666 692.787L586.666 692.787L586.666 681.2L585.666 681.2ZM606.694 675.859L607.408 676.56L607.41 676.558L606.694 675.859ZM620.888 671.254L621.888 671.254L621.888 670.254L620.888 670.254L620.888 671.254ZM620.888 676.784L620.888 677.784L621.888 677.784L621.888 676.784L620.888 676.784ZM611.762 679.581L612.464 680.294L612.464 680.294L611.762 679.581ZM608.944 689.296L607.944 689.296L607.944 689.434L607.982 689.567L608.944 689.296ZM609.134 689.969L610.134 689.969L610.134 689.831L610.096 689.698L609.134 689.969ZM610.29 696.257L609.476 696.838L609.481 696.844L609.485 696.85L610.29 696.257ZM616.241 696.572L615.45 695.96L615.449 695.962L616.241 696.572ZM616.283 688.077L615.463 688.648L615.467 688.654L616.283 688.077ZM610.332 688.056L609.592 687.384L609.591 687.384L610.332 688.056ZM609.113 691.63L609.113 692.63L610.113 692.63L610.113 691.63L609.113 691.63ZM607.536 691.63L606.536 691.63L606.536 692.63L607.536 692.63L607.536 691.63ZM609.828 684.88L610.571 685.55L610.573 685.547L609.828 684.88ZM621.961 684.922L621.213 685.586L621.216 685.589L621.961 684.922ZM602.194 689.591L603.194 689.591L603.194 688.35L602.194 688.35L601.194 688.35L601.194 689.591L602.194 689.591ZM602.194 688.35L603.194 688.35C603.194 683.277 604.632 679.388 607.408 676.56L606.694 675.859L605.981 675.159C602.757 678.443 601.194 682.881 601.194 688.35L602.194 688.35ZM606.694 675.859L607.41 676.558C610.169 673.734 614.181 672.254 619.606 672.254L619.606 671.254L619.606 670.254C613.815 670.254 609.22 671.844 605.979 675.16L606.694 675.859ZM619.606 671.254L619.606 672.254L620.888 672.254L620.888 671.254L620.888 670.254L619.606 670.254L619.606 671.254ZM620.888 671.254L619.888 671.254L619.888 676.784L620.888 676.784L621.888 676.784L621.888 671.254L620.888 671.254ZM620.888 676.784L620.888 675.784L619.774 675.784L619.774 676.784L619.774 677.784L620.888 677.784L620.888 676.784ZM619.774 676.784L619.774 675.784C616.144 675.784 613.191 676.77 611.06 678.869L611.762 679.581L612.464 680.294C614.118 678.664 616.507 677.784 619.774 677.784L619.774 676.784ZM611.762 679.581L611.06 678.869C608.89 681.007 607.944 684.589 607.944 689.296L608.944 689.296L609.944 689.296C609.944 684.751 610.878 681.856 612.464 680.294L611.762 679.581ZM608.944 689.296L607.982 689.567L608.171 690.24L609.134 689.969L610.096 689.698L609.907 689.026L608.944 689.296ZM609.134 689.969L608.134 689.969C608.134 691.561 608.232 692.928 608.439 694.056C608.644 695.171 608.969 696.128 609.476 696.838L610.29 696.257L611.104 695.675C610.84 695.306 610.587 694.676 610.406 693.694C610.228 692.726 610.134 691.49 610.134 689.969L609.134 689.969ZM610.29 696.257L609.485 696.85C610.45 698.16 611.774 698.855 613.381 698.855L613.381 697.855L613.381 696.855C612.437 696.855 611.7 696.484 611.095 695.663L610.29 696.257ZM613.381 697.855L613.381 698.855C614.885 698.855 616.154 698.324 617.033 697.182L616.241 696.572L615.449 695.962C615.011 696.531 614.374 696.855 613.381 696.855L613.381 697.855ZM616.241 696.572L617.032 697.184C617.92 696.037 618.251 694.23 618.251 692.03L617.251 692.03L616.251 692.03C616.251 694.148 615.908 695.369 615.45 695.96L616.241 696.572ZM617.251 692.03L618.251 692.03C618.251 690.204 617.913 688.648 617.1 687.499L616.283 688.077L615.467 688.654C615.943 689.327 616.251 690.407 616.251 692.03L617.251 692.03ZM616.283 688.077L617.104 687.505C616.241 686.266 614.932 685.689 613.36 685.689L613.36 686.689L613.36 687.689C614.396 687.689 615.036 688.036 615.463 688.648L616.283 688.077ZM613.36 686.689L613.36 685.689C611.876 685.689 610.601 686.271 609.592 687.384L610.332 688.056L611.073 688.728C611.717 688.018 612.461 687.689 613.36 687.689L613.36 686.689ZM610.332 688.056L609.591 687.384C608.576 688.505 608.113 689.955 608.113 691.63L609.113 691.63L610.113 691.63C610.113 690.334 610.463 689.401 611.073 688.727L610.332 688.056ZM609.113 691.63L609.113 690.63L607.536 690.63L607.536 691.63L607.536 692.63L609.113 692.63L609.113 691.63ZM607.536 691.63L608.536 691.63C608.536 689.015 609.244 687.023 610.571 685.55L609.828 684.88L609.085 684.211C607.355 686.131 606.536 688.638 606.536 691.63L607.536 691.63ZM609.828 684.88L610.573 685.547C611.905 684.057 613.578 683.315 615.673 683.315L615.673 682.315L615.673 681.315C613.03 681.315 610.807 682.284 609.082 684.214L609.828 684.88ZM615.673 682.315L615.673 683.315C618.081 683.315 619.888 684.093 621.213 685.586L621.961 684.922L622.709 684.259C620.95 682.275 618.565 681.315 615.673 681.315L615.673 682.315ZM621.961 684.922L621.216 685.589C622.546 687.077 623.274 689.208 623.274 692.114L624.274 692.114L625.274 692.114C625.274 688.88 624.46 686.217 622.706 684.256L621.961 684.922ZM624.274 692.114L623.274 692.114C623.274 695.145 622.349 697.452 620.575 699.151L621.267 699.874L621.959 700.596C624.194 698.454 625.274 695.588 625.274 692.114L624.274 692.114ZM621.267 699.874L620.575 699.151C618.789 700.863 616.418 701.754 613.36 701.754L613.36 702.754L613.36 703.754C616.836 703.754 619.736 702.726 621.959 700.596L621.267 699.874ZM613.36 702.754L613.36 701.754C610.236 701.754 607.809 700.79 605.979 698.921L605.264 699.621L604.55 700.321C606.813 702.63 609.784 703.754 613.36 703.754L613.36 702.754ZM605.264 699.621L605.979 698.921C604.196 697.102 603.194 694.072 603.194 689.591L602.194 689.591L601.194 689.591C601.194 694.306 602.239 697.963 604.55 700.321L605.264 699.621ZM622.907 704.878L621.965 704.542L621.489 705.878L622.907 705.878L622.907 704.878ZM634.767 671.633L634.767 670.633L634.062 670.633L633.825 671.297L634.767 671.633ZM640.634 671.633L641.576 671.969L642.053 670.633L640.634 670.633L640.634 671.633ZM628.753 704.878L628.753 705.878L629.458 705.878L629.695 705.215L628.753 704.878ZM622.907 704.878L623.849 705.214L635.709 671.969L634.767 671.633L633.825 671.297L621.965 704.542L622.907 704.878ZM634.767 671.633L634.767 672.633L640.634 672.633L640.634 671.633L640.634 670.633L634.767 670.633L634.767 671.633ZM640.634 671.633L639.692 671.296L627.811 704.542L628.753 704.878L629.695 705.215L641.576 671.969L640.634 671.633ZM628.753 704.878L628.753 703.878L622.907 703.878L622.907 704.878L622.907 705.878L628.753 705.878L628.753 704.878ZM644.377 675.859L645.091 676.56L645.092 676.558L644.377 675.859ZM658.571 671.254L659.571 671.254L659.571 670.254L658.571 670.254L658.571 671.254ZM658.571 676.784L658.571 677.784L659.571 677.784L659.571 676.784L658.571 676.784ZM649.445 679.581L650.147 680.294L650.147 680.294L649.445 679.581ZM646.627 689.296L645.627 689.296L645.627 689.434L645.664 689.567L646.627 689.296ZM646.816 689.969L647.816 689.969L647.816 689.831L647.779 689.698L646.816 689.969ZM647.973 696.257L647.159 696.838L647.163 696.844L647.168 696.85L647.973 696.257ZM653.924 696.572L653.133 695.96L653.132 695.962L653.924 696.572ZM653.966 688.077L653.146 688.648L653.15 688.654L653.966 688.077ZM648.015 688.056L647.275 687.384L647.274 687.384L648.015 688.056ZM646.795 691.63L646.795 692.63L647.795 692.63L647.795 691.63L646.795 691.63ZM645.218 691.63L644.218 691.63L644.218 692.63L645.218 692.63L645.218 691.63ZM647.51 684.88L648.253 685.55L648.256 685.547L647.51 684.88ZM659.644 684.922L658.896 685.586L658.898 685.589L659.644 684.922ZM639.877 689.591L640.877 689.591L640.877 688.35L639.877 688.35L638.877 688.35L638.877 689.591L639.877 689.591ZM639.877 688.35L640.877 688.35C640.877 683.277 642.315 679.388 645.091 676.56L644.377 675.859L643.663 675.159C640.439 678.443 638.877 682.881 638.877 688.35L639.877 688.35ZM644.377 675.859L645.092 676.558C647.851 673.734 651.864 672.254 657.288 672.254L657.288 671.254L657.288 670.254C651.498 670.254 646.903 671.844 643.662 675.16L644.377 675.859ZM657.288 671.254L657.288 672.254L658.571 672.254L658.571 671.254L658.571 670.254L657.288 670.254L657.288 671.254ZM658.571 671.254L657.571 671.254L657.571 676.784L658.571 676.784L659.571 676.784L659.571 671.254L658.571 671.254ZM658.571 676.784L658.571 675.784L657.457 675.784L657.457 676.784L657.457 677.784L658.571 677.784L658.571 676.784ZM657.457 676.784L657.457 675.784C653.827 675.784 650.874 676.77 648.743 678.869L649.445 679.581L650.147 680.294C651.801 678.664 654.189 677.784 657.457 677.784L657.457 676.784ZM649.445 679.581L648.743 678.869C646.573 681.007 645.627 684.589 645.627 689.296L646.627 689.296L647.627 689.296C647.627 684.751 648.56 681.856 650.147 680.294L649.445 679.581ZM646.627 689.296L645.664 689.567L645.854 690.24L646.816 689.969L647.779 689.698L647.59 689.026L646.627 689.296ZM646.816 689.969L645.816 689.969C645.816 691.561 645.915 692.928 646.122 694.056C646.327 695.171 646.652 696.128 647.159 696.838L647.973 696.257L648.787 695.675C648.523 695.306 648.269 694.676 648.089 693.694C647.911 692.726 647.816 691.49 647.816 689.969L646.816 689.969ZM647.973 696.257L647.168 696.85C648.133 698.16 649.457 698.855 651.064 698.855L651.064 697.855L651.064 696.855C650.12 696.855 649.383 696.484 648.778 695.663L647.973 696.257ZM651.064 697.855L651.064 698.855C652.567 698.855 653.837 698.324 654.716 697.182L653.924 696.572L653.132 695.962C652.693 696.531 652.056 696.855 651.064 696.855L651.064 697.855ZM653.924 696.572L654.715 697.184C655.603 696.037 655.933 694.23 655.933 692.03L654.933 692.03L653.933 692.03C653.933 694.148 653.591 695.369 653.133 695.96L653.924 696.572ZM654.933 692.03L655.933 692.03C655.933 690.204 655.596 688.648 654.782 687.499L653.966 688.077L653.15 688.654C653.626 689.327 653.933 690.407 653.933 692.03L654.933 692.03ZM653.966 688.077L654.786 687.505C653.923 686.266 652.615 685.689 651.043 685.689L651.043 686.689L651.043 687.689C652.079 687.689 652.719 688.036 653.146 688.648L653.966 688.077ZM651.043 686.689L651.043 685.689C649.559 685.689 648.284 686.271 647.275 687.384L648.015 688.056L648.755 688.728C649.4 688.018 650.144 687.689 651.043 687.689L651.043 686.689ZM648.015 688.056L647.274 687.384C646.258 688.505 645.795 689.955 645.795 691.63L646.795 691.63L647.795 691.63C647.795 690.334 648.145 689.401 648.756 688.727L648.015 688.056ZM646.795 691.63L646.795 690.63L645.218 690.63L645.218 691.63L645.218 692.63L646.795 692.63L646.795 691.63ZM645.218 691.63L646.218 691.63C646.218 689.015 646.926 687.023 648.253 685.55L647.51 684.88L646.767 684.211C645.038 686.131 644.218 688.638 644.218 691.63L645.218 691.63ZM647.51 684.88L648.256 685.547C649.587 684.057 651.261 683.315 653.356 683.315L653.356 682.315L653.356 681.315C650.713 681.315 648.489 682.284 646.765 684.214L647.51 684.88ZM653.356 682.315L653.356 683.315C655.764 683.315 657.571 684.093 658.896 685.586L659.644 684.922L660.392 684.259C658.632 682.275 656.247 681.315 653.356 681.315L653.356 682.315ZM659.644 684.922L658.898 685.589C660.229 687.077 660.957 689.208 660.957 692.114L661.957 692.114L662.957 692.114C662.957 688.88 662.142 686.217 660.389 684.256L659.644 684.922ZM661.957 692.114L660.957 692.114C660.957 695.145 660.032 697.452 658.258 699.151L658.95 699.874L659.641 700.596C661.877 698.454 662.957 695.588 662.957 692.114L661.957 692.114ZM658.95 699.874L658.258 699.151C656.472 700.863 654.1 701.754 651.043 701.754L651.043 702.754L651.043 703.754C654.519 703.754 657.418 702.726 659.641 700.596L658.95 699.874ZM651.043 702.754L651.043 701.754C647.919 701.754 645.492 700.79 643.661 698.921L642.947 699.621L642.233 700.321C644.496 702.63 647.466 703.754 651.043 703.754L651.043 702.754ZM642.947 699.621L643.661 698.921C641.879 697.102 640.877 694.072 640.877 689.591L639.877 689.591L638.877 689.591C638.877 694.306 639.922 697.963 642.233 700.321L642.947 699.621ZM666.52 674.009L667.209 674.733L667.209 674.733L666.52 674.009ZM682.522 674.261L681.808 674.961L681.811 674.963L682.522 674.261ZM681.114 697.876L681.824 698.58L681.826 698.578L681.114 697.876ZM668.202 702.481L668.202 703.481L668.21 703.481L668.202 702.481ZM666.898 702.481L665.898 702.481L665.898 703.481L666.898 703.481L666.898 702.481ZM666.898 697.035L666.898 696.035L665.898 696.035L665.898 697.035L666.898 697.035ZM675.983 694.259L675.281 693.547L675.278 693.549L675.983 694.259ZM678.8 684.67L679.8 684.67L679.8 684.587L679.787 684.506L678.8 684.67ZM678.674 683.913L677.674 683.913L677.674 683.996L677.688 684.077L678.674 683.913ZM671.525 677.394L670.739 676.776L670.737 676.778L671.525 677.394ZM677.455 685.848L676.725 685.164L676.724 685.165L677.455 685.848ZM678.695 682.294L678.695 681.294L677.695 681.294L677.695 682.294L678.695 682.294ZM680.167 682.294L681.167 682.294L681.167 681.294L680.167 681.294L680.167 682.294ZM677.959 688.939L677.199 688.29L677.196 688.293L677.959 688.939ZM665.826 688.918L665.078 689.581L665.081 689.585L665.826 688.918ZM663.513 681.726L664.513 681.726C664.513 678.711 665.437 676.419 667.209 674.733L666.52 674.009L665.831 673.284C663.594 675.412 662.513 678.265 662.513 681.726L663.513 681.726ZM666.52 674.009L667.209 674.733C669.01 673.02 671.39 672.128 674.448 672.128L674.448 671.128L674.448 670.128C670.972 670.128 668.067 671.157 665.831 673.284L666.52 674.009ZM674.448 671.128L674.448 672.128C677.557 672.128 679.977 673.092 681.808 674.961L682.522 674.261L683.237 673.561C680.975 671.253 678.011 670.128 674.448 670.128L674.448 671.128ZM682.522 674.261L681.811 674.963C683.605 676.783 684.614 679.812 684.614 684.292L685.614 684.292L686.614 684.292C686.614 679.575 685.561 675.917 683.234 673.559L682.522 674.261ZM685.614 684.292L684.614 684.292L684.614 685.532L685.614 685.532L686.614 685.532L686.614 684.292L685.614 684.292ZM685.614 685.532L684.614 685.532C684.614 690.516 683.179 694.357 680.402 697.174L681.114 697.876L681.826 698.578C685.048 695.31 686.614 690.922 686.614 685.532L685.614 685.532ZM681.114 697.876L680.403 697.172C677.642 699.959 673.624 701.44 668.195 701.481L668.202 702.481L668.21 703.481C673.995 703.438 678.585 701.849 681.824 698.58L681.114 697.876ZM668.202 702.481L668.202 701.481L666.898 701.481L666.898 702.481L666.898 703.481L668.202 703.481L668.202 702.481ZM666.898 702.481L667.898 702.481L667.898 697.035L666.898 697.035L665.898 697.035L665.898 702.481L666.898 702.481ZM666.898 697.035L666.898 698.035L668.034 698.035L668.034 697.035L668.034 696.035L666.898 696.035L666.898 697.035ZM668.034 697.035L668.034 698.035C671.648 698.035 674.583 697.057 676.687 694.969L675.983 694.259L675.278 693.549C673.653 695.162 671.289 696.035 668.034 696.035L668.034 697.035ZM675.983 694.259L676.684 694.971C678.852 692.836 679.8 689.299 679.8 684.67L678.8 684.67L677.8 684.67C677.8 689.125 676.87 691.981 675.281 693.547L675.983 694.259ZM678.8 684.67L679.787 684.506L679.661 683.749L678.674 683.913L677.688 684.077L677.814 684.835L678.8 684.67ZM678.674 683.913L679.674 683.913C679.674 682.383 679.578 681.06 679.374 679.957C679.172 678.864 678.853 677.923 678.364 677.209L677.539 677.773L676.713 678.337C676.982 678.73 677.231 679.366 677.407 680.32C677.582 681.264 677.674 682.457 677.674 683.913L678.674 683.913ZM677.539 677.773L678.364 677.209C677.42 675.827 676.059 675.112 674.384 675.112L674.384 676.112L674.384 677.112C675.401 677.112 676.143 677.503 676.713 678.337L677.539 677.773ZM674.384 676.112L674.384 675.112C672.891 675.112 671.628 675.645 670.739 676.776L671.525 677.394L672.31 678.013C672.767 677.433 673.411 677.112 674.384 677.112L674.384 676.112ZM671.525 677.394L670.737 676.778C669.859 677.899 669.536 679.667 669.536 681.81L670.536 681.81L671.536 681.81C671.536 679.748 671.872 678.572 672.312 678.011L671.525 677.394ZM670.536 681.81L669.536 681.81C669.536 683.693 669.869 685.283 670.696 686.416L671.504 685.827L672.311 685.237C671.849 684.604 671.536 683.517 671.536 681.81L670.536 681.81ZM671.504 685.827L670.696 686.416C671.564 687.606 672.862 688.151 674.405 688.151L674.405 687.151L674.405 686.151C673.37 686.151 672.732 685.814 672.311 685.237L671.504 685.827ZM674.405 687.151L674.405 688.151C675.894 688.151 677.177 687.608 678.185 686.531L677.455 685.848L676.724 685.165C676.106 685.826 675.356 686.151 674.405 686.151L674.405 687.151ZM677.455 685.848L678.184 686.531C679.223 685.423 679.695 683.973 679.695 682.294L678.695 682.294L677.695 682.294C677.695 683.587 677.341 684.506 676.725 685.164L677.455 685.848ZM678.695 682.294L678.695 683.294L680.167 683.294L680.167 682.294L680.167 681.294L678.695 681.294L678.695 682.294ZM680.167 682.294L679.167 682.294C679.167 684.81 678.487 686.78 677.199 688.29L677.959 688.939L678.72 689.588C680.375 687.649 681.167 685.189 681.167 682.294L680.167 682.294ZM677.959 688.939L677.196 688.293C675.943 689.775 674.29 690.525 672.134 690.525L672.134 691.525L672.134 692.525C674.829 692.525 677.059 691.552 678.723 689.585L677.959 688.939ZM672.134 691.525L672.134 690.525C669.727 690.525 667.911 689.747 666.571 688.251L665.826 688.918L665.081 689.585C666.853 691.565 669.243 692.525 672.134 692.525L672.134 691.525ZM665.826 688.918L666.574 688.254C665.24 686.75 664.513 684.616 664.513 681.726L663.513 681.726L662.513 681.726C662.513 684.948 663.328 687.609 665.078 689.581L665.826 688.918Z" fill="black" mask="url(#path-11-outside-4_17007_6901)"/> +<mask id="path-13-outside-5_17007_6901" maskUnits="userSpaceOnUse" x="93" y="497" width="836" height="67" fill="black"> +<rect fill="white" x="93" y="497" width="836" height="67"/> +<path d="M96.6781 536.108L96.6781 533.111C96.6781 523.149 99.4881 515.318 105.108 509.618C110.728 503.892 118.599 501.028 128.721 501.028L132.077 501.028L132.077 512.175L129.2 512.175C123.154 512.175 118.519 513.933 115.297 517.449C112.074 520.939 110.462 527.198 110.462 536.228L110.502 537.106C110.502 542.807 111.168 546.602 112.5 548.493C113.858 550.384 115.616 551.33 117.774 551.33C119.798 551.33 121.423 550.598 122.648 549.133C123.873 547.641 124.486 544.671 124.486 540.223C124.486 537 123.913 534.603 122.768 533.031C121.649 531.433 119.998 530.634 117.814 530.634C115.789 530.634 114.071 531.406 112.66 532.951C111.248 534.47 110.542 536.547 110.542 539.184L108.145 539.184C108.145 533.99 109.623 529.955 112.58 527.078C115.536 524.175 119.052 522.723 123.127 522.723C127.789 522.723 131.504 524.268 134.275 527.358C137.045 530.421 138.43 534.842 138.43 540.622C138.43 546.935 136.459 551.889 132.517 555.485C128.574 559.054 123.62 560.839 117.654 560.839C111.155 560.839 106.027 558.855 102.272 554.886C98.5426 550.891 96.6781 544.631 96.6781 536.108ZM144.5 521.205C144.5 514.919 146.471 509.991 150.413 506.422C154.355 502.826 159.322 501.028 165.315 501.028C171.788 501.028 176.889 503.013 180.618 506.981C184.373 510.95 186.251 517.21 186.251 525.76L186.251 528.716C186.251 538.651 183.441 546.469 177.821 552.169C172.227 557.869 164.357 560.732 154.208 560.759L150.852 560.759L150.852 549.812L153.729 549.812C159.775 549.838 164.41 548.107 167.633 544.618C170.856 541.129 172.467 534.882 172.467 525.879L172.427 524.761C172.427 519.194 171.761 515.465 170.43 513.574C169.098 511.656 167.34 510.697 165.156 510.697C163.131 510.697 161.507 511.443 160.281 512.934C159.056 514.399 158.443 517.289 158.443 521.604C158.443 524.987 159.003 527.464 160.121 529.036C161.267 530.581 162.932 531.353 165.116 531.353C167.14 531.353 168.858 530.607 170.27 529.116C171.708 527.597 172.427 525.52 172.427 522.883L174.745 522.883C174.745 528.05 173.28 532.072 170.35 534.949C167.42 537.799 163.904 539.224 159.802 539.224C155.141 539.224 151.425 537.666 148.655 534.549C145.885 531.433 144.5 526.985 144.5 521.205ZM192.721 536.108L192.721 533.111C192.721 523.149 195.531 515.318 201.151 509.618C206.771 503.892 214.642 501.028 224.763 501.028L228.12 501.028L228.12 512.175L225.243 512.175C219.197 512.175 214.562 513.933 211.339 517.449C208.116 520.939 206.505 527.198 206.505 536.228L206.545 537.106C206.545 542.807 207.21 546.602 208.542 548.493C209.901 550.384 211.659 551.33 213.816 551.33C215.84 551.33 217.465 550.598 218.69 549.133C219.916 547.641 220.528 544.671 220.528 540.223C220.528 537 219.956 534.603 218.81 533.031C217.692 531.433 216.04 530.634 213.856 530.634C211.832 530.634 210.114 531.406 208.702 532.951C207.29 534.47 206.584 536.547 206.584 539.184L204.187 539.184C204.187 533.99 205.666 529.955 208.622 527.078C211.579 524.175 215.095 522.723 219.17 522.723C223.831 522.723 227.547 524.268 230.317 527.358C233.087 530.421 234.472 534.842 234.472 540.622C234.472 546.935 232.501 551.889 228.559 555.485C224.617 559.054 219.663 560.839 213.696 560.839C207.197 560.839 202.07 558.855 198.314 554.886C194.585 550.891 192.721 544.631 192.721 536.108ZM240.542 521.205C240.542 514.919 242.513 509.991 246.455 506.422C250.397 502.826 255.365 501.028 261.358 501.028C267.83 501.028 272.931 503.013 276.66 506.981C280.416 510.95 282.294 517.21 282.294 525.76L282.294 528.716C282.294 538.651 279.484 546.469 273.863 552.169C268.27 557.869 260.399 560.732 250.251 560.759L246.895 560.759L246.895 549.812L249.771 549.812C255.818 549.838 260.452 548.107 263.675 544.618C266.898 541.129 268.51 534.882 268.51 525.879L268.47 524.761C268.47 519.194 267.804 515.465 266.472 513.574C265.14 511.656 263.382 510.697 261.198 510.697C259.174 510.697 257.549 511.443 256.324 512.934C255.099 514.399 254.486 517.289 254.486 521.604C254.486 524.987 255.045 527.464 256.164 529.036C257.309 530.581 258.974 531.353 261.158 531.353C263.182 531.353 264.9 530.607 266.312 529.116C267.751 527.597 268.47 525.52 268.47 522.883L270.787 522.883C270.787 528.05 269.322 532.072 266.392 534.949C263.462 537.799 259.946 539.224 255.844 539.224C251.183 539.224 247.467 537.666 244.697 534.549C241.927 531.433 240.542 526.985 240.542 521.205ZM311.733 539.863L311.733 521.964C311.733 515.278 313.531 510.111 317.127 506.462C320.723 502.813 325.664 500.988 331.95 500.988C338.236 500.988 343.177 502.786 346.773 506.382C350.395 509.951 352.206 515.145 352.206 521.964L352.206 539.863C352.206 546.789 350.315 552.023 346.533 555.565C342.777 559.108 337.916 560.866 331.95 560.839C325.611 560.812 320.656 559.041 317.087 555.525C313.518 551.983 311.733 546.762 311.733 539.863ZM325.637 542.7C325.637 545.47 326.157 547.601 327.195 549.093C328.261 550.584 329.846 551.33 331.95 551.33C334.054 551.33 335.639 550.584 336.704 549.093C337.77 547.601 338.302 545.47 338.302 542.7L338.302 519.407C338.302 516.584 337.77 514.426 336.704 512.934C335.639 511.443 334.054 510.697 331.95 510.697C329.846 510.697 328.261 511.443 327.195 512.934C326.157 514.426 325.637 516.584 325.637 519.407L325.637 542.7ZM381.969 560L381.969 545.297L382.408 544.618L382.408 519.487L382.089 519.487L371.021 538.105L387.402 538.105L388.601 537.746L401.426 537.746L401.426 548.533L358.156 548.533L358.156 538.625L383.487 501.827L394.754 501.827L394.754 560L381.969 560ZM407.136 560L407.136 551.33L428.152 529.515C429.75 527.651 431.122 525.746 432.267 523.802C433.413 521.857 433.985 519.846 433.985 517.769C433.985 515.238 433.413 513.427 432.267 512.335C431.122 511.243 429.617 510.697 427.753 510.697C425.808 510.697 424.237 511.336 423.038 512.615C421.839 513.867 421.24 516.331 421.24 520.006L421.24 521.644L407.136 521.644L407.136 518.208C407.136 513.227 409.054 509.112 412.89 505.863C416.725 502.613 421.76 500.988 427.992 500.988C434.518 500.988 439.472 502.44 442.855 505.343C446.238 508.22 447.943 512.135 447.969 517.09C447.969 520.765 447.183 524.055 445.612 526.958C444.067 529.862 441.856 532.818 438.98 535.828L427.952 548.853L449.328 548.853L449.328 560L407.136 560ZM455.797 539.863L455.797 521.964C455.797 515.278 457.595 510.111 461.191 506.462C464.787 502.813 469.728 500.988 476.014 500.988C482.3 500.988 487.241 502.786 490.836 506.382C494.459 509.951 496.27 515.145 496.27 521.964L496.27 539.863C496.27 546.789 494.379 552.023 490.597 555.565C486.841 559.108 481.98 560.866 476.014 560.839C469.674 560.812 464.72 559.041 461.151 555.525C457.582 551.983 455.797 546.762 455.797 539.863ZM469.701 542.7C469.701 545.47 470.22 547.601 471.259 549.093C472.325 550.584 473.909 551.33 476.014 551.33C478.118 551.33 479.703 550.584 480.768 549.093C481.834 547.601 482.366 545.47 482.366 542.7L482.366 519.407C482.366 516.584 481.834 514.426 480.768 512.934C479.703 511.443 478.118 510.697 476.014 510.697C473.909 510.697 472.325 511.443 471.259 512.934C470.22 514.426 469.701 516.584 469.701 519.407L469.701 542.7ZM525.39 544.178C525.39 540.369 526.402 537.2 528.427 534.669C530.477 532.139 532.675 530.527 535.019 529.835L535.019 529.675C532.648 528.61 530.717 526.998 529.226 524.841C527.761 522.657 527.028 519.913 527.028 516.61C527.028 511.842 528.733 508.047 532.142 505.223C535.578 502.4 540.359 500.988 546.486 500.988C552.612 500.988 557.366 502.44 560.749 505.343C564.159 508.22 565.863 511.976 565.863 516.61C565.863 520.02 565.091 522.83 563.546 525.04C562.028 527.225 560.097 528.756 557.753 529.635L557.753 529.795C560.176 530.461 562.401 532.072 564.425 534.629C566.476 537.16 567.501 540.343 567.501 544.178C567.501 549.319 565.557 553.381 561.668 556.364C557.806 559.347 552.745 560.839 546.486 560.839C540.2 560.839 535.112 559.347 531.223 556.364C527.334 553.381 525.39 549.319 525.39 544.178ZM539.414 542.66C539.414 545.776 540.026 548.041 541.252 549.452C542.504 550.837 544.235 551.53 546.446 551.53C548.63 551.53 550.335 550.824 551.56 549.412C552.785 548.001 553.398 545.75 553.398 542.66C553.398 539.437 552.745 537.173 551.44 535.868C550.161 534.536 548.497 533.87 546.446 533.87C544.395 533.87 542.703 534.536 541.372 535.868C540.066 537.173 539.414 539.437 539.414 542.66ZM540.333 518.448C540.333 521.138 540.905 523.189 542.051 524.601C543.196 525.986 544.661 526.679 546.446 526.679C548.204 526.679 549.655 525.986 550.801 524.601C551.973 523.189 552.559 521.138 552.559 518.448C552.559 515.731 552.039 513.734 551 512.455C549.988 511.15 548.47 510.497 546.446 510.497C544.421 510.497 542.89 511.123 541.851 512.375C540.839 513.627 540.333 515.651 540.333 518.448ZM573.411 544.178C573.411 540.369 574.423 537.2 576.448 534.669C578.499 532.139 580.696 530.527 583.04 529.835L583.04 529.675C580.67 528.61 578.738 526.998 577.247 524.841C575.782 522.657 575.049 519.913 575.049 516.61C575.049 511.842 576.754 508.047 580.163 505.223C583.599 502.4 588.381 500.988 594.507 500.988C600.633 500.988 605.388 502.44 608.77 505.343C612.18 508.22 613.884 511.976 613.884 516.61C613.884 520.02 613.112 522.83 611.567 525.04C610.049 527.225 608.118 528.756 605.774 529.635L605.774 529.795C608.198 530.461 610.422 532.072 612.446 534.629C614.497 537.16 615.523 540.343 615.523 544.178C615.523 549.319 613.578 553.381 609.689 556.364C605.827 559.347 600.766 560.839 594.507 560.839C588.221 560.839 583.133 559.347 579.245 556.364C575.356 553.381 573.411 549.319 573.411 544.178ZM587.435 542.66C587.435 545.776 588.048 548.041 589.273 549.452C590.525 550.837 592.256 551.53 594.467 551.53C596.651 551.53 598.356 550.824 599.581 549.412C600.806 548.001 601.419 545.75 601.419 542.66C601.419 539.437 600.766 537.173 599.461 535.868C598.183 534.536 596.518 533.87 594.467 533.87C592.416 533.87 590.725 534.536 589.393 535.868C588.088 537.173 587.435 539.437 587.435 542.66ZM588.354 518.448C588.354 521.138 588.927 523.189 590.072 524.601C591.217 525.986 592.682 526.679 594.467 526.679C596.225 526.679 597.677 525.986 598.822 524.601C599.994 523.189 600.58 521.138 600.58 518.448C600.58 515.731 600.06 513.734 599.022 512.455C598.009 511.15 596.491 510.497 594.467 510.497C592.443 510.497 590.911 511.123 589.872 512.375C588.86 513.627 588.354 515.651 588.354 518.448ZM621.433 544.178C621.433 540.369 622.445 537.2 624.469 534.669C626.52 532.139 628.717 530.527 631.061 529.835L631.061 529.675C628.691 528.61 626.76 526.998 625.268 524.841C623.803 522.657 623.071 519.913 623.071 516.61C623.071 511.842 624.775 508.047 628.185 505.223C631.621 502.4 636.402 500.988 642.528 500.988C648.654 500.988 653.409 502.44 656.792 505.343C660.201 508.22 661.906 511.976 661.906 516.61C661.906 520.02 661.133 522.83 659.588 525.04C658.07 527.225 656.139 528.756 653.795 529.635L653.795 529.795C656.219 530.461 658.443 532.072 660.467 534.629C662.518 537.16 663.544 540.343 663.544 544.178C663.544 549.319 661.599 553.381 657.711 556.364C653.848 559.347 648.788 560.839 642.528 560.839C636.242 560.839 631.155 559.347 627.266 556.364C623.377 553.381 621.433 549.319 621.433 544.178ZM635.456 542.66C635.456 545.776 636.069 548.041 637.294 549.452C638.546 550.837 640.277 551.53 642.488 551.53C644.672 551.53 646.377 550.824 647.602 549.412C648.827 548.001 649.44 545.75 649.44 542.66C649.44 539.437 648.788 537.173 647.482 535.868C646.204 534.536 644.539 533.87 642.488 533.87C640.437 533.87 638.746 534.536 637.414 535.868C636.109 537.173 635.456 539.437 635.456 542.66ZM636.375 518.448C636.375 521.138 636.948 523.189 638.093 524.601C639.239 525.986 640.704 526.679 642.488 526.679C644.246 526.679 645.698 525.986 646.843 524.601C648.015 523.189 648.601 521.138 648.601 518.448C648.601 515.731 648.082 513.734 647.043 512.455C646.031 511.15 644.512 510.497 642.488 510.497C640.464 510.497 638.932 511.123 637.893 512.375C636.881 513.627 636.375 515.651 636.375 518.448ZM670.413 539.863L670.413 521.964C670.413 515.278 672.211 510.111 675.806 506.462C679.402 502.813 684.343 500.988 690.629 500.988C696.915 500.988 701.856 502.786 705.452 506.382C709.075 509.951 710.886 515.145 710.886 521.964L710.886 539.863C710.886 546.789 708.995 552.023 705.212 555.565C701.457 559.108 696.596 560.866 690.629 560.839C684.29 560.812 679.336 559.041 675.766 555.525C672.197 551.983 670.413 546.762 670.413 539.863ZM684.317 542.7C684.317 545.47 684.836 547.601 685.875 549.093C686.94 550.584 688.525 551.33 690.629 551.33C692.733 551.33 694.318 550.584 695.384 549.093C696.449 547.601 696.982 545.47 696.982 542.7L696.982 519.407C696.982 516.584 696.449 514.426 695.384 512.934C694.318 511.443 692.733 510.697 690.629 510.697C688.525 510.697 686.94 511.443 685.875 512.934C684.836 514.426 684.317 516.584 684.317 519.407L684.317 542.7ZM740.965 539.863L740.965 521.964C740.965 515.278 742.763 510.111 746.358 506.462C749.954 502.813 754.895 500.988 761.181 500.988C767.467 500.988 772.408 502.786 776.004 506.382C779.627 509.951 781.438 515.145 781.438 521.964L781.438 539.863C781.438 546.789 779.547 552.023 775.764 555.565C772.009 559.108 767.148 560.866 761.181 560.839C754.842 560.812 749.888 559.041 746.318 555.525C742.749 551.983 740.965 546.762 740.965 539.863ZM754.869 542.7C754.869 545.47 755.388 547.601 756.427 549.093C757.492 550.584 759.077 551.33 761.181 551.33C763.285 551.33 764.87 550.584 765.936 549.093C767.001 547.601 767.534 545.47 767.534 542.7L767.534 519.407C767.534 516.584 767.001 514.426 765.936 512.934C764.87 511.443 763.285 510.697 761.181 510.697C759.077 510.697 757.492 511.443 756.427 512.934C755.388 514.426 754.869 516.584 754.869 519.407L754.869 542.7ZM811.2 560L811.2 545.297L811.64 544.618L811.64 519.487L811.32 519.487L800.253 538.105L816.634 538.105L817.832 537.746L830.658 537.746L830.658 548.533L787.388 548.533L787.388 538.625L812.718 501.827L823.985 501.827L823.985 560L811.2 560ZM836.368 560L836.368 551.33L857.383 529.515C858.982 527.651 860.353 525.746 861.499 523.802C862.644 521.857 863.217 519.846 863.217 517.769C863.217 515.238 862.644 513.427 861.499 512.335C860.353 511.243 858.848 510.697 856.984 510.697C855.04 510.697 853.468 511.336 852.269 512.615C851.071 513.867 850.471 516.331 850.471 520.006L850.471 521.644L836.368 521.644L836.368 518.208C836.368 513.227 838.286 509.112 842.121 505.863C845.957 502.613 850.991 500.988 857.224 500.988C863.749 500.988 868.704 502.44 872.086 505.343C875.469 508.22 877.174 512.135 877.201 517.09C877.201 520.765 876.415 524.055 874.843 526.958C873.298 529.862 871.088 532.818 868.211 535.828L857.184 548.853L878.559 548.853L878.559 560L836.368 560ZM885.028 539.863L885.028 521.964C885.028 515.278 886.826 510.111 890.422 506.462C894.018 502.813 898.959 500.988 905.245 500.988C911.531 500.988 916.472 502.786 920.068 506.382C923.69 509.951 925.501 515.145 925.501 521.964L925.501 539.863C925.501 546.789 923.61 552.023 919.828 555.565C916.072 559.108 911.211 560.866 905.245 560.839C898.906 560.812 893.951 559.041 890.382 555.525C886.813 551.983 885.028 546.762 885.028 539.863ZM898.932 542.7C898.932 545.47 899.452 547.601 900.49 549.093C901.556 550.584 903.141 551.33 905.245 551.33C907.349 551.33 908.934 550.584 909.999 549.093C911.065 547.601 911.598 545.47 911.598 542.7L911.598 519.407C911.598 516.584 911.065 514.426 909.999 512.934C908.934 511.443 907.349 510.697 905.245 510.697C903.141 510.697 901.556 511.443 900.49 512.934C899.452 514.426 898.932 516.584 898.932 519.407L898.932 542.7Z"/> +</mask> +<path d="M96.6781 536.108L96.6781 533.111C96.6781 523.149 99.4881 515.318 105.108 509.618C110.728 503.892 118.599 501.028 128.721 501.028L132.077 501.028L132.077 512.175L129.2 512.175C123.154 512.175 118.519 513.933 115.297 517.449C112.074 520.939 110.462 527.198 110.462 536.228L110.502 537.106C110.502 542.807 111.168 546.602 112.5 548.493C113.858 550.384 115.616 551.33 117.774 551.33C119.798 551.33 121.423 550.598 122.648 549.133C123.873 547.641 124.486 544.671 124.486 540.223C124.486 537 123.913 534.603 122.768 533.031C121.649 531.433 119.998 530.634 117.814 530.634C115.789 530.634 114.071 531.406 112.66 532.951C111.248 534.47 110.542 536.547 110.542 539.184L108.145 539.184C108.145 533.99 109.623 529.955 112.58 527.078C115.536 524.175 119.052 522.723 123.127 522.723C127.789 522.723 131.504 524.268 134.275 527.358C137.045 530.421 138.43 534.842 138.43 540.622C138.43 546.935 136.459 551.889 132.517 555.485C128.574 559.054 123.62 560.839 117.654 560.839C111.155 560.839 106.027 558.855 102.272 554.886C98.5426 550.891 96.6781 544.631 96.6781 536.108ZM144.5 521.205C144.5 514.919 146.471 509.991 150.413 506.422C154.355 502.826 159.322 501.028 165.315 501.028C171.788 501.028 176.889 503.013 180.618 506.981C184.373 510.95 186.251 517.21 186.251 525.76L186.251 528.716C186.251 538.651 183.441 546.469 177.821 552.169C172.227 557.869 164.357 560.732 154.208 560.759L150.852 560.759L150.852 549.812L153.729 549.812C159.775 549.838 164.41 548.107 167.633 544.618C170.856 541.129 172.467 534.882 172.467 525.879L172.427 524.761C172.427 519.194 171.761 515.465 170.43 513.574C169.098 511.656 167.34 510.697 165.156 510.697C163.131 510.697 161.507 511.443 160.281 512.934C159.056 514.399 158.443 517.289 158.443 521.604C158.443 524.987 159.003 527.464 160.121 529.036C161.267 530.581 162.932 531.353 165.116 531.353C167.14 531.353 168.858 530.607 170.27 529.116C171.708 527.597 172.427 525.52 172.427 522.883L174.745 522.883C174.745 528.05 173.28 532.072 170.35 534.949C167.42 537.799 163.904 539.224 159.802 539.224C155.141 539.224 151.425 537.666 148.655 534.549C145.885 531.433 144.5 526.985 144.5 521.205ZM192.721 536.108L192.721 533.111C192.721 523.149 195.531 515.318 201.151 509.618C206.771 503.892 214.642 501.028 224.763 501.028L228.12 501.028L228.12 512.175L225.243 512.175C219.197 512.175 214.562 513.933 211.339 517.449C208.116 520.939 206.505 527.198 206.505 536.228L206.545 537.106C206.545 542.807 207.21 546.602 208.542 548.493C209.901 550.384 211.659 551.33 213.816 551.33C215.84 551.33 217.465 550.598 218.69 549.133C219.916 547.641 220.528 544.671 220.528 540.223C220.528 537 219.956 534.603 218.81 533.031C217.692 531.433 216.04 530.634 213.856 530.634C211.832 530.634 210.114 531.406 208.702 532.951C207.29 534.47 206.584 536.547 206.584 539.184L204.187 539.184C204.187 533.99 205.666 529.955 208.622 527.078C211.579 524.175 215.095 522.723 219.17 522.723C223.831 522.723 227.547 524.268 230.317 527.358C233.087 530.421 234.472 534.842 234.472 540.622C234.472 546.935 232.501 551.889 228.559 555.485C224.617 559.054 219.663 560.839 213.696 560.839C207.197 560.839 202.07 558.855 198.314 554.886C194.585 550.891 192.721 544.631 192.721 536.108ZM240.542 521.205C240.542 514.919 242.513 509.991 246.455 506.422C250.397 502.826 255.365 501.028 261.358 501.028C267.83 501.028 272.931 503.013 276.66 506.981C280.416 510.95 282.294 517.21 282.294 525.76L282.294 528.716C282.294 538.651 279.484 546.469 273.863 552.169C268.27 557.869 260.399 560.732 250.251 560.759L246.895 560.759L246.895 549.812L249.771 549.812C255.818 549.838 260.452 548.107 263.675 544.618C266.898 541.129 268.51 534.882 268.51 525.879L268.47 524.761C268.47 519.194 267.804 515.465 266.472 513.574C265.14 511.656 263.382 510.697 261.198 510.697C259.174 510.697 257.549 511.443 256.324 512.934C255.099 514.399 254.486 517.289 254.486 521.604C254.486 524.987 255.045 527.464 256.164 529.036C257.309 530.581 258.974 531.353 261.158 531.353C263.182 531.353 264.9 530.607 266.312 529.116C267.751 527.597 268.47 525.52 268.47 522.883L270.787 522.883C270.787 528.05 269.322 532.072 266.392 534.949C263.462 537.799 259.946 539.224 255.844 539.224C251.183 539.224 247.467 537.666 244.697 534.549C241.927 531.433 240.542 526.985 240.542 521.205ZM311.733 539.863L311.733 521.964C311.733 515.278 313.531 510.111 317.127 506.462C320.723 502.813 325.664 500.988 331.95 500.988C338.236 500.988 343.177 502.786 346.773 506.382C350.395 509.951 352.206 515.145 352.206 521.964L352.206 539.863C352.206 546.789 350.315 552.023 346.533 555.565C342.777 559.108 337.916 560.866 331.95 560.839C325.611 560.812 320.656 559.041 317.087 555.525C313.518 551.983 311.733 546.762 311.733 539.863ZM325.637 542.7C325.637 545.47 326.157 547.601 327.195 549.093C328.261 550.584 329.846 551.33 331.95 551.33C334.054 551.33 335.639 550.584 336.704 549.093C337.77 547.601 338.302 545.47 338.302 542.7L338.302 519.407C338.302 516.584 337.77 514.426 336.704 512.934C335.639 511.443 334.054 510.697 331.95 510.697C329.846 510.697 328.261 511.443 327.195 512.934C326.157 514.426 325.637 516.584 325.637 519.407L325.637 542.7ZM381.969 560L381.969 545.297L382.408 544.618L382.408 519.487L382.089 519.487L371.021 538.105L387.402 538.105L388.601 537.746L401.426 537.746L401.426 548.533L358.156 548.533L358.156 538.625L383.487 501.827L394.754 501.827L394.754 560L381.969 560ZM407.136 560L407.136 551.33L428.152 529.515C429.75 527.651 431.122 525.746 432.267 523.802C433.413 521.857 433.985 519.846 433.985 517.769C433.985 515.238 433.413 513.427 432.267 512.335C431.122 511.243 429.617 510.697 427.753 510.697C425.808 510.697 424.237 511.336 423.038 512.615C421.839 513.867 421.24 516.331 421.24 520.006L421.24 521.644L407.136 521.644L407.136 518.208C407.136 513.227 409.054 509.112 412.89 505.863C416.725 502.613 421.76 500.988 427.992 500.988C434.518 500.988 439.472 502.44 442.855 505.343C446.238 508.22 447.943 512.135 447.969 517.09C447.969 520.765 447.183 524.055 445.612 526.958C444.067 529.862 441.856 532.818 438.98 535.828L427.952 548.853L449.328 548.853L449.328 560L407.136 560ZM455.797 539.863L455.797 521.964C455.797 515.278 457.595 510.111 461.191 506.462C464.787 502.813 469.728 500.988 476.014 500.988C482.3 500.988 487.241 502.786 490.836 506.382C494.459 509.951 496.27 515.145 496.27 521.964L496.27 539.863C496.27 546.789 494.379 552.023 490.597 555.565C486.841 559.108 481.98 560.866 476.014 560.839C469.674 560.812 464.72 559.041 461.151 555.525C457.582 551.983 455.797 546.762 455.797 539.863ZM469.701 542.7C469.701 545.47 470.22 547.601 471.259 549.093C472.325 550.584 473.909 551.33 476.014 551.33C478.118 551.33 479.703 550.584 480.768 549.093C481.834 547.601 482.366 545.47 482.366 542.7L482.366 519.407C482.366 516.584 481.834 514.426 480.768 512.934C479.703 511.443 478.118 510.697 476.014 510.697C473.909 510.697 472.325 511.443 471.259 512.934C470.22 514.426 469.701 516.584 469.701 519.407L469.701 542.7ZM525.39 544.178C525.39 540.369 526.402 537.2 528.427 534.669C530.477 532.139 532.675 530.527 535.019 529.835L535.019 529.675C532.648 528.61 530.717 526.998 529.226 524.841C527.761 522.657 527.028 519.913 527.028 516.61C527.028 511.842 528.733 508.047 532.142 505.223C535.578 502.4 540.359 500.988 546.486 500.988C552.612 500.988 557.366 502.44 560.749 505.343C564.159 508.22 565.863 511.976 565.863 516.61C565.863 520.02 565.091 522.83 563.546 525.04C562.028 527.225 560.097 528.756 557.753 529.635L557.753 529.795C560.176 530.461 562.401 532.072 564.425 534.629C566.476 537.16 567.501 540.343 567.501 544.178C567.501 549.319 565.557 553.381 561.668 556.364C557.806 559.347 552.745 560.839 546.486 560.839C540.2 560.839 535.112 559.347 531.223 556.364C527.334 553.381 525.39 549.319 525.39 544.178ZM539.414 542.66C539.414 545.776 540.026 548.041 541.252 549.452C542.504 550.837 544.235 551.53 546.446 551.53C548.63 551.53 550.335 550.824 551.56 549.412C552.785 548.001 553.398 545.75 553.398 542.66C553.398 539.437 552.745 537.173 551.44 535.868C550.161 534.536 548.497 533.87 546.446 533.87C544.395 533.87 542.703 534.536 541.372 535.868C540.066 537.173 539.414 539.437 539.414 542.66ZM540.333 518.448C540.333 521.138 540.905 523.189 542.051 524.601C543.196 525.986 544.661 526.679 546.446 526.679C548.204 526.679 549.655 525.986 550.801 524.601C551.973 523.189 552.559 521.138 552.559 518.448C552.559 515.731 552.039 513.734 551 512.455C549.988 511.15 548.47 510.497 546.446 510.497C544.421 510.497 542.89 511.123 541.851 512.375C540.839 513.627 540.333 515.651 540.333 518.448ZM573.411 544.178C573.411 540.369 574.423 537.2 576.448 534.669C578.499 532.139 580.696 530.527 583.04 529.835L583.04 529.675C580.67 528.61 578.738 526.998 577.247 524.841C575.782 522.657 575.049 519.913 575.049 516.61C575.049 511.842 576.754 508.047 580.163 505.223C583.599 502.4 588.381 500.988 594.507 500.988C600.633 500.988 605.388 502.44 608.77 505.343C612.18 508.22 613.884 511.976 613.884 516.61C613.884 520.02 613.112 522.83 611.567 525.04C610.049 527.225 608.118 528.756 605.774 529.635L605.774 529.795C608.198 530.461 610.422 532.072 612.446 534.629C614.497 537.16 615.523 540.343 615.523 544.178C615.523 549.319 613.578 553.381 609.689 556.364C605.827 559.347 600.766 560.839 594.507 560.839C588.221 560.839 583.133 559.347 579.245 556.364C575.356 553.381 573.411 549.319 573.411 544.178ZM587.435 542.66C587.435 545.776 588.048 548.041 589.273 549.452C590.525 550.837 592.256 551.53 594.467 551.53C596.651 551.53 598.356 550.824 599.581 549.412C600.806 548.001 601.419 545.75 601.419 542.66C601.419 539.437 600.766 537.173 599.461 535.868C598.183 534.536 596.518 533.87 594.467 533.87C592.416 533.87 590.725 534.536 589.393 535.868C588.088 537.173 587.435 539.437 587.435 542.66ZM588.354 518.448C588.354 521.138 588.927 523.189 590.072 524.601C591.217 525.986 592.682 526.679 594.467 526.679C596.225 526.679 597.677 525.986 598.822 524.601C599.994 523.189 600.58 521.138 600.58 518.448C600.58 515.731 600.06 513.734 599.022 512.455C598.009 511.15 596.491 510.497 594.467 510.497C592.443 510.497 590.911 511.123 589.872 512.375C588.86 513.627 588.354 515.651 588.354 518.448ZM621.433 544.178C621.433 540.369 622.445 537.2 624.469 534.669C626.52 532.139 628.717 530.527 631.061 529.835L631.061 529.675C628.691 528.61 626.76 526.998 625.268 524.841C623.803 522.657 623.071 519.913 623.071 516.61C623.071 511.842 624.775 508.047 628.185 505.223C631.621 502.4 636.402 500.988 642.528 500.988C648.654 500.988 653.409 502.44 656.792 505.343C660.201 508.22 661.906 511.976 661.906 516.61C661.906 520.02 661.133 522.83 659.588 525.04C658.07 527.225 656.139 528.756 653.795 529.635L653.795 529.795C656.219 530.461 658.443 532.072 660.467 534.629C662.518 537.16 663.544 540.343 663.544 544.178C663.544 549.319 661.599 553.381 657.711 556.364C653.848 559.347 648.788 560.839 642.528 560.839C636.242 560.839 631.155 559.347 627.266 556.364C623.377 553.381 621.433 549.319 621.433 544.178ZM635.456 542.66C635.456 545.776 636.069 548.041 637.294 549.452C638.546 550.837 640.277 551.53 642.488 551.53C644.672 551.53 646.377 550.824 647.602 549.412C648.827 548.001 649.44 545.75 649.44 542.66C649.44 539.437 648.788 537.173 647.482 535.868C646.204 534.536 644.539 533.87 642.488 533.87C640.437 533.87 638.746 534.536 637.414 535.868C636.109 537.173 635.456 539.437 635.456 542.66ZM636.375 518.448C636.375 521.138 636.948 523.189 638.093 524.601C639.239 525.986 640.704 526.679 642.488 526.679C644.246 526.679 645.698 525.986 646.843 524.601C648.015 523.189 648.601 521.138 648.601 518.448C648.601 515.731 648.082 513.734 647.043 512.455C646.031 511.15 644.512 510.497 642.488 510.497C640.464 510.497 638.932 511.123 637.893 512.375C636.881 513.627 636.375 515.651 636.375 518.448ZM670.413 539.863L670.413 521.964C670.413 515.278 672.211 510.111 675.806 506.462C679.402 502.813 684.343 500.988 690.629 500.988C696.915 500.988 701.856 502.786 705.452 506.382C709.075 509.951 710.886 515.145 710.886 521.964L710.886 539.863C710.886 546.789 708.995 552.023 705.212 555.565C701.457 559.108 696.596 560.866 690.629 560.839C684.29 560.812 679.336 559.041 675.766 555.525C672.197 551.983 670.413 546.762 670.413 539.863ZM684.317 542.7C684.317 545.47 684.836 547.601 685.875 549.093C686.94 550.584 688.525 551.33 690.629 551.33C692.733 551.33 694.318 550.584 695.384 549.093C696.449 547.601 696.982 545.47 696.982 542.7L696.982 519.407C696.982 516.584 696.449 514.426 695.384 512.934C694.318 511.443 692.733 510.697 690.629 510.697C688.525 510.697 686.94 511.443 685.875 512.934C684.836 514.426 684.317 516.584 684.317 519.407L684.317 542.7ZM740.965 539.863L740.965 521.964C740.965 515.278 742.763 510.111 746.358 506.462C749.954 502.813 754.895 500.988 761.181 500.988C767.467 500.988 772.408 502.786 776.004 506.382C779.627 509.951 781.438 515.145 781.438 521.964L781.438 539.863C781.438 546.789 779.547 552.023 775.764 555.565C772.009 559.108 767.148 560.866 761.181 560.839C754.842 560.812 749.888 559.041 746.318 555.525C742.749 551.983 740.965 546.762 740.965 539.863ZM754.869 542.7C754.869 545.47 755.388 547.601 756.427 549.093C757.492 550.584 759.077 551.33 761.181 551.33C763.285 551.33 764.87 550.584 765.936 549.093C767.001 547.601 767.534 545.47 767.534 542.7L767.534 519.407C767.534 516.584 767.001 514.426 765.936 512.934C764.87 511.443 763.285 510.697 761.181 510.697C759.077 510.697 757.492 511.443 756.427 512.934C755.388 514.426 754.869 516.584 754.869 519.407L754.869 542.7ZM811.2 560L811.2 545.297L811.64 544.618L811.64 519.487L811.32 519.487L800.253 538.105L816.634 538.105L817.832 537.746L830.658 537.746L830.658 548.533L787.388 548.533L787.388 538.625L812.718 501.827L823.985 501.827L823.985 560L811.2 560ZM836.368 560L836.368 551.33L857.383 529.515C858.982 527.651 860.353 525.746 861.499 523.802C862.644 521.857 863.217 519.846 863.217 517.769C863.217 515.238 862.644 513.427 861.499 512.335C860.353 511.243 858.848 510.697 856.984 510.697C855.04 510.697 853.468 511.336 852.269 512.615C851.071 513.867 850.471 516.331 850.471 520.006L850.471 521.644L836.368 521.644L836.368 518.208C836.368 513.227 838.286 509.112 842.121 505.863C845.957 502.613 850.991 500.988 857.224 500.988C863.749 500.988 868.704 502.44 872.086 505.343C875.469 508.22 877.174 512.135 877.201 517.09C877.201 520.765 876.415 524.055 874.843 526.958C873.298 529.862 871.088 532.818 868.211 535.828L857.184 548.853L878.559 548.853L878.559 560L836.368 560ZM885.028 539.863L885.028 521.964C885.028 515.278 886.826 510.111 890.422 506.462C894.018 502.813 898.959 500.988 905.245 500.988C911.531 500.988 916.472 502.786 920.068 506.382C923.69 509.951 925.501 515.145 925.501 521.964L925.501 539.863C925.501 546.789 923.61 552.023 919.828 555.565C916.072 559.108 911.211 560.866 905.245 560.839C898.906 560.812 893.951 559.041 890.382 555.525C886.813 551.983 885.028 546.762 885.028 539.863ZM898.932 542.7C898.932 545.47 899.452 547.601 900.49 549.093C901.556 550.584 903.141 551.33 905.245 551.33C907.349 551.33 908.934 550.584 909.999 549.093C911.065 547.601 911.598 545.47 911.598 542.7L911.598 519.407C911.598 516.584 911.065 514.426 909.999 512.934C908.934 511.443 907.349 510.697 905.245 510.697C903.141 510.697 901.556 511.443 900.49 512.934C899.452 514.426 898.932 516.584 898.932 519.407L898.932 542.7Z" fill="white"/> +<path d="M105.108 509.618L107.245 511.725L107.249 511.72L105.108 509.618ZM132.077 501.028L135.077 501.028L135.077 498.028L132.077 498.028L132.077 501.028ZM132.077 512.175L132.077 515.175L135.077 515.175L135.077 512.175L132.077 512.175ZM115.297 517.449L117.5 519.485L117.508 519.476L115.297 517.449ZM110.462 536.228L107.462 536.228L107.462 536.296L107.465 536.364L110.462 536.228ZM110.502 537.106L113.502 537.106L113.502 537.038L113.499 536.97L110.502 537.106ZM112.5 548.493L110.047 550.221L110.055 550.232L110.063 550.244L112.5 548.493ZM122.648 549.133L124.949 551.057L124.958 551.047L124.966 551.037L122.648 549.133ZM122.768 533.031L120.31 534.752L120.327 534.775L120.343 534.798L122.768 533.031ZM112.66 532.951L114.857 534.994L114.865 534.985L114.874 534.975L112.66 532.951ZM110.542 539.184L110.542 542.184L113.542 542.184L113.542 539.184L110.542 539.184ZM108.145 539.184L105.145 539.184L105.145 542.184L108.145 542.184L108.145 539.184ZM112.58 527.078L114.672 529.228L114.682 529.219L112.58 527.078ZM134.275 527.358L132.041 529.36L132.049 529.37L134.275 527.358ZM132.517 555.485L134.53 557.709L134.538 557.702L132.517 555.485ZM102.272 554.886L100.078 556.933L100.085 556.94L100.093 556.948L102.272 554.886ZM96.6781 536.108L99.6781 536.108L99.6781 533.111L96.6781 533.111L93.6781 533.111L93.6781 536.108L96.6781 536.108ZM96.6781 533.111L99.6781 533.111C99.6781 523.734 102.306 516.733 107.245 511.725L105.108 509.618L102.972 507.512C96.6703 513.903 93.6781 522.564 93.6781 533.111L96.6781 533.111ZM105.108 509.618L107.249 511.72C112.167 506.709 119.182 504.028 128.721 504.028L128.721 501.028L128.721 498.028C118.016 498.028 109.29 501.074 102.967 507.517L105.108 509.618ZM128.721 501.028L128.721 504.028L132.077 504.028L132.077 501.028L132.077 498.028L128.721 498.028L128.721 501.028ZM132.077 501.028L129.077 501.028L129.077 512.175L132.077 512.175L135.077 512.175L135.077 501.028L132.077 501.028ZM132.077 512.175L132.077 509.175L129.2 509.175L129.2 512.175L129.2 515.175L132.077 515.175L132.077 512.175ZM129.2 512.175L129.2 509.175C122.553 509.175 117.02 511.129 113.085 515.422L115.297 517.449L117.508 519.476C120.019 516.738 123.755 515.175 129.2 515.175L129.2 512.175ZM115.297 517.449L113.093 515.414C109.061 519.779 107.462 527.042 107.462 536.228L110.462 536.228L113.462 536.228C113.462 527.354 115.086 522.098 117.5 519.485L115.297 517.449ZM110.462 536.228L107.465 536.364L107.505 537.243L110.502 537.106L113.499 536.97L113.459 536.091L110.462 536.228ZM110.502 537.106L107.502 537.106C107.502 540.056 107.673 542.618 108.047 544.747C108.411 546.826 109.012 548.75 110.047 550.221L112.5 548.493L114.953 546.766C114.656 546.345 114.257 545.426 113.956 543.71C113.664 542.043 113.502 539.857 113.502 537.106L110.502 537.106ZM112.5 548.493L110.063 550.244C111.933 552.847 114.564 554.33 117.774 554.33L117.774 551.33L117.774 548.33C116.668 548.33 115.783 547.922 114.936 546.743L112.5 548.493ZM117.774 551.33L117.774 554.33C120.626 554.33 123.116 553.249 124.949 551.057L122.648 549.133L120.347 547.208C119.729 547.946 118.97 548.33 117.774 548.33L117.774 551.33ZM122.648 549.133L124.966 551.037C126.015 549.76 126.611 548.109 126.965 546.393C127.326 544.639 127.486 542.566 127.486 540.223L124.486 540.223L121.486 540.223C121.486 542.328 121.339 543.964 121.088 545.18C120.83 546.434 120.506 547.014 120.33 547.228L122.648 549.133ZM124.486 540.223L127.486 540.223C127.486 536.745 126.886 533.588 125.192 531.264L122.768 533.031L120.343 534.798C120.94 535.617 121.486 537.255 121.486 540.223L124.486 540.223ZM122.768 533.031L125.226 531.311C123.472 528.805 120.84 527.634 117.814 527.634L117.814 530.634L117.814 533.634C119.155 533.634 119.827 534.061 120.31 534.752L122.768 533.031ZM117.814 530.634L117.814 527.634C114.915 527.634 112.403 528.785 110.445 530.928L112.66 532.951L114.874 534.975C115.739 534.028 116.664 533.634 117.814 533.634L117.814 530.634ZM112.66 532.951L110.463 530.908C108.405 533.121 107.542 536.003 107.542 539.184L110.542 539.184L113.542 539.184C113.542 537.091 114.09 535.818 114.857 534.994L112.66 532.951ZM110.542 539.184L110.542 536.184L108.145 536.184L108.145 539.184L108.145 542.184L110.542 542.184L110.542 539.184ZM108.145 539.184L111.145 539.184C111.145 534.578 112.438 531.402 114.672 529.228L112.58 527.078L110.488 524.928C106.809 528.507 105.145 533.402 105.145 539.184L108.145 539.184ZM112.58 527.078L114.682 529.219C117.088 526.856 119.853 525.723 123.127 525.723L123.127 522.723L123.127 519.723C118.251 519.723 113.985 521.494 110.478 524.938L112.58 527.078ZM123.127 522.723L123.127 525.723C127.053 525.723 129.913 526.987 132.041 529.36L134.275 527.358L136.508 525.355C133.096 521.549 128.524 519.723 123.127 519.723L123.127 522.723ZM134.275 527.358L132.049 529.37C134.152 531.695 135.43 535.289 135.43 540.622L138.43 540.622L141.43 540.622C141.43 534.396 139.937 529.147 136.5 525.346L134.275 527.358ZM138.43 540.622L135.43 540.622C135.43 546.26 133.699 550.346 130.495 553.269L132.517 555.485L134.538 557.702C139.218 553.433 141.43 547.61 141.43 540.622L138.43 540.622ZM132.517 555.485L130.503 553.261C127.181 556.269 122.974 557.839 117.654 557.839L117.654 560.839L117.654 563.839C124.267 563.839 129.968 561.84 134.53 557.709L132.517 555.485ZM117.654 560.839L117.654 557.839C111.81 557.839 107.533 556.081 104.451 552.824L102.272 554.886L100.093 556.948C104.521 561.628 110.499 563.839 117.654 563.839L117.654 560.839ZM102.272 554.886L104.465 552.839C101.479 549.64 99.6781 544.281 99.6781 536.108L96.6781 536.108L93.6781 536.108C93.6781 544.982 95.6065 552.142 100.078 556.933L102.272 554.886ZM150.413 506.422L152.426 508.646L152.434 508.638L150.413 506.422ZM180.618 506.981L178.431 509.036L178.439 509.043L180.618 506.981ZM177.821 552.169L175.685 550.063L175.68 550.068L177.821 552.169ZM154.208 560.759L154.208 563.759L154.216 563.759L154.208 560.759ZM150.852 560.759L147.852 560.759L147.852 563.759L150.852 563.759L150.852 560.759ZM150.852 549.812L150.852 546.812L147.852 546.812L147.852 549.812L150.852 549.812ZM153.729 549.812L153.742 546.812L153.729 546.812L153.729 549.812ZM172.467 525.879L175.467 525.879L175.467 525.826L175.465 525.772L172.467 525.879ZM172.427 524.761L169.427 524.761L169.427 524.814L169.429 524.868L172.427 524.761ZM170.43 513.574L167.965 515.285L167.971 515.293L167.977 515.301L170.43 513.574ZM160.281 512.934L162.583 514.859L162.591 514.849L162.599 514.839L160.281 512.934ZM160.121 529.036L157.677 530.776L157.694 530.799L157.712 530.823L160.121 529.036ZM170.27 529.116L168.092 527.053L168.091 527.054L170.27 529.116ZM172.427 522.883L172.427 519.883L169.427 519.883L169.427 522.883L172.427 522.883ZM174.745 522.883L177.745 522.883L177.745 519.883L174.745 519.883L174.745 522.883ZM170.35 534.949L172.441 537.099L172.451 537.09L170.35 534.949ZM144.5 521.205L147.5 521.205C147.5 515.598 149.227 511.542 152.426 508.646L150.413 506.422L148.399 504.198C143.714 508.44 141.5 514.24 141.5 521.205L144.5 521.205ZM150.413 506.422L152.434 508.638C155.755 505.61 159.971 504.028 165.315 504.028L165.315 501.028L165.315 498.028C158.674 498.028 152.955 500.043 148.391 504.206L150.413 506.422ZM165.315 501.028L165.315 504.028C171.129 504.028 175.376 505.784 178.431 509.036L180.618 506.981L182.804 504.927C178.402 500.242 172.447 498.028 165.315 498.028L165.315 501.028ZM180.618 506.981L178.439 509.043C181.437 512.212 183.251 517.559 183.251 525.76L186.251 525.76L189.251 525.76C189.251 516.86 187.31 509.688 182.797 504.919L180.618 506.981ZM186.251 525.76L183.251 525.76L183.251 528.716L186.251 528.716L189.251 528.716L189.251 525.76L186.251 525.76ZM186.251 528.716L183.251 528.716C183.251 538.064 180.625 545.052 175.685 550.063L177.821 552.169L179.957 554.275C186.257 547.886 189.251 539.239 189.251 528.716L186.251 528.716ZM177.821 552.169L175.68 550.068C170.791 555.05 163.775 557.734 154.2 557.759L154.208 560.759L154.216 563.759C164.938 563.731 173.664 560.688 179.962 554.27L177.821 552.169ZM154.208 560.759L154.208 557.759L150.852 557.759L150.852 560.759L150.852 563.759L154.208 563.759L154.208 560.759ZM150.852 560.759L153.852 560.759L153.852 549.812L150.852 549.812L147.852 549.812L147.852 560.759L150.852 560.759ZM150.852 549.812L150.852 552.812L153.729 552.812L153.729 549.812L153.729 546.812L150.852 546.812L150.852 549.812ZM153.729 549.812L153.716 552.812C160.359 552.841 165.895 550.92 169.837 546.653L167.633 544.618L165.429 542.582C162.924 545.294 159.191 546.836 153.742 546.812L153.729 549.812ZM167.633 544.618L169.837 546.653C173.867 542.289 175.467 535.042 175.467 525.879L172.467 525.879L169.467 525.879C169.467 534.723 167.844 539.968 165.429 542.582L167.633 544.618ZM172.467 525.879L175.465 525.772L175.425 524.654L172.427 524.761L169.429 524.868L169.469 525.987L172.467 525.879ZM172.427 524.761L175.427 524.761C175.427 521.875 175.256 519.36 174.881 517.261C174.514 515.207 173.912 513.308 172.882 511.846L170.43 513.574L167.977 515.301C168.279 515.73 168.675 516.641 168.975 518.316C169.266 519.946 169.427 522.08 169.427 524.761L172.427 524.761ZM170.43 513.574L172.894 511.863C171.047 509.203 168.4 507.697 165.156 507.697L165.156 510.697L165.156 513.697C166.279 513.697 167.149 514.109 167.965 515.285L170.43 513.574ZM165.156 510.697L165.156 507.697C162.284 507.697 159.789 508.807 157.963 511.03L160.281 512.934L162.599 514.839C163.224 514.079 163.979 513.697 165.156 513.697L165.156 510.697ZM160.281 512.934L157.98 511.01C156.927 512.269 156.326 513.892 155.968 515.579C155.604 517.298 155.443 519.324 155.443 521.604L158.443 521.604L161.443 521.604C161.443 519.57 161.59 517.993 161.838 516.823C162.093 515.619 162.41 515.065 162.583 514.859L160.281 512.934ZM158.443 521.604L155.443 521.604C155.443 525.195 156.014 528.439 157.677 530.776L160.121 529.036L162.565 527.296C161.992 526.49 161.443 524.779 161.443 521.604L158.443 521.604ZM160.121 529.036L157.712 530.823C159.505 533.242 162.129 534.353 165.116 534.353L165.116 531.353L165.116 528.353C163.734 528.353 163.028 527.919 162.531 527.249L160.121 529.036ZM165.116 531.353L165.116 534.353C167.978 534.353 170.48 533.258 172.449 531.178L170.27 529.116L168.091 527.054C167.236 527.956 166.302 528.353 165.116 528.353L165.116 531.353ZM170.27 529.116L172.448 531.179C174.542 528.968 175.427 526.078 175.427 522.883L172.427 522.883L169.427 522.883C169.427 524.961 168.874 526.227 168.092 527.053L170.27 529.116ZM172.427 522.883L172.427 525.883L174.745 525.883L174.745 522.883L174.745 519.883L172.427 519.883L172.427 522.883ZM174.745 522.883L171.745 522.883C171.745 527.465 170.463 530.633 168.248 532.808L170.35 534.949L172.451 537.09C176.096 533.511 177.745 528.636 177.745 522.883L174.745 522.883ZM170.35 534.949L168.258 532.799C165.89 535.102 163.126 536.224 159.802 536.224L159.802 539.224L159.802 542.224C164.682 542.224 168.949 540.496 172.441 537.099L170.35 534.949ZM159.802 539.224L159.802 536.224C155.885 536.224 153.027 534.953 150.897 532.556L148.655 534.549L146.412 536.543C149.823 540.379 154.396 542.224 159.802 542.224L159.802 539.224ZM148.655 534.549L150.897 532.556C148.775 530.17 147.5 526.534 147.5 521.205L144.5 521.205L141.5 521.205C141.5 527.436 142.994 532.696 146.412 536.543L148.655 534.549ZM201.151 509.618L203.287 511.725L203.292 511.72L201.151 509.618ZM228.12 501.028L231.12 501.028L231.12 498.028L228.12 498.028L228.12 501.028ZM228.12 512.175L228.12 515.175L231.12 515.175L231.12 512.175L228.12 512.175ZM211.339 517.449L213.543 519.485L213.55 519.476L211.339 517.449ZM206.505 536.228L203.505 536.228L203.505 536.296L203.508 536.364L206.505 536.228ZM206.545 537.106L209.545 537.106L209.545 537.038L209.541 536.97L206.545 537.106ZM208.542 548.493L206.089 550.221L206.097 550.232L206.106 550.244L208.542 548.493ZM218.69 549.133L220.992 551.057L221 551.047L221.009 551.037L218.69 549.133ZM218.81 533.031L216.353 534.752L216.369 534.775L216.386 534.798L218.81 533.031ZM208.702 532.951L210.899 534.994L210.908 534.985L210.917 534.975L208.702 532.951ZM206.584 539.184L206.584 542.184L209.584 542.184L209.584 539.184L206.584 539.184ZM204.187 539.184L201.187 539.184L201.187 542.184L204.187 542.184L204.187 539.184ZM208.622 527.078L210.714 529.228L210.724 529.219L208.622 527.078ZM230.317 527.358L228.083 529.36L228.092 529.37L230.317 527.358ZM228.559 555.485L230.573 557.709L230.581 557.702L228.559 555.485ZM198.314 554.886L196.121 556.933L196.128 556.94L196.135 556.948L198.314 554.886ZM192.721 536.108L195.721 536.108L195.721 533.111L192.721 533.111L189.721 533.111L189.721 536.108L192.721 536.108ZM192.721 533.111L195.721 533.111C195.721 523.734 198.348 516.733 203.287 511.725L201.151 509.618L199.015 507.512C192.713 513.903 189.721 522.564 189.721 533.111L192.721 533.111ZM201.151 509.618L203.292 511.72C208.209 506.709 215.225 504.028 224.763 504.028L224.763 501.028L224.763 498.028C214.059 498.028 205.333 501.074 199.01 507.517L201.151 509.618ZM224.763 501.028L224.763 504.028L228.12 504.028L228.12 501.028L228.12 498.028L224.763 498.028L224.763 501.028ZM228.12 501.028L225.12 501.028L225.12 512.175L228.12 512.175L231.12 512.175L231.12 501.028L228.12 501.028ZM228.12 512.175L228.12 509.175L225.243 509.175L225.243 512.175L225.243 515.175L228.12 515.175L228.12 512.175ZM225.243 512.175L225.243 509.175C218.596 509.175 213.063 511.129 209.128 515.422L211.339 517.449L213.55 519.476C216.061 516.738 219.798 515.175 225.243 515.175L225.243 512.175ZM211.339 517.449L209.135 515.414C205.103 519.779 203.505 527.042 203.505 536.228L206.505 536.228L209.505 536.228C209.505 527.354 211.129 522.098 213.543 519.485L211.339 517.449ZM206.505 536.228L203.508 536.364L203.548 537.243L206.545 537.106L209.541 536.97L209.501 536.091L206.505 536.228ZM206.545 537.106L203.545 537.106C203.545 540.056 203.716 542.618 204.089 544.747C204.454 546.826 205.054 548.75 206.089 550.221L208.542 548.493L210.995 546.766C210.699 546.345 210.3 545.426 209.999 543.71C209.706 542.043 209.545 539.857 209.545 537.106L206.545 537.106ZM208.542 548.493L206.106 550.244C207.975 552.847 210.606 554.33 213.816 554.33L213.816 551.33L213.816 548.33C212.711 548.33 211.826 547.922 210.979 546.743L208.542 548.493ZM213.816 551.33L213.816 554.33C216.668 554.33 219.159 553.249 220.992 551.057L218.69 549.133L216.389 547.208C215.772 547.946 215.013 548.33 213.816 548.33L213.816 551.33ZM218.69 549.133L221.009 551.037C222.058 549.76 222.653 548.109 223.007 546.393C223.369 544.639 223.528 542.566 223.528 540.223L220.528 540.223L217.528 540.223C217.528 542.328 217.382 543.964 217.131 545.18C216.872 546.434 216.549 547.014 216.372 547.228L218.69 549.133ZM220.528 540.223L223.528 540.223C223.528 536.745 222.929 533.588 221.235 531.264L218.81 533.031L216.386 534.798C216.983 535.617 217.528 537.255 217.528 540.223L220.528 540.223ZM218.81 533.031L221.268 531.311C219.514 528.805 216.883 527.634 213.856 527.634L213.856 530.634L213.856 533.634C215.197 533.634 215.869 534.061 216.353 534.752L218.81 533.031ZM213.856 530.634L213.856 527.634C210.957 527.634 208.446 528.785 206.487 530.928L208.702 532.951L210.917 534.975C211.782 534.028 212.706 533.634 213.856 533.634L213.856 530.634ZM208.702 532.951L206.505 530.908C204.448 533.121 203.584 536.003 203.584 539.184L206.584 539.184L209.584 539.184C209.584 537.091 210.133 535.818 210.899 534.994L208.702 532.951ZM206.584 539.184L206.584 536.184L204.187 536.184L204.187 539.184L204.187 542.184L206.584 542.184L206.584 539.184ZM204.187 539.184L207.187 539.184C207.187 534.578 208.48 531.402 210.714 529.228L208.622 527.078L206.53 524.928C202.851 528.507 201.187 533.402 201.187 539.184L204.187 539.184ZM208.622 527.078L210.724 529.219C213.13 526.856 215.896 525.723 219.17 525.723L219.17 522.723L219.17 519.723C214.294 519.723 210.027 521.494 206.52 524.938L208.622 527.078ZM219.17 522.723L219.17 525.723C223.096 525.723 225.956 526.987 228.083 529.36L230.317 527.358L232.551 525.355C229.138 521.549 224.567 519.723 219.17 519.723L219.17 522.723ZM230.317 527.358L228.092 529.37C230.195 531.695 231.472 535.289 231.472 540.622L234.472 540.622L237.472 540.622C237.472 534.396 235.98 529.147 232.542 525.346L230.317 527.358ZM234.472 540.622L231.472 540.622C231.472 546.26 229.742 550.346 226.537 553.269L228.559 555.485L230.581 557.702C235.261 553.433 237.472 547.61 237.472 540.622L234.472 540.622ZM228.559 555.485L226.546 553.261C223.223 556.269 219.016 557.839 213.696 557.839L213.696 560.839L213.696 563.839C220.309 563.839 226.01 561.84 230.573 557.709L228.559 555.485ZM213.696 560.839L213.696 557.839C207.852 557.839 203.576 556.081 200.493 552.824L198.314 554.886L196.135 556.948C200.564 561.628 206.542 563.839 213.696 563.839L213.696 560.839ZM198.314 554.886L200.507 552.839C197.521 549.64 195.721 544.281 195.721 536.108L192.721 536.108L189.721 536.108C189.721 544.982 191.649 552.142 196.121 556.933L198.314 554.886ZM246.455 506.422L248.469 508.646L248.477 508.638L246.455 506.422ZM276.66 506.981L274.474 509.036L274.481 509.043L276.66 506.981ZM273.863 552.169L271.727 550.063L271.722 550.068L273.863 552.169ZM250.251 560.759L250.251 563.759L250.259 563.759L250.251 560.759ZM246.895 560.759L243.895 560.759L243.895 563.759L246.895 563.759L246.895 560.759ZM246.895 549.812L246.895 546.812L243.895 546.812L243.895 549.812L246.895 549.812ZM249.771 549.812L249.785 546.812L249.771 546.812L249.771 549.812ZM268.51 525.879L271.51 525.879L271.51 525.826L271.508 525.772L268.51 525.879ZM268.47 524.761L265.47 524.761L265.47 524.814L265.472 524.868L268.47 524.761ZM266.472 513.574L264.008 515.285L264.014 515.293L264.019 515.301L266.472 513.574ZM256.324 512.934L258.625 514.859L258.633 514.849L258.642 514.839L256.324 512.934ZM256.164 529.036L253.72 530.776L253.737 530.799L253.754 530.823L256.164 529.036ZM266.312 529.116L264.134 527.053L264.133 527.054L266.312 529.116ZM268.47 522.883L268.47 519.883L265.47 519.883L265.47 522.883L268.47 522.883ZM270.787 522.883L273.787 522.883L273.787 519.883L270.787 519.883L270.787 522.883ZM266.392 534.949L268.484 537.099L268.494 537.09L266.392 534.949ZM240.542 521.205L243.542 521.205C243.542 515.598 245.27 511.542 248.469 508.646L246.455 506.422L244.442 504.198C239.756 508.44 237.542 514.24 237.542 521.205L240.542 521.205ZM246.455 506.422L248.477 508.638C251.797 505.61 256.014 504.028 261.358 504.028L261.358 501.028L261.358 498.028C254.716 498.028 248.997 500.043 244.433 504.206L246.455 506.422ZM261.358 501.028L261.358 504.028C267.172 504.028 271.418 505.784 274.474 509.036L276.66 506.981L278.847 504.927C274.444 500.242 268.489 498.028 261.358 498.028L261.358 501.028ZM276.66 506.981L274.481 509.043C277.48 512.212 279.294 517.559 279.294 525.76L282.294 525.76L285.294 525.76C285.294 516.86 283.352 509.688 278.839 504.919L276.66 506.981ZM282.294 525.76L279.294 525.76L279.294 528.716L282.294 528.716L285.294 528.716L285.294 525.76L282.294 525.76ZM282.294 528.716L279.294 528.716C279.294 538.064 276.667 545.052 271.727 550.063L273.863 552.169L276 554.275C282.3 547.886 285.294 539.239 285.294 528.716L282.294 528.716ZM273.863 552.169L271.722 550.068C266.833 555.05 259.817 557.734 250.243 557.759L250.251 560.759L250.259 563.759C260.981 563.731 269.707 560.688 276.005 554.27L273.863 552.169ZM250.251 560.759L250.251 557.759L246.895 557.759L246.895 560.759L246.895 563.759L250.251 563.759L250.251 560.759ZM246.895 560.759L249.895 560.759L249.895 549.812L246.895 549.812L243.895 549.812L243.895 560.759L246.895 560.759ZM246.895 549.812L246.895 552.812L249.771 552.812L249.771 549.812L249.771 546.812L246.895 546.812L246.895 549.812ZM249.771 549.812L249.758 552.812C256.401 552.841 261.938 550.92 265.879 546.653L263.675 544.618L261.471 542.582C258.967 545.294 255.234 546.836 249.785 546.812L249.771 549.812ZM263.675 544.618L265.879 546.653C269.91 542.289 271.51 535.042 271.51 525.879L268.51 525.879L265.51 525.879C265.51 534.723 263.886 539.968 261.471 542.582L263.675 544.618ZM268.51 525.879L271.508 525.772L271.468 524.654L268.47 524.761L265.472 524.868L265.512 525.987L268.51 525.879ZM268.47 524.761L271.47 524.761C271.47 521.875 271.298 519.36 270.924 517.261C270.557 515.207 269.954 513.308 268.925 511.846L266.472 513.574L264.019 515.301C264.321 515.73 264.718 516.641 265.017 518.316C265.308 519.946 265.47 522.08 265.47 524.761L268.47 524.761ZM266.472 513.574L268.936 511.863C267.089 509.203 264.443 507.697 261.198 507.697L261.198 510.697L261.198 513.697C262.322 513.697 263.191 514.109 264.008 515.285L266.472 513.574ZM261.198 510.697L261.198 507.697C258.326 507.697 255.832 508.807 254.006 511.03L256.324 512.934L258.642 514.839C259.266 514.079 260.021 513.697 261.198 513.697L261.198 510.697ZM256.324 512.934L254.023 511.01C252.97 512.269 252.368 513.892 252.011 515.579C251.646 517.298 251.486 519.324 251.486 521.604L254.486 521.604L257.486 521.604C257.486 519.57 257.632 517.993 257.88 516.823C258.135 515.619 258.453 515.065 258.625 514.859L256.324 512.934ZM254.486 521.604L251.486 521.604C251.486 525.195 252.056 528.439 253.72 530.776L256.164 529.036L258.608 527.296C258.034 526.49 257.486 524.779 257.486 521.604L254.486 521.604ZM256.164 529.036L253.754 530.823C255.548 533.242 258.172 534.353 261.158 534.353L261.158 531.353L261.158 528.353C259.776 528.353 259.071 527.919 258.574 527.249L256.164 529.036ZM261.158 531.353L261.158 534.353C264.02 534.353 266.522 533.258 268.491 531.178L266.312 529.116L264.133 527.054C263.279 527.956 262.345 528.353 261.158 528.353L261.158 531.353ZM266.312 529.116L268.49 531.179C270.584 528.968 271.47 526.078 271.47 522.883L268.47 522.883L265.47 522.883C265.47 524.961 264.917 526.227 264.134 527.053L266.312 529.116ZM268.47 522.883L268.47 525.883L270.787 525.883L270.787 522.883L270.787 519.883L268.47 519.883L268.47 522.883ZM270.787 522.883L267.787 522.883C267.787 527.465 266.506 530.633 264.29 532.808L266.392 534.949L268.494 537.09C272.138 533.511 273.787 528.636 273.787 522.883L270.787 522.883ZM266.392 534.949L264.3 532.799C261.933 535.102 259.168 536.224 255.844 536.224L255.844 539.224L255.844 542.224C260.724 542.224 264.992 540.496 268.484 537.099L266.392 534.949ZM255.844 539.224L255.844 536.224C251.927 536.224 249.069 534.953 246.939 532.556L244.697 534.549L242.455 536.543C245.865 540.379 250.439 542.224 255.844 542.224L255.844 539.224ZM244.697 534.549L246.939 532.556C244.818 530.17 243.542 526.534 243.542 521.205L240.542 521.205L237.542 521.205C237.542 527.436 239.036 532.696 242.455 536.543L244.697 534.549ZM346.773 506.382L344.651 508.503L344.659 508.511L344.667 508.519L346.773 506.382ZM346.533 555.565L344.482 553.376L344.474 553.383L346.533 555.565ZM331.95 560.839L331.963 557.839L331.962 557.839L331.95 560.839ZM317.087 555.525L314.974 557.654L314.982 557.662L317.087 555.525ZM327.195 549.093L324.734 550.807L324.744 550.822L324.754 550.836L327.195 549.093ZM327.195 512.934L324.754 511.191L324.744 511.205L324.734 511.22L327.195 512.934ZM311.733 539.863L314.733 539.863L314.733 521.964L311.733 521.964L308.733 521.964L308.733 539.863L311.733 539.863ZM311.733 521.964L314.733 521.964C314.733 515.817 316.375 511.5 319.264 508.568L317.127 506.462L314.99 504.356C310.688 508.722 308.733 514.74 308.733 521.964L311.733 521.964ZM317.127 506.462L319.264 508.568C322.173 505.616 326.273 503.988 331.95 503.988L331.95 500.988L331.95 497.988C325.055 497.988 319.273 500.01 314.99 504.356L317.127 506.462ZM331.95 500.988L331.95 503.988C337.639 503.988 341.745 505.597 344.651 508.503L346.773 506.382L348.894 504.261C344.609 499.976 338.832 497.988 331.95 497.988L331.95 500.988ZM346.773 506.382L344.667 508.519C347.543 511.353 349.206 515.666 349.206 521.964L352.206 521.964L355.206 521.964C355.206 514.625 353.247 508.55 348.878 504.245L346.773 506.382ZM352.206 521.964L349.206 521.964L349.206 539.863L352.206 539.863L355.206 539.863L355.206 521.964L352.206 521.964ZM352.206 539.863L349.206 539.863C349.206 546.25 347.475 550.572 344.482 553.376L346.533 555.565L348.584 557.755C353.156 553.473 355.206 547.327 355.206 539.863L352.206 539.863ZM346.533 555.565L344.474 553.383C341.366 556.315 337.289 557.863 331.963 557.839L331.95 560.839L331.936 563.839C338.544 563.869 344.189 561.901 348.591 557.747L346.533 555.565ZM331.95 560.839L331.962 557.839C326.189 557.815 322.065 556.218 319.192 553.388L317.087 555.525L314.982 557.662C319.247 561.864 325.032 563.81 331.937 563.839L331.95 560.839ZM317.087 555.525L319.2 553.396C316.383 550.6 314.733 546.267 314.733 539.863L311.733 539.863L308.733 539.863C308.733 547.257 310.652 553.365 314.974 557.654L317.087 555.525ZM325.637 542.7L322.637 542.7C322.637 545.782 323.205 548.612 324.734 550.807L327.195 549.093L329.657 547.378C329.108 546.59 328.637 545.158 328.637 542.7L325.637 542.7ZM327.195 549.093L324.754 550.836C326.472 553.242 329.042 554.33 331.95 554.33L331.95 551.33L331.95 548.33C330.65 548.33 330.049 547.927 329.637 547.349L327.195 549.093ZM331.95 551.33L331.95 554.33C334.858 554.33 337.428 553.242 339.146 550.836L336.704 549.093L334.263 547.349C333.85 547.927 333.25 548.33 331.95 548.33L331.95 551.33ZM336.704 549.093L339.146 550.836C340.717 548.636 341.303 545.794 341.303 542.7L338.303 542.7L335.303 542.7C335.303 545.146 334.822 546.566 334.263 547.349L336.704 549.093ZM338.303 542.7L341.303 542.7L341.303 519.407L338.303 519.407L335.303 519.407L335.303 542.7L338.303 542.7ZM338.303 519.407L341.303 519.407C341.303 516.274 340.723 513.399 339.146 511.191L336.704 512.934L334.263 514.678C334.817 515.453 335.303 516.893 335.303 519.407L338.303 519.407ZM336.704 512.934L339.146 511.191C337.428 508.786 334.858 507.697 331.95 507.697L331.95 510.697L331.95 513.697C333.25 513.697 333.85 514.1 334.263 514.678L336.704 512.934ZM331.95 510.697L331.95 507.697C329.042 507.697 326.472 508.786 324.754 511.191L327.195 512.934L329.637 514.678C330.049 514.1 330.65 513.697 331.95 513.697L331.95 510.697ZM327.195 512.934L324.734 511.22C323.199 513.423 322.637 516.286 322.637 519.407L325.637 519.407L328.637 519.407C328.637 516.881 329.114 515.429 329.657 514.649L327.195 512.934ZM325.637 519.407L322.637 519.407L322.637 542.7L325.637 542.7L328.637 542.7L328.637 519.407L325.637 519.407ZM381.969 560L378.969 560L378.969 563L381.969 563L381.969 560ZM381.969 545.297L379.45 543.667L378.969 544.411L378.969 545.297L381.969 545.297ZM382.408 544.618L384.927 546.248L385.408 545.504L385.408 544.618L382.408 544.618ZM382.408 519.487L385.408 519.487L385.408 516.487L382.408 516.487L382.408 519.487ZM382.089 519.487L382.089 516.487L380.382 516.487L379.51 517.954L382.089 519.487ZM371.021 538.105L368.443 536.572L365.748 541.105L371.021 541.105L371.021 538.105ZM387.402 538.105L387.402 541.105L387.843 541.105L388.265 540.979L387.402 538.105ZM388.601 537.746L388.601 534.746L388.161 534.746L387.739 534.872L388.601 537.746ZM401.426 537.746L404.426 537.746L404.426 534.746L401.426 534.746L401.426 537.746ZM401.426 548.533L401.426 551.533L404.426 551.533L404.426 548.533L401.426 548.533ZM358.156 548.533L355.156 548.533L355.156 551.533L358.156 551.533L358.156 548.533ZM358.156 538.625L355.685 536.924L355.156 537.692L355.156 538.625L358.156 538.625ZM383.487 501.827L383.487 498.827L381.91 498.827L381.016 500.126L383.487 501.827ZM394.754 501.827L397.754 501.827L397.754 498.827L394.754 498.827L394.754 501.827ZM394.754 560L394.754 563L397.754 563L397.754 560L394.754 560ZM381.969 560L384.969 560L384.969 545.297L381.969 545.297L378.969 545.297L378.969 560L381.969 560ZM381.969 545.297L384.487 546.927L384.927 546.248L382.408 544.618L379.89 542.988L379.45 543.667L381.969 545.297ZM382.408 544.618L385.408 544.618L385.408 519.487L382.408 519.487L379.408 519.487L379.408 544.618L382.408 544.618ZM382.408 519.487L382.408 516.487L382.089 516.487L382.089 519.487L382.089 522.487L382.408 522.487L382.408 519.487ZM382.089 519.487L379.51 517.954L368.443 536.572L371.021 538.105L373.6 539.638L384.667 521.02L382.089 519.487ZM371.021 538.105L371.021 541.105L387.402 541.105L387.402 538.105L387.402 535.105L371.021 535.105L371.021 538.105ZM387.402 538.105L388.265 540.979L389.463 540.619L388.601 537.746L387.739 534.872L386.54 535.232L387.402 538.105ZM388.601 537.746L388.601 540.746L401.426 540.746L401.426 537.746L401.426 534.746L388.601 534.746L388.601 537.746ZM401.426 537.746L398.426 537.746L398.426 548.533L401.426 548.533L404.426 548.533L404.426 537.746L401.426 537.746ZM401.426 548.533L401.426 545.533L358.156 545.533L358.156 548.533L358.156 551.533L401.426 551.533L401.426 548.533ZM358.156 548.533L361.156 548.533L361.156 538.625L358.156 538.625L355.156 538.625L355.156 548.533L358.156 548.533ZM358.156 538.625L360.627 540.326L385.958 503.528L383.487 501.827L381.016 500.126L355.685 536.924L358.156 538.625ZM383.487 501.827L383.487 504.827L394.754 504.827L394.754 501.827L394.754 498.827L383.487 498.827L383.487 501.827ZM394.754 501.827L391.754 501.827L391.754 560L394.754 560L397.754 560L397.754 501.827L394.754 501.827ZM394.754 560L394.754 557L381.969 557L381.969 560L381.969 563L394.754 563L394.754 560ZM407.136 560L404.136 560L404.136 563L407.136 563L407.136 560ZM407.136 551.33L404.976 549.249L404.136 550.12L404.136 551.33L407.136 551.33ZM428.152 529.515L430.313 531.597L430.373 531.534L430.43 531.468L428.152 529.515ZM423.038 512.615L425.205 514.69L425.216 514.678L425.227 514.667L423.038 512.615ZM421.24 521.644L421.24 524.644L424.24 524.644L424.24 521.644L421.24 521.644ZM407.136 521.644L404.136 521.644L404.136 524.644L407.136 524.644L407.136 521.644ZM442.855 505.343L440.901 507.62L440.912 507.629L442.855 505.343ZM447.969 517.09L450.969 517.09L450.969 517.082L450.969 517.074L447.969 517.09ZM445.612 526.958L442.974 525.53L442.969 525.54L442.964 525.549L445.612 526.958ZM438.98 535.828L436.811 533.755L436.748 533.821L436.69 533.89L438.98 535.828ZM427.952 548.853L425.663 546.914L421.482 551.853L427.952 551.853L427.952 548.853ZM449.328 548.853L452.328 548.853L452.328 545.853L449.328 545.853L449.328 548.853ZM449.328 560L449.328 563L452.328 563L452.328 560L449.328 560ZM407.136 560L410.136 560L410.136 551.33L407.136 551.33L404.136 551.33L404.136 560L407.136 560ZM407.136 551.33L409.297 553.411L430.313 531.597L428.152 529.515L425.992 527.434L404.976 549.249L407.136 551.33ZM428.152 529.515L430.43 531.468C432.133 529.481 433.61 527.434 434.852 525.325L432.267 523.802L429.682 522.279C428.634 524.059 427.368 525.821 425.874 527.563L428.152 529.515ZM432.267 523.802L434.852 525.325C436.245 522.96 436.985 520.428 436.985 517.769L433.985 517.769L430.985 517.769C430.985 519.265 430.58 520.755 429.682 522.279L432.267 523.802ZM433.985 517.769L436.985 517.769C436.985 514.895 436.35 512.083 434.338 510.164L432.267 512.335L430.197 514.506C430.475 514.771 430.985 515.582 430.985 517.769L433.985 517.769ZM432.267 512.335L434.338 510.164C432.536 508.447 430.241 507.697 427.753 507.697L427.753 510.697L427.753 513.697C428.993 513.697 429.708 514.04 430.197 514.506L432.267 512.335ZM427.753 510.697L427.753 507.697C425.08 507.697 422.681 508.61 420.849 510.563L423.038 512.615L425.227 514.667C425.793 514.063 426.537 513.697 427.753 513.697L427.753 510.697ZM423.038 512.615L420.871 510.54C419.776 511.684 419.145 513.17 418.775 514.693C418.399 516.235 418.24 518.026 418.24 520.006L421.24 520.006L424.24 520.006C424.24 518.311 424.38 517.032 424.605 516.111C424.833 515.17 425.102 514.797 425.205 514.69L423.038 512.615ZM421.24 520.006L418.24 520.006L418.24 521.644L421.24 521.644L424.24 521.644L424.24 520.006L421.24 520.006ZM421.24 521.644L421.24 518.644L407.136 518.644L407.136 521.644L407.136 524.644L421.24 524.644L421.24 521.644ZM407.136 521.644L410.136 521.644L410.136 518.208L407.136 518.208L404.136 518.208L404.136 521.644L407.136 521.644ZM407.136 518.208L410.136 518.208C410.136 514.119 411.659 510.837 414.829 508.152L412.89 505.863L410.951 503.574C406.449 507.387 404.136 512.336 404.136 518.208L407.136 518.208ZM412.89 505.863L414.829 508.152C418.002 505.463 422.294 503.988 427.992 503.988L427.992 500.988L427.992 497.988C421.225 497.988 415.449 499.763 410.951 503.574L412.89 505.863ZM427.992 500.988L427.992 503.988C434.126 503.988 438.266 505.358 440.901 507.62L442.855 505.343L444.809 503.067C440.678 499.522 434.91 497.988 427.992 497.988L427.992 500.988ZM442.855 505.343L440.912 507.629C443.547 509.869 444.947 512.912 444.969 517.106L447.969 517.09L450.969 517.074C450.938 511.359 448.929 506.57 444.799 503.058L442.855 505.343ZM447.969 517.09L444.969 517.09C444.969 520.324 444.282 523.113 442.974 525.53L445.612 526.958L448.25 528.386C450.085 524.996 450.969 521.207 450.969 517.09L447.969 517.09ZM445.612 526.958L442.964 525.549C441.576 528.156 439.546 530.894 436.811 533.755L438.98 535.828L441.148 537.901C444.167 534.743 446.558 531.567 448.26 528.367L445.612 526.958ZM438.98 535.828L436.69 533.89L425.663 546.914L427.952 548.853L430.242 550.791L441.269 537.766L438.98 535.828ZM427.952 548.853L427.952 551.853L449.328 551.853L449.328 548.853L449.328 545.853L427.952 545.853L427.952 548.853ZM449.328 548.853L446.328 548.853L446.328 560L449.328 560L452.328 560L452.328 548.853L449.328 548.853ZM449.328 560L449.328 557L407.136 557L407.136 560L407.136 563L449.328 563L449.328 560ZM490.836 506.382L488.715 508.503L488.723 508.511L488.731 508.519L490.836 506.382ZM490.597 555.565L488.546 553.376L488.538 553.383L490.597 555.565ZM476.014 560.839L476.027 557.839L476.026 557.839L476.014 560.839ZM461.151 555.525L459.037 557.654L459.045 557.662L461.151 555.525ZM471.259 549.093L468.797 550.807L468.807 550.822L468.818 550.836L471.259 549.093ZM471.259 512.934L468.818 511.191L468.807 511.205L468.797 511.22L471.259 512.934ZM455.797 539.863L458.797 539.863L458.797 521.964L455.797 521.964L452.797 521.964L452.797 539.863L455.797 539.863ZM455.797 521.964L458.797 521.964C458.797 515.817 460.438 511.5 463.328 508.568L461.191 506.462L459.054 504.356C454.751 508.722 452.797 514.74 452.797 521.964L455.797 521.964ZM461.191 506.462L463.328 508.568C466.236 505.616 470.337 503.988 476.014 503.988L476.014 500.988L476.014 497.988C469.118 497.988 463.337 500.01 459.054 504.356L461.191 506.462ZM476.014 500.988L476.014 503.988C481.703 503.988 485.809 505.597 488.715 508.503L490.836 506.382L492.958 504.261C488.673 499.976 482.896 497.988 476.014 497.988L476.014 500.988ZM490.836 506.382L488.731 508.519C491.607 511.353 493.27 515.666 493.27 521.964L496.27 521.964L499.27 521.964C499.27 514.625 497.311 508.55 492.942 504.245L490.836 506.382ZM496.27 521.964L493.27 521.964L493.27 539.863L496.27 539.863L499.27 539.863L499.27 521.964L496.27 521.964ZM496.27 539.863L493.27 539.863C493.27 546.25 491.539 550.572 488.546 553.376L490.597 555.565L492.647 557.755C497.219 553.473 499.27 547.327 499.27 539.863L496.27 539.863ZM490.597 555.565L488.538 553.383C485.43 556.315 481.352 557.863 476.027 557.839L476.014 560.839L476 563.839C482.608 563.869 488.252 561.901 492.655 557.747L490.597 555.565ZM476.014 560.839L476.026 557.839C470.252 557.815 466.129 556.218 463.256 553.388L461.151 555.525L459.045 557.662C463.311 561.864 469.096 563.81 476.001 563.839L476.014 560.839ZM461.151 555.525L463.264 553.396C460.447 550.6 458.797 546.267 458.797 539.863L455.797 539.863L452.797 539.863C452.797 547.257 454.716 553.365 459.037 557.654L461.151 555.525ZM469.701 542.7L466.701 542.7C466.701 545.782 467.268 548.612 468.797 550.807L471.259 549.093L473.721 547.378C473.172 546.59 472.701 545.158 472.701 542.7L469.701 542.7ZM471.259 549.093L468.818 550.836C470.536 553.242 473.105 554.33 476.014 554.33L476.014 551.33L476.014 548.33C474.713 548.33 474.113 547.927 473.7 547.349L471.259 549.093ZM476.014 551.33L476.014 554.33C478.922 554.33 481.491 553.242 483.209 550.836L480.768 549.093L478.327 547.349C477.914 547.927 477.314 548.33 476.014 548.33L476.014 551.33ZM480.768 549.093L483.209 550.836C484.781 548.636 485.366 545.794 485.366 542.7L482.366 542.7L479.366 542.7C479.366 545.146 478.886 546.566 478.327 547.349L480.768 549.093ZM482.366 542.7L485.366 542.7L485.366 519.407L482.366 519.407L479.366 519.407L479.366 542.7L482.366 542.7ZM482.366 519.407L485.366 519.407C485.366 516.274 484.787 513.399 483.209 511.191L480.768 512.934L478.327 514.678C478.88 515.453 479.366 516.893 479.366 519.407L482.366 519.407ZM480.768 512.934L483.209 511.191C481.491 508.786 478.922 507.697 476.014 507.697L476.014 510.697L476.014 513.697C477.314 513.697 477.914 514.1 478.327 514.678L480.768 512.934ZM476.014 510.697L476.014 507.697C473.105 507.697 470.536 508.786 468.818 511.191L471.259 512.934L473.7 514.678C474.113 514.1 474.713 513.697 476.014 513.697L476.014 510.697ZM471.259 512.934L468.797 511.22C467.263 513.423 466.701 516.286 466.701 519.407L469.701 519.407L472.701 519.407C472.701 516.881 473.177 515.429 473.721 514.649L471.259 512.934ZM469.701 519.407L466.701 519.407L466.701 542.7L469.701 542.7L472.701 542.7L472.701 519.407L469.701 519.407ZM528.427 534.669L526.096 532.78L526.09 532.788L526.084 532.795L528.427 534.669ZM535.019 529.835L535.869 532.712L538.019 532.077L538.019 529.835L535.019 529.835ZM535.019 529.675L538.019 529.675L538.019 527.734L536.249 526.939L535.019 529.675ZM529.226 524.841L526.734 526.512L526.746 526.529L526.758 526.547L529.226 524.841ZM532.142 505.223L530.238 502.906L530.229 502.913L532.142 505.223ZM560.749 505.343L558.795 507.62L558.805 507.628L558.815 507.636L560.749 505.343ZM563.546 525.04L561.087 523.322L561.083 523.328L563.546 525.04ZM557.753 529.635L556.699 526.826L554.753 527.556L554.753 529.635L557.753 529.635ZM557.753 529.795L554.753 529.795L554.753 532.082L556.958 532.688L557.753 529.795ZM564.425 534.629L562.073 536.491L562.083 536.505L562.094 536.518L564.425 534.629ZM561.668 556.364L559.842 553.984L559.834 553.99L561.668 556.364ZM531.223 556.364L529.397 558.745L531.223 556.364ZM541.252 549.452L538.986 551.419L539.006 551.441L539.026 551.464L541.252 549.452ZM551.44 535.868L549.276 537.946L549.297 537.968L549.319 537.989L551.44 535.868ZM542.051 524.601L539.721 526.491L539.73 526.502L539.739 526.513L542.051 524.601ZM550.801 524.601L548.492 522.685L548.489 522.689L550.801 524.601ZM551 512.455L548.63 514.293L548.651 514.32L548.672 514.347L551 512.455ZM541.851 512.375L539.542 510.459L539.53 510.474L539.518 510.489L541.851 512.375ZM525.39 544.178L528.39 544.178C528.39 540.926 529.242 538.452 530.769 536.543L528.427 534.669L526.084 532.795C523.562 535.947 522.39 539.813 522.39 544.178L525.39 544.178ZM528.427 534.669L530.757 536.558C532.551 534.345 534.272 533.184 535.869 532.712L535.019 529.835L534.169 526.958C531.078 527.871 528.404 529.933 526.096 532.78L528.427 534.669ZM535.019 529.835L538.019 529.835L538.019 529.675L535.019 529.675L532.019 529.675L532.019 529.835L535.019 529.835ZM535.019 529.675L536.249 526.939C534.382 526.1 532.877 524.847 531.693 523.135L529.226 524.841L526.758 526.547C528.558 529.15 530.915 531.12 533.789 532.411L535.019 529.675ZM529.226 524.841L531.717 523.17C530.659 521.593 530.028 519.47 530.028 516.61L527.028 516.61L524.028 516.61C524.028 520.356 524.862 523.72 526.734 526.512L529.226 524.841ZM527.028 516.61L530.028 516.61C530.028 512.657 531.393 509.739 534.056 507.534L532.142 505.223L530.229 502.913C526.073 506.354 524.028 511.027 524.028 516.61L527.028 516.61ZM532.142 505.223L534.047 507.541C536.775 505.3 540.794 503.988 546.486 503.988L546.486 500.988L546.486 497.988C539.925 497.988 534.382 499.5 530.238 502.906L532.142 505.223ZM546.486 500.988L546.486 503.988C552.163 503.988 556.13 505.332 558.795 507.62L560.749 505.343L562.703 503.067C558.603 499.547 553.061 497.988 546.486 497.988L546.486 500.988ZM560.749 505.343L558.815 507.636C561.519 509.918 562.863 512.82 562.863 516.61L565.863 516.61L568.863 516.61C568.863 511.131 566.798 506.522 562.684 503.05L560.749 505.343ZM565.863 516.61L562.863 516.61C562.863 519.568 562.197 521.734 561.087 523.322L563.546 525.04L566.005 526.759C567.985 523.925 568.863 520.471 568.863 516.61L565.863 516.61ZM563.546 525.04L561.083 523.328C559.889 525.045 558.436 526.175 556.699 526.826L557.753 529.635L558.806 532.444C561.757 531.338 564.166 529.404 566.009 526.753L563.546 525.04ZM557.753 529.635L554.753 529.635L554.753 529.795L557.753 529.795L560.753 529.795L560.753 529.635L557.753 529.635ZM557.753 529.795L556.958 532.688C558.605 533.14 560.327 534.286 562.073 536.491L564.425 534.629L566.777 532.767C564.474 529.859 561.748 527.781 558.547 526.902L557.753 529.795ZM564.425 534.629L562.094 536.518C563.638 538.423 564.501 540.903 564.501 544.178L567.501 544.178L570.501 544.178C570.501 539.783 569.314 535.896 566.755 532.74L564.425 534.629ZM567.501 544.178L564.501 544.178C564.501 548.439 562.95 551.6 559.842 553.984L561.668 556.364L563.494 558.745C568.164 555.162 570.501 550.199 570.501 544.178L567.501 544.178ZM561.668 556.364L559.834 553.99C556.63 556.465 552.271 557.839 546.486 557.839L546.486 560.839L546.486 563.839C553.219 563.839 558.982 562.23 563.502 558.738L561.668 556.364ZM546.486 560.839L546.486 557.839C540.672 557.839 536.282 556.464 533.049 553.984L531.223 556.364L529.397 558.745C533.942 562.231 539.728 563.839 546.486 563.839L546.486 560.839ZM531.223 556.364L533.049 553.984C529.942 551.6 528.39 548.439 528.39 544.178L525.39 544.178L522.39 544.178C522.39 550.199 524.727 555.162 529.397 558.745L531.223 556.364ZM539.414 542.66L536.414 542.66C536.414 546.052 537.059 549.199 538.986 551.419L541.252 549.452L543.517 547.486C542.993 546.882 542.414 545.501 542.414 542.66L539.414 542.66ZM541.252 549.452L539.026 551.464C540.952 553.595 543.557 554.53 546.446 554.53L546.446 551.53L546.446 548.53C544.913 548.53 544.055 548.08 543.477 547.441L541.252 549.452ZM546.446 551.53L546.446 554.53C549.337 554.53 551.932 553.56 553.825 551.379L551.56 549.412L549.294 547.446C548.737 548.088 547.922 548.53 546.446 548.53L546.446 551.53ZM551.56 549.412L553.825 551.379C555.749 549.162 556.398 546.034 556.398 542.66L553.398 542.66L550.398 542.66C550.398 545.466 549.821 546.839 549.294 547.446L551.56 549.412ZM553.398 542.66L556.398 542.66C556.398 539.191 555.725 535.91 553.561 533.747L551.44 535.868L549.319 537.989C549.765 538.436 550.398 539.683 550.398 542.66L553.398 542.66ZM551.44 535.868L553.604 533.79C551.694 531.801 549.214 530.87 546.446 530.87L546.446 533.87L546.446 536.87C547.78 536.87 548.629 537.271 549.276 537.946L551.44 535.868ZM546.446 533.87L546.446 530.87C543.677 530.87 541.197 531.799 539.25 533.747L541.372 535.868L543.493 537.989C544.209 537.273 545.112 536.87 546.446 536.87L546.446 533.87ZM541.372 535.868L539.25 533.747C537.086 535.91 536.414 539.191 536.414 542.66L539.414 542.66L542.414 542.66C542.414 539.683 543.046 538.436 543.493 537.989L541.372 535.868ZM540.333 518.448L537.333 518.448C537.333 521.508 537.977 524.341 539.721 526.491L542.051 524.601L544.38 522.711C543.834 522.037 543.333 520.769 543.333 518.448L540.333 518.448ZM542.051 524.601L539.739 526.513C541.449 528.581 543.759 529.679 546.446 529.679L546.446 526.679L546.446 523.679C545.563 523.679 544.943 523.391 544.363 522.689L542.051 524.601ZM546.446 526.679L546.446 529.679C549.121 529.679 551.412 528.569 553.113 526.513L550.801 524.601L548.489 522.689C547.899 523.403 547.286 523.679 546.446 523.679L546.446 526.679ZM550.801 524.601L553.109 526.517C554.895 524.365 555.559 521.521 555.559 518.448L552.559 518.448L549.559 518.448C549.559 520.755 549.05 522.013 548.492 522.685L550.801 524.601ZM552.559 518.448L555.559 518.448C555.559 515.455 555.006 512.627 553.329 510.563L551 512.455L548.672 514.347C549.073 514.84 549.559 516.007 549.559 518.448L552.559 518.448ZM551 512.455L553.371 510.617C551.662 508.413 549.165 507.497 546.446 507.497L546.446 510.497L546.446 513.497C547.775 513.497 548.314 513.887 548.63 514.293L551 512.455ZM546.446 510.497L546.446 507.497C543.767 507.497 541.287 508.356 539.542 510.459L541.851 512.375L544.16 514.291C544.492 513.89 545.076 513.497 546.446 513.497L546.446 510.497ZM541.851 512.375L539.518 510.489C537.855 512.546 537.333 515.421 537.333 518.448L540.333 518.448L543.333 518.448C543.333 515.881 543.822 514.708 544.184 514.261L541.851 512.375ZM576.448 534.669L574.117 532.78L574.111 532.788L574.105 532.795L576.448 534.669ZM583.04 529.835L583.89 532.712L586.04 532.077L586.04 529.835L583.04 529.835ZM583.04 529.675L586.04 529.675L586.04 527.734L584.27 526.939L583.04 529.675ZM577.247 524.841L574.755 526.512L574.767 526.529L574.779 526.547L577.247 524.841ZM580.163 505.223L578.259 502.906L578.25 502.913L580.163 505.223ZM608.77 505.343L606.817 507.62L606.826 507.628L606.836 507.636L608.77 505.343ZM611.567 525.04L609.108 523.322L609.104 523.328L611.567 525.04ZM605.774 529.635L604.72 526.826L602.774 527.556L602.774 529.635L605.774 529.635ZM605.774 529.795L602.774 529.795L602.774 532.082L604.979 532.688L605.774 529.795ZM612.446 534.629L610.094 536.491L610.105 536.505L610.116 536.518L612.446 534.629ZM609.689 556.364L607.863 553.984L607.855 553.99L609.689 556.364ZM579.245 556.364L577.419 558.745L579.245 556.364ZM589.273 549.452L587.007 551.419L587.027 551.441L587.047 551.464L589.273 549.452ZM599.461 535.868L597.297 537.946L597.318 537.968L597.34 537.989L599.461 535.868ZM590.072 524.601L587.742 526.491L587.751 526.502L587.76 526.513L590.072 524.601ZM598.822 524.601L596.514 522.685L596.51 522.689L598.822 524.601ZM599.022 512.455L596.651 514.294L596.672 514.32L596.693 514.347L599.022 512.455ZM589.872 512.375L587.564 510.459L587.551 510.474L587.539 510.489L589.872 512.375ZM573.411 544.178L576.411 544.178C576.411 540.926 577.263 538.452 578.79 536.543L576.448 534.669L574.105 532.795C571.583 535.947 570.411 539.813 570.411 544.178L573.411 544.178ZM576.448 534.669L578.778 536.558C580.572 534.345 582.293 533.184 583.89 532.712L583.04 529.835L582.19 526.958C579.099 527.871 576.425 529.933 574.117 532.78L576.448 534.669ZM583.04 529.835L586.04 529.835L586.04 529.675L583.04 529.675L580.04 529.675L580.04 529.835L583.04 529.835ZM583.04 529.675L584.27 526.939C582.403 526.1 580.898 524.847 579.715 523.135L577.247 524.841L574.779 526.547C576.579 529.15 578.936 531.12 581.81 532.411L583.04 529.675ZM577.247 524.841L579.738 523.17C578.681 521.593 578.049 519.47 578.049 516.61L575.049 516.61L572.049 516.61C572.049 520.356 572.883 523.72 574.755 526.512L577.247 524.841ZM575.049 516.61L578.049 516.61C578.049 512.657 579.414 509.739 582.077 507.534L580.163 505.223L578.25 502.913C574.094 506.354 572.049 511.027 572.049 516.61L575.049 516.61ZM580.163 505.223L582.068 507.541C584.796 505.3 588.815 503.988 594.507 503.988L594.507 500.988L594.507 497.988C587.946 497.988 582.403 499.5 578.259 502.906L580.163 505.223ZM594.507 500.988L594.507 503.988C600.184 503.988 604.151 505.332 606.817 507.62L608.77 505.343L610.724 503.067C606.624 499.547 601.082 497.988 594.507 497.988L594.507 500.988ZM608.77 505.343L606.836 507.636C609.54 509.918 610.884 512.82 610.884 516.61L613.884 516.61L616.884 516.61C616.884 511.131 614.82 506.522 610.705 503.05L608.77 505.343ZM613.884 516.61L610.884 516.61C610.884 519.568 610.218 521.734 609.108 523.322L611.567 525.04L614.026 526.759C616.006 523.925 616.884 520.471 616.884 516.61L613.884 516.61ZM611.567 525.04L609.104 523.328C607.91 525.045 606.457 526.175 604.72 526.826L605.774 529.635L606.827 532.444C609.778 531.338 612.187 529.404 614.03 526.753L611.567 525.04ZM605.774 529.635L602.774 529.635L602.774 529.795L605.774 529.795L608.774 529.795L608.774 529.635L605.774 529.635ZM605.774 529.795L604.979 532.688C606.627 533.14 608.348 534.286 610.094 536.491L612.446 534.629L614.798 532.767C612.496 529.859 609.769 527.781 606.569 526.902L605.774 529.795ZM612.446 534.629L610.116 536.518C611.659 538.423 612.523 540.903 612.523 544.178L615.523 544.178L618.523 544.178C618.523 539.783 617.335 535.896 614.777 532.74L612.446 534.629ZM615.523 544.178L612.523 544.178C612.523 548.439 610.971 551.6 607.863 553.984L609.689 556.364L611.515 558.745C616.185 555.162 618.523 550.199 618.523 544.178L615.523 544.178ZM609.689 556.364L607.855 553.99C604.651 556.465 600.292 557.839 594.507 557.839L594.507 560.839L594.507 563.839C601.241 563.839 607.003 562.23 611.523 558.738L609.689 556.364ZM594.507 560.839L594.507 557.839C588.693 557.839 584.303 556.464 581.071 553.984L579.245 556.364L577.419 558.745C581.963 562.231 587.749 563.839 594.507 563.839L594.507 560.839ZM579.245 556.364L581.071 553.984C577.963 551.6 576.411 548.439 576.411 544.178L573.411 544.178L570.411 544.178C570.411 550.199 572.748 555.162 577.419 558.745L579.245 556.364ZM587.435 542.66L584.435 542.66C584.435 546.052 585.081 549.199 587.007 551.419L589.273 549.452L591.539 547.486C591.015 546.882 590.435 545.501 590.435 542.66L587.435 542.66ZM589.273 549.452L587.047 551.464C588.973 553.595 591.579 554.53 594.467 554.53L594.467 551.53L594.467 548.53C592.934 548.53 592.076 548.08 591.499 547.441L589.273 549.452ZM594.467 551.53L594.467 554.53C597.359 554.53 599.954 553.56 601.847 551.379L599.581 549.412L597.315 547.446C596.758 548.088 595.944 548.53 594.467 548.53L594.467 551.53ZM599.581 549.412L601.847 551.379C603.77 549.162 604.419 546.034 604.419 542.66L601.419 542.66L598.419 542.66C598.419 545.466 597.842 546.839 597.315 547.446L599.581 549.412ZM601.419 542.66L604.419 542.66C604.419 539.191 603.746 535.91 601.582 533.747L599.461 535.868L597.34 537.989C597.786 538.436 598.419 539.683 598.419 542.66L601.419 542.66ZM599.461 535.868L601.625 533.79C599.715 531.801 597.235 530.87 594.467 530.87L594.467 533.87L594.467 536.87C595.801 536.87 596.65 537.271 597.297 537.946L599.461 535.868ZM594.467 533.87L594.467 530.87C591.698 530.87 589.219 531.799 587.271 533.747L589.393 535.868L591.514 537.989C592.23 537.273 593.134 536.87 594.467 536.87L594.467 533.87ZM589.393 535.868L587.271 533.747C585.108 535.91 584.435 539.191 584.435 542.66L587.435 542.66L590.435 542.66C590.435 539.683 591.068 538.436 591.514 537.989L589.393 535.868ZM588.354 518.448L585.354 518.448C585.354 521.508 585.998 524.341 587.742 526.491L590.072 524.601L592.402 522.711C591.855 522.037 591.354 520.769 591.354 518.448L588.354 518.448ZM590.072 524.601L587.76 526.513C589.471 528.581 591.781 529.679 594.467 529.679L594.467 526.679L594.467 523.679C593.584 523.679 592.964 523.391 592.384 522.689L590.072 524.601ZM594.467 526.679L594.467 529.679C597.142 529.679 599.433 528.569 601.134 526.513L598.822 524.601L596.51 522.689C595.92 523.403 595.308 523.679 594.467 523.679L594.467 526.679ZM598.822 524.601L601.13 526.517C602.917 524.365 603.58 521.521 603.58 518.448L600.58 518.448L597.58 518.448C597.58 520.755 597.071 522.013 596.514 522.685L598.822 524.601ZM600.58 518.448L603.58 518.448C603.58 515.455 603.027 512.627 601.35 510.563L599.022 512.455L596.693 514.347C597.094 514.84 597.58 516.007 597.58 518.448L600.58 518.448ZM599.022 512.455L601.392 510.617C599.683 508.413 597.186 507.497 594.467 507.497L594.467 510.497L594.467 513.497C595.796 513.497 596.336 513.887 596.651 514.294L599.022 512.455ZM594.467 510.497L594.467 507.497C591.788 507.497 589.309 508.356 587.564 510.459L589.872 512.375L592.181 514.291C592.513 513.89 593.097 513.497 594.467 513.497L594.467 510.497ZM589.872 512.375L587.539 510.489C585.877 512.546 585.354 515.421 585.354 518.448L588.354 518.448L591.354 518.448C591.354 515.881 591.844 514.708 592.205 514.261L589.872 512.375ZM624.469 534.669L622.138 532.78L622.132 532.788L622.126 532.795L624.469 534.669ZM631.061 529.835L631.911 532.712L634.061 532.077L634.061 529.835L631.061 529.835ZM631.061 529.675L634.061 529.675L634.061 527.734L632.291 526.939L631.061 529.675ZM625.268 524.841L622.777 526.512L622.788 526.529L622.8 526.547L625.268 524.841ZM628.185 505.223L626.28 502.906L626.271 502.913L628.185 505.223ZM656.792 505.343L654.838 507.62L654.847 507.628L654.857 507.636L656.792 505.343ZM659.588 525.04L657.129 523.322L657.125 523.328L659.588 525.04ZM653.795 529.635L652.742 526.826L650.795 527.556L650.795 529.635L653.795 529.635ZM653.795 529.795L650.795 529.795L650.795 532.082L653 532.688L653.795 529.795ZM660.467 534.629L658.115 536.491L658.126 536.505L658.137 536.518L660.467 534.629ZM657.711 556.364L655.885 553.984L655.877 553.99L657.711 556.364ZM627.266 556.364L625.44 558.745L627.266 556.364ZM637.294 549.452L635.029 551.419L635.048 551.441L635.069 551.464L637.294 549.452ZM647.482 535.868L645.318 537.946L645.339 537.968L645.361 537.989L647.482 535.868ZM638.093 524.601L635.764 526.491L635.772 526.502L635.781 526.513L638.093 524.601ZM646.843 524.601L644.535 522.685L644.531 522.689L646.843 524.601ZM647.043 512.455L644.672 514.294L644.693 514.32L644.715 514.347L647.043 512.455ZM637.893 512.375L635.585 510.459L635.573 510.474L635.561 510.489L637.893 512.375ZM621.432 544.178L624.432 544.178C624.432 540.926 625.285 538.452 626.812 536.543L624.469 534.669L622.126 532.795C619.605 535.947 618.432 539.813 618.432 544.178L621.432 544.178ZM624.469 534.669L626.8 536.558C628.593 534.345 630.315 533.184 631.911 532.712L631.061 529.835L630.211 526.958C627.12 527.871 624.447 529.933 622.138 532.78L624.469 534.669ZM631.061 529.835L634.061 529.835L634.061 529.675L631.061 529.675L628.061 529.675L628.061 529.835L631.061 529.835ZM631.061 529.675L632.291 526.939C630.424 526.1 628.919 524.847 627.736 523.135L625.268 524.841L622.8 526.547C624.6 529.15 626.957 531.12 629.832 532.411L631.061 529.675ZM625.268 524.841L627.76 523.17C626.702 521.593 626.071 519.47 626.071 516.61L623.071 516.61L620.071 516.61C620.071 520.356 620.904 523.72 622.777 526.512L625.268 524.841ZM623.071 516.61L626.071 516.61C626.071 512.657 627.435 509.739 630.098 507.534L628.185 505.223L626.271 502.913C622.115 506.354 620.071 511.027 620.071 516.61L623.071 516.61ZM628.185 505.223L630.089 507.541C632.817 505.3 636.836 503.988 642.528 503.988L642.528 500.988L642.528 497.988C635.968 497.988 630.424 499.5 626.28 502.906L628.185 505.223ZM642.528 500.988L642.528 503.988C648.206 503.988 652.173 505.332 654.838 507.62L656.792 505.343L658.745 503.067C654.645 499.547 649.103 497.988 642.528 497.988L642.528 500.988ZM656.792 505.343L654.857 507.636C657.561 509.918 658.906 512.82 658.906 516.61L661.906 516.61L664.906 516.61C664.906 511.131 662.841 506.522 658.726 503.05L656.792 505.343ZM661.906 516.61L658.906 516.61C658.906 519.568 658.239 521.734 657.129 523.322L659.588 525.04L662.047 526.759C664.027 523.925 664.906 520.471 664.906 516.61L661.906 516.61ZM659.588 525.04L657.125 523.328C655.932 525.045 654.479 526.175 652.742 526.826L653.795 529.635L654.848 532.444C657.799 531.338 660.209 529.404 662.052 526.753L659.588 525.04ZM653.795 529.635L650.795 529.635L650.795 529.795L653.795 529.795L656.795 529.795L656.795 529.635L653.795 529.635ZM653.795 529.795L653 532.688C654.648 533.14 656.369 534.286 658.115 536.491L660.467 534.629L662.82 532.767C660.517 529.859 657.79 527.781 654.59 526.902L653.795 529.795ZM660.467 534.629L658.137 536.518C659.681 538.423 660.544 540.903 660.544 544.178L663.544 544.178L666.544 544.178C666.544 539.783 665.356 535.896 662.798 532.74L660.467 534.629ZM663.544 544.178L660.544 544.178C660.544 548.439 658.992 551.6 655.885 553.984L657.711 556.364L659.536 558.745C664.207 555.162 666.544 550.199 666.544 544.178L663.544 544.178ZM657.711 556.364L655.877 553.99C652.672 556.465 648.313 557.839 642.528 557.839L642.528 560.839L642.528 563.839C649.262 563.839 655.025 562.23 659.544 558.738L657.711 556.364ZM642.528 560.839L642.528 557.839C636.714 557.839 632.325 556.464 629.092 553.984L627.266 556.364L625.44 558.745C629.984 562.231 635.77 563.839 642.528 563.839L642.528 560.839ZM627.266 556.364L629.092 553.984C625.984 551.6 624.432 548.439 624.432 544.178L621.432 544.178L618.432 544.178C618.432 550.199 620.77 555.162 625.44 558.745L627.266 556.364ZM635.456 542.66L632.456 542.66C632.456 546.052 633.102 549.199 635.029 551.419L637.294 549.452L639.56 547.486C639.036 546.882 638.456 545.501 638.456 542.66L635.456 542.66ZM637.294 549.452L635.069 551.464C636.994 553.595 639.6 554.53 642.488 554.53L642.488 551.53L642.488 548.53C640.955 548.53 640.098 548.08 639.52 547.441L637.294 549.452ZM642.488 551.53L642.488 554.53C645.38 554.53 647.975 553.56 649.868 551.379L647.602 549.412L645.337 547.446C644.779 548.088 643.965 548.53 642.488 548.53L642.488 551.53ZM647.602 549.412L649.868 551.379C651.791 549.162 652.44 546.034 652.44 542.66L649.44 542.66L646.44 542.66C646.44 545.466 645.864 546.839 645.337 547.446L647.602 549.412ZM649.44 542.66L652.44 542.66C652.44 539.191 651.767 535.91 649.604 533.747L647.482 535.868L645.361 537.989C645.808 538.436 646.44 539.683 646.44 542.66L649.44 542.66ZM647.482 535.868L649.647 533.79C647.737 531.801 645.256 530.87 642.488 530.87L642.488 533.87L642.488 536.87C643.822 536.87 644.671 537.271 645.318 537.946L647.482 535.868ZM642.488 533.87L642.488 530.87C639.72 530.87 637.24 531.799 635.293 533.747L637.414 535.868L639.535 537.989C640.252 537.273 641.155 536.87 642.488 536.87L642.488 533.87ZM637.414 535.868L635.293 533.747C633.129 535.91 632.456 539.191 632.456 542.66L635.456 542.66L638.456 542.66C638.456 539.683 639.089 538.436 639.535 537.989L637.414 535.868ZM636.375 518.448L633.375 518.448C633.375 521.508 634.019 524.341 635.764 526.491L638.093 524.601L640.423 522.711C639.877 522.037 639.375 520.769 639.375 518.448L636.375 518.448ZM638.093 524.601L635.781 526.513C637.492 528.581 639.802 529.679 642.488 529.679L642.488 526.679L642.488 523.679C641.605 523.679 640.985 523.391 640.405 522.689L638.093 524.601ZM642.488 526.679L642.488 529.679C645.163 529.679 647.455 528.569 649.155 526.513L646.843 524.601L644.531 522.689C643.941 523.403 643.329 523.679 642.488 523.679L642.488 526.679ZM646.843 524.601L649.151 526.517C650.938 524.365 651.601 521.521 651.601 518.448L648.601 518.448L645.601 518.448C645.601 520.755 645.092 522.013 644.535 522.685L646.843 524.601ZM648.601 518.448L651.601 518.448C651.601 515.455 651.048 512.627 649.371 510.563L647.043 512.455L644.715 514.347C645.115 514.84 645.601 516.007 645.601 518.448L648.601 518.448ZM647.043 512.455L649.414 510.617C647.705 508.413 645.208 507.497 642.488 507.497L642.488 510.497L642.488 513.497C643.817 513.497 644.357 513.887 644.672 514.294L647.043 512.455ZM642.488 510.497L642.488 507.497C639.809 507.497 637.33 508.356 635.585 510.459L637.893 512.375L640.202 514.291C640.535 513.89 641.118 513.497 642.488 513.497L642.488 510.497ZM637.893 512.375L635.561 510.489C633.898 512.546 633.375 515.421 633.375 518.448L636.375 518.448L639.375 518.448C639.375 515.881 639.865 514.708 640.226 514.261L637.893 512.375ZM705.452 506.382L703.331 508.503L703.339 508.511L703.347 508.519L705.452 506.382ZM705.212 555.565L703.162 553.376L703.154 553.383L705.212 555.565ZM690.629 560.839L690.643 557.839L690.642 557.839L690.629 560.839ZM675.766 555.525L673.653 557.654L673.661 557.662L675.766 555.525ZM685.875 549.093L683.413 550.807L683.423 550.822L683.434 550.836L685.875 549.093ZM685.875 512.934L683.434 511.191L683.423 511.205L683.413 511.22L685.875 512.934ZM670.413 539.863L673.413 539.863L673.413 521.964L670.413 521.964L667.413 521.964L667.413 539.863L670.413 539.863ZM670.413 521.964L673.413 521.964C673.413 515.817 675.054 511.5 677.943 508.568L675.806 506.462L673.67 504.356C669.367 508.722 667.413 514.74 667.413 521.964L670.413 521.964ZM675.806 506.462L677.943 508.568C680.852 505.616 684.952 503.988 690.629 503.988L690.629 500.988L690.629 497.988C683.734 497.988 677.952 500.01 673.67 504.356L675.806 506.462ZM690.629 500.988L690.629 503.988C696.319 503.988 700.424 505.597 703.331 508.503L705.452 506.382L707.573 504.261C703.288 499.976 697.512 497.988 690.629 497.988L690.629 500.988ZM705.452 506.382L703.347 508.519C706.223 511.353 707.886 515.666 707.886 521.964L710.886 521.964L713.886 521.964C713.886 514.625 711.927 508.55 707.558 504.245L705.452 506.382ZM710.886 521.964L707.886 521.964L707.886 539.863L710.886 539.863L713.886 539.863L713.886 521.964L710.886 521.964ZM710.886 539.863L707.886 539.863C707.886 546.25 706.154 550.572 703.162 553.376L705.212 555.565L707.263 557.755C711.835 553.473 713.886 547.327 713.886 539.863L710.886 539.863ZM705.212 555.565L703.154 553.383C700.046 556.315 695.968 557.863 690.643 557.839L690.629 560.839L690.616 563.839C697.223 563.869 702.868 561.901 707.271 557.747L705.212 555.565ZM690.629 560.839L690.642 557.839C684.868 557.815 680.745 556.218 677.872 553.388L675.766 555.525L673.661 557.662C677.927 561.864 683.712 563.81 690.617 563.839L690.629 560.839ZM675.766 555.525L677.88 553.396C675.063 550.6 673.413 546.267 673.413 539.863L670.413 539.863L667.413 539.863C667.413 547.257 669.332 553.365 673.653 557.654L675.766 555.525ZM684.317 542.7L681.317 542.7C681.317 545.782 681.884 548.612 683.413 550.807L685.875 549.093L688.337 547.378C687.788 546.59 687.317 545.158 687.317 542.7L684.317 542.7ZM685.875 549.093L683.434 550.836C685.152 553.242 687.721 554.33 690.629 554.33L690.629 551.33L690.629 548.33C689.329 548.33 688.729 547.927 688.316 547.349L685.875 549.093ZM690.629 551.33L690.629 554.33C693.538 554.33 696.107 553.242 697.825 550.836L695.384 549.093L692.943 547.349C692.53 547.927 691.93 548.33 690.629 548.33L690.629 551.33ZM695.384 549.093L697.825 550.836C699.397 548.636 699.982 545.794 699.982 542.7L696.982 542.7L693.982 542.7C693.982 545.146 693.502 546.566 692.943 547.349L695.384 549.093ZM696.982 542.7L699.982 542.7L699.982 519.407L696.982 519.407L693.982 519.407L693.982 542.7L696.982 542.7ZM696.982 519.407L699.982 519.407C699.982 516.274 699.402 513.399 697.825 511.191L695.384 512.934L692.943 514.678C693.496 515.453 693.982 516.893 693.982 519.407L696.982 519.407ZM695.384 512.934L697.825 511.191C696.107 508.786 693.538 507.697 690.629 507.697L690.629 510.697L690.629 513.697C691.93 513.697 692.53 514.1 692.943 514.678L695.384 512.934ZM690.629 510.697L690.629 507.697C687.721 507.697 685.152 508.786 683.434 511.191L685.875 512.934L688.316 514.678C688.729 514.1 689.329 513.697 690.629 513.697L690.629 510.697ZM685.875 512.934L683.413 511.22C681.879 513.423 681.317 516.286 681.317 519.407L684.317 519.407L687.317 519.407C687.317 516.881 687.793 515.429 688.337 514.649L685.875 512.934ZM684.317 519.407L681.317 519.407L681.317 542.7L684.317 542.7L687.317 542.7L687.317 519.407L684.317 519.407ZM776.004 506.382L773.883 508.503L773.891 508.511L773.898 508.519L776.004 506.382ZM775.764 555.565L773.713 553.376L773.706 553.383L775.764 555.565ZM761.181 560.839L761.195 557.839L761.194 557.839L761.181 560.839ZM746.318 555.525L744.205 557.654L744.213 557.662L746.318 555.525ZM756.427 549.093L753.965 550.807L753.975 550.822L753.986 550.836L756.427 549.093ZM756.427 512.934L753.986 511.191L753.975 511.205L753.965 511.22L756.427 512.934ZM740.965 539.863L743.965 539.863L743.965 521.964L740.965 521.964L737.965 521.964L737.965 539.863L740.965 539.863ZM740.965 521.964L743.965 521.964C743.965 515.817 745.606 511.5 748.495 508.568L746.358 506.462L744.221 504.356C739.919 508.722 737.965 514.74 737.965 521.964L740.965 521.964ZM746.358 506.462L748.495 508.568C751.404 505.616 755.504 503.988 761.181 503.988L761.181 500.988L761.181 497.988C754.286 497.988 748.504 500.01 744.221 504.356L746.358 506.462ZM761.181 500.988L761.181 503.988C766.871 503.988 770.976 505.597 773.883 508.503L776.004 506.382L778.125 504.261C773.84 499.976 768.064 497.988 761.181 497.988L761.181 500.988ZM776.004 506.382L773.898 508.519C776.774 511.353 778.438 515.666 778.438 521.964L781.438 521.964L784.438 521.964C784.438 514.625 782.479 508.55 778.11 504.245L776.004 506.382ZM781.438 521.964L778.438 521.964L778.438 539.863L781.438 539.863L784.438 539.863L784.438 521.964L781.438 521.964ZM781.438 539.863L778.438 539.863C778.438 546.25 776.706 550.573 773.714 553.376L775.764 555.565L777.815 557.755C782.387 553.473 784.438 547.327 784.438 539.863L781.438 539.863ZM775.764 555.565L773.706 553.383C770.597 556.315 766.52 557.863 761.195 557.839L761.181 560.839L761.168 563.839C767.775 563.869 773.42 561.901 777.823 557.747L775.764 555.565ZM761.181 560.839L761.194 557.839C755.42 557.815 751.297 556.218 748.424 553.388L746.318 555.525L744.213 557.662C748.479 561.864 754.264 563.81 761.169 563.839L761.181 560.839ZM746.318 555.525L748.432 553.396C745.615 550.6 743.965 546.267 743.965 539.863L740.965 539.863L737.965 539.863C737.965 547.257 739.884 553.365 744.205 557.654L746.318 555.525ZM754.869 542.7L751.869 542.7C751.869 545.782 752.436 548.612 753.965 550.807L756.427 549.093L758.889 547.378C758.34 546.59 757.869 545.158 757.869 542.7L754.869 542.7ZM756.427 549.093L753.986 550.836C755.703 553.242 758.273 554.33 761.181 554.33L761.181 551.33L761.181 548.33C759.881 548.33 759.281 547.927 758.868 547.349L756.427 549.093ZM761.181 551.33L761.181 554.33C764.089 554.33 766.659 553.242 768.377 550.836L765.936 549.093L763.495 547.349C763.082 547.927 762.481 548.33 761.181 548.33L761.181 551.33ZM765.936 549.093L768.377 550.836C769.949 548.636 770.534 545.794 770.534 542.7L767.534 542.7L764.534 542.7C764.534 545.146 764.054 546.566 763.495 547.349L765.936 549.093ZM767.534 542.7L770.534 542.7L770.534 519.407L767.534 519.407L764.534 519.407L764.534 542.7L767.534 542.7ZM767.534 519.407L770.534 519.407C770.534 516.274 769.954 513.399 768.377 511.191L765.936 512.934L763.495 514.678C764.048 515.453 764.534 516.893 764.534 519.407L767.534 519.407ZM765.936 512.934L768.377 511.191C766.659 508.786 764.089 507.697 761.181 507.697L761.181 510.697L761.181 513.697C762.481 513.697 763.082 514.1 763.495 514.678L765.936 512.934ZM761.181 510.697L761.181 507.697C758.273 507.697 755.703 508.786 753.986 511.191L756.427 512.934L758.868 514.678C759.281 514.1 759.881 513.697 761.181 513.697L761.181 510.697ZM756.427 512.934L753.965 511.22C752.431 513.423 751.869 516.286 751.869 519.407L754.869 519.407L757.869 519.407C757.869 516.881 758.345 515.429 758.889 514.649L756.427 512.934ZM754.869 519.407L751.869 519.407L751.869 542.7L754.869 542.7L757.869 542.7L757.869 519.407L754.869 519.407ZM811.2 560L808.2 560L808.2 563L811.2 563L811.2 560ZM811.2 545.297L808.681 543.667L808.2 544.411L808.2 545.297L811.2 545.297ZM811.64 544.618L814.158 546.248L814.64 545.504L814.64 544.618L811.64 544.618ZM811.64 519.487L814.64 519.487L814.64 516.487L811.64 516.487L811.64 519.487ZM811.32 519.487L811.32 516.487L809.613 516.487L808.741 517.954L811.32 519.487ZM800.253 538.105L797.674 536.572L794.98 541.105L800.253 541.105L800.253 538.105ZM816.634 538.105L816.634 541.105L817.074 541.105L817.496 540.979L816.634 538.105ZM817.832 537.746L817.832 534.746L817.392 534.746L816.97 534.872L817.832 537.746ZM830.658 537.746L833.658 537.746L833.658 534.746L830.658 534.746L830.658 537.746ZM830.658 548.533L830.658 551.533L833.658 551.533L833.658 548.533L830.658 548.533ZM787.388 548.533L784.388 548.533L784.388 551.533L787.388 551.533L787.388 548.533ZM787.388 538.625L784.917 536.924L784.388 537.692L784.388 538.625L787.388 538.625ZM812.718 501.827L812.718 498.827L811.141 498.827L810.247 500.126L812.718 501.827ZM823.985 501.827L826.985 501.827L826.985 498.827L823.985 498.827L823.985 501.827ZM823.985 560L823.985 563L826.985 563L826.985 560L823.985 560ZM811.2 560L814.2 560L814.2 545.297L811.2 545.297L808.2 545.297L808.2 560L811.2 560ZM811.2 545.297L813.719 546.927L814.158 546.248L811.64 544.618L809.121 542.988L808.681 543.667L811.2 545.297ZM811.64 544.618L814.64 544.618L814.64 519.487L811.64 519.487L808.64 519.487L808.64 544.618L811.64 544.618ZM811.64 519.487L811.64 516.487L811.32 516.487L811.32 519.487L811.32 522.487L811.64 522.487L811.64 519.487ZM811.32 519.487L808.741 517.954L797.674 536.572L800.253 538.105L802.832 539.638L813.899 521.02L811.32 519.487ZM800.253 538.105L800.253 541.105L816.634 541.105L816.634 538.105L816.634 535.105L800.253 535.105L800.253 538.105ZM816.634 538.105L817.496 540.979L818.695 540.619L817.832 537.746L816.97 534.872L815.772 535.232L816.634 538.105ZM817.832 537.746L817.832 540.746L830.658 540.746L830.658 537.746L830.658 534.746L817.832 534.746L817.832 537.746ZM830.658 537.746L827.658 537.746L827.658 548.533L830.658 548.533L833.658 548.533L833.658 537.746L830.658 537.746ZM830.658 548.533L830.658 545.533L787.388 545.533L787.388 548.533L787.388 551.533L830.658 551.533L830.658 548.533ZM787.388 548.533L790.388 548.533L790.388 538.625L787.388 538.625L784.388 538.625L784.388 548.533L787.388 548.533ZM787.388 538.625L789.859 540.326L815.189 503.528L812.718 501.827L810.247 500.126L784.917 536.924L787.388 538.625ZM812.718 501.827L812.718 504.827L823.985 504.827L823.985 501.827L823.985 498.827L812.718 498.827L812.718 501.827ZM823.985 501.827L820.985 501.827L820.985 560L823.985 560L826.985 560L826.985 501.827L823.985 501.827ZM823.985 560L823.985 557L811.2 557L811.2 560L811.2 563L823.985 563L823.985 560ZM836.368 560L833.368 560L833.368 563L836.368 563L836.368 560ZM836.368 551.33L834.207 549.249L833.368 550.12L833.368 551.33L836.368 551.33ZM857.383 529.515L859.544 531.597L859.604 531.534L859.661 531.468L857.383 529.515ZM852.269 512.615L854.436 514.69L854.447 514.678L854.458 514.667L852.269 512.615ZM850.471 521.644L850.471 524.644L853.471 524.644L853.471 521.644L850.471 521.644ZM836.368 521.644L833.368 521.644L833.368 524.644L836.368 524.644L836.368 521.644ZM872.086 505.343L870.133 507.62L870.143 507.629L872.086 505.343ZM877.201 517.09L880.201 517.09L880.201 517.082L880.2 517.074L877.201 517.09ZM874.843 526.958L872.205 525.53L872.2 525.54L872.195 525.549L874.843 526.958ZM868.211 535.828L866.042 533.755L865.98 533.821L865.921 533.89L868.211 535.828ZM857.184 548.853L854.894 546.914L850.713 551.853L857.184 551.853L857.184 548.853ZM878.559 548.853L881.559 548.853L881.559 545.853L878.559 545.853L878.559 548.853ZM878.559 560L878.559 563L881.559 563L881.559 560L878.559 560ZM836.368 560L839.368 560L839.368 551.33L836.368 551.33L833.368 551.33L833.368 560L836.368 560ZM836.368 551.33L838.528 553.411L859.544 531.597L857.383 529.515L855.223 527.434L834.207 549.249L836.368 551.33ZM857.383 529.515L859.661 531.468C861.364 529.481 862.841 527.434 864.084 525.325L861.499 523.802L858.914 522.279C857.865 524.059 856.599 525.821 855.106 527.563L857.383 529.515ZM861.499 523.802L864.084 525.325C865.477 522.96 866.217 520.428 866.217 517.769L863.217 517.769L860.217 517.769C860.217 519.265 859.812 520.755 858.914 522.279L861.499 523.802ZM863.217 517.769L866.217 517.769C866.217 514.895 865.582 512.083 863.569 510.164L861.499 512.335L859.429 514.506C859.706 514.771 860.217 515.582 860.217 517.769L863.217 517.769ZM861.499 512.335L863.569 510.164C861.768 508.447 859.473 507.697 856.984 507.697L856.984 510.697L856.984 513.697C858.224 513.697 858.939 514.04 859.429 514.506L861.499 512.335ZM856.984 510.697L856.984 507.697C854.311 507.697 851.912 508.61 850.081 510.563L852.269 512.615L854.458 514.667C855.024 514.063 855.768 513.697 856.984 513.697L856.984 510.697ZM852.269 512.615L850.102 510.54C849.007 511.684 848.376 513.17 848.006 514.693C847.631 516.235 847.471 518.026 847.471 520.006L850.471 520.006L853.471 520.006C853.471 518.311 853.612 517.032 853.836 516.111C854.065 515.17 854.333 514.797 854.436 514.69L852.269 512.615ZM850.471 520.006L847.471 520.006L847.471 521.644L850.471 521.644L853.471 521.644L853.471 520.006L850.471 520.006ZM850.471 521.644L850.471 518.644L836.368 518.644L836.368 521.644L836.368 524.644L850.471 524.644L850.471 521.644ZM836.368 521.644L839.368 521.644L839.368 518.208L836.368 518.208L833.368 518.208L833.368 521.644L836.368 521.644ZM836.368 518.208L839.368 518.208C839.368 514.119 840.89 510.837 844.06 508.152L842.121 505.863L840.182 503.574C835.681 507.387 833.368 512.336 833.368 518.208L836.368 518.208ZM842.121 505.863L844.06 508.152C847.233 505.463 851.525 503.988 857.224 503.988L857.224 500.988L857.224 497.988C850.457 497.988 844.68 499.763 840.182 503.574L842.121 505.863ZM857.224 500.988L857.224 503.988C863.357 503.988 867.498 505.358 870.133 507.62L872.086 505.343L874.04 503.067C869.91 499.522 864.142 497.988 857.224 497.988L857.224 500.988ZM872.086 505.343L870.143 507.629C872.778 509.869 874.178 512.912 874.201 517.106L877.201 517.09L880.2 517.074C880.17 511.359 878.161 506.571 874.03 503.058L872.086 505.343ZM877.201 517.09L874.201 517.09C874.201 520.324 873.513 523.113 872.205 525.53L874.843 526.958L877.482 528.386C879.316 524.996 880.201 521.207 880.201 517.09L877.201 517.09ZM874.843 526.958L872.195 525.549C870.808 528.156 868.777 530.894 866.042 533.755L868.211 535.828L870.38 537.901C873.398 534.743 875.789 531.567 877.492 528.367L874.843 526.958ZM868.211 535.828L865.921 533.89L854.894 546.914L857.184 548.853L859.473 550.791L870.501 537.766L868.211 535.828ZM857.184 548.853L857.184 551.853L878.559 551.853L878.559 548.853L878.559 545.853L857.184 545.853L857.184 548.853ZM878.559 548.853L875.559 548.853L875.559 560L878.559 560L881.559 560L881.559 548.853L878.559 548.853ZM878.559 560L878.559 557L836.368 557L836.368 560L836.368 563L878.559 563L878.559 560ZM920.068 506.382L917.946 508.503L917.954 508.511L917.962 508.519L920.068 506.382ZM919.828 555.565L917.777 553.376L917.77 553.383L919.828 555.565ZM905.245 560.839L905.258 557.839L905.258 557.839L905.245 560.839ZM890.382 555.525L888.269 557.654L888.277 557.662L890.382 555.525ZM900.49 549.093L898.029 550.807L898.039 550.822L898.049 550.836L900.49 549.093ZM900.49 512.934L898.049 511.191L898.039 511.205L898.029 511.22L900.49 512.934ZM885.028 539.863L888.028 539.863L888.028 521.964L885.028 521.964L882.028 521.964L882.028 539.863L885.028 539.863ZM885.028 521.964L888.028 521.964C888.028 515.817 889.67 511.5 892.559 508.568L890.422 506.462L888.285 504.356C883.983 508.722 882.028 514.74 882.028 521.964L885.028 521.964ZM890.422 506.462L892.559 508.568C895.468 505.616 899.568 503.988 905.245 503.988L905.245 500.988L905.245 497.988C898.35 497.988 892.568 500.01 888.285 504.356L890.422 506.462ZM905.245 500.988L905.245 503.988C910.935 503.988 915.04 505.597 917.946 508.503L920.068 506.382L922.189 504.261C917.904 499.976 912.127 497.988 905.245 497.988L905.245 500.988ZM920.068 506.382L917.962 508.519C920.838 511.353 922.501 515.666 922.501 521.964L925.501 521.964L928.501 521.964C928.501 514.625 926.542 508.55 922.173 504.245L920.068 506.382ZM925.501 521.964L922.501 521.964L922.501 539.863L925.501 539.863L928.501 539.863L928.501 521.964L925.501 521.964ZM925.501 539.863L922.501 539.863C922.501 546.25 920.77 550.573 917.777 553.376L919.828 555.565L921.879 557.755C926.451 553.473 928.501 547.327 928.501 539.863L925.501 539.863ZM919.828 555.565L917.77 553.383C914.661 556.315 910.584 557.863 905.258 557.839L905.245 560.839L905.232 563.839C911.839 563.869 917.484 561.901 921.887 557.747L919.828 555.565ZM905.245 560.839L905.258 557.839C899.484 557.815 895.36 556.218 892.487 553.388L890.382 555.525L888.277 557.662C892.542 561.864 898.327 563.81 905.232 563.839L905.245 560.839ZM890.382 555.525L892.495 553.396C889.678 550.6 888.028 546.267 888.028 539.863L885.028 539.863L882.028 539.863C882.028 547.257 883.947 553.365 888.269 557.654L890.382 555.525ZM898.932 542.7L895.932 542.7C895.932 545.782 896.5 548.612 898.029 550.807L900.49 549.093L902.952 547.378C902.403 546.59 901.932 545.158 901.932 542.7L898.932 542.7ZM900.49 549.093L898.049 550.836C899.767 553.242 902.337 554.33 905.245 554.33L905.245 551.33L905.245 548.33C903.945 548.33 903.344 547.927 902.932 547.349L900.49 549.093ZM905.245 551.33L905.245 554.33C908.153 554.33 910.723 553.242 912.441 550.836L909.999 549.093L907.558 547.349C907.145 547.927 906.545 548.33 905.245 548.33L905.245 551.33ZM909.999 549.093L912.441 550.836C914.012 548.636 914.598 545.794 914.598 542.7L911.598 542.7L908.598 542.7C908.598 545.146 908.117 546.566 907.558 547.349L909.999 549.093ZM911.598 542.7L914.598 542.7L914.598 519.407L911.598 519.407L908.598 519.407L908.598 542.7L911.598 542.7ZM911.598 519.407L914.598 519.407C914.598 516.274 914.018 513.399 912.441 511.191L909.999 512.934L907.558 514.678C908.112 515.453 908.598 516.893 908.598 519.407L911.598 519.407ZM909.999 512.934L912.441 511.191C910.723 508.786 908.153 507.697 905.245 507.697L905.245 510.697L905.245 513.697C906.545 513.697 907.145 514.1 907.558 514.678L909.999 512.934ZM905.245 510.697L905.245 507.697C902.337 507.697 899.767 508.786 898.049 511.191L900.49 512.934L902.932 514.678C903.344 514.1 903.945 513.697 905.245 513.697L905.245 510.697ZM900.49 512.934L898.029 511.22C896.494 513.423 895.932 516.286 895.932 519.407L898.932 519.407L901.932 519.407C901.932 516.881 902.409 515.429 902.952 514.649L900.49 512.934ZM898.932 519.407L895.932 519.407L895.932 542.7L898.932 542.7L901.932 542.7L901.932 519.407L898.932 519.407Z" fill="black" mask="url(#path-13-outside-5_17007_6901)"/> +</g> +<path d="M1007.71 128.486L1015.98 79.744H1029.2L1020.93 128.486H1007.71ZM1068.64 80.8133C1064.84 79.4323 1060.84 78.7393 1056.8 78.7666C1043.75 78.7666 1034.56 85.3692 1034.48 94.8341C1034.41 101.83 1041.05 105.731 1046.05 108.059C1051.2 110.446 1052.92 111.968 1052.9 114.099C1052.87 117.362 1048.79 118.852 1045 118.852C1039.71 118.852 1036.91 118.106 1032.57 116.298L1030.87 115.524L1029.01 126.422C1032.1 127.78 1037.8 128.958 1043.72 129.018C1057.6 129.018 1066.61 122.492 1066.72 112.386C1066.77 106.848 1063.25 102.633 1055.63 99.1586C1051.01 96.9204 1048.19 95.4035 1048.22 93.1231C1048.22 91.1013 1050.61 88.9378 1055.78 88.9378C1059.17 88.8617 1062.53 89.4969 1065.66 90.803L1066.85 91.3649L1068.64 80.8133ZM1102.6 79.744H1092.43C1089.28 79.744 1086.92 80.6095 1085.54 83.7677L1065.99 128.237H1079.9C1079.9 128.237 1082.13 122.323 1082.64 121.025L1099.32 121.045C1099.71 122.726 1100.9 128.237 1100.9 128.237H1113.26L1102.6 79.744ZM1086.43 111.078C1087.52 108.273 1091.69 97.47 1091.69 97.47C1091.61 97.5993 1092.78 94.65 1093.44 92.8222L1094.33 97.02C1094.33 97.02 1096.86 108.641 1097.39 111.078H1086.43ZM996.495 79.744L983.596 112.866L982.223 106.134C979.822 98.3753 972.341 89.9699 963.976 85.7622L975.771 128.237L989.709 128.222L1010.45 79.744H996.431" fill="white"/> +<path d="M970.977 79.7436H949.775L949.604 80.7557C966.171 84.7868 977.132 94.5253 981.684 106.223L977.053 83.8419C976.254 80.7607 973.937 79.8406 971.069 79.7336" fill="white"/> +<path d="M130.128 161.702C130.328 161.588 130.534 161.458 130.74 161.314C130.883 161.213 131.026 161.099 131.173 160.985C131.226 160.945 131.276 160.905 131.329 160.865C133.927 158.712 136.845 154.22 138.923 148.774C138.933 148.747 138.942 148.72 138.952 148.693C139.101 148.303 139.243 147.909 139.386 147.508C142.46 138.633 143.415 127.306 138.236 118.047C134.979 112.22 130.334 107.339 124.943 103.92C120.321 100.94 117.507 95.9054 117.39 90.4091C117.303 84.0188 115.575 77.507 112.318 71.6803C107.186 62.5109 96.9335 57.3933 87.7015 55.3544C84.4707 54.6407 81.1106 54.201 77.7989 54.3115C75.5044 54.3887 72.9201 54.577 70.8725 55.7241C63.8472 59.6519 53.507 82.8217 62.7646 99.3794C66.0216 105.206 70.6664 110.088 76.0571 113.506C80.6792 116.487 83.4934 121.521 83.6107 127.017C83.6975 133.408 85.4257 139.919 88.6826 145.746C97.9402 162.304 123.099 165.627 130.124 161.699L130.128 161.702Z" fill="#FFC900"/> +<path d="M130.128 161.702C130.328 161.588 130.534 161.458 130.74 161.314C130.883 161.213 131.026 161.099 131.173 160.985C131.226 160.945 131.276 160.905 131.329 160.865C133.927 158.712 136.845 154.22 138.923 148.774C138.933 148.747 138.942 148.72 138.952 148.693C139.101 148.303 139.243 147.909 139.386 147.508C142.46 138.633 143.415 127.306 138.236 118.047C134.979 112.22 130.334 107.339 124.943 103.92C120.321 100.94 117.507 95.9054 117.39 90.4091C117.303 84.0188 115.575 77.507 112.318 71.6803C107.186 62.5109 96.9335 57.3933 87.7015 55.3544C84.4707 54.6407 81.1106 54.201 77.7989 54.3115C75.5044 54.3887 72.9201 54.577 70.8725 55.7241C63.8472 59.6519 53.507 82.8217 62.7646 99.3794C66.0216 105.206 70.6664 110.088 76.0571 113.506C80.6792 116.487 83.4934 121.521 83.6107 127.017C83.6975 133.408 85.4257 139.919 88.6826 145.746C97.9402 162.304 123.099 165.627 130.124 161.699L130.128 161.702ZM92.132 143.821C89.1702 138.52 87.6778 132.745 87.6199 127.038C87.4349 120.185 83.8828 113.832 78.0782 110.291C73.249 107.251 69.0359 102.828 66.1446 97.6577C57.9973 83.0844 67.4378 62.3322 72.7384 59.3704C78.342 56.2376 100.825 59.3156 108.896 73.7557C111.857 79.0562 113.35 84.8317 113.408 90.5383C113.456 97.4657 116.938 103.692 122.813 107.362C127.642 110.402 131.785 114.695 134.746 119.996C142.894 134.569 133.48 155.305 128.066 158.333C122.765 161.295 100.202 158.261 92.132 143.824L92.132 143.821Z" fill="black" stroke="black" stroke-width="0.291534"/> +<path d="M87.495 98.0243L89.5357 94.6391" stroke="black" stroke-width="3.66887" stroke-miterlimit="10" stroke-linecap="round"/> +<path d="M80.1515 91.9765C84.7362 91.9621 88.4412 88.2337 88.4268 83.6489C88.4124 79.0642 84.6841 75.3592 80.0993 75.3736C75.5145 75.388 71.8095 79.1163 71.8239 83.7011C71.8383 88.2859 75.5667 91.9909 80.1515 91.9765Z" fill="white" stroke="black" stroke-width="3.20687" stroke-miterlimit="10"/> +<path d="M94.6993 84.0963C99.2841 84.0819 102.989 80.3536 102.975 75.7688C102.96 71.1841 99.2319 67.479 94.6472 67.4935C90.0624 67.5079 86.3574 71.2362 86.3718 75.821C86.3862 80.4057 90.1145 84.1108 94.6993 84.0963Z" fill="white" stroke="black" stroke-width="3.20687" stroke-miterlimit="10"/> +<path d="M93.908 67.8425C91.9051 70.5039 91.7935 74.2666 93.877 77.0819C95.6557 79.4845 98.5643 80.5594 101.328 80.1105C103.331 77.4491 103.443 73.6864 101.359 70.8711C99.5803 68.4685 96.6717 67.3936 93.908 67.8425Z" fill="black"/> +<path d="M79.8006 75.7013C77.8743 78.3357 77.7891 82.0184 79.8325 84.7804C81.5173 87.0566 84.2224 88.1287 86.8465 87.837C88.7728 85.2026 88.858 81.52 86.8147 78.7579C85.1298 76.4818 82.4247 75.4096 79.8006 75.7013Z" fill="black"/> +<path d="M90.0197 96.739C91.9126 97.2468 94.1103 97.1398 95.9361 96.487C97.7752 95.8274 100.054 93.9891 101.056 92.2849" stroke="black" stroke-width="3.66887" stroke-miterlimit="10" stroke-linecap="round"/> +<path d="M107.899 145.319C107.271 146.008 107.262 147.192 107.947 147.821C110.7 150.327 113.762 152.492 116.673 154.074C117.214 154.442 117.804 154.284 118.317 153.999C118.573 153.854 118.756 153.58 118.945 153.31C119.432 152.364 119.052 151.391 118.307 150.967C115.597 149.444 112.806 147.468 110.327 145.141C109.638 144.52 108.521 144.637 107.899 145.319Z" fill="black" stroke="black" stroke-width="0.583068" stroke-miterlimit="10"/> +<path d="M103.019 141.786L103.149 141.712C103.974 141.079 104.131 140.148 103.628 139.249C102.921 138.294 102.348 137.265 101.774 136.24C100.697 134.312 99.7504 132.314 98.8707 130.445C98.4974 129.472 97.4959 129.192 96.5197 129.565C95.5469 129.939 95.2666 130.94 95.6399 131.916C96.4602 133.985 97.6108 136.043 98.758 138.097C99.402 139.252 99.9789 140.281 100.756 141.366C101.309 142.058 102.24 142.215 103.012 141.786L103.019 141.786Z" fill="black" stroke="black" stroke-width="0.583068" stroke-miterlimit="10"/> +<path d="M94.256 123.439L94.6422 123.224C95.2848 122.865 95.639 121.994 95.5365 121.21C94.8987 118.867 93.9374 116.539 92.7165 114.355C92.1429 113.326 91.5659 112.297 90.8625 111.345C90.2295 110.52 89.1719 110.433 88.4732 110.996C87.648 111.629 87.5613 112.686 88.1238 113.385C88.7568 114.21 89.26 115.109 89.7631 116.012C90.8399 117.939 91.6635 120.008 92.2803 122.021C92.3972 123.135 93.4164 123.745 94.2526 123.439L94.256 123.439Z" fill="black" stroke="black" stroke-width="0.583068" stroke-miterlimit="10"/> +<path d="M128.552 148.619C128.953 148.731 129.206 148.591 129.462 148.446C129.975 148.161 130.347 147.616 130.388 147.086C130.565 143.787 130.326 140.039 129.631 136.379C129.455 135.462 128.565 134.781 127.525 135.028C126.609 135.204 125.928 136.094 126.175 137.133C126.855 140.46 127.08 143.878 126.959 146.983C126.932 147.841 127.565 148.666 128.552 148.623L128.552 148.619Z" fill="black" stroke="black" stroke-width="0.583068" stroke-miterlimit="10"/> +<path d="M108.614 99.8158C107.641 100.189 107.361 101.191 107.66 102.034C108.104 103.136 108.681 104.165 109.251 105.187C110.472 107.371 111.95 109.408 113.616 111.177C114.105 111.746 115.033 111.9 115.802 111.471L116.188 111.256C116.816 110.567 116.897 109.509 116.337 108.814C114.822 107.304 113.612 105.45 112.535 103.523C112.032 102.624 111.532 101.725 111.155 100.748C110.522 99.9232 109.58 99.4358 108.611 99.8125L108.614 99.8158Z" fill="black" stroke="black" stroke-width="0.583068" stroke-miterlimit="10"/> +<path d="M120.914 116.521C120.089 117.154 120.002 118.211 120.435 118.984C121.694 120.637 122.771 122.565 123.851 124.49C124.425 125.519 125.001 126.548 125.442 127.643C125.815 128.616 126.817 128.897 127.793 128.523L127.923 128.45C128.695 128.017 128.979 127.015 128.673 126.172C128.229 125.07 127.582 123.918 126.934 122.759C125.784 120.701 124.507 118.721 123.303 116.867C122.747 116.168 121.616 115.958 120.917 116.521L120.914 116.521Z" fill="black" stroke="black" stroke-width="0.583068" stroke-miterlimit="10"/> +<path d="M109.403 124.925C110.302 124.422 110.585 123.42 110.082 122.525L104.622 112.76C104.119 111.861 103.117 111.577 102.222 112.08C101.326 112.583 101.039 113.585 101.542 114.48L107.003 124.246C107.499 125.148 108.5 125.428 109.403 124.925Z" fill="black" stroke="black" stroke-width="0.583068" stroke-miterlimit="10"/> +<path d="M120.325 144.453C121.224 143.95 121.507 142.948 121.004 142.052L115.544 132.287C115.04 131.388 114.039 131.105 113.143 131.608C112.248 132.111 111.961 133.112 112.464 134.008L117.924 143.773C118.421 144.675 119.422 144.956 120.325 144.453Z" fill="black" stroke="black" stroke-width="0.583068" stroke-miterlimit="10"/> +<defs> +<linearGradient id="paint0_linear_17007_6901" x1="5.71025e-06" y1="330.901" x2="1208" y2="382.21" gradientUnits="userSpaceOnUse"> +<stop stop-color="white" stop-opacity="0.29"/> +<stop offset="1" stop-color="white" stop-opacity="0.12"/> +</linearGradient> +</defs> +</svg> diff --git a/src/assets/cards/Cart Gradient 4.svg b/src/assets/cards/Cart Gradient 4.svg new file mode 100644 index 000000000..605eb3a40 --- /dev/null +++ b/src/assets/cards/Cart Gradient 4.svg @@ -0,0 +1,132 @@ +<svg width="1208" height="765" viewBox="0 0 1208 765" fill="none" xmlns="http://www.w3.org/2000/svg"> +<rect x="2.1533" y="2.1533" width="1203.69" height="760.114" rx="62.4456" fill="#FF90E8" stroke="url(#paint0_linear_17007_2267)" stroke-width="4.3066"/> +<mask id="mask0_17007_2267" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="0" y="0" width="1208" height="765"> +<rect width="1208" height="764.421" rx="64.5989" fill="#FF90E8"/> +</mask> +<g mask="url(#mask0_17007_2267)"> +<mask id="path-3-outside-1_17007_2267" maskUnits="userSpaceOnUse" x="72" y="660.175" width="223" height="35" fill="black"> +<rect fill="white" x="72" y="660.175" width="223" height="35"/> +<path d="M73.4393 693.175V662.558H80.652L89.7572 680.243C89.9675 680.691 90.1568 681.147 90.325 681.609C90.5073 682.058 90.6685 682.507 90.8087 682.955H90.9348C90.9208 682.479 90.9068 682.002 90.8928 681.525C90.8928 681.049 90.8928 680.572 90.8928 680.095V662.558H96.9069V693.175H89.7572L80.5258 675.448C80.3155 675.028 80.1263 674.593 79.9581 674.144C79.7898 673.696 79.6426 673.247 79.5165 672.799H79.3693C79.3973 673.275 79.4113 673.745 79.4113 674.208C79.4253 674.656 79.4323 675.126 79.4323 675.616V693.175H73.4393ZM101.617 681.988V662.558H108.62V682.724C108.62 684.897 109.026 686.432 109.839 687.329C110.652 688.212 111.781 688.654 113.225 688.654C114.627 688.654 115.734 688.212 116.547 687.329C117.374 686.432 117.788 684.897 117.788 682.724V662.558H124.727V681.988C124.727 685.997 123.676 688.948 121.573 690.841C119.484 692.733 116.709 693.68 113.246 693.68C109.727 693.68 106.909 692.733 104.792 690.841C102.676 688.948 101.617 685.997 101.617 681.988ZM127.335 668.046V662.558H151.37V668.046H142.896V693.175H135.83V668.046H127.335ZM152.274 668.046V662.558H176.31V668.046H167.835V693.175H160.77V668.046H152.274ZM186.487 693.175V681.736L176.499 662.558H184.174L189.494 673.072C189.663 673.422 189.817 673.759 189.957 674.081C190.097 674.39 190.23 674.712 190.357 675.049H190.462C190.588 674.712 190.714 674.39 190.84 674.081C190.98 673.773 191.142 673.436 191.324 673.072L196.644 662.558H203.436L193.574 681.567V693.175H186.487ZM222.95 693.175V681.736L212.962 662.558H220.637L225.958 673.072C226.126 673.422 226.28 673.759 226.42 674.081C226.56 674.39 226.694 674.712 226.82 675.049H226.925C227.051 674.712 227.177 674.39 227.303 674.081C227.444 673.773 227.605 673.436 227.787 673.072L233.107 662.558H239.899L230.037 681.567V693.175H222.95ZM239.92 678.75V676.983C239.92 671.908 241.133 668.151 243.558 665.712C245.998 663.273 249.138 662.053 252.979 662.053C256.806 662.053 259.939 663.273 262.379 665.712C264.832 668.151 266.058 671.908 266.058 676.983V678.75C266.058 683.824 264.832 687.582 262.379 690.021C259.939 692.46 256.806 693.68 252.979 693.68C249.138 693.68 245.998 692.46 243.558 690.021C241.133 687.582 239.92 683.824 239.92 678.75ZM247.175 680.243C247.175 683.187 247.694 685.331 248.731 686.677C249.769 688.009 251.184 688.675 252.979 688.675C254.773 688.675 256.189 688.009 257.227 686.677C258.278 685.331 258.804 683.187 258.804 680.243V675.511C258.804 672.567 258.278 670.436 257.227 669.119C256.189 667.787 254.773 667.121 252.979 667.121C251.184 667.121 249.769 667.787 248.731 669.119C247.694 670.436 247.175 672.567 247.175 675.511V680.243ZM269.928 681.988V662.558H276.93V682.724C276.93 684.897 277.337 686.432 278.15 687.329C278.963 688.212 280.091 688.654 281.535 688.654C282.937 688.654 284.045 688.212 284.858 687.329C285.685 686.432 286.098 684.897 286.098 682.724V662.558H293.038V681.988C293.038 685.997 291.986 688.948 289.884 690.841C287.795 692.733 285.019 693.68 281.556 693.68C278.038 693.68 275.22 692.733 273.103 690.841C270.986 688.948 269.928 685.997 269.928 681.988Z"/> +</mask> +<path d="M73.4393 693.175V662.558H80.652L89.7572 680.243C89.9675 680.691 90.1568 681.147 90.325 681.609C90.5073 682.058 90.6685 682.507 90.8087 682.955H90.9348C90.9208 682.479 90.9068 682.002 90.8928 681.525C90.8928 681.049 90.8928 680.572 90.8928 680.095V662.558H96.9069V693.175H89.7572L80.5258 675.448C80.3155 675.028 80.1263 674.593 79.9581 674.144C79.7898 673.696 79.6426 673.247 79.5165 672.799H79.3693C79.3973 673.275 79.4113 673.745 79.4113 674.208C79.4253 674.656 79.4323 675.126 79.4323 675.616V693.175H73.4393ZM101.617 681.988V662.558H108.62V682.724C108.62 684.897 109.026 686.432 109.839 687.329C110.652 688.212 111.781 688.654 113.225 688.654C114.627 688.654 115.734 688.212 116.547 687.329C117.374 686.432 117.788 684.897 117.788 682.724V662.558H124.727V681.988C124.727 685.997 123.676 688.948 121.573 690.841C119.484 692.733 116.709 693.68 113.246 693.68C109.727 693.68 106.909 692.733 104.792 690.841C102.676 688.948 101.617 685.997 101.617 681.988ZM127.335 668.046V662.558H151.37V668.046H142.896V693.175H135.83V668.046H127.335ZM152.274 668.046V662.558H176.31V668.046H167.835V693.175H160.77V668.046H152.274ZM186.487 693.175V681.736L176.499 662.558H184.174L189.494 673.072C189.663 673.422 189.817 673.759 189.957 674.081C190.097 674.39 190.23 674.712 190.357 675.049H190.462C190.588 674.712 190.714 674.39 190.84 674.081C190.98 673.773 191.142 673.436 191.324 673.072L196.644 662.558H203.436L193.574 681.567V693.175H186.487ZM222.95 693.175V681.736L212.962 662.558H220.637L225.958 673.072C226.126 673.422 226.28 673.759 226.42 674.081C226.56 674.39 226.694 674.712 226.82 675.049H226.925C227.051 674.712 227.177 674.39 227.303 674.081C227.444 673.773 227.605 673.436 227.787 673.072L233.107 662.558H239.899L230.037 681.567V693.175H222.95ZM239.92 678.75V676.983C239.92 671.908 241.133 668.151 243.558 665.712C245.998 663.273 249.138 662.053 252.979 662.053C256.806 662.053 259.939 663.273 262.379 665.712C264.832 668.151 266.058 671.908 266.058 676.983V678.75C266.058 683.824 264.832 687.582 262.379 690.021C259.939 692.46 256.806 693.68 252.979 693.68C249.138 693.68 245.998 692.46 243.558 690.021C241.133 687.582 239.92 683.824 239.92 678.75ZM247.175 680.243C247.175 683.187 247.694 685.331 248.731 686.677C249.769 688.009 251.184 688.675 252.979 688.675C254.773 688.675 256.189 688.009 257.227 686.677C258.278 685.331 258.804 683.187 258.804 680.243V675.511C258.804 672.567 258.278 670.436 257.227 669.119C256.189 667.787 254.773 667.121 252.979 667.121C251.184 667.121 249.769 667.787 248.731 669.119C247.694 670.436 247.175 672.567 247.175 675.511V680.243ZM269.928 681.988V662.558H276.93V682.724C276.93 684.897 277.337 686.432 278.15 687.329C278.963 688.212 280.091 688.654 281.535 688.654C282.937 688.654 284.045 688.212 284.858 687.329C285.685 686.432 286.098 684.897 286.098 682.724V662.558H293.038V681.988C293.038 685.997 291.986 688.948 289.884 690.841C287.795 692.733 285.019 693.68 281.556 693.68C278.038 693.68 275.22 692.733 273.103 690.841C270.986 688.948 269.928 685.997 269.928 681.988Z" fill="white"/> +<path d="M73.4393 693.175H72.4393V694.175H73.4393V693.175ZM73.4393 662.558V661.558H72.4393V662.558H73.4393ZM80.652 662.558L81.5411 662.1L81.2619 661.558H80.652V662.558ZM89.7572 680.243L90.6627 679.818L90.6548 679.801L90.6463 679.785L89.7572 680.243ZM90.325 681.609L89.3852 681.951L89.3916 681.969L89.3985 681.986L90.325 681.609ZM90.8087 682.955L89.8542 683.254L90.0735 683.955H90.8087V682.955ZM90.9348 682.955V683.955H91.9647L91.9344 682.926L90.9348 682.955ZM90.8928 681.525H89.8928V681.54L89.8932 681.555L90.8928 681.525ZM90.8928 662.558V661.558H89.8928V662.558H90.8928ZM96.9069 662.558H97.9069V661.558H96.9069V662.558ZM96.9069 693.175V694.175H97.9069V693.175H96.9069ZM89.7572 693.175L88.8703 693.637L89.1505 694.175H89.7572V693.175ZM80.5258 675.448L79.6314 675.895L79.6351 675.903L79.6389 675.91L80.5258 675.448ZM79.5165 672.799L80.4791 672.528L80.274 671.799H79.5165V672.799ZM79.3693 672.799V671.799H78.3087L78.371 672.857L79.3693 672.799ZM79.4113 674.208H78.4113V674.223L78.4118 674.239L79.4113 674.208ZM79.4323 693.175V694.175H80.4323V693.175H79.4323ZM73.4393 693.175H74.4393V662.558H73.4393H72.4393V693.175H73.4393ZM73.4393 662.558V663.558H80.652V662.558V661.558H73.4393V662.558ZM80.652 662.558L79.7629 663.016L88.8682 680.7L89.7572 680.243L90.6463 679.785L81.5411 662.1L80.652 662.558ZM89.7572 680.243L88.8518 680.667C89.0495 681.089 89.2273 681.517 89.3852 681.951L90.325 681.609L91.2648 681.268C91.0863 680.777 90.8856 680.294 90.6627 679.818L89.7572 680.243ZM90.325 681.609L89.3985 681.986C89.5707 682.41 89.7225 682.832 89.8542 683.254L90.8087 682.955L91.7631 682.657C91.6145 682.181 91.4438 681.707 91.2515 681.233L90.325 681.609ZM90.8087 682.955V683.955H90.9348V682.955V681.955H90.8087V682.955ZM90.9348 682.955L91.9344 682.926C91.9327 682.868 91.9308 682.805 91.9291 682.747C91.9274 682.69 91.9256 682.626 91.9239 682.568C91.9222 682.511 91.9203 682.447 91.9186 682.39C91.9169 682.332 91.9151 682.269 91.9134 682.211C91.9093 682.071 91.907 681.993 91.9029 681.853C91.8987 681.714 91.8965 681.636 91.8923 681.496L90.8928 681.525L89.8932 681.555C89.895 681.615 89.8967 681.673 89.8985 681.734C89.9002 681.794 89.9019 681.852 89.9037 681.912C89.9055 681.973 89.9072 682.031 89.909 682.091C89.9108 682.151 89.9125 682.209 89.9142 682.27C89.9182 682.406 89.9207 682.491 89.9247 682.627C89.9287 682.763 89.9313 682.849 89.9353 682.985L90.9348 682.955ZM90.8928 681.525H91.8928C91.8928 681.524 91.8928 681.524 91.8928 681.523C91.8928 681.522 91.8928 681.521 91.8928 681.52C91.8928 681.519 91.8928 681.518 91.8928 681.517C91.8928 681.516 91.8928 681.515 91.8928 681.514C91.8928 681.513 91.8928 681.512 91.8928 681.511C91.8928 681.51 91.8928 681.51 91.8928 681.509C91.8928 681.508 91.8928 681.507 91.8928 681.506C91.8928 681.505 91.8928 681.504 91.8928 681.503C91.8928 681.502 91.8928 681.501 91.8928 681.5C91.8928 681.499 91.8928 681.498 91.8928 681.497C91.8928 681.497 91.8928 681.496 91.8928 681.495C91.8928 681.494 91.8928 681.493 91.8928 681.492C91.8928 681.491 91.8928 681.49 91.8928 681.489C91.8928 681.488 91.8928 681.487 91.8928 681.486C91.8928 681.485 91.8928 681.484 91.8928 681.483C91.8928 681.483 91.8928 681.482 91.8928 681.481C91.8928 681.48 91.8928 681.479 91.8928 681.478C91.8928 681.477 91.8928 681.476 91.8928 681.475C91.8928 681.474 91.8928 681.473 91.8928 681.472C91.8928 681.471 91.8928 681.47 91.8928 681.47C91.8928 681.469 91.8928 681.468 91.8928 681.467C91.8928 681.466 91.8928 681.465 91.8928 681.464C91.8928 681.463 91.8928 681.462 91.8928 681.461C91.8928 681.46 91.8928 681.459 91.8928 681.458C91.8928 681.457 91.8928 681.456 91.8928 681.456C91.8928 681.455 91.8928 681.454 91.8928 681.453C91.8928 681.452 91.8928 681.451 91.8928 681.45C91.8928 681.449 91.8928 681.448 91.8928 681.447C91.8928 681.446 91.8928 681.445 91.8928 681.444C91.8928 681.443 91.8928 681.443 91.8928 681.442C91.8928 681.441 91.8928 681.44 91.8928 681.439C91.8928 681.438 91.8928 681.437 91.8928 681.436C91.8928 681.435 91.8928 681.434 91.8928 681.433C91.8928 681.432 91.8928 681.431 91.8928 681.43C91.8928 681.429 91.8928 681.429 91.8928 681.428C91.8928 681.427 91.8928 681.426 91.8928 681.425C91.8928 681.424 91.8928 681.423 91.8928 681.422C91.8928 681.421 91.8928 681.42 91.8928 681.419C91.8928 681.418 91.8928 681.417 91.8928 681.416C91.8928 681.416 91.8928 681.415 91.8928 681.414C91.8928 681.413 91.8928 681.412 91.8928 681.411C91.8928 681.41 91.8928 681.409 91.8928 681.408C91.8928 681.407 91.8928 681.406 91.8928 681.405C91.8928 681.404 91.8928 681.403 91.8928 681.402C91.8928 681.402 91.8928 681.401 91.8928 681.4C91.8928 681.399 91.8928 681.398 91.8928 681.397C91.8928 681.396 91.8928 681.395 91.8928 681.394C91.8928 681.393 91.8928 681.392 91.8928 681.391C91.8928 681.39 91.8928 681.389 91.8928 681.389C91.8928 681.388 91.8928 681.387 91.8928 681.386C91.8928 681.385 91.8928 681.384 91.8928 681.383C91.8928 681.382 91.8928 681.381 91.8928 681.38C91.8928 681.379 91.8928 681.378 91.8928 681.377C91.8928 681.376 91.8928 681.375 91.8928 681.375C91.8928 681.374 91.8928 681.373 91.8928 681.372C91.8928 681.371 91.8928 681.37 91.8928 681.369C91.8928 681.368 91.8928 681.367 91.8928 681.366C91.8928 681.365 91.8928 681.364 91.8928 681.363C91.8928 681.362 91.8928 681.362 91.8928 681.361C91.8928 681.36 91.8928 681.359 91.8928 681.358C91.8928 681.357 91.8928 681.356 91.8928 681.355C91.8928 681.354 91.8928 681.353 91.8928 681.352C91.8928 681.351 91.8928 681.35 91.8928 681.349C91.8928 681.348 91.8928 681.348 91.8928 681.347C91.8928 681.346 91.8928 681.345 91.8928 681.344C91.8928 681.343 91.8928 681.342 91.8928 681.341C91.8928 681.34 91.8928 681.339 91.8928 681.338C91.8928 681.337 91.8928 681.336 91.8928 681.335C91.8928 681.335 91.8928 681.334 91.8928 681.333C91.8928 681.332 91.8928 681.331 91.8928 681.33C91.8928 681.329 91.8928 681.328 91.8928 681.327C91.8928 681.326 91.8928 681.325 91.8928 681.324C91.8928 681.323 91.8928 681.322 91.8928 681.321C91.8928 681.321 91.8928 681.32 91.8928 681.319C91.8928 681.318 91.8928 681.317 91.8928 681.316C91.8928 681.315 91.8928 681.314 91.8928 681.313C91.8928 681.312 91.8928 681.311 91.8928 681.31C91.8928 681.309 91.8928 681.308 91.8928 681.308C91.8928 681.307 91.8928 681.306 91.8928 681.305C91.8928 681.304 91.8928 681.303 91.8928 681.302C91.8928 681.301 91.8928 681.3 91.8928 681.299C91.8928 681.298 91.8928 681.297 91.8928 681.296C91.8928 681.295 91.8928 681.294 91.8928 681.294C91.8928 681.293 91.8928 681.292 91.8928 681.291C91.8928 681.29 91.8928 681.289 91.8928 681.288C91.8928 681.287 91.8928 681.286 91.8928 681.285C91.8928 681.284 91.8928 681.283 91.8928 681.282C91.8928 681.281 91.8928 681.281 91.8928 681.28C91.8928 681.279 91.8928 681.278 91.8928 681.277C91.8928 681.276 91.8928 681.275 91.8928 681.274C91.8928 681.273 91.8928 681.272 91.8928 681.271C91.8928 681.27 91.8928 681.269 91.8928 681.268C91.8928 681.268 91.8928 681.267 91.8928 681.266C91.8928 681.265 91.8928 681.264 91.8928 681.263C91.8928 681.262 91.8928 681.261 91.8928 681.26C91.8928 681.259 91.8928 681.258 91.8928 681.257C91.8928 681.256 91.8928 681.255 91.8928 681.254C91.8928 681.254 91.8928 681.253 91.8928 681.252C91.8928 681.251 91.8928 681.25 91.8928 681.249C91.8928 681.248 91.8928 681.247 91.8928 681.246C91.8928 681.245 91.8928 681.244 91.8928 681.243C91.8928 681.242 91.8928 681.241 91.8928 681.241C91.8928 681.24 91.8928 681.239 91.8928 681.238C91.8928 681.237 91.8928 681.236 91.8928 681.235C91.8928 681.234 91.8928 681.233 91.8928 681.232C91.8928 681.231 91.8928 681.23 91.8928 681.229C91.8928 681.228 91.8928 681.227 91.8928 681.227C91.8928 681.226 91.8928 681.225 91.8928 681.224C91.8928 681.223 91.8928 681.222 91.8928 681.221C91.8928 681.22 91.8928 681.219 91.8928 681.218C91.8928 681.217 91.8928 681.216 91.8928 681.215C91.8928 681.214 91.8928 681.214 91.8928 681.213C91.8928 681.212 91.8928 681.211 91.8928 681.21C91.8928 681.209 91.8928 681.208 91.8928 681.207C91.8928 681.206 91.8928 681.205 91.8928 681.204C91.8928 681.203 91.8928 681.202 91.8928 681.201C91.8928 681.2 91.8928 681.2 91.8928 681.199C91.8928 681.198 91.8928 681.197 91.8928 681.196C91.8928 681.195 91.8928 681.194 91.8928 681.193C91.8928 681.192 91.8928 681.191 91.8928 681.19C91.8928 681.189 91.8928 681.188 91.8928 681.187C91.8928 681.187 91.8928 681.186 91.8928 681.185C91.8928 681.184 91.8928 681.183 91.8928 681.182C91.8928 681.181 91.8928 681.18 91.8928 681.179C91.8928 681.178 91.8928 681.177 91.8928 681.176C91.8928 681.175 91.8928 681.174 91.8928 681.173C91.8928 681.173 91.8928 681.172 91.8928 681.171C91.8928 681.17 91.8928 681.169 91.8928 681.168C91.8928 681.167 91.8928 681.166 91.8928 681.165C91.8928 681.164 91.8928 681.163 91.8928 681.162C91.8928 681.161 91.8928 681.16 91.8928 681.16C91.8928 681.159 91.8928 681.158 91.8928 681.157C91.8928 681.156 91.8928 681.155 91.8928 681.154C91.8928 681.153 91.8928 681.152 91.8928 681.151C91.8928 681.15 91.8928 681.149 91.8928 681.148C91.8928 681.147 91.8928 681.146 91.8928 681.146C91.8928 681.145 91.8928 681.144 91.8928 681.143C91.8928 681.142 91.8928 681.141 91.8928 681.14C91.8928 681.139 91.8928 681.138 91.8928 681.137C91.8928 681.136 91.8928 681.135 91.8928 681.134C91.8928 681.133 91.8928 681.133 91.8928 681.132C91.8928 681.131 91.8928 681.13 91.8928 681.129C91.8928 681.128 91.8928 681.127 91.8928 681.126C91.8928 681.125 91.8928 681.124 91.8928 681.123C91.8928 681.122 91.8928 681.121 91.8928 681.12C91.8928 681.119 91.8928 681.119 91.8928 681.118C91.8928 681.117 91.8928 681.116 91.8928 681.115C91.8928 681.114 91.8928 681.113 91.8928 681.112C91.8928 681.111 91.8928 681.11 91.8928 681.109C91.8928 681.108 91.8928 681.107 91.8928 681.106C91.8928 681.106 91.8928 681.105 91.8928 681.104C91.8928 681.103 91.8928 681.102 91.8928 681.101C91.8928 681.1 91.8928 681.099 91.8928 681.098C91.8928 681.097 91.8928 681.096 91.8928 681.095C91.8928 681.094 91.8928 681.093 91.8928 681.092C91.8928 681.092 91.8928 681.091 91.8928 681.09C91.8928 681.089 91.8928 681.088 91.8928 681.087C91.8928 681.086 91.8928 681.085 91.8928 681.084C91.8928 681.083 91.8928 681.082 91.8928 681.081C91.8928 681.08 91.8928 681.079 91.8928 681.079C91.8928 681.078 91.8928 681.077 91.8928 681.076C91.8928 681.075 91.8928 681.074 91.8928 681.073C91.8928 681.072 91.8928 681.071 91.8928 681.07C91.8928 681.069 91.8928 681.068 91.8928 681.067C91.8928 681.066 91.8928 681.065 91.8928 681.065C91.8928 681.064 91.8928 681.063 91.8928 681.062C91.8928 681.061 91.8928 681.06 91.8928 681.059C91.8928 681.058 91.8928 681.057 91.8928 681.056C91.8928 681.055 91.8928 681.054 91.8928 681.053C91.8928 681.052 91.8928 681.052 91.8928 681.051C91.8928 681.05 91.8928 681.049 91.8928 681.048C91.8928 681.047 91.8928 681.046 91.8928 681.045C91.8928 681.044 91.8928 681.043 91.8928 681.042C91.8928 681.041 91.8928 681.04 91.8928 681.039C91.8928 681.038 91.8928 681.038 91.8928 681.037C91.8928 681.036 91.8928 681.035 91.8928 681.034C91.8928 681.033 91.8928 681.032 91.8928 681.031C91.8928 681.03 91.8928 681.029 91.8928 681.028C91.8928 681.027 91.8928 681.026 91.8928 681.025C91.8928 681.025 91.8928 681.024 91.8928 681.023C91.8928 681.022 91.8928 681.021 91.8928 681.02C91.8928 681.019 91.8928 681.018 91.8928 681.017C91.8928 681.016 91.8928 681.015 91.8928 681.014C91.8928 681.013 91.8928 681.012 91.8928 681.011C91.8928 681.011 91.8928 681.01 91.8928 681.009C91.8928 681.008 91.8928 681.007 91.8928 681.006C91.8928 681.005 91.8928 681.004 91.8928 681.003C91.8928 681.002 91.8928 681.001 91.8928 681C91.8928 680.999 91.8928 680.998 91.8928 680.998C91.8928 680.997 91.8928 680.996 91.8928 680.995C91.8928 680.994 91.8928 680.993 91.8928 680.992C91.8928 680.991 91.8928 680.99 91.8928 680.989C91.8928 680.988 91.8928 680.987 91.8928 680.986C91.8928 680.985 91.8928 680.984 91.8928 680.984C91.8928 680.983 91.8928 680.982 91.8928 680.981C91.8928 680.98 91.8928 680.979 91.8928 680.978C91.8928 680.977 91.8928 680.976 91.8928 680.975C91.8928 680.974 91.8928 680.973 91.8928 680.972C91.8928 680.971 91.8928 680.971 91.8928 680.97C91.8928 680.969 91.8928 680.968 91.8928 680.967C91.8928 680.966 91.8928 680.965 91.8928 680.964C91.8928 680.963 91.8928 680.962 91.8928 680.961C91.8928 680.96 91.8928 680.959 91.8928 680.958C91.8928 680.957 91.8928 680.957 91.8928 680.956C91.8928 680.955 91.8928 680.954 91.8928 680.953C91.8928 680.952 91.8928 680.951 91.8928 680.95C91.8928 680.949 91.8928 680.948 91.8928 680.947C91.8928 680.946 91.8928 680.945 91.8928 680.944C91.8928 680.944 91.8928 680.943 91.8928 680.942C91.8928 680.941 91.8928 680.94 91.8928 680.939C91.8928 680.938 91.8928 680.937 91.8928 680.936C91.8928 680.935 91.8928 680.934 91.8928 680.933C91.8928 680.932 91.8928 680.931 91.8928 680.931C91.8928 680.93 91.8928 680.929 91.8928 680.928C91.8928 680.927 91.8928 680.926 91.8928 680.925C91.8928 680.924 91.8928 680.923 91.8928 680.922C91.8928 680.921 91.8928 680.92 91.8928 680.919C91.8928 680.918 91.8928 680.917 91.8928 680.917C91.8928 680.916 91.8928 680.915 91.8928 680.914C91.8928 680.913 91.8928 680.912 91.8928 680.911C91.8928 680.91 91.8928 680.909 91.8928 680.908C91.8928 680.907 91.8928 680.906 91.8928 680.905C91.8928 680.904 91.8928 680.904 91.8928 680.903C91.8928 680.902 91.8928 680.901 91.8928 680.9C91.8928 680.899 91.8928 680.898 91.8928 680.897C91.8928 680.896 91.8928 680.895 91.8928 680.894C91.8928 680.893 91.8928 680.892 91.8928 680.891C91.8928 680.89 91.8928 680.89 91.8928 680.889C91.8928 680.888 91.8928 680.887 91.8928 680.886C91.8928 680.885 91.8928 680.884 91.8928 680.883C91.8928 680.882 91.8928 680.881 91.8928 680.88C91.8928 680.879 91.8928 680.878 91.8928 680.877C91.8928 680.877 91.8928 680.876 91.8928 680.875C91.8928 680.874 91.8928 680.873 91.8928 680.872C91.8928 680.871 91.8928 680.87 91.8928 680.869C91.8928 680.868 91.8928 680.867 91.8928 680.866C91.8928 680.865 91.8928 680.864 91.8928 680.863C91.8928 680.863 91.8928 680.862 91.8928 680.861C91.8928 680.86 91.8928 680.859 91.8928 680.858C91.8928 680.857 91.8928 680.856 91.8928 680.855C91.8928 680.854 91.8928 680.853 91.8928 680.852C91.8928 680.851 91.8928 680.85 91.8928 680.85C91.8928 680.849 91.8928 680.848 91.8928 680.847C91.8928 680.846 91.8928 680.845 91.8928 680.844C91.8928 680.843 91.8928 680.842 91.8928 680.841C91.8928 680.84 91.8928 680.839 91.8928 680.838C91.8928 680.837 91.8928 680.836 91.8928 680.836C91.8928 680.835 91.8928 680.834 91.8928 680.833C91.8928 680.832 91.8928 680.831 91.8928 680.83C91.8928 680.829 91.8928 680.828 91.8928 680.827C91.8928 680.826 91.8928 680.825 91.8928 680.824C91.8928 680.823 91.8928 680.823 91.8928 680.822C91.8928 680.821 91.8928 680.82 91.8928 680.819C91.8928 680.818 91.8928 680.817 91.8928 680.816C91.8928 680.815 91.8928 680.814 91.8928 680.813C91.8928 680.812 91.8928 680.811 91.8928 680.81C91.8928 680.809 91.8928 680.809 91.8928 680.808C91.8928 680.807 91.8928 680.806 91.8928 680.805C91.8928 680.804 91.8928 680.803 91.8928 680.802C91.8928 680.801 91.8928 680.8 91.8928 680.799C91.8928 680.798 91.8928 680.797 91.8928 680.796C91.8928 680.796 91.8928 680.795 91.8928 680.794C91.8928 680.793 91.8928 680.792 91.8928 680.791C91.8928 680.79 91.8928 680.789 91.8928 680.788C91.8928 680.787 91.8928 680.786 91.8928 680.785C91.8928 680.784 91.8928 680.783 91.8928 680.782C91.8928 680.782 91.8928 680.781 91.8928 680.78C91.8928 680.779 91.8928 680.778 91.8928 680.777C91.8928 680.776 91.8928 680.775 91.8928 680.774C91.8928 680.773 91.8928 680.772 91.8928 680.771C91.8928 680.77 91.8928 680.769 91.8928 680.769C91.8928 680.768 91.8928 680.767 91.8928 680.766C91.8928 680.765 91.8928 680.764 91.8928 680.763C91.8928 680.762 91.8928 680.761 91.8928 680.76C91.8928 680.759 91.8928 680.758 91.8928 680.757C91.8928 680.756 91.8928 680.755 91.8928 680.755C91.8928 680.754 91.8928 680.753 91.8928 680.752C91.8928 680.751 91.8928 680.75 91.8928 680.749C91.8928 680.748 91.8928 680.747 91.8928 680.746C91.8928 680.745 91.8928 680.744 91.8928 680.743C91.8928 680.742 91.8928 680.742 91.8928 680.741C91.8928 680.74 91.8928 680.739 91.8928 680.738C91.8928 680.737 91.8928 680.736 91.8928 680.735C91.8928 680.734 91.8928 680.733 91.8928 680.732C91.8928 680.731 91.8928 680.73 91.8928 680.729C91.8928 680.728 91.8928 680.728 91.8928 680.727C91.8928 680.726 91.8928 680.725 91.8928 680.724C91.8928 680.723 91.8928 680.722 91.8928 680.721C91.8928 680.72 91.8928 680.719 91.8928 680.718C91.8928 680.717 91.8928 680.716 91.8928 680.715C91.8928 680.715 91.8928 680.714 91.8928 680.713C91.8928 680.712 91.8928 680.711 91.8928 680.71C91.8928 680.709 91.8928 680.708 91.8928 680.707C91.8928 680.706 91.8928 680.705 91.8928 680.704C91.8928 680.703 91.8928 680.702 91.8928 680.701C91.8928 680.701 91.8928 680.7 91.8928 680.699C91.8928 680.698 91.8928 680.697 91.8928 680.696C91.8928 680.695 91.8928 680.694 91.8928 680.693C91.8928 680.692 91.8928 680.691 91.8928 680.69C91.8928 680.689 91.8928 680.688 91.8928 680.688C91.8928 680.687 91.8928 680.686 91.8928 680.685C91.8928 680.684 91.8928 680.683 91.8928 680.682C91.8928 680.681 91.8928 680.68 91.8928 680.679C91.8928 680.678 91.8928 680.677 91.8928 680.676C91.8928 680.675 91.8928 680.674 91.8928 680.674C91.8928 680.673 91.8928 680.672 91.8928 680.671C91.8928 680.67 91.8928 680.669 91.8928 680.668C91.8928 680.667 91.8928 680.666 91.8928 680.665C91.8928 680.664 91.8928 680.663 91.8928 680.662C91.8928 680.661 91.8928 680.661 91.8928 680.66C91.8928 680.659 91.8928 680.658 91.8928 680.657C91.8928 680.656 91.8928 680.655 91.8928 680.654C91.8928 680.653 91.8928 680.652 91.8928 680.651C91.8928 680.65 91.8928 680.649 91.8928 680.648C91.8928 680.647 91.8928 680.647 91.8928 680.646C91.8928 680.645 91.8928 680.644 91.8928 680.643C91.8928 680.642 91.8928 680.641 91.8928 680.64C91.8928 680.639 91.8928 680.638 91.8928 680.637C91.8928 680.636 91.8928 680.635 91.8928 680.634C91.8928 680.634 91.8928 680.633 91.8928 680.632C91.8928 680.631 91.8928 680.63 91.8928 680.629C91.8928 680.628 91.8928 680.627 91.8928 680.626C91.8928 680.625 91.8928 680.624 91.8928 680.623C91.8928 680.622 91.8928 680.621 91.8928 680.62C91.8928 680.62 91.8928 680.619 91.8928 680.618C91.8928 680.617 91.8928 680.616 91.8928 680.615C91.8928 680.614 91.8928 680.613 91.8928 680.612C91.8928 680.611 91.8928 680.61 91.8928 680.609C91.8928 680.608 91.8928 680.607 91.8928 680.607C91.8928 680.606 91.8928 680.605 91.8928 680.604C91.8928 680.603 91.8928 680.602 91.8928 680.601C91.8928 680.6 91.8928 680.599 91.8928 680.598C91.8928 680.597 91.8928 680.596 91.8928 680.595C91.8928 680.594 91.8928 680.594 91.8928 680.593C91.8928 680.592 91.8928 680.591 91.8928 680.59C91.8928 680.589 91.8928 680.588 91.8928 680.587C91.8928 680.586 91.8928 680.585 91.8928 680.584C91.8928 680.583 91.8928 680.582 91.8928 680.581C91.8928 680.58 91.8928 680.58 91.8928 680.579C91.8928 680.578 91.8928 680.577 91.8928 680.576C91.8928 680.575 91.8928 680.574 91.8928 680.573C91.8928 680.572 91.8928 680.571 91.8928 680.57C91.8928 680.569 91.8928 680.568 91.8928 680.567C91.8928 680.567 91.8928 680.566 91.8928 680.565C91.8928 680.564 91.8928 680.563 91.8928 680.562C91.8928 680.561 91.8928 680.56 91.8928 680.559C91.8928 680.558 91.8928 680.557 91.8928 680.556C91.8928 680.555 91.8928 680.554 91.8928 680.553C91.8928 680.553 91.8928 680.552 91.8928 680.551C91.8928 680.55 91.8928 680.549 91.8928 680.548C91.8928 680.547 91.8928 680.546 91.8928 680.545C91.8928 680.544 91.8928 680.543 91.8928 680.542C91.8928 680.541 91.8928 680.54 91.8928 680.54C91.8928 680.539 91.8928 680.538 91.8928 680.537C91.8928 680.536 91.8928 680.535 91.8928 680.534C91.8928 680.533 91.8928 680.532 91.8928 680.531C91.8928 680.53 91.8928 680.529 91.8928 680.528C91.8928 680.527 91.8928 680.526 91.8928 680.526C91.8928 680.525 91.8928 680.524 91.8928 680.523C91.8928 680.522 91.8928 680.521 91.8928 680.52C91.8928 680.519 91.8928 680.518 91.8928 680.517C91.8928 680.516 91.8928 680.515 91.8928 680.514C91.8928 680.513 91.8928 680.513 91.8928 680.512C91.8928 680.511 91.8928 680.51 91.8928 680.509C91.8928 680.508 91.8928 680.507 91.8928 680.506C91.8928 680.505 91.8928 680.504 91.8928 680.503C91.8928 680.502 91.8928 680.501 91.8928 680.5C91.8928 680.499 91.8928 680.499 91.8928 680.498C91.8928 680.497 91.8928 680.496 91.8928 680.495C91.8928 680.494 91.8928 680.493 91.8928 680.492C91.8928 680.491 91.8928 680.49 91.8928 680.489C91.8928 680.488 91.8928 680.487 91.8928 680.486C91.8928 680.486 91.8928 680.485 91.8928 680.484C91.8928 680.483 91.8928 680.482 91.8928 680.481C91.8928 680.48 91.8928 680.479 91.8928 680.478C91.8928 680.477 91.8928 680.476 91.8928 680.475C91.8928 680.474 91.8928 680.473 91.8928 680.472C91.8928 680.472 91.8928 680.471 91.8928 680.47C91.8928 680.469 91.8928 680.468 91.8928 680.467C91.8928 680.466 91.8928 680.465 91.8928 680.464C91.8928 680.463 91.8928 680.462 91.8928 680.461C91.8928 680.46 91.8928 680.459 91.8928 680.459C91.8928 680.458 91.8928 680.457 91.8928 680.456C91.8928 680.455 91.8928 680.454 91.8928 680.453C91.8928 680.452 91.8928 680.451 91.8928 680.45C91.8928 680.449 91.8928 680.448 91.8928 680.447C91.8928 680.446 91.8928 680.445 91.8928 680.445C91.8928 680.444 91.8928 680.443 91.8928 680.442C91.8928 680.441 91.8928 680.44 91.8928 680.439C91.8928 680.438 91.8928 680.437 91.8928 680.436C91.8928 680.435 91.8928 680.434 91.8928 680.433C91.8928 680.432 91.8928 680.432 91.8928 680.431C91.8928 680.43 91.8928 680.429 91.8928 680.428C91.8928 680.427 91.8928 680.426 91.8928 680.425C91.8928 680.424 91.8928 680.423 91.8928 680.422C91.8928 680.421 91.8928 680.42 91.8928 680.419C91.8928 680.418 91.8928 680.418 91.8928 680.417C91.8928 680.416 91.8928 680.415 91.8928 680.414C91.8928 680.413 91.8928 680.412 91.8928 680.411C91.8928 680.41 91.8928 680.409 91.8928 680.408C91.8928 680.407 91.8928 680.406 91.8928 680.405C91.8928 680.405 91.8928 680.404 91.8928 680.403C91.8928 680.402 91.8928 680.401 91.8928 680.4C91.8928 680.399 91.8928 680.398 91.8928 680.397C91.8928 680.396 91.8928 680.395 91.8928 680.394C91.8928 680.393 91.8928 680.392 91.8928 680.391C91.8928 680.391 91.8928 680.39 91.8928 680.389C91.8928 680.388 91.8928 680.387 91.8928 680.386C91.8928 680.385 91.8928 680.384 91.8928 680.383C91.8928 680.382 91.8928 680.381 91.8928 680.38C91.8928 680.379 91.8928 680.378 91.8928 680.378C91.8928 680.377 91.8928 680.376 91.8928 680.375C91.8928 680.374 91.8928 680.373 91.8928 680.372C91.8928 680.371 91.8928 680.37 91.8928 680.369C91.8928 680.368 91.8928 680.367 91.8928 680.366C91.8928 680.365 91.8928 680.364 91.8928 680.364C91.8928 680.363 91.8928 680.362 91.8928 680.361C91.8928 680.36 91.8928 680.359 91.8928 680.358C91.8928 680.357 91.8928 680.356 91.8928 680.355C91.8928 680.354 91.8928 680.353 91.8928 680.352C91.8928 680.351 91.8928 680.351 91.8928 680.35C91.8928 680.349 91.8928 680.348 91.8928 680.347C91.8928 680.346 91.8928 680.345 91.8928 680.344C91.8928 680.343 91.8928 680.342 91.8928 680.341C91.8928 680.34 91.8928 680.339 91.8928 680.338C91.8928 680.337 91.8928 680.337 91.8928 680.336C91.8928 680.335 91.8928 680.334 91.8928 680.333C91.8928 680.332 91.8928 680.331 91.8928 680.33C91.8928 680.329 91.8928 680.328 91.8928 680.327C91.8928 680.326 91.8928 680.325 91.8928 680.324C91.8928 680.324 91.8928 680.323 91.8928 680.322C91.8928 680.321 91.8928 680.32 91.8928 680.319C91.8928 680.318 91.8928 680.317 91.8928 680.316C91.8928 680.315 91.8928 680.314 91.8928 680.313C91.8928 680.312 91.8928 680.311 91.8928 680.31C91.8928 680.31 91.8928 680.309 91.8928 680.308C91.8928 680.307 91.8928 680.306 91.8928 680.305C91.8928 680.304 91.8928 680.303 91.8928 680.302C91.8928 680.301 91.8928 680.3 91.8928 680.299C91.8928 680.298 91.8928 680.297 91.8928 680.297C91.8928 680.296 91.8928 680.295 91.8928 680.294C91.8928 680.293 91.8928 680.292 91.8928 680.291C91.8928 680.29 91.8928 680.289 91.8928 680.288C91.8928 680.287 91.8928 680.286 91.8928 680.285C91.8928 680.284 91.8928 680.283 91.8928 680.283C91.8928 680.282 91.8928 680.281 91.8928 680.28C91.8928 680.279 91.8928 680.278 91.8928 680.277C91.8928 680.276 91.8928 680.275 91.8928 680.274C91.8928 680.273 91.8928 680.272 91.8928 680.271C91.8928 680.27 91.8928 680.27 91.8928 680.269C91.8928 680.268 91.8928 680.267 91.8928 680.266C91.8928 680.265 91.8928 680.264 91.8928 680.263C91.8928 680.262 91.8928 680.261 91.8928 680.26C91.8928 680.259 91.8928 680.258 91.8928 680.257C91.8928 680.257 91.8928 680.256 91.8928 680.255C91.8928 680.254 91.8928 680.253 91.8928 680.252C91.8928 680.251 91.8928 680.25 91.8928 680.249C91.8928 680.248 91.8928 680.247 91.8928 680.246C91.8928 680.245 91.8928 680.244 91.8928 680.243C91.8928 680.243 91.8928 680.242 91.8928 680.241C91.8928 680.24 91.8928 680.239 91.8928 680.238C91.8928 680.237 91.8928 680.236 91.8928 680.235C91.8928 680.234 91.8928 680.233 91.8928 680.232C91.8928 680.231 91.8928 680.23 91.8928 680.23C91.8928 680.229 91.8928 680.228 91.8928 680.227C91.8928 680.226 91.8928 680.225 91.8928 680.224C91.8928 680.223 91.8928 680.222 91.8928 680.221C91.8928 680.22 91.8928 680.219 91.8928 680.218C91.8928 680.217 91.8928 680.216 91.8928 680.216C91.8928 680.215 91.8928 680.214 91.8928 680.213C91.8928 680.212 91.8928 680.211 91.8928 680.21C91.8928 680.209 91.8928 680.208 91.8928 680.207C91.8928 680.206 91.8928 680.205 91.8928 680.204C91.8928 680.203 91.8928 680.203 91.8928 680.202C91.8928 680.201 91.8928 680.2 91.8928 680.199C91.8928 680.198 91.8928 680.197 91.8928 680.196C91.8928 680.195 91.8928 680.194 91.8928 680.193C91.8928 680.192 91.8928 680.191 91.8928 680.19C91.8928 680.189 91.8928 680.189 91.8928 680.188C91.8928 680.187 91.8928 680.186 91.8928 680.185C91.8928 680.184 91.8928 680.183 91.8928 680.182C91.8928 680.181 91.8928 680.18 91.8928 680.179C91.8928 680.178 91.8928 680.177 91.8928 680.176C91.8928 680.176 91.8928 680.175 91.8928 680.174C91.8928 680.173 91.8928 680.172 91.8928 680.171C91.8928 680.17 91.8928 680.169 91.8928 680.168C91.8928 680.167 91.8928 680.166 91.8928 680.165C91.8928 680.164 91.8928 680.163 91.8928 680.162C91.8928 680.162 91.8928 680.161 91.8928 680.16C91.8928 680.159 91.8928 680.158 91.8928 680.157C91.8928 680.156 91.8928 680.155 91.8928 680.154C91.8928 680.153 91.8928 680.152 91.8928 680.151C91.8928 680.15 91.8928 680.149 91.8928 680.149C91.8928 680.148 91.8928 680.147 91.8928 680.146C91.8928 680.145 91.8928 680.144 91.8928 680.143C91.8928 680.142 91.8928 680.141 91.8928 680.14C91.8928 680.139 91.8928 680.138 91.8928 680.137C91.8928 680.136 91.8928 680.135 91.8928 680.135C91.8928 680.134 91.8928 680.133 91.8928 680.132C91.8928 680.131 91.8928 680.13 91.8928 680.129C91.8928 680.128 91.8928 680.127 91.8928 680.126C91.8928 680.125 91.8928 680.124 91.8928 680.123C91.8928 680.122 91.8928 680.122 91.8928 680.121C91.8928 680.12 91.8928 680.119 91.8928 680.118C91.8928 680.117 91.8928 680.116 91.8928 680.115C91.8928 680.114 91.8928 680.113 91.8928 680.112C91.8928 680.111 91.8928 680.11 91.8928 680.109C91.8928 680.108 91.8928 680.108 91.8928 680.107C91.8928 680.106 91.8928 680.105 91.8928 680.104C91.8928 680.103 91.8928 680.102 91.8928 680.101C91.8928 680.1 91.8928 680.099 91.8928 680.098C91.8928 680.097 91.8928 680.096 91.8928 680.095H90.8928H89.8928C89.8928 680.096 89.8928 680.097 89.8928 680.098C89.8928 680.099 89.8928 680.1 89.8928 680.101C89.8928 680.102 89.8928 680.103 89.8928 680.104C89.8928 680.105 89.8928 680.106 89.8928 680.107C89.8928 680.108 89.8928 680.108 89.8928 680.109C89.8928 680.11 89.8928 680.111 89.8928 680.112C89.8928 680.113 89.8928 680.114 89.8928 680.115C89.8928 680.116 89.8928 680.117 89.8928 680.118C89.8928 680.119 89.8928 680.12 89.8928 680.121C89.8928 680.122 89.8928 680.122 89.8928 680.123C89.8928 680.124 89.8928 680.125 89.8928 680.126C89.8928 680.127 89.8928 680.128 89.8928 680.129C89.8928 680.13 89.8928 680.131 89.8928 680.132C89.8928 680.133 89.8928 680.134 89.8928 680.135C89.8928 680.135 89.8928 680.136 89.8928 680.137C89.8928 680.138 89.8928 680.139 89.8928 680.14C89.8928 680.141 89.8928 680.142 89.8928 680.143C89.8928 680.144 89.8928 680.145 89.8928 680.146C89.8928 680.147 89.8928 680.148 89.8928 680.149C89.8928 680.149 89.8928 680.15 89.8928 680.151C89.8928 680.152 89.8928 680.153 89.8928 680.154C89.8928 680.155 89.8928 680.156 89.8928 680.157C89.8928 680.158 89.8928 680.159 89.8928 680.16C89.8928 680.161 89.8928 680.162 89.8928 680.162C89.8928 680.163 89.8928 680.164 89.8928 680.165C89.8928 680.166 89.8928 680.167 89.8928 680.168C89.8928 680.169 89.8928 680.17 89.8928 680.171C89.8928 680.172 89.8928 680.173 89.8928 680.174C89.8928 680.175 89.8928 680.176 89.8928 680.176C89.8928 680.177 89.8928 680.178 89.8928 680.179C89.8928 680.18 89.8928 680.181 89.8928 680.182C89.8928 680.183 89.8928 680.184 89.8928 680.185C89.8928 680.186 89.8928 680.187 89.8928 680.188C89.8928 680.189 89.8928 680.189 89.8928 680.19C89.8928 680.191 89.8928 680.192 89.8928 680.193C89.8928 680.194 89.8928 680.195 89.8928 680.196C89.8928 680.197 89.8928 680.198 89.8928 680.199C89.8928 680.2 89.8928 680.201 89.8928 680.202C89.8928 680.203 89.8928 680.203 89.8928 680.204C89.8928 680.205 89.8928 680.206 89.8928 680.207C89.8928 680.208 89.8928 680.209 89.8928 680.21C89.8928 680.211 89.8928 680.212 89.8928 680.213C89.8928 680.214 89.8928 680.215 89.8928 680.216C89.8928 680.216 89.8928 680.217 89.8928 680.218C89.8928 680.219 89.8928 680.22 89.8928 680.221C89.8928 680.222 89.8928 680.223 89.8928 680.224C89.8928 680.225 89.8928 680.226 89.8928 680.227C89.8928 680.228 89.8928 680.229 89.8928 680.23C89.8928 680.23 89.8928 680.231 89.8928 680.232C89.8928 680.233 89.8928 680.234 89.8928 680.235C89.8928 680.236 89.8928 680.237 89.8928 680.238C89.8928 680.239 89.8928 680.24 89.8928 680.241C89.8928 680.242 89.8928 680.243 89.8928 680.243C89.8928 680.244 89.8928 680.245 89.8928 680.246C89.8928 680.247 89.8928 680.248 89.8928 680.249C89.8928 680.25 89.8928 680.251 89.8928 680.252C89.8928 680.253 89.8928 680.254 89.8928 680.255C89.8928 680.256 89.8928 680.257 89.8928 680.257C89.8928 680.258 89.8928 680.259 89.8928 680.26C89.8928 680.261 89.8928 680.262 89.8928 680.263C89.8928 680.264 89.8928 680.265 89.8928 680.266C89.8928 680.267 89.8928 680.268 89.8928 680.269C89.8928 680.27 89.8928 680.27 89.8928 680.271C89.8928 680.272 89.8928 680.273 89.8928 680.274C89.8928 680.275 89.8928 680.276 89.8928 680.277C89.8928 680.278 89.8928 680.279 89.8928 680.28C89.8928 680.281 89.8928 680.282 89.8928 680.283C89.8928 680.283 89.8928 680.284 89.8928 680.285C89.8928 680.286 89.8928 680.287 89.8928 680.288C89.8928 680.289 89.8928 680.29 89.8928 680.291C89.8928 680.292 89.8928 680.293 89.8928 680.294C89.8928 680.295 89.8928 680.296 89.8928 680.297C89.8928 680.297 89.8928 680.298 89.8928 680.299C89.8928 680.3 89.8928 680.301 89.8928 680.302C89.8928 680.303 89.8928 680.304 89.8928 680.305C89.8928 680.306 89.8928 680.307 89.8928 680.308C89.8928 680.309 89.8928 680.31 89.8928 680.31C89.8928 680.311 89.8928 680.312 89.8928 680.313C89.8928 680.314 89.8928 680.315 89.8928 680.316C89.8928 680.317 89.8928 680.318 89.8928 680.319C89.8928 680.32 89.8928 680.321 89.8928 680.322C89.8928 680.323 89.8928 680.324 89.8928 680.324C89.8928 680.325 89.8928 680.326 89.8928 680.327C89.8928 680.328 89.8928 680.329 89.8928 680.33C89.8928 680.331 89.8928 680.332 89.8928 680.333C89.8928 680.334 89.8928 680.335 89.8928 680.336C89.8928 680.337 89.8928 680.337 89.8928 680.338C89.8928 680.339 89.8928 680.34 89.8928 680.341C89.8928 680.342 89.8928 680.343 89.8928 680.344C89.8928 680.345 89.8928 680.346 89.8928 680.347C89.8928 680.348 89.8928 680.349 89.8928 680.35C89.8928 680.351 89.8928 680.351 89.8928 680.352C89.8928 680.353 89.8928 680.354 89.8928 680.355C89.8928 680.356 89.8928 680.357 89.8928 680.358C89.8928 680.359 89.8928 680.36 89.8928 680.361C89.8928 680.362 89.8928 680.363 89.8928 680.364C89.8928 680.364 89.8928 680.365 89.8928 680.366C89.8928 680.367 89.8928 680.368 89.8928 680.369C89.8928 680.37 89.8928 680.371 89.8928 680.372C89.8928 680.373 89.8928 680.374 89.8928 680.375C89.8928 680.376 89.8928 680.377 89.8928 680.378C89.8928 680.378 89.8928 680.379 89.8928 680.38C89.8928 680.381 89.8928 680.382 89.8928 680.383C89.8928 680.384 89.8928 680.385 89.8928 680.386C89.8928 680.387 89.8928 680.388 89.8928 680.389C89.8928 680.39 89.8928 680.391 89.8928 680.391C89.8928 680.392 89.8928 680.393 89.8928 680.394C89.8928 680.395 89.8928 680.396 89.8928 680.397C89.8928 680.398 89.8928 680.399 89.8928 680.4C89.8928 680.401 89.8928 680.402 89.8928 680.403C89.8928 680.404 89.8928 680.405 89.8928 680.405C89.8928 680.406 89.8928 680.407 89.8928 680.408C89.8928 680.409 89.8928 680.41 89.8928 680.411C89.8928 680.412 89.8928 680.413 89.8928 680.414C89.8928 680.415 89.8928 680.416 89.8928 680.417C89.8928 680.418 89.8928 680.418 89.8928 680.419C89.8928 680.42 89.8928 680.421 89.8928 680.422C89.8928 680.423 89.8928 680.424 89.8928 680.425C89.8928 680.426 89.8928 680.427 89.8928 680.428C89.8928 680.429 89.8928 680.43 89.8928 680.431C89.8928 680.432 89.8928 680.432 89.8928 680.433C89.8928 680.434 89.8928 680.435 89.8928 680.436C89.8928 680.437 89.8928 680.438 89.8928 680.439C89.8928 680.44 89.8928 680.441 89.8928 680.442C89.8928 680.443 89.8928 680.444 89.8928 680.445C89.8928 680.445 89.8928 680.446 89.8928 680.447C89.8928 680.448 89.8928 680.449 89.8928 680.45C89.8928 680.451 89.8928 680.452 89.8928 680.453C89.8928 680.454 89.8928 680.455 89.8928 680.456C89.8928 680.457 89.8928 680.458 89.8928 680.459C89.8928 680.459 89.8928 680.46 89.8928 680.461C89.8928 680.462 89.8928 680.463 89.8928 680.464C89.8928 680.465 89.8928 680.466 89.8928 680.467C89.8928 680.468 89.8928 680.469 89.8928 680.47C89.8928 680.471 89.8928 680.472 89.8928 680.472C89.8928 680.473 89.8928 680.474 89.8928 680.475C89.8928 680.476 89.8928 680.477 89.8928 680.478C89.8928 680.479 89.8928 680.48 89.8928 680.481C89.8928 680.482 89.8928 680.483 89.8928 680.484C89.8928 680.485 89.8928 680.486 89.8928 680.486C89.8928 680.487 89.8928 680.488 89.8928 680.489C89.8928 680.49 89.8928 680.491 89.8928 680.492C89.8928 680.493 89.8928 680.494 89.8928 680.495C89.8928 680.496 89.8928 680.497 89.8928 680.498C89.8928 680.499 89.8928 680.499 89.8928 680.5C89.8928 680.501 89.8928 680.502 89.8928 680.503C89.8928 680.504 89.8928 680.505 89.8928 680.506C89.8928 680.507 89.8928 680.508 89.8928 680.509C89.8928 680.51 89.8928 680.511 89.8928 680.512C89.8928 680.513 89.8928 680.513 89.8928 680.514C89.8928 680.515 89.8928 680.516 89.8928 680.517C89.8928 680.518 89.8928 680.519 89.8928 680.52C89.8928 680.521 89.8928 680.522 89.8928 680.523C89.8928 680.524 89.8928 680.525 89.8928 680.526C89.8928 680.526 89.8928 680.527 89.8928 680.528C89.8928 680.529 89.8928 680.53 89.8928 680.531C89.8928 680.532 89.8928 680.533 89.8928 680.534C89.8928 680.535 89.8928 680.536 89.8928 680.537C89.8928 680.538 89.8928 680.539 89.8928 680.54C89.8928 680.54 89.8928 680.541 89.8928 680.542C89.8928 680.543 89.8928 680.544 89.8928 680.545C89.8928 680.546 89.8928 680.547 89.8928 680.548C89.8928 680.549 89.8928 680.55 89.8928 680.551C89.8928 680.552 89.8928 680.553 89.8928 680.553C89.8928 680.554 89.8928 680.555 89.8928 680.556C89.8928 680.557 89.8928 680.558 89.8928 680.559C89.8928 680.56 89.8928 680.561 89.8928 680.562C89.8928 680.563 89.8928 680.564 89.8928 680.565C89.8928 680.566 89.8928 680.567 89.8928 680.567C89.8928 680.568 89.8928 680.569 89.8928 680.57C89.8928 680.571 89.8928 680.572 89.8928 680.573C89.8928 680.574 89.8928 680.575 89.8928 680.576C89.8928 680.577 89.8928 680.578 89.8928 680.579C89.8928 680.58 89.8928 680.58 89.8928 680.581C89.8928 680.582 89.8928 680.583 89.8928 680.584C89.8928 680.585 89.8928 680.586 89.8928 680.587C89.8928 680.588 89.8928 680.589 89.8928 680.59C89.8928 680.591 89.8928 680.592 89.8928 680.593C89.8928 680.594 89.8928 680.594 89.8928 680.595C89.8928 680.596 89.8928 680.597 89.8928 680.598C89.8928 680.599 89.8928 680.6 89.8928 680.601C89.8928 680.602 89.8928 680.603 89.8928 680.604C89.8928 680.605 89.8928 680.606 89.8928 680.607C89.8928 680.607 89.8928 680.608 89.8928 680.609C89.8928 680.61 89.8928 680.611 89.8928 680.612C89.8928 680.613 89.8928 680.614 89.8928 680.615C89.8928 680.616 89.8928 680.617 89.8928 680.618C89.8928 680.619 89.8928 680.62 89.8928 680.62C89.8928 680.621 89.8928 680.622 89.8928 680.623C89.8928 680.624 89.8928 680.625 89.8928 680.626C89.8928 680.627 89.8928 680.628 89.8928 680.629C89.8928 680.63 89.8928 680.631 89.8928 680.632C89.8928 680.633 89.8928 680.634 89.8928 680.634C89.8928 680.635 89.8928 680.636 89.8928 680.637C89.8928 680.638 89.8928 680.639 89.8928 680.64C89.8928 680.641 89.8928 680.642 89.8928 680.643C89.8928 680.644 89.8928 680.645 89.8928 680.646C89.8928 680.647 89.8928 680.647 89.8928 680.648C89.8928 680.649 89.8928 680.65 89.8928 680.651C89.8928 680.652 89.8928 680.653 89.8928 680.654C89.8928 680.655 89.8928 680.656 89.8928 680.657C89.8928 680.658 89.8928 680.659 89.8928 680.66C89.8928 680.661 89.8928 680.661 89.8928 680.662C89.8928 680.663 89.8928 680.664 89.8928 680.665C89.8928 680.666 89.8928 680.667 89.8928 680.668C89.8928 680.669 89.8928 680.67 89.8928 680.671C89.8928 680.672 89.8928 680.673 89.8928 680.674C89.8928 680.674 89.8928 680.675 89.8928 680.676C89.8928 680.677 89.8928 680.678 89.8928 680.679C89.8928 680.68 89.8928 680.681 89.8928 680.682C89.8928 680.683 89.8928 680.684 89.8928 680.685C89.8928 680.686 89.8928 680.687 89.8928 680.688C89.8928 680.688 89.8928 680.689 89.8928 680.69C89.8928 680.691 89.8928 680.692 89.8928 680.693C89.8928 680.694 89.8928 680.695 89.8928 680.696C89.8928 680.697 89.8928 680.698 89.8928 680.699C89.8928 680.7 89.8928 680.701 89.8928 680.701C89.8928 680.702 89.8928 680.703 89.8928 680.704C89.8928 680.705 89.8928 680.706 89.8928 680.707C89.8928 680.708 89.8928 680.709 89.8928 680.71C89.8928 680.711 89.8928 680.712 89.8928 680.713C89.8928 680.714 89.8928 680.715 89.8928 680.715C89.8928 680.716 89.8928 680.717 89.8928 680.718C89.8928 680.719 89.8928 680.72 89.8928 680.721C89.8928 680.722 89.8928 680.723 89.8928 680.724C89.8928 680.725 89.8928 680.726 89.8928 680.727C89.8928 680.728 89.8928 680.728 89.8928 680.729C89.8928 680.73 89.8928 680.731 89.8928 680.732C89.8928 680.733 89.8928 680.734 89.8928 680.735C89.8928 680.736 89.8928 680.737 89.8928 680.738C89.8928 680.739 89.8928 680.74 89.8928 680.741C89.8928 680.742 89.8928 680.742 89.8928 680.743C89.8928 680.744 89.8928 680.745 89.8928 680.746C89.8928 680.747 89.8928 680.748 89.8928 680.749C89.8928 680.75 89.8928 680.751 89.8928 680.752C89.8928 680.753 89.8928 680.754 89.8928 680.755C89.8928 680.755 89.8928 680.756 89.8928 680.757C89.8928 680.758 89.8928 680.759 89.8928 680.76C89.8928 680.761 89.8928 680.762 89.8928 680.763C89.8928 680.764 89.8928 680.765 89.8928 680.766C89.8928 680.767 89.8928 680.768 89.8928 680.769C89.8928 680.769 89.8928 680.77 89.8928 680.771C89.8928 680.772 89.8928 680.773 89.8928 680.774C89.8928 680.775 89.8928 680.776 89.8928 680.777C89.8928 680.778 89.8928 680.779 89.8928 680.78C89.8928 680.781 89.8928 680.782 89.8928 680.782C89.8928 680.783 89.8928 680.784 89.8928 680.785C89.8928 680.786 89.8928 680.787 89.8928 680.788C89.8928 680.789 89.8928 680.79 89.8928 680.791C89.8928 680.792 89.8928 680.793 89.8928 680.794C89.8928 680.795 89.8928 680.796 89.8928 680.796C89.8928 680.797 89.8928 680.798 89.8928 680.799C89.8928 680.8 89.8928 680.801 89.8928 680.802C89.8928 680.803 89.8928 680.804 89.8928 680.805C89.8928 680.806 89.8928 680.807 89.8928 680.808C89.8928 680.809 89.8928 680.809 89.8928 680.81C89.8928 680.811 89.8928 680.812 89.8928 680.813C89.8928 680.814 89.8928 680.815 89.8928 680.816C89.8928 680.817 89.8928 680.818 89.8928 680.819C89.8928 680.82 89.8928 680.821 89.8928 680.822C89.8928 680.823 89.8928 680.823 89.8928 680.824C89.8928 680.825 89.8928 680.826 89.8928 680.827C89.8928 680.828 89.8928 680.829 89.8928 680.83C89.8928 680.831 89.8928 680.832 89.8928 680.833C89.8928 680.834 89.8928 680.835 89.8928 680.836C89.8928 680.836 89.8928 680.837 89.8928 680.838C89.8928 680.839 89.8928 680.84 89.8928 680.841C89.8928 680.842 89.8928 680.843 89.8928 680.844C89.8928 680.845 89.8928 680.846 89.8928 680.847C89.8928 680.848 89.8928 680.849 89.8928 680.85C89.8928 680.85 89.8928 680.851 89.8928 680.852C89.8928 680.853 89.8928 680.854 89.8928 680.855C89.8928 680.856 89.8928 680.857 89.8928 680.858C89.8928 680.859 89.8928 680.86 89.8928 680.861C89.8928 680.862 89.8928 680.863 89.8928 680.863C89.8928 680.864 89.8928 680.865 89.8928 680.866C89.8928 680.867 89.8928 680.868 89.8928 680.869C89.8928 680.87 89.8928 680.871 89.8928 680.872C89.8928 680.873 89.8928 680.874 89.8928 680.875C89.8928 680.876 89.8928 680.877 89.8928 680.877C89.8928 680.878 89.8928 680.879 89.8928 680.88C89.8928 680.881 89.8928 680.882 89.8928 680.883C89.8928 680.884 89.8928 680.885 89.8928 680.886C89.8928 680.887 89.8928 680.888 89.8928 680.889C89.8928 680.89 89.8928 680.89 89.8928 680.891C89.8928 680.892 89.8928 680.893 89.8928 680.894C89.8928 680.895 89.8928 680.896 89.8928 680.897C89.8928 680.898 89.8928 680.899 89.8928 680.9C89.8928 680.901 89.8928 680.902 89.8928 680.903C89.8928 680.904 89.8928 680.904 89.8928 680.905C89.8928 680.906 89.8928 680.907 89.8928 680.908C89.8928 680.909 89.8928 680.91 89.8928 680.911C89.8928 680.912 89.8928 680.913 89.8928 680.914C89.8928 680.915 89.8928 680.916 89.8928 680.917C89.8928 680.917 89.8928 680.918 89.8928 680.919C89.8928 680.92 89.8928 680.921 89.8928 680.922C89.8928 680.923 89.8928 680.924 89.8928 680.925C89.8928 680.926 89.8928 680.927 89.8928 680.928C89.8928 680.929 89.8928 680.93 89.8928 680.931C89.8928 680.931 89.8928 680.932 89.8928 680.933C89.8928 680.934 89.8928 680.935 89.8928 680.936C89.8928 680.937 89.8928 680.938 89.8928 680.939C89.8928 680.94 89.8928 680.941 89.8928 680.942C89.8928 680.943 89.8928 680.944 89.8928 680.944C89.8928 680.945 89.8928 680.946 89.8928 680.947C89.8928 680.948 89.8928 680.949 89.8928 680.95C89.8928 680.951 89.8928 680.952 89.8928 680.953C89.8928 680.954 89.8928 680.955 89.8928 680.956C89.8928 680.957 89.8928 680.957 89.8928 680.958C89.8928 680.959 89.8928 680.96 89.8928 680.961C89.8928 680.962 89.8928 680.963 89.8928 680.964C89.8928 680.965 89.8928 680.966 89.8928 680.967C89.8928 680.968 89.8928 680.969 89.8928 680.97C89.8928 680.971 89.8928 680.971 89.8928 680.972C89.8928 680.973 89.8928 680.974 89.8928 680.975C89.8928 680.976 89.8928 680.977 89.8928 680.978C89.8928 680.979 89.8928 680.98 89.8928 680.981C89.8928 680.982 89.8928 680.983 89.8928 680.984C89.8928 680.984 89.8928 680.985 89.8928 680.986C89.8928 680.987 89.8928 680.988 89.8928 680.989C89.8928 680.99 89.8928 680.991 89.8928 680.992C89.8928 680.993 89.8928 680.994 89.8928 680.995C89.8928 680.996 89.8928 680.997 89.8928 680.998C89.8928 680.998 89.8928 680.999 89.8928 681C89.8928 681.001 89.8928 681.002 89.8928 681.003C89.8928 681.004 89.8928 681.005 89.8928 681.006C89.8928 681.007 89.8928 681.008 89.8928 681.009C89.8928 681.01 89.8928 681.011 89.8928 681.011C89.8928 681.012 89.8928 681.013 89.8928 681.014C89.8928 681.015 89.8928 681.016 89.8928 681.017C89.8928 681.018 89.8928 681.019 89.8928 681.02C89.8928 681.021 89.8928 681.022 89.8928 681.023C89.8928 681.024 89.8928 681.025 89.8928 681.025C89.8928 681.026 89.8928 681.027 89.8928 681.028C89.8928 681.029 89.8928 681.03 89.8928 681.031C89.8928 681.032 89.8928 681.033 89.8928 681.034C89.8928 681.035 89.8928 681.036 89.8928 681.037C89.8928 681.038 89.8928 681.038 89.8928 681.039C89.8928 681.04 89.8928 681.041 89.8928 681.042C89.8928 681.043 89.8928 681.044 89.8928 681.045C89.8928 681.046 89.8928 681.047 89.8928 681.048C89.8928 681.049 89.8928 681.05 89.8928 681.051C89.8928 681.052 89.8928 681.052 89.8928 681.053C89.8928 681.054 89.8928 681.055 89.8928 681.056C89.8928 681.057 89.8928 681.058 89.8928 681.059C89.8928 681.06 89.8928 681.061 89.8928 681.062C89.8928 681.063 89.8928 681.064 89.8928 681.065C89.8928 681.065 89.8928 681.066 89.8928 681.067C89.8928 681.068 89.8928 681.069 89.8928 681.07C89.8928 681.071 89.8928 681.072 89.8928 681.073C89.8928 681.074 89.8928 681.075 89.8928 681.076C89.8928 681.077 89.8928 681.078 89.8928 681.079C89.8928 681.079 89.8928 681.08 89.8928 681.081C89.8928 681.082 89.8928 681.083 89.8928 681.084C89.8928 681.085 89.8928 681.086 89.8928 681.087C89.8928 681.088 89.8928 681.089 89.8928 681.09C89.8928 681.091 89.8928 681.092 89.8928 681.092C89.8928 681.093 89.8928 681.094 89.8928 681.095C89.8928 681.096 89.8928 681.097 89.8928 681.098C89.8928 681.099 89.8928 681.1 89.8928 681.101C89.8928 681.102 89.8928 681.103 89.8928 681.104C89.8928 681.105 89.8928 681.106 89.8928 681.106C89.8928 681.107 89.8928 681.108 89.8928 681.109C89.8928 681.11 89.8928 681.111 89.8928 681.112C89.8928 681.113 89.8928 681.114 89.8928 681.115C89.8928 681.116 89.8928 681.117 89.8928 681.118C89.8928 681.119 89.8928 681.119 89.8928 681.12C89.8928 681.121 89.8928 681.122 89.8928 681.123C89.8928 681.124 89.8928 681.125 89.8928 681.126C89.8928 681.127 89.8928 681.128 89.8928 681.129C89.8928 681.13 89.8928 681.131 89.8928 681.132C89.8928 681.133 89.8928 681.133 89.8928 681.134C89.8928 681.135 89.8928 681.136 89.8928 681.137C89.8928 681.138 89.8928 681.139 89.8928 681.14C89.8928 681.141 89.8928 681.142 89.8928 681.143C89.8928 681.144 89.8928 681.145 89.8928 681.146C89.8928 681.146 89.8928 681.147 89.8928 681.148C89.8928 681.149 89.8928 681.15 89.8928 681.151C89.8928 681.152 89.8928 681.153 89.8928 681.154C89.8928 681.155 89.8928 681.156 89.8928 681.157C89.8928 681.158 89.8928 681.159 89.8928 681.16C89.8928 681.16 89.8928 681.161 89.8928 681.162C89.8928 681.163 89.8928 681.164 89.8928 681.165C89.8928 681.166 89.8928 681.167 89.8928 681.168C89.8928 681.169 89.8928 681.17 89.8928 681.171C89.8928 681.172 89.8928 681.173 89.8928 681.173C89.8928 681.174 89.8928 681.175 89.8928 681.176C89.8928 681.177 89.8928 681.178 89.8928 681.179C89.8928 681.18 89.8928 681.181 89.8928 681.182C89.8928 681.183 89.8928 681.184 89.8928 681.185C89.8928 681.186 89.8928 681.187 89.8928 681.187C89.8928 681.188 89.8928 681.189 89.8928 681.19C89.8928 681.191 89.8928 681.192 89.8928 681.193C89.8928 681.194 89.8928 681.195 89.8928 681.196C89.8928 681.197 89.8928 681.198 89.8928 681.199C89.8928 681.2 89.8928 681.2 89.8928 681.201C89.8928 681.202 89.8928 681.203 89.8928 681.204C89.8928 681.205 89.8928 681.206 89.8928 681.207C89.8928 681.208 89.8928 681.209 89.8928 681.21C89.8928 681.211 89.8928 681.212 89.8928 681.213C89.8928 681.214 89.8928 681.214 89.8928 681.215C89.8928 681.216 89.8928 681.217 89.8928 681.218C89.8928 681.219 89.8928 681.22 89.8928 681.221C89.8928 681.222 89.8928 681.223 89.8928 681.224C89.8928 681.225 89.8928 681.226 89.8928 681.227C89.8928 681.227 89.8928 681.228 89.8928 681.229C89.8928 681.23 89.8928 681.231 89.8928 681.232C89.8928 681.233 89.8928 681.234 89.8928 681.235C89.8928 681.236 89.8928 681.237 89.8928 681.238C89.8928 681.239 89.8928 681.24 89.8928 681.241C89.8928 681.241 89.8928 681.242 89.8928 681.243C89.8928 681.244 89.8928 681.245 89.8928 681.246C89.8928 681.247 89.8928 681.248 89.8928 681.249C89.8928 681.25 89.8928 681.251 89.8928 681.252C89.8928 681.253 89.8928 681.254 89.8928 681.254C89.8928 681.255 89.8928 681.256 89.8928 681.257C89.8928 681.258 89.8928 681.259 89.8928 681.26C89.8928 681.261 89.8928 681.262 89.8928 681.263C89.8928 681.264 89.8928 681.265 89.8928 681.266C89.8928 681.267 89.8928 681.268 89.8928 681.268C89.8928 681.269 89.8928 681.27 89.8928 681.271C89.8928 681.272 89.8928 681.273 89.8928 681.274C89.8928 681.275 89.8928 681.276 89.8928 681.277C89.8928 681.278 89.8928 681.279 89.8928 681.28C89.8928 681.281 89.8928 681.281 89.8928 681.282C89.8928 681.283 89.8928 681.284 89.8928 681.285C89.8928 681.286 89.8928 681.287 89.8928 681.288C89.8928 681.289 89.8928 681.29 89.8928 681.291C89.8928 681.292 89.8928 681.293 89.8928 681.294C89.8928 681.294 89.8928 681.295 89.8928 681.296C89.8928 681.297 89.8928 681.298 89.8928 681.299C89.8928 681.3 89.8928 681.301 89.8928 681.302C89.8928 681.303 89.8928 681.304 89.8928 681.305C89.8928 681.306 89.8928 681.307 89.8928 681.308C89.8928 681.308 89.8928 681.309 89.8928 681.31C89.8928 681.311 89.8928 681.312 89.8928 681.313C89.8928 681.314 89.8928 681.315 89.8928 681.316C89.8928 681.317 89.8928 681.318 89.8928 681.319C89.8928 681.32 89.8928 681.321 89.8928 681.321C89.8928 681.322 89.8928 681.323 89.8928 681.324C89.8928 681.325 89.8928 681.326 89.8928 681.327C89.8928 681.328 89.8928 681.329 89.8928 681.33C89.8928 681.331 89.8928 681.332 89.8928 681.333C89.8928 681.334 89.8928 681.335 89.8928 681.335C89.8928 681.336 89.8928 681.337 89.8928 681.338C89.8928 681.339 89.8928 681.34 89.8928 681.341C89.8928 681.342 89.8928 681.343 89.8928 681.344C89.8928 681.345 89.8928 681.346 89.8928 681.347C89.8928 681.348 89.8928 681.348 89.8928 681.349C89.8928 681.35 89.8928 681.351 89.8928 681.352C89.8928 681.353 89.8928 681.354 89.8928 681.355C89.8928 681.356 89.8928 681.357 89.8928 681.358C89.8928 681.359 89.8928 681.36 89.8928 681.361C89.8928 681.362 89.8928 681.362 89.8928 681.363C89.8928 681.364 89.8928 681.365 89.8928 681.366C89.8928 681.367 89.8928 681.368 89.8928 681.369C89.8928 681.37 89.8928 681.371 89.8928 681.372C89.8928 681.373 89.8928 681.374 89.8928 681.375C89.8928 681.375 89.8928 681.376 89.8928 681.377C89.8928 681.378 89.8928 681.379 89.8928 681.38C89.8928 681.381 89.8928 681.382 89.8928 681.383C89.8928 681.384 89.8928 681.385 89.8928 681.386C89.8928 681.387 89.8928 681.388 89.8928 681.389C89.8928 681.389 89.8928 681.39 89.8928 681.391C89.8928 681.392 89.8928 681.393 89.8928 681.394C89.8928 681.395 89.8928 681.396 89.8928 681.397C89.8928 681.398 89.8928 681.399 89.8928 681.4C89.8928 681.401 89.8928 681.402 89.8928 681.402C89.8928 681.403 89.8928 681.404 89.8928 681.405C89.8928 681.406 89.8928 681.407 89.8928 681.408C89.8928 681.409 89.8928 681.41 89.8928 681.411C89.8928 681.412 89.8928 681.413 89.8928 681.414C89.8928 681.415 89.8928 681.416 89.8928 681.416C89.8928 681.417 89.8928 681.418 89.8928 681.419C89.8928 681.42 89.8928 681.421 89.8928 681.422C89.8928 681.423 89.8928 681.424 89.8928 681.425C89.8928 681.426 89.8928 681.427 89.8928 681.428C89.8928 681.429 89.8928 681.429 89.8928 681.43C89.8928 681.431 89.8928 681.432 89.8928 681.433C89.8928 681.434 89.8928 681.435 89.8928 681.436C89.8928 681.437 89.8928 681.438 89.8928 681.439C89.8928 681.44 89.8928 681.441 89.8928 681.442C89.8928 681.443 89.8928 681.443 89.8928 681.444C89.8928 681.445 89.8928 681.446 89.8928 681.447C89.8928 681.448 89.8928 681.449 89.8928 681.45C89.8928 681.451 89.8928 681.452 89.8928 681.453C89.8928 681.454 89.8928 681.455 89.8928 681.456C89.8928 681.456 89.8928 681.457 89.8928 681.458C89.8928 681.459 89.8928 681.46 89.8928 681.461C89.8928 681.462 89.8928 681.463 89.8928 681.464C89.8928 681.465 89.8928 681.466 89.8928 681.467C89.8928 681.468 89.8928 681.469 89.8928 681.47C89.8928 681.47 89.8928 681.471 89.8928 681.472C89.8928 681.473 89.8928 681.474 89.8928 681.475C89.8928 681.476 89.8928 681.477 89.8928 681.478C89.8928 681.479 89.8928 681.48 89.8928 681.481C89.8928 681.482 89.8928 681.483 89.8928 681.483C89.8928 681.484 89.8928 681.485 89.8928 681.486C89.8928 681.487 89.8928 681.488 89.8928 681.489C89.8928 681.49 89.8928 681.491 89.8928 681.492C89.8928 681.493 89.8928 681.494 89.8928 681.495C89.8928 681.496 89.8928 681.497 89.8928 681.497C89.8928 681.498 89.8928 681.499 89.8928 681.5C89.8928 681.501 89.8928 681.502 89.8928 681.503C89.8928 681.504 89.8928 681.505 89.8928 681.506C89.8928 681.507 89.8928 681.508 89.8928 681.509C89.8928 681.51 89.8928 681.51 89.8928 681.511C89.8928 681.512 89.8928 681.513 89.8928 681.514C89.8928 681.515 89.8928 681.516 89.8928 681.517C89.8928 681.518 89.8928 681.519 89.8928 681.52C89.8928 681.521 89.8928 681.522 89.8928 681.523C89.8928 681.524 89.8928 681.524 89.8928 681.525H90.8928ZM90.8928 680.095H91.8928V662.558H90.8928H89.8928V680.095H90.8928ZM90.8928 662.558V663.558H96.9069V662.558V661.558H90.8928V662.558ZM96.9069 662.558H95.9069V693.175H96.9069H97.9069V662.558H96.9069ZM96.9069 693.175V692.175H89.7572V693.175V694.175H96.9069V693.175ZM89.7572 693.175L90.6442 692.713L81.4128 674.986L80.5258 675.448L79.6389 675.91L88.8703 693.637L89.7572 693.175ZM80.5258 675.448L81.4202 675.001C81.2259 674.612 81.0506 674.21 80.8944 673.793L79.9581 674.144L79.0217 674.496C79.202 674.976 79.4052 675.443 79.6314 675.895L80.5258 675.448ZM79.9581 674.144L80.8944 673.793C80.7358 673.37 80.5974 672.949 80.4791 672.528L79.5165 672.799L78.5538 673.069C78.6878 673.546 78.8439 674.021 79.0217 674.496L79.9581 674.144ZM79.5165 672.799V671.799H79.3693V672.799V673.799H79.5165V672.799ZM79.3693 672.799L78.371 672.857C78.3979 673.315 78.4113 673.765 78.4113 674.208H79.4113H80.4113C80.4113 673.725 80.3967 673.235 80.3675 672.74L79.3693 672.799ZM79.4113 674.208L78.4118 674.239C78.4255 674.676 78.4323 675.135 78.4323 675.616H79.4323H80.4323C80.4323 675.116 80.4252 674.636 80.4108 674.176L79.4113 674.208ZM79.4323 675.616H78.4323V693.175H79.4323H80.4323V675.616H79.4323ZM79.4323 693.175V692.175H73.4393V693.175V694.175H79.4323V693.175ZM101.617 662.558V661.558H100.617V662.558H101.617ZM108.62 662.558H109.62V661.558H108.62V662.558ZM109.839 687.329L109.098 688.001L109.104 688.006L109.839 687.329ZM116.547 687.329L115.812 686.651L115.812 686.652L116.547 687.329ZM117.788 662.558V661.558H116.788V662.558H117.788ZM124.727 662.558H125.727V661.558H124.727V662.558ZM121.573 690.841L120.904 690.098L120.902 690.1L121.573 690.841ZM101.617 681.988H102.617V662.558H101.617H100.617V681.988H101.617ZM101.617 662.558V663.558H108.62V662.558V661.558H101.617V662.558ZM108.62 662.558H107.62V682.724H108.62H109.62V662.558H108.62ZM108.62 682.724H107.62C107.62 684.967 108.029 686.82 109.098 688.001L109.839 687.329L110.58 686.658C110.024 686.043 109.62 684.827 109.62 682.724H108.62ZM109.839 687.329L109.104 688.006C110.144 689.137 111.563 689.654 113.225 689.654V688.654V687.654C111.999 687.654 111.161 687.288 110.575 686.652L109.839 687.329ZM113.225 688.654V689.654C114.855 689.654 116.248 689.13 117.283 688.006L116.547 687.329L115.812 686.652C115.22 687.294 114.398 687.654 113.225 687.654V688.654ZM116.547 687.329L117.283 688.007C118.371 686.826 118.788 684.97 118.788 682.724H117.788H116.788C116.788 684.824 116.378 686.038 115.812 686.651L116.547 687.329ZM117.788 682.724H118.788V662.558H117.788H116.788V682.724H117.788ZM117.788 662.558V663.558H124.727V662.558V661.558H117.788V662.558ZM124.727 662.558H123.727V681.988H124.727H125.727V662.558H124.727ZM124.727 681.988H123.727C123.727 685.835 122.72 688.463 120.904 690.098L121.573 690.841L122.242 691.584C124.632 689.434 125.727 686.159 125.727 681.988H124.727ZM121.573 690.841L120.902 690.1C119.036 691.79 116.52 692.68 113.246 692.68V693.68V694.68C116.897 694.68 119.932 693.677 122.244 691.582L121.573 690.841ZM113.246 693.68V692.68C109.912 692.68 107.351 691.787 105.459 690.095L104.792 690.841L104.126 691.586C106.467 693.68 109.542 694.68 113.246 694.68V693.68ZM104.792 690.841L105.459 690.095C103.63 688.46 102.617 685.834 102.617 681.988H101.617H100.617C100.617 686.161 101.721 689.436 104.126 691.586L104.792 690.841ZM127.335 668.046H126.335V669.046H127.335V668.046ZM127.335 662.558V661.558H126.335V662.558H127.335ZM151.37 662.558H152.37V661.558H151.37V662.558ZM151.37 668.046V669.046H152.37V668.046H151.37ZM142.896 668.046V667.046H141.896V668.046H142.896ZM142.896 693.175V694.175H143.896V693.175H142.896ZM135.83 693.175H134.83V694.175H135.83V693.175ZM135.83 668.046H136.83V667.046H135.83V668.046ZM127.335 668.046H128.335V662.558H127.335H126.335V668.046H127.335ZM127.335 662.558V663.558H151.37V662.558V661.558H127.335V662.558ZM151.37 662.558H150.37V668.046H151.37H152.37V662.558H151.37ZM151.37 668.046V667.046H142.896V668.046V669.046H151.37V668.046ZM142.896 668.046H141.896V693.175H142.896H143.896V668.046H142.896ZM142.896 693.175V692.175H135.83V693.175V694.175H142.896V693.175ZM135.83 693.175H136.83V668.046H135.83H134.83V693.175H135.83ZM135.83 668.046V667.046H127.335V668.046V669.046H135.83V668.046ZM152.274 668.046H151.274V669.046H152.274V668.046ZM152.274 662.558V661.558H151.274V662.558H152.274ZM176.31 662.558H177.31V661.558H176.31V662.558ZM176.31 668.046V669.046H177.31V668.046H176.31ZM167.835 668.046V667.046H166.835V668.046H167.835ZM167.835 693.175V694.175H168.835V693.175H167.835ZM160.77 693.175H159.77V694.175H160.77V693.175ZM160.77 668.046H161.77V667.046H160.77V668.046ZM152.274 668.046H153.274V662.558H152.274H151.274V668.046H152.274ZM152.274 662.558V663.558H176.31V662.558V661.558H152.274V662.558ZM176.31 662.558H175.31V668.046H176.31H177.31V662.558H176.31ZM176.31 668.046V667.046H167.835V668.046V669.046H176.31V668.046ZM167.835 668.046H166.835V693.175H167.835H168.835V668.046H167.835ZM167.835 693.175V692.175H160.77V693.175V694.175H167.835V693.175ZM160.77 693.175H161.77V668.046H160.77H159.77V693.175H160.77ZM160.77 668.046V667.046H152.274V668.046V669.046H160.77V668.046ZM186.487 693.175H185.487V694.175H186.487V693.175ZM186.487 681.736H187.487V681.491L187.374 681.274L186.487 681.736ZM176.499 662.558V661.558H174.851L175.612 663.02L176.499 662.558ZM184.174 662.558L185.067 662.106L184.789 661.558H184.174V662.558ZM189.494 673.072L190.396 672.639L190.391 672.63L190.387 672.621L189.494 673.072ZM189.957 674.081L189.04 674.48L189.043 674.488L189.047 674.495L189.957 674.081ZM190.357 675.049L189.42 675.4L189.664 676.049H190.357V675.049ZM190.462 675.049V676.049H191.155L191.398 675.4L190.462 675.049ZM190.84 674.081L189.93 673.668L189.922 673.685L189.915 673.703L190.84 674.081ZM191.324 673.072L190.432 672.62L190.429 672.625L191.324 673.072ZM196.644 662.558V661.558H196.029L195.752 662.106L196.644 662.558ZM203.436 662.558L204.324 663.018L205.082 661.558H203.436V662.558ZM193.574 681.567L192.686 681.107L192.574 681.323V681.567H193.574ZM193.574 693.175V694.175H194.574V693.175H193.574ZM186.487 693.175H187.487V681.736H186.487H185.487V693.175H186.487ZM186.487 681.736L187.374 681.274L177.386 662.096L176.499 662.558L175.612 663.02L185.601 682.198L186.487 681.736ZM176.499 662.558V663.558H184.174V662.558V661.558H176.499V662.558ZM184.174 662.558L183.282 663.009L188.602 673.523L189.494 673.072L190.387 672.621L185.067 662.106L184.174 662.558ZM189.494 673.072L188.593 673.505C188.756 673.845 188.905 674.17 189.04 674.48L189.957 674.081L190.874 673.683C190.729 673.348 190.569 673 190.396 672.639L189.494 673.072ZM189.957 674.081L189.047 674.495C189.177 674.782 189.302 675.083 189.42 675.4L190.357 675.049L191.293 674.698C191.159 674.341 191.018 673.998 190.867 673.668L189.957 674.081ZM190.357 675.049V676.049H190.462V675.049V674.049H190.357V675.049ZM190.462 675.049L191.398 675.4C191.521 675.072 191.644 674.759 191.766 674.46L190.84 674.081L189.915 673.703C189.785 674.021 189.655 674.353 189.525 674.698L190.462 675.049ZM190.84 674.081L191.751 674.495C191.885 674.2 192.041 673.875 192.218 673.519L191.324 673.072L190.429 672.625C190.243 672.998 190.076 673.346 189.93 673.668L190.84 674.081ZM191.324 673.072L192.216 673.523L197.536 663.009L196.644 662.558L195.752 662.106L190.432 672.621L191.324 673.072ZM196.644 662.558V663.558H203.436V662.558V661.558H196.644V662.558ZM203.436 662.558L202.549 662.097L192.686 681.107L193.574 681.567L194.462 682.028L204.324 663.018L203.436 662.558ZM193.574 681.567H192.574V693.175H193.574H194.574V681.567H193.574ZM193.574 693.175V692.175H186.487V693.175V694.175H193.574V693.175ZM222.95 693.175H221.95V694.175H222.95V693.175ZM222.95 681.736H223.95V681.491L223.837 681.274L222.95 681.736ZM212.962 662.558V661.558H211.314L212.075 663.02L212.962 662.558ZM220.637 662.558L221.53 662.106L221.252 661.558H220.637V662.558ZM225.958 673.072L226.859 672.639L226.855 672.63L226.85 672.621L225.958 673.072ZM226.42 674.081L225.503 674.48L225.506 674.488L225.51 674.495L226.42 674.081ZM226.82 675.049L225.883 675.4L226.127 676.049H226.82V675.049ZM226.925 675.049V676.049H227.618L227.861 675.4L226.925 675.049ZM227.303 674.081L226.393 673.668L226.385 673.685L226.378 673.703L227.303 674.081ZM227.787 673.072L226.895 672.62L226.893 672.625L227.787 673.072ZM233.107 662.558V661.558H232.492L232.215 662.106L233.107 662.558ZM239.899 662.558L240.787 663.018L241.545 661.558H239.899V662.558ZM230.037 681.567L229.149 681.107L229.037 681.323V681.567H230.037ZM230.037 693.175V694.175H231.037V693.175H230.037ZM222.95 693.175H223.95V681.736H222.95H221.95V693.175H222.95ZM222.95 681.736L223.837 681.274L213.849 662.096L212.962 662.558L212.075 663.02L222.064 682.198L222.95 681.736ZM212.962 662.558V663.558H220.637V662.558V661.558H212.962V662.558ZM220.637 662.558L219.745 663.009L225.065 673.523L225.958 673.072L226.85 672.621L221.53 662.106L220.637 662.558ZM225.958 673.072L225.056 673.505C225.219 673.845 225.368 674.17 225.503 674.48L226.42 674.081L227.337 673.683C227.192 673.348 227.032 673 226.859 672.639L225.958 673.072ZM226.42 674.081L225.51 674.495C225.64 674.782 225.765 675.083 225.883 675.4L226.82 675.049L227.756 674.698C227.622 674.341 227.481 673.998 227.331 673.668L226.42 674.081ZM226.82 675.049V676.049H226.925V675.049V674.049H226.82V675.049ZM226.925 675.049L227.861 675.4C227.984 675.072 228.107 674.759 228.229 674.46L227.303 674.081L226.378 673.703C226.248 674.021 226.118 674.353 225.989 674.698L226.925 675.049ZM227.303 674.081L228.214 674.495C228.348 674.2 228.504 673.875 228.681 673.519L227.787 673.072L226.893 672.625C226.706 672.998 226.539 673.346 226.393 673.668L227.303 674.081ZM227.787 673.072L228.679 673.523L233.999 663.009L233.107 662.558L232.215 662.106L226.895 672.621L227.787 673.072ZM233.107 662.558V663.558H239.899V662.558V661.558H233.107V662.558ZM239.899 662.558L239.012 662.097L229.149 681.107L230.037 681.567L230.925 682.028L240.787 663.018L239.899 662.558ZM230.037 681.567H229.037V693.175H230.037H231.037V681.567H230.037ZM230.037 693.175V692.175H222.95V693.175V694.175H230.037V693.175ZM243.558 665.712L242.851 665.005L242.849 665.007L243.558 665.712ZM262.379 665.712L261.671 666.419L261.673 666.421L262.379 665.712ZM262.379 690.021L261.673 689.312L261.671 689.314L262.379 690.021ZM243.558 690.021L242.849 690.726L242.851 690.728L243.558 690.021ZM248.731 686.677L247.939 687.288L247.942 687.292L248.731 686.677ZM257.227 686.677L256.439 686.062L256.438 686.063L257.227 686.677ZM257.227 669.119L256.438 669.733L256.445 669.742L257.227 669.119ZM248.731 669.119L249.517 669.737L249.52 669.733L248.731 669.119ZM239.92 678.75H240.92V676.983H239.92H238.92V678.75H239.92ZM239.92 676.983H240.92C240.92 672.048 242.101 668.596 244.267 666.417L243.558 665.712L242.849 665.007C240.165 667.707 238.92 671.769 238.92 676.983H239.92ZM243.558 665.712L244.265 666.419C246.495 664.19 249.37 663.053 252.979 663.053V662.053V661.053C248.905 661.053 245.5 662.356 242.851 665.005L243.558 665.712ZM252.979 662.053V663.053C256.573 663.053 259.441 664.189 261.671 666.419L262.379 665.712L263.086 665.005C260.437 662.357 257.039 661.053 252.979 661.053V662.053ZM262.379 665.712L261.673 666.421C263.865 668.6 265.059 672.051 265.059 676.983H266.059H267.059C267.059 671.766 265.798 667.702 263.084 665.003L262.379 665.712ZM266.059 676.983H265.059V678.75H266.059H267.059V676.983H266.059ZM266.059 678.75H265.059C265.059 683.682 263.865 687.132 261.673 689.312L262.379 690.021L263.084 690.73C265.798 688.031 267.059 683.967 267.059 678.75H266.059ZM262.379 690.021L261.671 689.314C259.441 691.544 256.573 692.68 252.979 692.68V693.68V694.68C257.039 694.68 260.437 693.376 263.086 690.728L262.379 690.021ZM252.979 693.68V692.68C249.37 692.68 246.495 691.543 244.265 689.314L243.558 690.021L242.851 690.728C245.5 693.377 248.905 694.68 252.979 694.68V693.68ZM243.558 690.021L244.267 689.316C242.101 687.137 240.92 683.685 240.92 678.75H239.92H238.92C238.92 683.964 240.165 688.026 242.849 690.726L243.558 690.021ZM247.175 680.243H246.175C246.175 683.262 246.699 685.679 247.939 687.288L248.731 686.677L249.523 686.067C248.688 684.984 248.175 683.111 248.175 680.243H247.175ZM248.731 686.677L247.942 687.292C249.183 688.884 250.899 689.675 252.979 689.675V688.675V687.675C251.47 687.675 250.355 687.134 249.52 686.063L248.731 686.677ZM252.979 688.675V689.675C255.059 689.675 256.775 688.884 258.016 687.292L257.227 686.677L256.438 686.063C255.603 687.134 254.487 687.675 252.979 687.675V688.675ZM257.227 686.677L258.015 687.293C259.272 685.683 259.804 683.264 259.804 680.243H258.804H257.804C257.804 683.109 257.284 684.979 256.439 686.062L257.227 686.677ZM258.804 680.243H259.804V675.511H258.804H257.804V680.243H258.804ZM258.804 675.511H259.804C259.804 672.493 259.273 670.08 258.008 668.495L257.227 669.119L256.445 669.742C257.283 670.793 257.804 672.642 257.804 675.511H258.804ZM257.227 669.119L258.016 668.504C256.775 666.912 255.059 666.121 252.979 666.121V667.121V668.121C254.487 668.121 255.603 668.662 256.438 669.733L257.227 669.119ZM252.979 667.121V666.121C250.899 666.121 249.183 666.912 247.942 668.504L248.731 669.119L249.52 669.733C250.355 668.662 251.47 668.121 252.979 668.121V667.121ZM248.731 669.119L247.945 668.5C246.698 670.085 246.175 672.495 246.175 675.511H247.175H248.175C248.175 672.64 248.69 670.788 249.517 669.737L248.731 669.119ZM247.175 675.511H246.175V680.243H247.175H248.175V675.511H247.175ZM269.928 662.558V661.558H268.928V662.558H269.928ZM276.93 662.558H277.93V661.558H276.93V662.558ZM278.15 687.329L277.409 688.001L277.414 688.006L278.15 687.329ZM284.858 687.329L284.123 686.651L284.122 686.652L284.858 687.329ZM286.098 662.558V661.558H285.098V662.558H286.098ZM293.038 662.558H294.038V661.558H293.038V662.558ZM289.884 690.841L289.215 690.098L289.212 690.1L289.884 690.841ZM269.928 681.988H270.928V662.558H269.928H268.928V681.988H269.928ZM269.928 662.558V663.558H276.93V662.558V661.558H269.928V662.558ZM276.93 662.558H275.93V682.724H276.93H277.93V662.558H276.93ZM276.93 682.724H275.93C275.93 684.967 276.339 686.82 277.409 688.001L278.15 687.329L278.891 686.658C278.334 686.043 277.93 684.827 277.93 682.724H276.93ZM278.15 687.329L277.414 688.006C278.454 689.137 279.873 689.654 281.535 689.654V688.654V687.654C280.309 687.654 279.471 687.288 278.885 686.652L278.15 687.329ZM281.535 688.654V689.654C283.165 689.654 284.559 689.13 285.593 688.006L284.858 687.329L284.122 686.652C283.531 687.294 282.709 687.654 281.535 687.654V688.654ZM284.858 687.329L285.593 688.007C286.681 686.826 287.098 684.97 287.098 682.724H286.098H285.098C285.098 684.824 284.688 686.038 284.123 686.651L284.858 687.329ZM286.098 682.724H287.098V662.558H286.098H285.098V682.724H286.098ZM286.098 662.558V663.558H293.038V662.558V661.558H286.098V662.558ZM293.038 662.558H292.038V681.988H293.038H294.038V662.558H293.038ZM293.038 681.988H292.038C292.038 685.835 291.031 688.463 289.215 690.098L289.884 690.841L290.553 691.584C292.942 689.434 294.038 686.159 294.038 681.988H293.038ZM289.884 690.841L289.212 690.1C287.347 691.79 284.83 692.68 281.556 692.68V693.68V694.68C285.208 694.68 288.243 693.677 290.555 691.582L289.884 690.841ZM281.556 693.68V692.68C278.222 692.68 275.662 691.787 273.769 690.095L273.103 690.841L272.436 691.586C274.778 693.68 277.853 694.68 281.556 694.68V693.68ZM273.103 690.841L273.769 690.095C271.941 688.46 270.928 685.834 270.928 681.988H269.928H268.928C268.928 686.161 270.032 689.436 272.436 691.586L273.103 690.841Z" fill="black" mask="url(#path-3-outside-1_17007_2267)"/> +<mask id="path-5-outside-2_17007_2267" maskUnits="userSpaceOnUse" x="72" y="605.343" width="261" height="31" fill="black"> +<rect fill="white" x="72" y="605.343" width="261" height="31"/> +<path d="M73.208 634.343V607.327H84.0811C87.0127 607.327 89.2578 608.137 90.8164 609.758C92.375 611.366 93.1543 613.562 93.1543 616.345C93.1543 619.116 92.3812 621.317 90.835 622.95C89.3011 624.571 87.0251 625.381 84.0068 625.381H79.3682V634.343H73.208ZM79.3682 621.039H82.9492C84.4707 621.039 85.5283 620.612 86.1221 619.759C86.7158 618.893 87.0127 617.78 87.0127 616.419C87.0127 615.071 86.7158 613.976 86.1221 613.135C85.5283 612.281 84.4707 611.854 82.9492 611.854H79.3682V621.039ZM94.6201 625.474V624.88C94.6201 622.06 95.5046 619.802 97.2734 618.107C99.0423 616.413 101.362 615.565 104.231 615.565C107.076 615.565 109.291 616.369 110.874 617.978C112.457 619.586 113.249 621.806 113.249 624.639V626.457H98.1641V623.191H107.441V622.932C107.441 622.016 107.169 621.256 106.625 620.649C106.081 620.043 105.271 619.74 104.194 619.74C103.007 619.74 102.098 620.173 101.467 621.039C100.848 621.905 100.539 623.024 100.539 624.397V625.641C100.539 627.199 100.873 628.418 101.541 629.296C102.221 630.174 103.205 630.613 104.491 630.613C105.407 630.613 106.186 630.403 106.829 629.982C107.472 629.562 107.986 629.049 108.369 628.442L113.008 630.354C112.426 631.714 111.424 632.803 110.002 633.619C108.592 634.436 106.78 634.844 104.565 634.844C101.436 634.844 98.9928 634.003 97.2363 632.32C95.4922 630.626 94.6201 628.343 94.6201 625.474ZM115.197 629.036C115.197 627.106 115.952 625.616 117.461 624.564C118.982 623.513 120.949 622.981 123.361 622.969H127.443V621.874C127.443 621.058 127.239 620.414 126.831 619.944C126.423 619.474 125.73 619.239 124.753 619.239C123.776 619.239 123.058 619.437 122.601 619.833C122.143 620.229 121.914 620.755 121.914 621.41V621.744L116.292 621.726V621.354C116.292 619.66 117.09 618.281 118.686 617.217C120.294 616.141 122.434 615.603 125.105 615.603C127.802 615.603 129.855 616.116 131.266 617.143C132.688 618.169 133.399 619.802 133.399 622.041V630.205C133.399 630.947 133.461 631.659 133.585 632.339C133.721 633.007 133.913 633.582 134.16 634.064V634.343H128.297C128.136 634.046 127.994 633.681 127.87 633.248C127.759 632.815 127.685 632.376 127.647 631.931C127.239 632.623 126.509 633.248 125.458 633.805C124.419 634.361 123.108 634.64 121.524 634.64C119.644 634.64 118.117 634.17 116.941 633.229C115.779 632.289 115.197 630.892 115.197 629.036ZM121.116 628.572C121.116 629.352 121.339 629.964 121.784 630.409C122.229 630.842 122.91 631.059 123.825 631.059C124.815 631.059 125.662 630.731 126.367 630.075C127.085 629.407 127.443 628.634 127.443 627.756V626.197H124.809C123.547 626.197 122.613 626.389 122.007 626.772C121.413 627.156 121.116 627.756 121.116 628.572ZM137.37 634.343V616.104H143.159L143.215 618.386H143.289C143.759 617.582 144.477 616.932 145.441 616.438C146.419 615.93 147.563 615.677 148.874 615.677C150.754 615.677 152.282 616.202 153.457 617.254C154.632 618.305 155.22 620.093 155.22 622.616V634.343H149.264V623.136C149.264 622.047 149.029 621.28 148.559 620.835C148.101 620.377 147.451 620.148 146.61 620.148C145.893 620.148 145.243 620.359 144.662 620.779C144.081 621.2 143.635 621.763 143.326 622.468V634.343H137.37ZM158.801 627.7V616.104H164.775V627.273C164.775 628.424 165.01 629.228 165.48 629.686C165.951 630.131 166.6 630.354 167.429 630.354C168.159 630.354 168.808 630.131 169.377 629.686C169.946 629.24 170.385 628.684 170.694 628.016V616.104H176.65V634.343H170.88L170.806 632.042H170.75C170.23 632.871 169.482 633.533 168.505 634.027C167.54 634.522 166.396 634.77 165.072 634.77C163.217 634.77 161.708 634.225 160.545 633.137C159.382 632.036 158.801 630.224 158.801 627.7ZM178.691 620.408V616.104H191.03V620.408H178.691ZM181.475 628.758V617.532L181.586 617.161V610.927H187.356V627.867C187.356 628.931 187.517 629.636 187.839 629.982C188.16 630.329 188.643 630.502 189.286 630.502C189.595 630.502 189.892 630.477 190.177 630.428C190.461 630.366 190.74 630.279 191.012 630.168V634.287C190.69 634.411 190.214 634.528 189.583 634.64C188.952 634.751 188.204 634.807 187.338 634.807C185.495 634.807 184.054 634.33 183.015 633.378C181.988 632.413 181.475 630.873 181.475 628.758ZM202.979 634.343V607.327H213.853C216.784 607.327 219.029 608.137 220.588 609.758C222.146 611.366 222.926 613.562 222.926 616.345C222.926 619.116 222.153 621.317 220.606 622.95C219.073 624.571 216.797 625.381 213.778 625.381H209.14V634.343H202.979ZM209.14 621.039H212.721C214.242 621.039 215.3 620.612 215.894 619.759C216.487 618.893 216.784 617.78 216.784 616.419C216.784 615.071 216.487 613.976 215.894 613.135C215.3 612.281 214.242 611.854 212.721 611.854H209.14V621.039ZM225.635 634.343V616.104H231.665V634.343H225.635ZM225.245 610.37C225.245 609.504 225.542 608.774 226.136 608.181C226.729 607.575 227.577 607.271 228.678 607.271C229.766 607.271 230.601 607.568 231.183 608.162C231.764 608.756 232.055 609.492 232.055 610.37C232.055 611.236 231.758 611.972 231.164 612.578C230.57 613.184 229.729 613.487 228.641 613.487C227.54 613.487 226.699 613.184 226.117 612.578C225.536 611.972 225.245 611.236 225.245 610.37ZM234.708 625.492V624.898C234.708 622.066 235.617 619.802 237.436 618.107C239.254 616.4 241.647 615.547 244.616 615.547C247.585 615.547 249.972 616.4 251.778 618.107C253.597 619.802 254.506 622.066 254.506 624.898V625.492C254.506 628.325 253.597 630.595 251.778 632.302C249.972 633.996 247.585 634.844 244.616 634.844C241.635 634.844 239.235 633.996 237.417 632.302C235.611 630.595 234.708 628.325 234.708 625.492ZM240.757 624.639V625.733C240.757 627.243 241.085 628.424 241.74 629.277C242.408 630.118 243.361 630.539 244.598 630.539C245.847 630.539 246.799 630.118 247.455 629.277C248.123 628.424 248.457 627.243 248.457 625.733V624.639C248.457 623.142 248.123 621.979 247.455 621.15C246.787 620.309 245.835 619.889 244.598 619.889C243.373 619.889 242.427 620.309 241.759 621.15C241.091 621.979 240.757 623.142 240.757 624.639ZM257.493 634.343V616.104H263.282L263.338 618.386H263.412C263.882 617.582 264.6 616.932 265.564 616.438C266.542 615.93 267.686 615.677 268.997 615.677C270.877 615.677 272.405 616.202 273.58 617.254C274.755 618.305 275.343 620.093 275.343 622.616V634.343H269.387V623.136C269.387 622.047 269.152 621.28 268.682 620.835C268.224 620.377 267.575 620.148 266.733 620.148C266.016 620.148 265.367 620.359 264.785 620.779C264.204 621.2 263.758 621.763 263.449 622.468V634.343H257.493ZM278.163 625.474V624.88C278.163 622.06 279.048 619.802 280.816 618.107C282.585 616.413 284.905 615.565 287.774 615.565C290.619 615.565 292.834 616.369 294.417 617.978C296 619.586 296.792 621.806 296.792 624.639V626.457H281.707V623.191H290.984V622.932C290.984 622.016 290.712 621.256 290.168 620.649C289.624 620.043 288.813 619.74 287.737 619.74C286.55 619.74 285.641 620.173 285.01 621.039C284.391 621.905 284.082 623.024 284.082 624.397V625.641C284.082 627.199 284.416 628.418 285.084 629.296C285.764 630.174 286.748 630.613 288.034 630.613C288.95 630.613 289.729 630.403 290.372 629.982C291.015 629.562 291.529 629.049 291.912 628.442L296.551 630.354C295.969 631.714 294.967 632.803 293.545 633.619C292.135 634.436 290.323 634.844 288.108 634.844C284.979 634.844 282.536 634.003 280.779 632.32C279.035 630.626 278.163 628.343 278.163 625.474ZM298.685 625.474V624.88C298.685 622.06 299.569 619.802 301.338 618.107C303.107 616.413 305.426 615.565 308.296 615.565C311.141 615.565 313.355 616.369 314.938 617.978C316.522 619.586 317.313 621.806 317.313 624.639V626.457H302.229V623.191H311.506V622.932C311.506 622.016 311.234 621.256 310.689 620.649C310.145 620.043 309.335 619.74 308.259 619.74C307.071 619.74 306.162 620.173 305.531 621.039C304.913 621.905 304.604 623.024 304.604 624.397V625.641C304.604 627.199 304.938 628.418 305.605 629.296C306.286 630.174 307.269 630.613 308.556 630.613C309.471 630.613 310.25 630.403 310.894 629.982C311.537 629.562 312.05 629.049 312.434 628.442L317.072 630.354C316.491 631.714 315.489 632.803 314.066 633.619C312.656 634.436 310.844 634.844 308.63 634.844C305.5 634.844 303.057 634.003 301.301 632.32C299.557 630.626 298.685 628.343 298.685 625.474ZM320.134 634.343V616.104H325.997L326.071 618.367H326.127C326.56 617.6 327.147 616.963 327.89 616.456C328.632 615.949 329.467 615.695 330.395 615.695C330.716 615.695 331.025 615.72 331.322 615.77C331.619 615.819 331.829 615.868 331.953 615.918V620.612C331.73 620.538 331.471 620.482 331.174 620.445C330.889 620.408 330.568 620.39 330.209 620.39C329.38 620.39 328.601 620.643 327.871 621.15C327.141 621.658 326.578 622.319 326.183 623.136V634.343H320.134Z"/> +</mask> +<path d="M73.208 634.343V607.327H84.0811C87.0127 607.327 89.2578 608.137 90.8164 609.758C92.375 611.366 93.1543 613.562 93.1543 616.345C93.1543 619.116 92.3812 621.317 90.835 622.95C89.3011 624.571 87.0251 625.381 84.0068 625.381H79.3682V634.343H73.208ZM79.3682 621.039H82.9492C84.4707 621.039 85.5283 620.612 86.1221 619.759C86.7158 618.893 87.0127 617.78 87.0127 616.419C87.0127 615.071 86.7158 613.976 86.1221 613.135C85.5283 612.281 84.4707 611.854 82.9492 611.854H79.3682V621.039ZM94.6201 625.474V624.88C94.6201 622.06 95.5046 619.802 97.2734 618.107C99.0423 616.413 101.362 615.565 104.231 615.565C107.076 615.565 109.291 616.369 110.874 617.978C112.457 619.586 113.249 621.806 113.249 624.639V626.457H98.1641V623.191H107.441V622.932C107.441 622.016 107.169 621.256 106.625 620.649C106.081 620.043 105.271 619.74 104.194 619.74C103.007 619.74 102.098 620.173 101.467 621.039C100.848 621.905 100.539 623.024 100.539 624.397V625.641C100.539 627.199 100.873 628.418 101.541 629.296C102.221 630.174 103.205 630.613 104.491 630.613C105.407 630.613 106.186 630.403 106.829 629.982C107.472 629.562 107.986 629.049 108.369 628.442L113.008 630.354C112.426 631.714 111.424 632.803 110.002 633.619C108.592 634.436 106.78 634.844 104.565 634.844C101.436 634.844 98.9928 634.003 97.2363 632.32C95.4922 630.626 94.6201 628.343 94.6201 625.474ZM115.197 629.036C115.197 627.106 115.952 625.616 117.461 624.564C118.982 623.513 120.949 622.981 123.361 622.969H127.443V621.874C127.443 621.058 127.239 620.414 126.831 619.944C126.423 619.474 125.73 619.239 124.753 619.239C123.776 619.239 123.058 619.437 122.601 619.833C122.143 620.229 121.914 620.755 121.914 621.41V621.744L116.292 621.726V621.354C116.292 619.66 117.09 618.281 118.686 617.217C120.294 616.141 122.434 615.603 125.105 615.603C127.802 615.603 129.855 616.116 131.266 617.143C132.688 618.169 133.399 619.802 133.399 622.041V630.205C133.399 630.947 133.461 631.659 133.585 632.339C133.721 633.007 133.913 633.582 134.16 634.064V634.343H128.297C128.136 634.046 127.994 633.681 127.87 633.248C127.759 632.815 127.685 632.376 127.647 631.931C127.239 632.623 126.509 633.248 125.458 633.805C124.419 634.361 123.108 634.64 121.524 634.64C119.644 634.64 118.117 634.17 116.941 633.229C115.779 632.289 115.197 630.892 115.197 629.036ZM121.116 628.572C121.116 629.352 121.339 629.964 121.784 630.409C122.229 630.842 122.91 631.059 123.825 631.059C124.815 631.059 125.662 630.731 126.367 630.075C127.085 629.407 127.443 628.634 127.443 627.756V626.197H124.809C123.547 626.197 122.613 626.389 122.007 626.772C121.413 627.156 121.116 627.756 121.116 628.572ZM137.37 634.343V616.104H143.159L143.215 618.386H143.289C143.759 617.582 144.477 616.932 145.441 616.438C146.419 615.93 147.563 615.677 148.874 615.677C150.754 615.677 152.282 616.202 153.457 617.254C154.632 618.305 155.22 620.093 155.22 622.616V634.343H149.264V623.136C149.264 622.047 149.029 621.28 148.559 620.835C148.101 620.377 147.451 620.148 146.61 620.148C145.893 620.148 145.243 620.359 144.662 620.779C144.081 621.2 143.635 621.763 143.326 622.468V634.343H137.37ZM158.801 627.7V616.104H164.775V627.273C164.775 628.424 165.01 629.228 165.48 629.686C165.951 630.131 166.6 630.354 167.429 630.354C168.159 630.354 168.808 630.131 169.377 629.686C169.946 629.24 170.385 628.684 170.694 628.016V616.104H176.65V634.343H170.88L170.806 632.042H170.75C170.23 632.871 169.482 633.533 168.505 634.027C167.54 634.522 166.396 634.77 165.072 634.77C163.217 634.77 161.708 634.225 160.545 633.137C159.382 632.036 158.801 630.224 158.801 627.7ZM178.691 620.408V616.104H191.03V620.408H178.691ZM181.475 628.758V617.532L181.586 617.161V610.927H187.356V627.867C187.356 628.931 187.517 629.636 187.839 629.982C188.16 630.329 188.643 630.502 189.286 630.502C189.595 630.502 189.892 630.477 190.177 630.428C190.461 630.366 190.74 630.279 191.012 630.168V634.287C190.69 634.411 190.214 634.528 189.583 634.64C188.952 634.751 188.204 634.807 187.338 634.807C185.495 634.807 184.054 634.33 183.015 633.378C181.988 632.413 181.475 630.873 181.475 628.758ZM202.979 634.343V607.327H213.853C216.784 607.327 219.029 608.137 220.588 609.758C222.146 611.366 222.926 613.562 222.926 616.345C222.926 619.116 222.153 621.317 220.606 622.95C219.073 624.571 216.797 625.381 213.778 625.381H209.14V634.343H202.979ZM209.14 621.039H212.721C214.242 621.039 215.3 620.612 215.894 619.759C216.487 618.893 216.784 617.78 216.784 616.419C216.784 615.071 216.487 613.976 215.894 613.135C215.3 612.281 214.242 611.854 212.721 611.854H209.14V621.039ZM225.635 634.343V616.104H231.665V634.343H225.635ZM225.245 610.37C225.245 609.504 225.542 608.774 226.136 608.181C226.729 607.575 227.577 607.271 228.678 607.271C229.766 607.271 230.601 607.568 231.183 608.162C231.764 608.756 232.055 609.492 232.055 610.37C232.055 611.236 231.758 611.972 231.164 612.578C230.57 613.184 229.729 613.487 228.641 613.487C227.54 613.487 226.699 613.184 226.117 612.578C225.536 611.972 225.245 611.236 225.245 610.37ZM234.708 625.492V624.898C234.708 622.066 235.617 619.802 237.436 618.107C239.254 616.4 241.647 615.547 244.616 615.547C247.585 615.547 249.972 616.4 251.778 618.107C253.597 619.802 254.506 622.066 254.506 624.898V625.492C254.506 628.325 253.597 630.595 251.778 632.302C249.972 633.996 247.585 634.844 244.616 634.844C241.635 634.844 239.235 633.996 237.417 632.302C235.611 630.595 234.708 628.325 234.708 625.492ZM240.757 624.639V625.733C240.757 627.243 241.085 628.424 241.74 629.277C242.408 630.118 243.361 630.539 244.598 630.539C245.847 630.539 246.799 630.118 247.455 629.277C248.123 628.424 248.457 627.243 248.457 625.733V624.639C248.457 623.142 248.123 621.979 247.455 621.15C246.787 620.309 245.835 619.889 244.598 619.889C243.373 619.889 242.427 620.309 241.759 621.15C241.091 621.979 240.757 623.142 240.757 624.639ZM257.493 634.343V616.104H263.282L263.338 618.386H263.412C263.882 617.582 264.6 616.932 265.564 616.438C266.542 615.93 267.686 615.677 268.997 615.677C270.877 615.677 272.405 616.202 273.58 617.254C274.755 618.305 275.343 620.093 275.343 622.616V634.343H269.387V623.136C269.387 622.047 269.152 621.28 268.682 620.835C268.224 620.377 267.575 620.148 266.733 620.148C266.016 620.148 265.367 620.359 264.785 620.779C264.204 621.2 263.758 621.763 263.449 622.468V634.343H257.493ZM278.163 625.474V624.88C278.163 622.06 279.048 619.802 280.816 618.107C282.585 616.413 284.905 615.565 287.774 615.565C290.619 615.565 292.834 616.369 294.417 617.978C296 619.586 296.792 621.806 296.792 624.639V626.457H281.707V623.191H290.984V622.932C290.984 622.016 290.712 621.256 290.168 620.649C289.624 620.043 288.813 619.74 287.737 619.74C286.55 619.74 285.641 620.173 285.01 621.039C284.391 621.905 284.082 623.024 284.082 624.397V625.641C284.082 627.199 284.416 628.418 285.084 629.296C285.764 630.174 286.748 630.613 288.034 630.613C288.95 630.613 289.729 630.403 290.372 629.982C291.015 629.562 291.529 629.049 291.912 628.442L296.551 630.354C295.969 631.714 294.967 632.803 293.545 633.619C292.135 634.436 290.323 634.844 288.108 634.844C284.979 634.844 282.536 634.003 280.779 632.32C279.035 630.626 278.163 628.343 278.163 625.474ZM298.685 625.474V624.88C298.685 622.06 299.569 619.802 301.338 618.107C303.107 616.413 305.426 615.565 308.296 615.565C311.141 615.565 313.355 616.369 314.938 617.978C316.522 619.586 317.313 621.806 317.313 624.639V626.457H302.229V623.191H311.506V622.932C311.506 622.016 311.234 621.256 310.689 620.649C310.145 620.043 309.335 619.74 308.259 619.74C307.071 619.74 306.162 620.173 305.531 621.039C304.913 621.905 304.604 623.024 304.604 624.397V625.641C304.604 627.199 304.938 628.418 305.605 629.296C306.286 630.174 307.269 630.613 308.556 630.613C309.471 630.613 310.25 630.403 310.894 629.982C311.537 629.562 312.05 629.049 312.434 628.442L317.072 630.354C316.491 631.714 315.489 632.803 314.066 633.619C312.656 634.436 310.844 634.844 308.63 634.844C305.5 634.844 303.057 634.003 301.301 632.32C299.557 630.626 298.685 628.343 298.685 625.474ZM320.134 634.343V616.104H325.997L326.071 618.367H326.127C326.56 617.6 327.147 616.963 327.89 616.456C328.632 615.949 329.467 615.695 330.395 615.695C330.716 615.695 331.025 615.72 331.322 615.77C331.619 615.819 331.829 615.868 331.953 615.918V620.612C331.73 620.538 331.471 620.482 331.174 620.445C330.889 620.408 330.568 620.39 330.209 620.39C329.38 620.39 328.601 620.643 327.871 621.15C327.141 621.658 326.578 622.319 326.183 623.136V634.343H320.134Z" fill="white"/> +<path d="M73.208 634.343H72.208V635.343H73.208V634.343ZM73.208 607.327V606.327H72.208V607.327H73.208ZM90.8164 609.758L90.0957 610.451L90.0983 610.454L90.8164 609.758ZM90.835 622.95L90.1089 622.263L90.1087 622.263L90.835 622.95ZM79.3682 625.381V624.381H78.3682V625.381H79.3682ZM79.3682 634.343V635.343H80.3682V634.343H79.3682ZM79.3682 621.039H78.3682V622.039H79.3682V621.039ZM86.1221 619.759L86.943 620.33L86.9468 620.324L86.1221 619.759ZM86.1221 613.135L85.3011 613.706L85.3051 613.711L86.1221 613.135ZM79.3682 611.854V610.854H78.3682V611.854H79.3682ZM73.208 634.343H74.208V607.327H73.208H72.208V634.343H73.208ZM73.208 607.327V608.327H84.0811V607.327V606.327H73.208V607.327ZM84.0811 607.327V608.327C86.8273 608.327 88.7782 609.081 90.0957 610.451L90.8164 609.758L91.5371 609.065C89.7374 607.193 87.1981 606.327 84.0811 606.327V607.327ZM90.8164 609.758L90.0983 610.454C91.4346 611.832 92.1543 613.755 92.1543 616.345H93.1543H94.1543C94.1543 613.368 93.3154 610.899 91.5345 609.062L90.8164 609.758ZM93.1543 616.345H92.1543C92.1543 618.922 91.4405 620.856 90.1089 622.263L90.835 622.95L91.5611 623.638C93.3219 621.778 94.1543 619.309 94.1543 616.345H93.1543ZM90.835 622.95L90.1087 622.263C88.8232 623.621 86.8508 624.381 84.0068 624.381V625.381V626.381C87.1993 626.381 89.779 625.52 91.5612 623.638L90.835 622.95ZM84.0068 625.381V624.381H79.3682V625.381V626.381H84.0068V625.381ZM79.3682 625.381H78.3682V634.343H79.3682H80.3682V625.381H79.3682ZM79.3682 634.343V633.343H73.208V634.343V635.343H79.3682V634.343ZM79.3682 621.039V622.039H82.9492V621.039V620.039H79.3682V621.039ZM82.9492 621.039V622.039C84.6371 622.039 86.0861 621.562 86.943 620.33L86.1221 619.759L85.3012 619.188C84.9705 619.663 84.3043 620.039 82.9492 620.039V621.039ZM86.1221 619.759L86.9468 620.324C87.6842 619.249 88.0127 617.922 88.0127 616.419H87.0127H86.0127C86.0127 617.637 85.7474 618.537 85.2973 619.193L86.1221 619.759ZM87.0127 616.419H88.0127C88.0127 614.928 87.6839 613.613 86.939 612.558L86.1221 613.135L85.3051 613.711C85.7478 614.339 86.0127 615.214 86.0127 616.419H87.0127ZM86.1221 613.135L86.943 612.564C86.0861 611.332 84.6371 610.854 82.9492 610.854V611.854V612.854C84.3043 612.854 84.9705 613.23 85.3012 613.706L86.1221 613.135ZM82.9492 611.854V610.854H79.3682V611.854V612.854H82.9492V611.854ZM79.3682 611.854H78.3682V621.039H79.3682H80.3682V611.854H79.3682ZM97.2734 618.107L97.9652 618.83L97.2734 618.107ZM113.249 626.457V627.457H114.249V626.457H113.249ZM98.1641 626.457H97.1641V627.457H98.1641V626.457ZM98.1641 623.191V622.191H97.1641V623.191H98.1641ZM107.441 623.191V624.191H108.441V623.191H107.441ZM101.467 621.039L100.659 620.45L100.653 620.458L101.467 621.039ZM101.541 629.296L100.745 629.901L100.75 629.908L101.541 629.296ZM108.369 628.442L108.75 627.518L107.973 627.198L107.524 627.908L108.369 628.442ZM113.008 630.354L113.927 630.746L114.325 629.815L113.389 629.429L113.008 630.354ZM110.002 633.619L109.504 632.752L109.501 632.754L110.002 633.619ZM97.2363 632.32L96.5394 633.038L96.5446 633.043L97.2363 632.32ZM94.6201 625.474H95.6201V624.88H94.6201H93.6201V625.474H94.6201ZM94.6201 624.88H95.6201C95.6201 622.287 96.4235 620.307 97.9652 618.83L97.2734 618.107L96.5816 617.385C94.5856 619.298 93.6201 621.832 93.6201 624.88H94.6201ZM97.2734 618.107L97.9652 618.83C99.5164 617.343 101.572 616.565 104.231 616.565V615.565V614.565C101.151 614.565 98.5683 615.482 96.5816 617.385L97.2734 618.107ZM104.231 615.565V616.565C106.882 616.565 108.812 617.309 110.161 618.679L110.874 617.978L111.587 617.276C109.769 615.43 107.271 614.565 104.231 614.565V615.565ZM110.874 617.978L110.161 618.679C111.516 620.055 112.249 621.998 112.249 624.639H113.249H114.249C114.249 621.614 113.398 619.116 111.587 617.276L110.874 617.978ZM113.249 624.639H112.249V626.457H113.249H114.249V624.639H113.249ZM113.249 626.457V625.457H98.1641V626.457V627.457H113.249V626.457ZM98.1641 626.457H99.1641V623.191H98.1641H97.1641V626.457H98.1641ZM98.1641 623.191V624.191H107.441V623.191V622.191H98.1641V623.191ZM107.441 623.191H108.441V622.932H107.441H106.441V623.191H107.441ZM107.441 622.932H108.441C108.441 621.802 108.099 620.794 107.369 619.981L106.625 620.649L105.881 621.318C106.24 621.717 106.441 622.23 106.441 622.932H107.441ZM106.625 620.649L107.369 619.981C106.579 619.102 105.458 618.74 104.194 618.74V619.74V620.74C105.083 620.74 105.582 620.985 105.881 621.318L106.625 620.649ZM104.194 619.74V618.74C102.727 618.74 101.5 619.295 100.659 620.45L101.467 621.039L102.275 621.628C102.695 621.051 103.286 620.74 104.194 620.74V619.74ZM101.467 621.039L100.653 620.458C99.8825 621.537 99.5391 622.876 99.5391 624.397H100.539H101.539C101.539 623.172 101.814 622.273 102.281 621.62L101.467 621.039ZM100.539 624.397H99.5391V625.641H100.539H101.539V624.397H100.539ZM100.539 625.641H99.5391C99.5391 627.33 99.8999 628.79 100.745 629.901L101.541 629.296L102.337 628.691C101.846 628.045 101.539 627.068 101.539 625.641H100.539ZM101.541 629.296L100.75 629.908C101.652 631.072 102.951 631.613 104.491 631.613V630.613V629.613C103.459 629.613 102.791 629.277 102.332 628.684L101.541 629.296ZM104.491 630.613V631.613C105.563 631.613 106.542 631.365 107.376 630.819L106.829 629.982L106.282 629.145C105.83 629.441 105.25 629.613 104.491 629.613V630.613ZM106.829 629.982L107.376 630.819C108.131 630.326 108.749 629.713 109.214 628.977L108.369 628.442L107.524 627.908C107.222 628.384 106.814 628.797 106.282 629.145L106.829 629.982ZM108.369 628.442L107.988 629.367L112.627 631.278L113.008 630.354L113.389 629.429L108.75 627.518L108.369 628.442ZM113.008 630.354L112.088 629.961C111.601 631.1 110.76 632.031 109.504 632.752L110.002 633.619L110.5 634.486C112.089 633.574 113.251 632.329 113.927 630.746L113.008 630.354ZM110.002 633.619L109.501 632.754C108.288 633.456 106.664 633.844 104.565 633.844V634.844V635.844C106.895 635.844 108.895 635.415 110.503 634.485L110.002 633.619ZM104.565 634.844V633.844C101.617 633.844 99.4495 633.055 97.928 631.598L97.2363 632.32L96.5446 633.043C98.5362 634.95 101.255 635.844 104.565 635.844V634.844ZM97.2363 632.32L97.9332 631.603C96.4176 630.13 95.6201 628.126 95.6201 625.474H94.6201H93.6201C93.6201 628.561 94.5668 631.121 96.5395 633.038L97.2363 632.32ZM117.461 624.564L116.892 623.742L116.889 623.744L117.461 624.564ZM123.361 622.969V621.969L123.356 621.969L123.361 622.969ZM127.443 622.969V623.969H128.443V622.969H127.443ZM121.914 621.744L121.911 622.744L122.914 622.747V621.744H121.914ZM116.292 621.726H115.292V622.722L116.289 622.726L116.292 621.726ZM118.686 617.217L119.24 618.049L119.242 618.048L118.686 617.217ZM131.266 617.143L130.677 617.951L130.68 617.953L131.266 617.143ZM133.585 632.339L132.601 632.518L132.603 632.528L132.605 632.538L133.585 632.339ZM134.16 634.064H135.16V633.823L135.05 633.608L134.16 634.064ZM134.16 634.343V635.343H135.16V634.343H134.16ZM128.297 634.343L127.418 634.819L127.701 635.343H128.297V634.343ZM127.87 633.248L126.902 633.497L126.905 633.51L126.909 633.523L127.87 633.248ZM127.647 631.931L128.644 631.848L128.383 628.713L126.786 631.423L127.647 631.931ZM125.458 633.805L124.99 632.921L124.986 632.923L125.458 633.805ZM116.941 633.229L116.313 634.007L116.317 634.01L116.941 633.229ZM121.784 630.409L121.077 631.116L121.087 631.126L121.784 630.409ZM126.367 630.075L127.048 630.808L127.049 630.807L126.367 630.075ZM127.443 626.197H128.443V625.197H127.443V626.197ZM122.007 626.772L121.472 625.927L121.464 625.932L122.007 626.772ZM115.197 629.036H116.197C116.197 627.414 116.807 626.239 118.033 625.385L117.461 624.564L116.889 623.744C115.097 624.993 114.197 626.798 114.197 629.036H115.197ZM117.461 624.564L118.029 625.387C119.342 624.48 121.095 623.98 123.366 623.969L123.361 622.969L123.356 621.969C120.803 621.982 118.623 622.546 116.892 623.742L117.461 624.564ZM123.361 622.969V623.969H127.443V622.969V621.969H123.361V622.969ZM127.443 622.969H128.443V621.874H127.443H126.443V622.969H127.443ZM127.443 621.874H128.443C128.443 620.893 128.196 619.991 127.586 619.289L126.831 619.944L126.076 620.6C126.282 620.838 126.443 621.222 126.443 621.874H127.443ZM126.831 619.944L127.586 619.289C126.902 618.501 125.856 618.239 124.753 618.239V619.239V620.239C125.604 620.239 125.944 620.448 126.076 620.6L126.831 619.944ZM124.753 619.239V618.239C123.674 618.239 122.669 618.452 121.946 619.077L122.601 619.833L123.255 620.589C123.448 620.422 123.877 620.239 124.753 620.239V619.239ZM122.601 619.833L121.946 619.077C121.249 619.68 120.914 620.492 120.914 621.41H121.914H122.914C122.914 621.018 123.037 620.778 123.255 620.589L122.601 619.833ZM121.914 621.41H120.914V621.744H121.914H122.914V621.41H121.914ZM121.914 621.744L121.917 620.744L116.295 620.726L116.292 621.726L116.289 622.726L121.911 622.744L121.914 621.744ZM116.292 621.726H117.292V621.354H116.292H115.292V621.726H116.292ZM116.292 621.354H117.292C117.292 620.043 117.88 618.956 119.24 618.049L118.686 617.217L118.131 616.385C116.3 617.605 115.292 619.277 115.292 621.354H116.292ZM118.686 617.217L119.242 618.048C120.634 617.116 122.559 616.603 125.105 616.603V615.603V614.603C122.309 614.603 119.954 615.165 118.129 616.386L118.686 617.217ZM125.105 615.603V616.603C127.699 616.603 129.508 617.1 130.677 617.951L131.266 617.143L131.854 616.334C130.203 615.132 127.906 614.603 125.105 614.603V615.603ZM131.266 617.143L130.68 617.953C131.772 618.741 132.399 620.025 132.399 622.041H133.399H134.399C134.399 619.579 133.605 617.597 131.851 616.332L131.266 617.143ZM133.399 622.041H132.399V630.205H133.399H134.399V622.041H133.399ZM133.399 630.205H132.399C132.399 631.003 132.466 631.774 132.601 632.518L133.585 632.339L134.569 632.16C134.457 631.543 134.399 630.892 134.399 630.205H133.399ZM133.585 632.339L132.605 632.538C132.755 633.274 132.972 633.94 133.27 634.521L134.16 634.064L135.05 633.608C134.853 633.224 134.687 632.74 134.565 632.139L133.585 632.339ZM134.16 634.064H133.16V634.343H134.16H135.16V634.064H134.16ZM134.16 634.343V633.343H128.297V634.343V635.343H134.16V634.343ZM128.297 634.343L129.176 633.866C129.059 633.651 128.942 633.358 128.832 632.973L127.87 633.248L126.909 633.523C127.046 634.004 127.213 634.441 127.418 634.819L128.297 634.343ZM127.87 633.248L128.839 632.999C128.741 632.62 128.676 632.237 128.644 631.848L127.647 631.931L126.651 632.014C126.693 632.515 126.776 633.01 126.902 633.497L127.87 633.248ZM127.647 631.931L126.786 631.423C126.506 631.897 125.951 632.412 124.99 632.921L125.458 633.805L125.926 634.688C127.067 634.084 127.972 633.349 128.509 632.438L127.647 631.931ZM125.458 633.805L124.986 632.923C124.133 633.38 122.997 633.64 121.524 633.64V634.64V635.64C123.218 635.64 124.705 635.343 125.93 634.686L125.458 633.805ZM121.524 634.64V633.64C119.813 633.64 118.523 633.214 117.566 632.449L116.941 633.229L116.317 634.01C117.71 635.125 119.475 635.64 121.524 635.64V634.64ZM116.941 633.229L117.57 632.452C116.698 631.747 116.197 630.669 116.197 629.036H115.197H114.197C114.197 631.114 114.859 632.832 116.313 634.007L116.941 633.229ZM121.116 628.572H120.116C120.116 629.55 120.402 630.441 121.077 631.116L121.784 630.409L122.491 629.702C122.276 629.487 122.116 629.153 122.116 628.572H121.116ZM121.784 630.409L121.087 631.126C121.791 631.811 122.772 632.059 123.825 632.059V631.059V630.059C123.048 630.059 122.668 629.873 122.481 629.692L121.784 630.409ZM123.825 631.059V632.059C125.06 632.059 126.152 631.64 127.048 630.808L126.367 630.075L125.686 629.343C125.172 629.821 124.57 630.059 123.825 630.059V631.059ZM126.367 630.075L127.049 630.807C127.943 629.974 128.443 628.946 128.443 627.756H127.443H126.443C126.443 628.323 126.226 628.84 125.686 629.343L126.367 630.075ZM127.443 627.756H128.443V626.197H127.443H126.443V627.756H127.443ZM127.443 626.197V625.197H124.809V626.197V627.197H127.443V626.197ZM124.809 626.197V625.197C123.483 625.197 122.319 625.392 121.472 625.927L122.007 626.772L122.541 627.618C122.907 627.386 123.611 627.197 124.809 627.197V626.197ZM122.007 626.772L121.464 625.932C120.537 626.531 120.116 627.478 120.116 628.572H121.116H122.116C122.116 628.034 122.289 627.781 122.549 627.612L122.007 626.772ZM137.37 634.343H136.37V635.343H137.37V634.343ZM137.37 616.104V615.104H136.37V616.104H137.37ZM143.159 616.104L144.159 616.079L144.135 615.104H143.159V616.104ZM143.215 618.386L142.215 618.41L142.239 619.386H143.215V618.386ZM143.289 618.386V619.386H143.863L144.152 618.89L143.289 618.386ZM145.441 616.438L145.898 617.327L145.902 617.325L145.441 616.438ZM153.457 617.254L154.124 616.509L153.457 617.254ZM155.22 634.343V635.343H156.22V634.343H155.22ZM149.264 634.343H148.264V635.343H149.264V634.343ZM148.559 620.835L147.851 621.542L147.861 621.552L147.871 621.561L148.559 620.835ZM144.662 620.779L144.076 619.969L144.662 620.779ZM143.326 622.468L142.41 622.066L142.326 622.258V622.468H143.326ZM143.326 634.343V635.343H144.326V634.343H143.326ZM137.37 634.343H138.37V616.104H137.37H136.37V634.343H137.37ZM137.37 616.104V617.104H143.159V616.104V615.104H137.37V616.104ZM143.159 616.104L142.159 616.128L142.215 618.41L143.215 618.386L144.215 618.361L144.159 616.079L143.159 616.104ZM143.215 618.386V619.386H143.289V618.386V617.386H143.215V618.386ZM143.289 618.386L144.152 618.89C144.511 618.276 145.074 617.75 145.898 617.327L145.441 616.438L144.985 615.548C143.879 616.115 143.007 616.887 142.426 617.881L143.289 618.386ZM145.441 616.438L145.902 617.325C146.712 616.905 147.693 616.677 148.874 616.677V615.677V614.677C147.433 614.677 146.125 614.956 144.981 615.55L145.441 616.438ZM148.874 615.677V616.677C150.558 616.677 151.833 617.142 152.79 617.999L153.457 617.254L154.124 616.509C152.731 615.263 150.95 614.677 148.874 614.677V615.677ZM153.457 617.254L152.79 617.999C153.654 618.772 154.22 620.21 154.22 622.616H155.22H156.22C156.22 619.975 155.61 617.838 154.124 616.509L153.457 617.254ZM155.22 622.616H154.22V634.343H155.22H156.22V622.616H155.22ZM155.22 634.343V633.343H149.264V634.343V635.343H155.22V634.343ZM149.264 634.343H150.264V623.136H149.264H148.264V634.343H149.264ZM149.264 623.136H150.264C150.264 621.95 150.016 620.838 149.246 620.109L148.559 620.835L147.871 621.561C148.042 621.723 148.264 622.144 148.264 623.136H149.264ZM148.559 620.835L149.266 620.128C148.569 619.431 147.634 619.148 146.61 619.148V620.148V621.148C147.269 621.148 147.633 621.323 147.851 621.542L148.559 620.835ZM146.61 620.148V619.148C145.682 619.148 144.828 619.425 144.076 619.969L144.662 620.779L145.248 621.59C145.659 621.292 146.103 621.148 146.61 621.148V620.148ZM144.662 620.779L144.076 619.969C143.34 620.502 142.786 621.21 142.41 622.066L143.326 622.468L144.242 622.869C144.485 622.315 144.822 621.898 145.248 621.59L144.662 620.779ZM143.326 622.468H142.326V634.343H143.326H144.326V622.468H143.326ZM143.326 634.343V633.343H137.37V634.343V635.343H143.326V634.343ZM158.801 616.104V615.104H157.801V616.104H158.801ZM164.775 616.104H165.775V615.104H164.775V616.104ZM165.48 629.686L164.783 630.402L164.793 630.411L165.48 629.686ZM170.694 628.016L171.602 628.436L171.694 628.236V628.016H170.694ZM170.694 616.104V615.104H169.694V616.104H170.694ZM176.65 616.104H177.65V615.104H176.65V616.104ZM176.65 634.343V635.343H177.65V634.343H176.65ZM170.88 634.343L169.88 634.375L169.912 635.343H170.88V634.343ZM170.806 632.042L171.805 632.01L171.774 631.042H170.806V632.042ZM170.75 632.042V631.042H170.197L169.903 631.511L170.75 632.042ZM168.505 634.027L168.053 633.135L168.049 633.138L168.505 634.027ZM160.545 633.137L159.857 633.863L159.861 633.867L160.545 633.137ZM158.801 627.7H159.801V616.104H158.801H157.801V627.7H158.801ZM158.801 616.104V617.104H164.775V616.104V615.104H158.801V616.104ZM164.775 616.104H163.775V627.273H164.775H165.775V616.104H164.775ZM164.775 627.273H163.775C163.775 628.505 164.017 629.656 164.783 630.402L165.48 629.686L166.178 628.969C166.004 628.8 165.775 628.343 165.775 627.273H164.775ZM165.48 629.686L164.793 630.411C165.496 631.078 166.419 631.354 167.429 631.354V630.354V629.354C166.781 629.354 166.405 629.184 166.168 628.96L165.48 629.686ZM167.429 630.354V631.354C168.379 631.354 169.246 631.058 169.993 630.473L169.377 629.686L168.761 628.898C168.369 629.204 167.938 629.354 167.429 629.354V630.354ZM169.377 629.686L169.993 630.473C170.689 629.928 171.227 629.245 171.602 628.436L170.694 628.016L169.787 627.596C169.543 628.122 169.202 628.552 168.761 628.898L169.377 629.686ZM170.694 628.016H171.694V616.104H170.694H169.694V628.016H170.694ZM170.694 616.104V617.104H176.65V616.104V615.104H170.694V616.104ZM176.65 616.104H175.65V634.343H176.65H177.65V616.104H176.65ZM176.65 634.343V633.343H170.88V634.343V635.343H176.65V634.343ZM170.88 634.343L171.879 634.311L171.805 632.01L170.806 632.042L169.806 632.074L169.88 634.375L170.88 634.343ZM170.806 632.042V631.042H170.75V632.042V633.042H170.806V632.042ZM170.75 632.042L169.903 631.511C169.491 632.168 168.888 632.712 168.053 633.135L168.505 634.027L168.957 634.92C170.076 634.353 170.97 633.574 171.597 632.573L170.75 632.042ZM168.505 634.027L168.049 633.138C167.253 633.546 166.272 633.77 165.072 633.77V634.77V635.77C166.52 635.77 167.827 635.499 168.961 634.917L168.505 634.027ZM165.072 634.77V633.77C163.426 633.77 162.176 633.293 161.228 632.407L160.545 633.137L159.861 633.867C161.24 635.157 163.008 635.77 165.072 635.77V634.77ZM160.545 633.137L161.232 632.411C160.359 631.583 159.801 630.103 159.801 627.7H158.801H157.801C157.801 630.344 158.405 632.488 159.857 633.863L160.545 633.137ZM178.691 620.408H177.691V621.408H178.691V620.408ZM178.691 616.104V615.104H177.691V616.104H178.691ZM191.03 616.104H192.03V615.104H191.03V616.104ZM191.03 620.408V621.408H192.03V620.408H191.03ZM181.475 617.532L180.517 617.245L180.475 617.385V617.532H181.475ZM181.586 617.161L182.544 617.448L182.586 617.308V617.161H181.586ZM181.586 610.927V609.927H180.586V610.927H181.586ZM187.356 610.927H188.356V609.927H187.356V610.927ZM187.839 629.982L187.106 630.663L187.839 629.982ZM190.177 630.428L190.348 631.413L190.369 631.409L190.389 631.405L190.177 630.428ZM191.012 630.168H192.012V628.678L190.633 629.242L191.012 630.168ZM191.012 634.287L191.371 635.22L192.012 634.974V634.287H191.012ZM183.015 633.378L182.33 634.107L182.339 634.115L183.015 633.378ZM178.691 620.408H179.691V616.104H178.691H177.691V620.408H178.691ZM178.691 616.104V617.104H191.03V616.104V615.104H178.691V616.104ZM191.03 616.104H190.03V620.408H191.03H192.03V616.104H191.03ZM191.03 620.408V619.408H178.691V620.408V621.408H191.03V620.408ZM181.475 628.758H182.475V617.532H181.475H180.475V628.758H181.475ZM181.475 617.532L182.432 617.82L182.544 617.448L181.586 617.161L180.628 616.874L180.517 617.245L181.475 617.532ZM181.586 617.161H182.586V610.927H181.586H180.586V617.161H181.586ZM181.586 610.927V611.927H187.356V610.927V609.927H181.586V610.927ZM187.356 610.927H186.356V627.867H187.356H188.356V610.927H187.356ZM187.356 627.867H186.356C186.356 628.442 186.399 628.965 186.502 629.416C186.603 629.857 186.779 630.31 187.106 630.663L187.839 629.982L188.572 629.302C188.578 629.308 188.512 629.236 188.452 628.971C188.394 628.717 188.356 628.356 188.356 627.867H187.356ZM187.839 629.982L187.106 630.663C187.678 631.278 188.469 631.502 189.286 631.502V630.502V629.502C188.817 629.502 188.643 629.379 188.572 629.302L187.839 629.982ZM189.286 630.502V631.502C189.649 631.502 190.003 631.473 190.348 631.413L190.177 630.428L190.005 629.443C189.781 629.481 189.542 629.502 189.286 629.502V630.502ZM190.177 630.428L190.389 631.405C190.731 631.331 191.065 631.227 191.39 631.094L191.012 630.168L190.633 629.242C190.414 629.332 190.191 629.401 189.964 629.451L190.177 630.428ZM191.012 630.168H190.012V634.287H191.012H192.012V630.168H191.012ZM191.012 634.287L190.653 633.354C190.422 633.443 190.021 633.547 189.409 633.655L189.583 634.64L189.757 635.624C190.407 635.51 190.958 635.379 191.371 635.22L191.012 634.287ZM189.583 634.64L189.409 633.655C188.852 633.753 188.164 633.807 187.338 633.807V634.807V635.807C188.243 635.807 189.053 635.749 189.757 635.624L189.583 634.64ZM187.338 634.807V633.807C185.666 633.807 184.494 633.377 183.69 632.641L183.015 633.378L182.339 634.115C183.613 635.283 185.324 635.807 187.338 635.807V634.807ZM183.015 633.378L183.699 632.649C182.956 631.951 182.475 630.735 182.475 628.758H181.475H180.475C180.475 631.011 181.02 632.875 182.33 634.107L183.015 633.378ZM202.979 634.343H201.979V635.343H202.979V634.343ZM202.979 607.327V606.327H201.979V607.327H202.979ZM220.588 609.758L219.867 610.451L219.87 610.454L220.588 609.758ZM220.606 622.95L219.88 622.263L219.88 622.263L220.606 622.95ZM209.14 625.381V624.381H208.14V625.381H209.14ZM209.14 634.343V635.343H210.14V634.343H209.14ZM209.14 621.039H208.14V622.039H209.14V621.039ZM215.894 619.759L216.714 620.33L216.718 620.324L215.894 619.759ZM215.894 613.135L215.073 613.706L215.077 613.711L215.894 613.135ZM209.14 611.854V610.854H208.14V611.854H209.14ZM202.979 634.343H203.979V607.327H202.979H201.979V634.343H202.979ZM202.979 607.327V608.327H213.853V607.327V606.327H202.979V607.327ZM213.853 607.327V608.327C216.599 608.327 218.55 609.081 219.867 610.451L220.588 609.758L221.309 609.065C219.509 607.193 216.97 606.327 213.853 606.327V607.327ZM220.588 609.758L219.87 610.454C221.206 611.832 221.926 613.755 221.926 616.345H222.926H223.926C223.926 613.368 223.087 610.899 221.306 609.062L220.588 609.758ZM222.926 616.345H221.926C221.926 618.922 221.212 620.856 219.88 622.263L220.606 622.95L221.333 623.638C223.093 621.778 223.926 619.309 223.926 616.345H222.926ZM220.606 622.95L219.88 622.263C218.595 623.621 216.622 624.381 213.778 624.381V625.381V626.381C216.971 626.381 219.551 625.52 221.333 623.638L220.606 622.95ZM213.778 625.381V624.381H209.14V625.381V626.381H213.778V625.381ZM209.14 625.381H208.14V634.343H209.14H210.14V625.381H209.14ZM209.14 634.343V633.343H202.979V634.343V635.343H209.14V634.343ZM209.14 621.039V622.039H212.721V621.039V620.039H209.14V621.039ZM212.721 621.039V622.039C214.409 622.039 215.858 621.562 216.714 620.33L215.894 619.759L215.073 619.188C214.742 619.663 214.076 620.039 212.721 620.039V621.039ZM215.894 619.759L216.718 620.324C217.456 619.249 217.784 617.922 217.784 616.419H216.784H215.784C215.784 617.637 215.519 618.537 215.069 619.193L215.894 619.759ZM216.784 616.419H217.784C217.784 614.928 217.455 613.613 216.711 612.558L215.894 613.135L215.077 613.711C215.519 614.339 215.784 615.214 215.784 616.419H216.784ZM215.894 613.135L216.714 612.564C215.858 611.332 214.409 610.854 212.721 610.854V611.854V612.854C214.076 612.854 214.742 613.23 215.073 613.706L215.894 613.135ZM212.721 611.854V610.854H209.14V611.854V612.854H212.721V611.854ZM209.14 611.854H208.14V621.039H209.14H210.14V611.854H209.14ZM225.635 634.343H224.635V635.343H225.635V634.343ZM225.635 616.104V615.104H224.635V616.104H225.635ZM231.665 616.104H232.665V615.104H231.665V616.104ZM231.665 634.343V635.343H232.665V634.343H231.665ZM226.136 608.181L226.843 608.888L226.85 608.88L226.136 608.181ZM231.183 608.162L231.897 607.462L231.183 608.162ZM225.635 634.343H226.635V616.104H225.635H224.635V634.343H225.635ZM225.635 616.104V617.104H231.665V616.104V615.104H225.635V616.104ZM231.665 616.104H230.665V634.343H231.665H232.665V616.104H231.665ZM231.665 634.343V633.343H225.635V634.343V635.343H231.665V634.343ZM225.245 610.37H226.245C226.245 609.76 226.443 609.288 226.843 608.888L226.136 608.181L225.429 607.474C224.641 608.261 224.245 609.248 224.245 610.37H225.245ZM226.136 608.181L226.85 608.88C227.204 608.519 227.762 608.271 228.678 608.271V607.271V606.271C227.392 606.271 226.255 606.63 225.421 607.481L226.136 608.181ZM228.678 607.271V608.271C229.584 608.271 230.128 608.514 230.468 608.862L231.183 608.162L231.897 607.462C231.074 606.622 229.948 606.271 228.678 606.271V607.271ZM231.183 608.162L230.468 608.862C230.855 609.257 231.055 609.737 231.055 610.37H232.055H233.055C233.055 609.247 232.673 608.255 231.897 607.462L231.183 608.162ZM232.055 610.37H231.055C231.055 610.98 230.856 611.463 230.45 611.878L231.164 612.578L231.878 613.278C232.659 612.481 233.055 611.492 233.055 610.37H232.055ZM231.164 612.578L230.45 611.878C230.093 612.242 229.54 612.487 228.641 612.487V613.487V614.487C229.918 614.487 231.047 614.126 231.878 613.278L231.164 612.578ZM228.641 613.487V612.487C227.724 612.487 227.178 612.24 226.839 611.886L226.117 612.578L225.396 613.27C226.219 614.129 227.356 614.487 228.641 614.487V613.487ZM226.117 612.578L226.839 611.886C226.442 611.472 226.245 610.987 226.245 610.37H225.245H224.245C224.245 611.485 224.629 612.472 225.396 613.27L226.117 612.578ZM237.436 618.107L238.117 618.839L238.12 618.836L237.436 618.107ZM251.778 618.107L251.091 618.834L251.097 618.839L251.778 618.107ZM251.778 632.302L252.463 633.031L252.463 633.031L251.778 632.302ZM237.417 632.302L236.73 633.029L236.735 633.033L237.417 632.302ZM241.74 629.277L240.947 629.886L240.952 629.893L240.957 629.899L241.74 629.277ZM247.455 629.277L246.668 628.661L246.666 628.663L247.455 629.277ZM247.455 621.15L246.672 621.772L246.676 621.778L247.455 621.15ZM241.759 621.15L242.537 621.778L242.542 621.772L241.759 621.15ZM234.708 625.492H235.708V624.898H234.708H233.708V625.492H234.708ZM234.708 624.898H235.708C235.708 622.301 236.531 620.317 238.117 618.839L237.436 618.107L236.754 617.376C234.703 619.287 233.708 621.831 233.708 624.898H234.708ZM237.436 618.107L238.12 618.836C239.719 617.336 241.85 616.547 244.616 616.547V615.547V614.547C241.445 614.547 238.789 615.465 236.751 617.378L237.436 618.107ZM244.616 615.547V616.547C247.382 616.547 249.506 617.336 251.091 618.834L251.778 618.107L252.465 617.381C250.438 615.465 247.788 614.547 244.616 614.547V615.547ZM251.778 618.107L251.097 618.839C252.683 620.317 253.506 622.301 253.506 624.898H254.506H255.506C255.506 621.831 254.511 619.287 252.46 617.376L251.778 618.107ZM254.506 624.898H253.506V625.492H254.506H255.506V624.898H254.506ZM254.506 625.492H253.506C253.506 628.09 252.683 630.081 251.094 631.573L251.778 632.302L252.463 633.031C254.511 631.108 255.506 628.56 255.506 625.492H254.506ZM251.778 632.302L251.094 631.573C249.509 633.06 247.384 633.844 244.616 633.844V634.844V635.844C247.786 635.844 250.436 634.933 252.463 633.031L251.778 632.302ZM244.616 634.844V633.844C241.835 633.844 239.696 633.059 238.099 631.57L237.417 632.302L236.735 633.033C238.774 634.934 241.435 635.844 244.616 635.844V634.844ZM237.417 632.302L238.104 631.575C236.526 630.084 235.708 628.092 235.708 625.492H234.708H233.708C233.708 628.558 234.696 631.105 236.73 633.028L237.417 632.302ZM240.757 624.639H239.757V625.733H240.757H241.757V624.639H240.757ZM240.757 625.733H239.757C239.757 627.376 240.113 628.8 240.947 629.886L241.74 629.277L242.533 628.668C242.057 628.048 241.757 627.109 241.757 625.733H240.757ZM241.74 629.277L240.957 629.899C241.845 631.017 243.108 631.539 244.598 631.539V630.539V629.539C243.614 629.539 242.971 629.22 242.523 628.655L241.74 629.277ZM244.598 630.539V631.539C246.096 631.539 247.365 631.02 248.244 629.892L247.455 629.277L246.666 628.663C246.234 629.217 245.598 629.539 244.598 629.539V630.539ZM247.455 629.277L248.243 629.894C249.093 628.807 249.457 627.38 249.457 625.733H248.457H247.457C247.457 627.105 247.153 628.041 246.668 628.661L247.455 629.277ZM248.457 625.733H249.457V624.639H248.457H247.457V625.733H248.457ZM248.457 624.639H249.457C249.457 623.005 249.093 621.589 248.234 620.523L247.455 621.15L246.676 621.778C247.153 622.369 247.457 623.279 247.457 624.639H248.457ZM247.455 621.15L248.238 620.529C247.35 619.41 246.088 618.889 244.598 618.889V619.889V620.889C245.582 620.889 246.224 621.208 246.672 621.772L247.455 621.15ZM244.598 619.889V618.889C243.116 618.889 241.861 619.413 240.976 620.529L241.759 621.15L242.542 621.772C242.992 621.205 243.63 620.889 244.598 620.889V619.889ZM241.759 621.15L240.98 620.523C240.121 621.589 239.757 623.005 239.757 624.639H240.757H241.757C241.757 623.279 242.061 622.369 242.537 621.778L241.759 621.15ZM257.493 634.343H256.493V635.343H257.493V634.343ZM257.493 616.104V615.104H256.493V616.104H257.493ZM263.282 616.104L264.282 616.079L264.258 615.104H263.282V616.104ZM263.338 618.386L262.338 618.41L262.362 619.386H263.338V618.386ZM263.412 618.386V619.386H263.986L264.275 618.89L263.412 618.386ZM265.564 616.438L266.021 617.327L266.025 617.325L265.564 616.438ZM273.58 617.254L274.247 616.509L273.58 617.254ZM275.343 634.343V635.343H276.343V634.343H275.343ZM269.387 634.343H268.387V635.343H269.387V634.343ZM268.682 620.835L267.975 621.542L267.984 621.552L267.994 621.561L268.682 620.835ZM264.785 620.779L264.199 619.969L264.785 620.779ZM263.449 622.468L262.533 622.066L262.449 622.258V622.468H263.449ZM263.449 634.343V635.343H264.449V634.343H263.449ZM257.493 634.343H258.493V616.104H257.493H256.493V634.343H257.493ZM257.493 616.104V617.104H263.282V616.104V615.104H257.493V616.104ZM263.282 616.104L262.283 616.128L262.338 618.41L263.338 618.386L264.338 618.361L264.282 616.079L263.282 616.104ZM263.338 618.386V619.386H263.412V618.386V617.386H263.338V618.386ZM263.412 618.386L264.275 618.89C264.634 618.276 265.197 617.75 266.021 617.327L265.564 616.438L265.108 615.548C264.002 616.115 263.13 616.887 262.549 617.881L263.412 618.386ZM265.564 616.438L266.025 617.325C266.835 616.905 267.816 616.677 268.997 616.677V615.677V614.677C267.556 614.677 266.248 614.956 265.104 615.55L265.564 616.438ZM268.997 615.677V616.677C270.681 616.677 271.956 617.142 272.913 617.999L273.58 617.254L274.247 616.509C272.854 615.263 271.073 614.677 268.997 614.677V615.677ZM273.58 617.254L272.913 617.999C273.777 618.772 274.343 620.21 274.343 622.616H275.343H276.343C276.343 619.975 275.733 617.838 274.247 616.509L273.58 617.254ZM275.343 622.616H274.343V634.343H275.343H276.343V622.616H275.343ZM275.343 634.343V633.343H269.387V634.343V635.343H275.343V634.343ZM269.387 634.343H270.387V623.136H269.387H268.387V634.343H269.387ZM269.387 623.136H270.387C270.387 621.95 270.139 620.838 269.369 620.109L268.682 620.835L267.994 621.561C268.165 621.723 268.387 622.144 268.387 623.136H269.387ZM268.682 620.835L269.389 620.128C268.692 619.431 267.757 619.148 266.733 619.148V620.148V621.148C267.392 621.148 267.756 621.323 267.975 621.542L268.682 620.835ZM266.733 620.148V619.148C265.805 619.148 264.951 619.425 264.199 619.969L264.785 620.779L265.371 621.59C265.782 621.292 266.226 621.148 266.733 621.148V620.148ZM264.785 620.779L264.199 619.969C263.463 620.502 262.909 621.21 262.533 622.066L263.449 622.468L264.365 622.869C264.608 622.315 264.945 621.898 265.371 621.59L264.785 620.779ZM263.449 622.468H262.449V634.343H263.449H264.449V622.468H263.449ZM263.449 634.343V633.343H257.493V634.343V635.343H263.449V634.343ZM280.816 618.107L281.508 618.83L280.816 618.107ZM296.792 626.457V627.457H297.792V626.457H296.792ZM281.707 626.457H280.707V627.457H281.707V626.457ZM281.707 623.191V622.191H280.707V623.191H281.707ZM290.984 623.191V624.191H291.984V623.191H290.984ZM285.01 621.039L284.201 620.45L284.196 620.458L285.01 621.039ZM285.084 629.296L284.288 629.901L284.293 629.908L285.084 629.296ZM291.912 628.442L292.293 627.518L291.516 627.198L291.067 627.908L291.912 628.442ZM296.551 630.354L297.47 630.746L297.868 629.815L296.932 629.429L296.551 630.354ZM293.545 633.619L293.047 632.752L293.044 632.754L293.545 633.619ZM280.779 632.32L280.082 633.038L280.088 633.043L280.779 632.32ZM278.163 625.474H279.163V624.88H278.163H277.163V625.474H278.163ZM278.163 624.88H279.163C279.163 622.287 279.967 620.307 281.508 618.83L280.816 618.107L280.125 617.385C278.129 619.298 277.163 621.832 277.163 624.88H278.163ZM280.816 618.107L281.508 618.83C283.059 617.343 285.115 616.565 287.774 616.565V615.565V614.565C284.694 614.565 282.111 615.482 280.125 617.385L280.816 618.107ZM287.774 615.565V616.565C290.425 616.565 292.355 617.309 293.704 618.679L294.417 617.978L295.13 617.276C293.312 615.43 290.814 614.565 287.774 614.565V615.565ZM294.417 617.978L293.704 618.679C295.059 620.055 295.792 621.998 295.792 624.639H296.792H297.792C297.792 621.614 296.941 619.116 295.13 617.276L294.417 617.978ZM296.792 624.639H295.792V626.457H296.792H297.792V624.639H296.792ZM296.792 626.457V625.457H281.707V626.457V627.457H296.792V626.457ZM281.707 626.457H282.707V623.191H281.707H280.707V626.457H281.707ZM281.707 623.191V624.191H290.984V623.191V622.191H281.707V623.191ZM290.984 623.191H291.984V622.932H290.984H289.984V623.191H290.984ZM290.984 622.932H291.984C291.984 621.802 291.642 620.794 290.912 619.981L290.168 620.649L289.424 621.318C289.783 621.717 289.984 622.23 289.984 622.932H290.984ZM290.168 620.649L290.912 619.981C290.122 619.102 289.001 618.74 287.737 618.74V619.74V620.74C288.626 620.74 289.125 620.985 289.424 621.318L290.168 620.649ZM287.737 619.74V618.74C286.27 618.74 285.043 619.295 284.202 620.45L285.01 621.039L285.818 621.628C286.238 621.051 286.829 620.74 287.737 620.74V619.74ZM285.01 621.039L284.196 620.458C283.425 621.537 283.082 622.876 283.082 624.397H284.082H285.082C285.082 623.172 285.357 622.273 285.824 621.62L285.01 621.039ZM284.082 624.397H283.082V625.641H284.082H285.082V624.397H284.082ZM284.082 625.641H283.082C283.082 627.33 283.443 628.79 284.288 629.901L285.084 629.296L285.88 628.691C285.389 628.045 285.082 627.068 285.082 625.641H284.082ZM285.084 629.296L284.293 629.908C285.195 631.072 286.494 631.613 288.034 631.613V630.613V629.613C287.002 629.613 286.334 629.277 285.875 628.684L285.084 629.296ZM288.034 630.613V631.613C289.106 631.613 290.084 631.365 290.919 630.819L290.372 629.982L289.825 629.145C289.373 629.441 288.793 629.613 288.034 629.613V630.613ZM290.372 629.982L290.919 630.819C291.674 630.326 292.292 629.713 292.757 628.977L291.912 628.442L291.067 627.908C290.765 628.384 290.357 628.797 289.825 629.145L290.372 629.982ZM291.912 628.442L291.531 629.367L296.17 631.278L296.551 630.354L296.932 629.429L292.293 627.518L291.912 628.442ZM296.551 630.354L295.631 629.961C295.144 631.1 294.303 632.031 293.047 632.752L293.545 633.619L294.043 634.486C295.632 633.574 296.794 632.329 297.47 630.746L296.551 630.354ZM293.545 633.619L293.044 632.754C291.831 633.456 290.207 633.844 288.108 633.844V634.844V635.844C290.438 635.844 292.438 635.415 294.046 634.485L293.545 633.619ZM288.108 634.844V633.844C285.16 633.844 282.992 633.055 281.471 631.598L280.779 632.32L280.088 633.043C282.079 634.95 284.798 635.844 288.108 635.844V634.844ZM280.779 632.32L281.476 631.603C279.961 630.13 279.163 628.126 279.163 625.474H278.163H277.163C277.163 628.561 278.11 631.121 280.082 633.038L280.779 632.32ZM301.338 618.107L302.03 618.83L301.338 618.107ZM317.313 626.457V627.457H318.313V626.457H317.313ZM302.229 626.457H301.229V627.457H302.229V626.457ZM302.229 623.191V622.191H301.229V623.191H302.229ZM311.506 623.191V624.191H312.506V623.191H311.506ZM305.531 621.039L304.723 620.45L304.718 620.458L305.531 621.039ZM305.605 629.296L304.809 629.901L304.815 629.908L305.605 629.296ZM312.434 628.442L312.815 627.518L312.038 627.198L311.589 627.908L312.434 628.442ZM317.072 630.354L317.992 630.746L318.39 629.815L317.453 629.429L317.072 630.354ZM314.066 633.619L313.569 632.752L313.565 632.754L314.066 633.619ZM301.301 632.32L300.604 633.038L300.609 633.043L301.301 632.32ZM298.685 625.474H299.685V624.88H298.685H297.685V625.474H298.685ZM298.685 624.88H299.685C299.685 622.287 300.488 620.307 302.03 618.83L301.338 618.107L300.646 617.385C298.65 619.298 297.685 621.832 297.685 624.88H298.685ZM301.338 618.107L302.03 618.83C303.581 617.343 305.637 616.565 308.296 616.565V615.565V614.565C305.216 614.565 302.633 615.482 300.646 617.385L301.338 618.107ZM308.296 615.565V616.565C310.947 616.565 312.877 617.309 314.226 618.679L314.938 617.978L315.651 617.276C313.834 615.43 311.335 614.565 308.296 614.565V615.565ZM314.938 617.978L314.226 618.679C315.581 620.055 316.313 621.998 316.313 624.639H317.313H318.313C318.313 621.614 317.463 619.116 315.651 617.276L314.938 617.978ZM317.313 624.639H316.313V626.457H317.313H318.313V624.639H317.313ZM317.313 626.457V625.457H302.229V626.457V627.457H317.313V626.457ZM302.229 626.457H303.229V623.191H302.229H301.229V626.457H302.229ZM302.229 623.191V624.191H311.506V623.191V622.191H302.229V623.191ZM311.506 623.191H312.506V622.932H311.506H310.506V623.191H311.506ZM311.506 622.932H312.506C312.506 621.802 312.163 620.794 311.434 619.981L310.689 620.649L309.945 621.318C310.304 621.717 310.506 622.23 310.506 622.932H311.506ZM310.689 620.649L311.434 619.981C310.644 619.102 309.523 618.74 308.259 618.74V619.74V620.74C309.147 620.74 309.647 620.985 309.945 621.318L310.689 620.649ZM308.259 619.74V618.74C306.792 618.74 305.565 619.295 304.723 620.45L305.531 621.039L306.339 621.628C306.76 621.051 307.351 620.74 308.259 620.74V619.74ZM305.531 621.039L304.718 620.458C303.947 621.537 303.604 622.876 303.604 624.397H304.604H305.604C305.604 623.172 305.879 622.273 306.345 621.62L305.531 621.039ZM304.604 624.397H303.604V625.641H304.604H305.604V624.397H304.604ZM304.604 625.641H303.604C303.604 627.33 303.964 628.79 304.81 629.901L305.605 629.296L306.401 628.691C305.911 628.045 305.604 627.068 305.604 625.641H304.604ZM305.605 629.296L304.815 629.908C305.716 631.072 307.015 631.613 308.556 631.613V630.613V629.613C307.523 629.613 306.856 629.277 306.396 628.684L305.605 629.296ZM308.556 630.613V631.613C309.628 631.613 310.606 631.365 311.441 630.819L310.894 629.982L310.346 629.145C309.895 629.441 309.314 629.613 308.556 629.613V630.613ZM310.894 629.982L311.441 630.819C312.195 630.326 312.813 629.713 313.279 628.977L312.434 628.442L311.589 627.908C311.287 628.384 310.878 628.797 310.346 629.145L310.894 629.982ZM312.434 628.442L312.053 629.367L316.691 631.278L317.072 630.354L317.453 629.429L312.815 627.518L312.434 628.442ZM317.072 630.354L316.153 629.961C315.666 631.1 314.824 632.031 313.569 632.752L314.066 633.619L314.564 634.486C316.154 633.574 317.316 632.329 317.992 630.746L317.072 630.354ZM314.066 633.619L313.565 632.754C312.353 633.456 310.729 633.844 308.63 633.844V634.844V635.844C310.959 635.844 312.96 635.415 314.567 634.485L314.066 633.619ZM308.63 634.844V633.844C305.681 633.844 303.514 633.055 301.992 631.598L301.301 632.32L300.609 633.043C302.601 634.95 305.319 635.844 308.63 635.844V634.844ZM301.301 632.32L301.998 631.603C300.482 630.13 299.685 628.126 299.685 625.474H298.685H297.685C297.685 628.561 298.631 631.121 300.604 633.038L301.301 632.32ZM320.134 634.343H319.134V635.343H320.134V634.343ZM320.134 616.104V615.104H319.134V616.104H320.134ZM325.997 616.104L326.997 616.071L326.965 615.104H325.997V616.104ZM326.071 618.367L325.072 618.4L325.104 619.367H326.071V618.367ZM326.127 618.367V619.367H326.711L326.998 618.859L326.127 618.367ZM331.953 615.918H332.953V615.241L332.325 614.989L331.953 615.918ZM331.953 620.612L331.637 621.561L332.953 622V620.612H331.953ZM331.174 620.445L331.044 621.437L331.05 621.438L331.174 620.445ZM327.871 621.15L327.3 620.329L327.871 621.15ZM326.183 623.136L325.283 622.699L325.183 622.906V623.136H326.183ZM326.183 634.343V635.343H327.183V634.343H326.183ZM320.134 634.343H321.134V616.104H320.134H319.134V634.343H320.134ZM320.134 616.104V617.104H325.997V616.104V615.104H320.134V616.104ZM325.997 616.104L324.998 616.136L325.072 618.4L326.071 618.367L327.071 618.334L326.997 616.071L325.997 616.104ZM326.071 618.367V619.367H326.127V618.367V617.367H326.071V618.367ZM326.127 618.367L326.998 618.859C327.354 618.228 327.835 617.704 328.454 617.282L327.89 616.456L327.325 615.63C326.46 616.222 325.766 616.972 325.256 617.876L326.127 618.367ZM327.89 616.456L328.454 617.282C329.024 616.892 329.661 616.695 330.395 616.695V615.695V614.695C329.272 614.695 328.239 615.006 327.325 615.63L327.89 616.456ZM330.395 615.695V616.695C330.665 616.695 330.919 616.716 331.158 616.756L331.322 615.77L331.487 614.783C331.132 614.724 330.767 614.695 330.395 614.695V615.695ZM331.322 615.77L331.158 616.756C331.292 616.778 331.396 616.799 331.474 616.817C331.556 616.837 331.586 616.848 331.582 616.846L331.953 615.918L332.325 614.989C332.092 614.897 331.789 614.833 331.487 614.783L331.322 615.77ZM331.953 615.918H330.953V620.612H331.953H332.953V615.918H331.953ZM331.953 620.612L332.269 619.664C331.97 619.564 331.643 619.496 331.298 619.453L331.174 620.445L331.05 621.438C331.298 621.469 331.491 621.512 331.637 621.561L331.953 620.612ZM331.174 620.445L331.303 619.454C330.967 619.41 330.601 619.39 330.209 619.39V620.39V621.39C330.535 621.39 330.812 621.407 331.044 621.437L331.174 620.445ZM330.209 620.39V619.39C329.161 619.39 328.185 619.714 327.3 620.329L327.871 621.15L328.442 621.972C329.017 621.572 329.599 621.39 330.209 621.39V620.39ZM327.871 621.15L327.3 620.329C326.427 620.936 325.752 621.732 325.283 622.699L326.183 623.136L327.082 623.572C327.405 622.907 327.856 622.379 328.442 621.972L327.871 621.15ZM326.183 623.136H325.183V634.343H326.183H327.183V623.136H326.183ZM326.183 634.343V633.343H320.134V634.343V635.343H326.183V634.343Z" fill="black" mask="url(#path-5-outside-2_17007_2267)"/> +<mask id="path-7-outside-3_17007_2267" maskUnits="userSpaceOnUse" x="551.669" y="598.883" width="88" height="31" fill="black"> +<rect fill="white" x="551.669" y="598.883" width="88" height="31"/> +<path d="M553.094 600.867H559.532L565.247 618.624C565.358 618.909 565.445 619.193 565.507 619.478C565.581 619.762 565.655 620.059 565.729 620.368H565.841C565.915 620.059 565.989 619.756 566.063 619.459C566.15 619.162 566.237 618.884 566.323 618.624L572.094 600.867H578.031L568.939 627.994H562.186L553.094 600.867ZM577.753 622.576C577.753 620.647 578.507 619.156 580.017 618.105C581.538 617.053 583.505 616.521 585.917 616.509H589.999V615.414C589.999 614.598 589.795 613.955 589.387 613.484C588.979 613.014 588.286 612.779 587.309 612.779C586.331 612.779 585.614 612.977 585.156 613.373C584.699 613.769 584.47 614.295 584.47 614.95V615.284L578.848 615.266V614.895C578.848 613.2 579.646 611.821 581.241 610.757C582.849 609.681 584.989 609.143 587.661 609.143C590.358 609.143 592.411 609.656 593.821 610.683C595.244 611.709 595.955 613.342 595.955 615.581V623.745C595.955 624.487 596.017 625.199 596.141 625.879C596.277 626.547 596.468 627.122 596.716 627.605V627.883H590.853C590.692 627.586 590.549 627.221 590.426 626.788C590.314 626.355 590.24 625.916 590.203 625.471C589.795 626.164 589.065 626.788 588.014 627.345C586.975 627.901 585.663 628.18 584.08 628.18C582.2 628.18 580.672 627.71 579.497 626.77C578.334 625.83 577.753 624.432 577.753 622.576ZM583.672 622.112C583.672 622.892 583.895 623.504 584.34 623.949C584.785 624.382 585.465 624.599 586.381 624.599C587.37 624.599 588.218 624.271 588.923 623.615C589.64 622.947 589.999 622.174 589.999 621.296V619.737H587.364C586.103 619.737 585.169 619.929 584.562 620.313C583.969 620.696 583.672 621.296 583.672 622.112ZM599.944 627.883V600.181H605.938V627.883H599.944ZM609.927 627.883V609.644H615.957V627.883H609.927ZM609.537 603.91C609.537 603.044 609.834 602.315 610.428 601.721C611.021 601.115 611.869 600.812 612.97 600.812C614.058 600.812 614.893 601.109 615.475 601.702C616.056 602.296 616.347 603.032 616.347 603.91C616.347 604.776 616.05 605.512 615.456 606.118C614.862 606.724 614.021 607.027 612.933 607.027C611.832 607.027 610.991 606.724 610.409 606.118C609.828 605.512 609.537 604.776 609.537 603.91ZM619 619.051V618.457C619 615.761 619.724 613.559 621.171 611.852C622.618 610.132 624.511 609.273 626.849 609.273C628.123 609.273 629.211 609.489 630.114 609.922C631.017 610.343 631.722 610.905 632.229 611.61V600.181H638.074V627.883H632.396L632.322 625.526H632.285C631.815 626.293 631.11 626.943 630.17 627.475C629.23 627.994 628.123 628.254 626.849 628.254C624.424 628.254 622.507 627.394 621.097 625.675C619.699 623.943 619 621.735 619 619.051ZM625.049 619.144C625.049 620.591 625.352 621.766 625.958 622.669C626.564 623.572 627.479 624.024 628.704 624.024C629.545 624.024 630.263 623.789 630.856 623.318C631.45 622.848 631.877 622.292 632.137 621.649V615.804C631.877 615.161 631.456 614.616 630.875 614.171C630.306 613.726 629.589 613.503 628.723 613.503C627.486 613.503 626.564 613.961 625.958 614.876C625.352 615.779 625.049 616.948 625.049 618.383V619.144Z"/> +</mask> +<path d="M553.094 600.867H559.532L565.247 618.624C565.358 618.909 565.445 619.193 565.507 619.478C565.581 619.762 565.655 620.059 565.729 620.368H565.841C565.915 620.059 565.989 619.756 566.063 619.459C566.15 619.162 566.237 618.884 566.323 618.624L572.094 600.867H578.031L568.939 627.994H562.186L553.094 600.867ZM577.753 622.576C577.753 620.647 578.507 619.156 580.017 618.105C581.538 617.053 583.505 616.521 585.917 616.509H589.999V615.414C589.999 614.598 589.795 613.955 589.387 613.484C588.979 613.014 588.286 612.779 587.309 612.779C586.331 612.779 585.614 612.977 585.156 613.373C584.699 613.769 584.47 614.295 584.47 614.95V615.284L578.848 615.266V614.895C578.848 613.2 579.646 611.821 581.241 610.757C582.849 609.681 584.989 609.143 587.661 609.143C590.358 609.143 592.411 609.656 593.821 610.683C595.244 611.709 595.955 613.342 595.955 615.581V623.745C595.955 624.487 596.017 625.199 596.141 625.879C596.277 626.547 596.468 627.122 596.716 627.605V627.883H590.853C590.692 627.586 590.549 627.221 590.426 626.788C590.314 626.355 590.24 625.916 590.203 625.471C589.795 626.164 589.065 626.788 588.014 627.345C586.975 627.901 585.663 628.18 584.08 628.18C582.2 628.18 580.672 627.71 579.497 626.77C578.334 625.83 577.753 624.432 577.753 622.576ZM583.672 622.112C583.672 622.892 583.895 623.504 584.34 623.949C584.785 624.382 585.465 624.599 586.381 624.599C587.37 624.599 588.218 624.271 588.923 623.615C589.64 622.947 589.999 622.174 589.999 621.296V619.737H587.364C586.103 619.737 585.169 619.929 584.562 620.313C583.969 620.696 583.672 621.296 583.672 622.112ZM599.944 627.883V600.181H605.938V627.883H599.944ZM609.927 627.883V609.644H615.957V627.883H609.927ZM609.537 603.91C609.537 603.044 609.834 602.315 610.428 601.721C611.021 601.115 611.869 600.812 612.97 600.812C614.058 600.812 614.893 601.109 615.475 601.702C616.056 602.296 616.347 603.032 616.347 603.91C616.347 604.776 616.05 605.512 615.456 606.118C614.862 606.724 614.021 607.027 612.933 607.027C611.832 607.027 610.991 606.724 610.409 606.118C609.828 605.512 609.537 604.776 609.537 603.91ZM619 619.051V618.457C619 615.761 619.724 613.559 621.171 611.852C622.618 610.132 624.511 609.273 626.849 609.273C628.123 609.273 629.211 609.489 630.114 609.922C631.017 610.343 631.722 610.905 632.229 611.61V600.181H638.074V627.883H632.396L632.322 625.526H632.285C631.815 626.293 631.11 626.943 630.17 627.475C629.23 627.994 628.123 628.254 626.849 628.254C624.424 628.254 622.507 627.394 621.097 625.675C619.699 623.943 619 621.735 619 619.051ZM625.049 619.144C625.049 620.591 625.352 621.766 625.958 622.669C626.564 623.572 627.479 624.024 628.704 624.024C629.545 624.024 630.263 623.789 630.856 623.318C631.45 622.848 631.877 622.292 632.137 621.649V615.804C631.877 615.161 631.456 614.616 630.875 614.171C630.306 613.726 629.589 613.503 628.723 613.503C627.486 613.503 626.564 613.961 625.958 614.876C625.352 615.779 625.049 616.948 625.049 618.383V619.144Z" fill="white"/> +<path d="M553.094 600.867V599.867H551.704L552.146 601.185L553.094 600.867ZM559.532 600.867L560.484 600.561L560.261 599.867H559.532V600.867ZM565.247 618.624L564.295 618.931L564.305 618.96L564.316 618.989L565.247 618.624ZM565.507 619.478L564.53 619.69L564.534 619.71L564.539 619.73L565.507 619.478ZM565.729 620.368L564.757 620.602L564.941 621.368H565.729V620.368ZM565.841 620.368V621.368H566.629L566.813 620.602L565.841 620.368ZM566.063 619.459L565.103 619.179L565.098 619.198L565.093 619.217L566.063 619.459ZM566.323 618.624L567.272 618.94L567.274 618.933L566.323 618.624ZM572.094 600.867V599.867H571.367L571.143 600.558L572.094 600.867ZM578.031 600.867L578.979 601.185L579.421 599.867H578.031V600.867ZM568.939 627.994V628.994H569.659L569.888 628.312L568.939 627.994ZM562.186 627.994L561.237 628.312L561.466 628.994H562.186V627.994ZM553.094 600.867V601.867H559.532V600.867V599.867H553.094V600.867ZM559.532 600.867L558.58 601.174L564.295 618.931L565.247 618.624L566.199 618.318L560.484 600.561L559.532 600.867ZM565.247 618.624L564.316 618.989C564.409 619.226 564.48 619.46 564.53 619.69L565.507 619.478L566.484 619.265C566.41 618.926 566.308 618.591 566.178 618.26L565.247 618.624ZM565.507 619.478L564.539 619.73C564.612 620.008 564.684 620.298 564.757 620.602L565.729 620.368L566.702 620.135C566.626 619.82 566.55 619.517 566.474 619.225L565.507 619.478ZM565.729 620.368V621.368H565.841V620.368V619.368H565.729V620.368ZM565.841 620.368L566.813 620.602C566.887 620.295 566.96 619.995 567.034 619.702L566.063 619.459L565.093 619.217C565.018 619.517 564.943 619.823 564.868 620.135L565.841 620.368ZM566.063 619.459L567.023 619.739C567.107 619.453 567.19 619.187 567.272 618.94L566.323 618.624L565.375 618.308C565.283 618.581 565.193 618.872 565.103 619.179L566.063 619.459ZM566.323 618.624L567.274 618.933L573.045 601.176L572.094 600.867L571.143 600.558L565.372 618.315L566.323 618.624ZM572.094 600.867V601.867H578.031V600.867V599.867H572.094V600.867ZM578.031 600.867L577.083 600.55L567.991 627.676L568.939 627.994L569.888 628.312L578.979 601.185L578.031 600.867ZM568.939 627.994V626.994H562.186V627.994V628.994H568.939V627.994ZM562.186 627.994L563.134 627.676L554.042 600.55L553.094 600.867L552.146 601.185L561.237 628.312L562.186 627.994ZM580.017 618.105L579.448 617.282L579.445 617.284L580.017 618.105ZM585.917 616.509V615.509L585.912 615.509L585.917 616.509ZM589.999 616.509V617.509H590.999V616.509H589.999ZM584.47 615.284L584.466 616.284L585.47 616.288V615.284H584.47ZM578.848 615.266H577.848V616.262L578.844 616.266L578.848 615.266ZM581.241 610.757L581.796 611.589L581.797 611.588L581.241 610.757ZM593.821 610.683L593.233 611.491L593.236 611.494L593.821 610.683ZM596.141 625.879L595.157 626.058L595.159 626.068L595.161 626.079L596.141 625.879ZM596.716 627.605H597.716V627.363L597.606 627.148L596.716 627.605ZM596.716 627.883V628.883H597.716V627.883H596.716ZM590.853 627.883L589.973 628.359L590.257 628.883H590.853V627.883ZM590.426 626.788L589.457 627.037L589.461 627.05L589.464 627.063L590.426 626.788ZM590.203 625.471L591.2 625.388L590.938 622.253L589.342 624.963L590.203 625.471ZM588.014 627.345L587.546 626.461L587.541 626.463L588.014 627.345ZM579.497 626.77L578.868 627.547L578.872 627.551L579.497 626.77ZM584.34 623.949L583.633 624.657L583.643 624.666L584.34 623.949ZM588.923 623.615L589.604 624.348L589.604 624.347L588.923 623.615ZM589.999 619.737H590.999V618.737H589.999V619.737ZM584.562 620.313L584.028 619.468L584.02 619.473L584.562 620.313ZM577.753 622.576H578.753C578.753 620.955 579.363 619.779 580.588 618.925L580.017 618.105L579.445 617.284C577.652 618.533 576.753 620.339 576.753 622.576H577.753ZM580.017 618.105L580.585 618.927C581.897 618.021 583.651 617.521 585.922 617.509L585.917 616.509L585.912 615.509C583.359 615.522 581.179 616.086 579.448 617.282L580.017 618.105ZM585.917 616.509V617.509H589.999V616.509V615.509H585.917V616.509ZM589.999 616.509H590.999V615.414H589.999H588.999V616.509H589.999ZM589.999 615.414H590.999C590.999 614.433 590.752 613.531 590.142 612.829L589.387 613.484L588.632 614.14C588.838 614.378 588.999 614.762 588.999 615.414H589.999ZM589.387 613.484L590.142 612.829C589.458 612.041 588.412 611.779 587.309 611.779V612.779V613.779C588.16 613.779 588.499 613.988 588.632 614.14L589.387 613.484ZM587.309 612.779V611.779C586.23 611.779 585.224 611.992 584.502 612.617L585.156 613.373L585.81 614.13C586.004 613.963 586.433 613.779 587.309 613.779V612.779ZM585.156 613.373L584.502 612.617C583.805 613.22 583.47 614.032 583.47 614.95H584.47H585.47C585.47 614.558 585.592 614.318 585.81 614.13L585.156 613.373ZM584.47 614.95H583.47V615.284H584.47H585.47V614.95H584.47ZM584.47 615.284L584.473 614.284L578.851 614.266L578.848 615.266L578.844 616.266L584.466 616.284L584.47 615.284ZM578.848 615.266H579.848V614.895H578.848H577.848V615.266H578.848ZM578.848 614.895H579.848C579.848 613.583 580.436 612.496 581.796 611.589L581.241 610.757L580.687 609.925C578.855 611.146 577.848 612.817 577.848 614.895H578.848ZM581.241 610.757L581.797 611.588C583.189 610.657 585.114 610.143 587.661 610.143V609.143V608.143C584.864 608.143 582.509 608.705 580.685 609.926L581.241 610.757ZM587.661 609.143V610.143C590.254 610.143 592.064 610.64 593.233 611.491L593.821 610.683L594.41 609.874C592.758 608.672 590.461 608.143 587.661 608.143V609.143ZM593.821 610.683L593.236 611.494C594.327 612.281 594.955 613.565 594.955 615.581H595.955H596.955C596.955 613.119 596.16 611.138 594.407 609.872L593.821 610.683ZM595.955 615.581H594.955V623.745H595.955H596.955V615.581H595.955ZM595.955 623.745H594.955C594.955 624.543 595.022 625.314 595.157 626.058L596.141 625.879L597.124 625.7C597.012 625.083 596.955 624.432 596.955 623.745H595.955ZM596.141 625.879L595.161 626.079C595.311 626.814 595.528 627.48 595.826 628.061L596.716 627.605L597.606 627.148C597.409 626.765 597.243 626.28 597.121 625.679L596.141 625.879ZM596.716 627.605H595.716V627.883H596.716H597.716V627.605H596.716ZM596.716 627.883V626.883H590.853V627.883V628.883H596.716V627.883ZM590.853 627.883L591.732 627.407C591.615 627.191 591.497 626.898 591.387 626.513L590.426 626.788L589.464 627.063C589.602 627.544 589.768 627.981 589.973 628.359L590.853 627.883ZM590.426 626.788L591.394 626.539C591.297 626.161 591.232 625.777 591.2 625.388L590.203 625.471L589.207 625.554C589.248 626.055 589.332 626.55 589.457 627.037L590.426 626.788ZM590.203 625.471L589.342 624.963C589.062 625.438 588.507 625.952 587.546 626.461L588.014 627.345L588.482 628.229C589.623 627.624 590.528 626.89 591.065 625.979L590.203 625.471ZM588.014 627.345L587.541 626.463C586.689 626.92 585.553 627.18 584.08 627.18V628.18V629.18C585.774 629.18 587.26 628.883 588.486 628.226L588.014 627.345ZM584.08 628.18V627.18C582.369 627.18 581.079 626.755 580.122 625.989L579.497 626.77L578.872 627.551C580.265 628.665 582.031 629.18 584.08 629.18V628.18ZM579.497 626.77L580.126 625.992C579.254 625.287 578.753 624.21 578.753 622.576H577.753H576.753C576.753 624.654 577.415 626.372 578.868 627.547L579.497 626.77ZM583.672 622.112H582.672C582.672 623.09 582.957 623.981 583.633 624.656L584.34 623.949L585.047 623.242C584.832 623.027 584.672 622.693 584.672 622.112H583.672ZM584.34 623.949L583.643 624.666C584.347 625.351 585.327 625.599 586.381 625.599V624.599V623.599C585.604 623.599 585.223 623.413 585.037 623.232L584.34 623.949ZM586.381 624.599V625.599C587.615 625.599 588.708 625.181 589.604 624.348L588.923 623.615L588.242 622.883C587.727 623.361 587.126 623.599 586.381 623.599V624.599ZM588.923 623.615L589.604 624.347C590.499 623.514 590.999 622.486 590.999 621.296H589.999H588.999C588.999 621.863 588.782 622.38 588.241 622.883L588.923 623.615ZM589.999 621.296H590.999V619.737H589.999H588.999V621.296H589.999ZM589.999 619.737V618.737H587.364V619.737V620.737H589.999V619.737ZM587.364 619.737V618.737C586.039 618.737 584.874 618.932 584.028 619.468L584.562 620.313L585.097 621.158C585.463 620.926 586.166 620.737 587.364 620.737V619.737ZM584.562 620.313L584.02 619.473C583.093 620.071 582.672 621.018 582.672 622.112H583.672H584.672C584.672 621.574 584.845 621.321 585.105 621.153L584.562 620.313ZM599.944 627.883H598.944V628.883H599.944V627.883ZM599.944 600.181V599.181H598.944V600.181H599.944ZM605.938 600.181H606.938V599.181H605.938V600.181ZM605.938 627.883V628.883H606.938V627.883H605.938ZM599.944 627.883H600.944V600.181H599.944H598.944V627.883H599.944ZM599.944 600.181V601.181H605.938V600.181V599.181H599.944V600.181ZM605.938 600.181H604.938V627.883H605.938H606.938V600.181H605.938ZM605.938 627.883V626.883H599.944V627.883V628.883H605.938V627.883ZM609.927 627.883H608.927V628.883H609.927V627.883ZM609.927 609.644V608.644H608.927V609.644H609.927ZM615.957 609.644H616.957V608.644H615.957V609.644ZM615.957 627.883V628.883H616.957V627.883H615.957ZM610.428 601.721L611.135 602.428L611.142 602.421L610.428 601.721ZM615.475 601.702L616.189 601.003L615.475 601.702ZM609.927 627.883H610.927V609.644H609.927H608.927V627.883H609.927ZM609.927 609.644V610.644H615.957V609.644V608.644H609.927V609.644ZM615.957 609.644H614.957V627.883H615.957H616.957V609.644H615.957ZM615.957 627.883V626.883H609.927V627.883V628.883H615.957V627.883ZM609.537 603.91H610.537C610.537 603.3 610.735 602.828 611.135 602.428L610.428 601.721L609.721 601.014C608.933 601.801 608.537 602.788 608.537 603.91H609.537ZM610.428 601.721L611.142 602.421C611.496 602.059 612.054 601.812 612.97 601.812V600.812V599.812C611.684 599.812 610.547 600.17 609.713 601.021L610.428 601.721ZM612.97 600.812V601.812C613.876 601.812 614.42 602.055 614.76 602.402L615.475 601.702L616.189 601.003C615.366 600.162 614.24 599.812 612.97 599.812V600.812ZM615.475 601.702L614.76 602.402C615.147 602.797 615.347 603.277 615.347 603.91H616.347H617.347C617.347 602.787 616.965 601.795 616.189 601.003L615.475 601.702ZM616.347 603.91H615.347C615.347 604.521 615.148 605.004 614.742 605.419L615.456 606.118L616.17 606.818C616.951 606.021 617.347 605.032 617.347 603.91H616.347ZM615.456 606.118L614.742 605.419C614.385 605.782 613.832 606.027 612.933 606.027V607.027V608.027C614.21 608.027 615.339 607.667 616.17 606.818L615.456 606.118ZM612.933 607.027V606.027C612.016 606.027 611.47 605.78 611.131 605.426L610.409 606.118L609.688 606.811C610.511 607.669 611.648 608.027 612.933 608.027V607.027ZM610.409 606.118L611.131 605.426C610.734 605.012 610.537 604.527 610.537 603.91H609.537H608.537C608.537 605.025 608.921 606.012 609.688 606.811L610.409 606.118ZM621.171 611.852L621.934 612.498L621.936 612.496L621.171 611.852ZM630.114 609.922L629.682 610.824L629.692 610.828L630.114 609.922ZM632.229 611.61L631.418 612.194L633.229 614.713V611.61H632.229ZM632.229 600.181V599.181H631.229V600.181H632.229ZM638.074 600.181H639.074V599.181H638.074V600.181ZM638.074 627.883V628.883H639.074V627.883H638.074ZM632.396 627.883L631.397 627.914L631.427 628.883H632.396V627.883ZM632.322 625.526L633.322 625.495L633.291 624.526H632.322V625.526ZM632.285 625.526V624.526H631.725L631.433 625.004L632.285 625.526ZM630.17 627.475L630.654 628.35L630.662 628.345L630.17 627.475ZM621.097 625.675L620.319 626.303L620.323 626.309L621.097 625.675ZM625.958 622.669L625.128 623.226L625.958 622.669ZM630.856 623.318L630.236 622.534L630.856 623.318ZM632.137 621.649L633.064 622.023L633.137 621.843V621.649H632.137ZM632.137 615.804H633.137V615.61L633.064 615.429L632.137 615.804ZM630.875 614.171L630.259 614.959L630.267 614.965L630.875 614.171ZM625.958 614.876L626.788 615.433L626.792 615.428L625.958 614.876ZM619 619.051H620V618.457H619H618V619.051H619ZM619 618.457H620C620 615.947 620.669 613.99 621.934 612.498L621.171 611.852L620.408 611.205C618.778 613.128 618 615.574 618 618.457H619ZM621.171 611.852L621.936 612.496C623.185 611.012 624.792 610.273 626.849 610.273V609.273V608.273C624.229 608.273 622.052 609.252 620.406 611.208L621.171 611.852ZM626.849 609.273V610.273C628.013 610.273 628.945 610.471 629.682 610.824L630.114 609.922L630.547 609.02C629.477 608.508 628.233 608.273 626.849 608.273V609.273ZM630.114 609.922L629.692 610.828C630.463 611.187 631.025 611.648 631.418 612.194L632.229 611.61L633.041 611.027C632.42 610.163 631.572 609.498 630.536 609.015L630.114 609.922ZM632.229 611.61H633.229V600.181H632.229H631.229V611.61H632.229ZM632.229 600.181V601.181H638.074V600.181V599.181H632.229V600.181ZM638.074 600.181H637.074V627.883H638.074H639.074V600.181H638.074ZM638.074 627.883V626.883H632.396V627.883V628.883H638.074V627.883ZM632.396 627.883L633.396 627.851L633.322 625.495L632.322 625.526L631.323 625.558L631.397 627.914L632.396 627.883ZM632.322 625.526V624.526H632.285V625.526V626.526H632.322V625.526ZM632.285 625.526L631.433 625.004C631.067 625.6 630.5 626.139 629.677 626.604L630.17 627.475L630.662 628.345C631.721 627.746 632.563 626.987 633.138 626.049L632.285 625.526ZM630.17 627.475L629.686 626.599C628.92 627.023 627.985 627.254 626.849 627.254V628.254V629.254C628.26 629.254 629.54 628.965 630.654 628.35L630.17 627.475ZM626.849 628.254V627.254C624.693 627.254 623.071 626.506 621.87 625.041L621.097 625.675L620.323 626.309C621.942 628.283 624.155 629.254 626.849 629.254V628.254ZM621.097 625.675L621.875 625.047C620.649 623.528 620 621.555 620 619.051H619H618C618 621.915 618.749 624.359 620.319 626.303L621.097 625.675ZM625.049 619.144H624.049C624.049 620.725 624.38 622.112 625.128 623.226L625.958 622.669L626.788 622.112C626.324 621.42 626.049 620.457 626.049 619.144H625.049ZM625.958 622.669L625.128 623.226C625.945 624.445 627.195 625.024 628.704 625.024V624.024V623.024C627.764 623.024 627.183 622.7 626.788 622.112L625.958 622.669ZM628.704 624.024V625.024C629.744 625.024 630.687 624.728 631.477 624.103L630.856 623.318L630.236 622.534C629.838 622.849 629.346 623.024 628.704 623.024V624.024ZM630.856 623.318L631.477 624.103C632.194 623.535 632.733 622.842 633.064 622.023L632.137 621.649L631.209 621.274C631.021 621.742 630.706 622.162 630.236 622.534L630.856 623.318ZM632.137 621.649H633.137V615.804H632.137H631.137V621.649H632.137ZM632.137 615.804L633.064 615.429C632.733 614.611 632.198 613.925 631.483 613.377L630.875 614.171L630.267 614.965C630.715 615.308 631.02 615.71 631.209 616.178L632.137 615.804ZM630.875 614.171L631.491 613.384C630.713 612.775 629.766 612.503 628.723 612.503V613.503V614.503C629.411 614.503 629.899 614.677 630.259 614.959L630.875 614.171ZM628.723 613.503V612.503C627.2 612.503 625.941 613.09 625.124 614.324L625.958 614.876L626.792 615.428C627.187 614.832 627.771 614.503 628.723 614.503V613.503ZM625.958 614.876L625.128 614.319C624.381 615.432 624.049 616.812 624.049 618.383H625.049H626.049C626.049 617.084 626.323 616.126 626.788 615.433L625.958 614.876ZM625.049 618.383H624.049V619.144H625.049H626.049V618.383H625.049Z" fill="black" mask="url(#path-7-outside-3_17007_2267)"/> +<mask id="path-9-outside-4_17007_2267" maskUnits="userSpaceOnUse" x="553.339" y="659.25" width="110" height="37" fill="black"> +<rect fill="white" x="553.339" y="659.25" width="110" height="37"/> +<path d="M554.601 681.651V672.231C554.601 668.782 555.533 666.07 557.397 664.093C559.262 662.116 561.876 661.128 565.241 661.128C568.605 661.128 571.227 662.109 573.105 664.072C574.984 666.02 575.923 668.74 575.923 672.231V681.651C575.923 685.184 574.956 687.925 573.021 689.874C571.087 691.808 568.493 692.768 565.241 692.754C561.862 692.754 559.241 691.787 557.376 689.853C555.526 687.904 554.601 685.17 554.601 681.651ZM561.666 682.787C561.666 684.343 561.953 685.57 562.528 686.467C563.117 687.35 564.028 687.792 565.262 687.792C566.496 687.792 567.4 687.35 567.975 686.467C568.563 685.57 568.858 684.343 568.858 682.787V671.2C568.858 669.616 568.563 668.383 567.975 667.499C567.4 666.602 566.496 666.154 565.262 666.154C564.028 666.154 563.117 666.602 562.528 667.499C561.953 668.383 561.666 669.616 561.666 671.2V682.787ZM578.194 679.591V678.35C578.194 673.079 579.694 668.915 582.694 665.859C585.694 662.789 589.998 661.254 595.606 661.254H596.888V666.784H595.774C592.325 666.784 589.655 667.717 587.762 669.581C585.884 671.432 584.944 674.67 584.944 679.296L585.134 679.969C585.134 683.081 585.519 685.177 586.29 686.257C587.075 687.322 588.106 687.855 589.381 687.855C590.629 687.855 591.582 687.427 592.241 686.572C592.914 685.703 593.251 684.189 593.251 682.03C593.251 680.306 592.928 678.988 592.283 678.077C591.638 677.151 590.664 676.689 589.36 676.689C588.169 676.689 587.159 677.144 586.332 678.056C585.519 678.953 585.113 680.144 585.113 681.63H583.536C583.536 678.827 584.3 676.577 585.828 674.88C587.356 673.17 589.304 672.315 591.673 672.315C594.323 672.315 596.419 673.184 597.961 674.922C599.503 676.647 600.274 679.044 600.274 682.114C600.274 685.366 599.272 687.953 597.267 689.874C595.262 691.794 592.627 692.754 589.36 692.754C586.01 692.754 583.311 691.71 581.264 689.621C579.218 687.532 578.194 684.189 578.194 679.591ZM598.907 694.878L610.767 661.633H616.634L604.753 694.878H598.907ZM615.877 679.591V678.35C615.877 673.079 617.377 668.915 620.377 665.859C623.377 662.789 627.681 661.254 633.288 661.254H634.571V666.784H633.457C630.008 666.784 627.337 667.717 625.445 669.581C623.566 671.432 622.627 674.67 622.627 679.296L622.816 679.969C622.816 683.081 623.202 685.177 623.973 686.257C624.758 687.322 625.788 687.855 627.064 687.855C628.312 687.855 629.265 687.427 629.924 686.572C630.597 685.703 630.933 684.189 630.933 682.03C630.933 680.306 630.611 678.988 629.966 678.077C629.321 677.151 628.347 676.689 627.043 676.689C625.851 676.689 624.842 677.144 624.015 678.056C623.202 678.953 622.795 680.144 622.795 681.63H621.218C621.218 678.827 621.982 676.577 623.51 674.88C625.038 673.17 626.987 672.315 629.356 672.315C632.006 672.315 634.102 673.184 635.644 674.922C637.186 676.647 637.957 679.044 637.957 682.114C637.957 685.366 636.954 687.953 634.95 689.874C632.945 691.794 630.309 692.754 627.043 692.754C623.693 692.754 620.994 691.71 618.947 689.621C616.9 687.532 615.877 684.189 615.877 679.591ZM639.513 671.726C639.513 668.488 640.515 665.915 642.52 664.009C644.539 662.088 647.181 661.128 650.448 661.128C653.784 661.128 656.476 662.172 658.522 664.261C660.583 666.35 661.614 669.693 661.614 674.292V675.532C661.614 680.719 660.114 684.834 657.114 687.876C654.113 690.904 649.81 692.439 644.202 692.481H642.898V687.035H644.034C647.469 687.035 650.118 686.109 651.983 684.259C653.861 682.409 654.8 679.212 654.8 674.67L654.674 673.913C654.674 670.927 654.296 668.88 653.539 667.773C652.782 666.665 651.73 666.112 650.384 666.112C649.151 666.112 648.198 666.539 647.525 667.394C646.866 668.235 646.536 669.707 646.536 671.81C646.536 673.605 646.859 674.943 647.504 675.827C648.148 676.71 649.116 677.151 650.405 677.151C651.625 677.151 652.642 676.717 653.455 675.848C654.282 674.964 654.695 673.78 654.695 672.294H656.167C656.167 675 655.431 677.215 653.959 678.939C652.501 680.663 650.56 681.525 648.134 681.525C645.485 681.525 643.382 680.656 641.826 678.918C640.284 677.179 639.513 674.782 639.513 671.726Z"/> +</mask> +<path d="M554.601 681.651V672.231C554.601 668.782 555.533 666.07 557.397 664.093C559.262 662.116 561.876 661.128 565.241 661.128C568.605 661.128 571.227 662.109 573.105 664.072C574.984 666.02 575.923 668.74 575.923 672.231V681.651C575.923 685.184 574.956 687.925 573.021 689.874C571.087 691.808 568.493 692.768 565.241 692.754C561.862 692.754 559.241 691.787 557.376 689.853C555.526 687.904 554.601 685.17 554.601 681.651ZM561.666 682.787C561.666 684.343 561.953 685.57 562.528 686.467C563.117 687.35 564.028 687.792 565.262 687.792C566.496 687.792 567.4 687.35 567.975 686.467C568.563 685.57 568.858 684.343 568.858 682.787V671.2C568.858 669.616 568.563 668.383 567.975 667.499C567.4 666.602 566.496 666.154 565.262 666.154C564.028 666.154 563.117 666.602 562.528 667.499C561.953 668.383 561.666 669.616 561.666 671.2V682.787ZM578.194 679.591V678.35C578.194 673.079 579.694 668.915 582.694 665.859C585.694 662.789 589.998 661.254 595.606 661.254H596.888V666.784H595.774C592.325 666.784 589.655 667.717 587.762 669.581C585.884 671.432 584.944 674.67 584.944 679.296L585.134 679.969C585.134 683.081 585.519 685.177 586.29 686.257C587.075 687.322 588.106 687.855 589.381 687.855C590.629 687.855 591.582 687.427 592.241 686.572C592.914 685.703 593.251 684.189 593.251 682.03C593.251 680.306 592.928 678.988 592.283 678.077C591.638 677.151 590.664 676.689 589.36 676.689C588.169 676.689 587.159 677.144 586.332 678.056C585.519 678.953 585.113 680.144 585.113 681.63H583.536C583.536 678.827 584.3 676.577 585.828 674.88C587.356 673.17 589.304 672.315 591.673 672.315C594.323 672.315 596.419 673.184 597.961 674.922C599.503 676.647 600.274 679.044 600.274 682.114C600.274 685.366 599.272 687.953 597.267 689.874C595.262 691.794 592.627 692.754 589.36 692.754C586.01 692.754 583.311 691.71 581.264 689.621C579.218 687.532 578.194 684.189 578.194 679.591ZM598.907 694.878L610.767 661.633H616.634L604.753 694.878H598.907ZM615.877 679.591V678.35C615.877 673.079 617.377 668.915 620.377 665.859C623.377 662.789 627.681 661.254 633.288 661.254H634.571V666.784H633.457C630.008 666.784 627.337 667.717 625.445 669.581C623.566 671.432 622.627 674.67 622.627 679.296L622.816 679.969C622.816 683.081 623.202 685.177 623.973 686.257C624.758 687.322 625.788 687.855 627.064 687.855C628.312 687.855 629.265 687.427 629.924 686.572C630.597 685.703 630.933 684.189 630.933 682.03C630.933 680.306 630.611 678.988 629.966 678.077C629.321 677.151 628.347 676.689 627.043 676.689C625.851 676.689 624.842 677.144 624.015 678.056C623.202 678.953 622.795 680.144 622.795 681.63H621.218C621.218 678.827 621.982 676.577 623.51 674.88C625.038 673.17 626.987 672.315 629.356 672.315C632.006 672.315 634.102 673.184 635.644 674.922C637.186 676.647 637.957 679.044 637.957 682.114C637.957 685.366 636.954 687.953 634.95 689.874C632.945 691.794 630.309 692.754 627.043 692.754C623.693 692.754 620.994 691.71 618.947 689.621C616.9 687.532 615.877 684.189 615.877 679.591ZM639.513 671.726C639.513 668.488 640.515 665.915 642.52 664.009C644.539 662.088 647.181 661.128 650.448 661.128C653.784 661.128 656.476 662.172 658.522 664.261C660.583 666.35 661.614 669.693 661.614 674.292V675.532C661.614 680.719 660.114 684.834 657.114 687.876C654.113 690.904 649.81 692.439 644.202 692.481H642.898V687.035H644.034C647.469 687.035 650.118 686.109 651.983 684.259C653.861 682.409 654.8 679.212 654.8 674.67L654.674 673.913C654.674 670.927 654.296 668.88 653.539 667.773C652.782 666.665 651.73 666.112 650.384 666.112C649.151 666.112 648.198 666.539 647.525 667.394C646.866 668.235 646.536 669.707 646.536 671.81C646.536 673.605 646.859 674.943 647.504 675.827C648.148 676.71 649.116 677.151 650.405 677.151C651.625 677.151 652.642 676.717 653.455 675.848C654.282 674.964 654.695 673.78 654.695 672.294H656.167C656.167 675 655.431 677.215 653.959 678.939C652.501 680.663 650.56 681.525 648.134 681.525C645.485 681.525 643.382 680.656 641.826 678.918C640.284 677.179 639.513 674.782 639.513 671.726Z" fill="white"/> +<path d="M573.105 664.072L572.383 664.763L572.386 664.766L573.105 664.072ZM573.021 689.874L573.728 690.581L573.731 690.578L573.021 689.874ZM565.241 692.754L565.245 691.754H565.241V692.754ZM557.376 689.853L556.651 690.541L556.656 690.546L557.376 689.853ZM562.528 686.467L561.686 687.006L561.691 687.014L561.696 687.022L562.528 686.467ZM567.975 686.467L567.139 685.918L567.136 685.922L567.975 686.467ZM567.975 667.499L567.133 668.039L567.137 668.047L567.143 668.054L567.975 667.499ZM562.528 667.499L561.692 666.951L561.69 666.954L562.528 667.499ZM554.601 681.651H555.601V672.231H554.601H553.601V681.651H554.601ZM554.601 672.231H555.601C555.601 668.966 556.479 666.524 558.125 664.779L557.397 664.093L556.67 663.407C554.587 665.615 553.601 668.599 553.601 672.231H554.601ZM557.397 664.093L558.125 664.779C559.757 663.049 562.082 662.128 565.241 662.128V661.128V660.128C561.671 660.128 558.767 661.184 556.67 663.407L557.397 664.093ZM565.241 661.128V662.128C568.402 662.128 570.736 663.043 572.383 664.763L573.105 664.072L573.828 663.38C571.718 661.176 568.809 660.128 565.241 660.128V661.128ZM573.105 664.072L572.386 664.766C574.037 666.479 574.923 668.921 574.923 672.231H575.923H576.923C576.923 668.559 575.931 665.562 573.825 663.378L573.105 664.072ZM575.923 672.231H574.923V681.651H575.923H576.923V672.231H575.923ZM575.923 681.651H574.923C574.923 684.999 574.011 687.457 572.312 689.169L573.021 689.874L573.731 690.578C575.901 688.393 576.923 685.369 576.923 681.651H575.923ZM573.021 689.874L572.314 689.166C570.603 690.877 568.285 691.768 565.245 691.754L565.241 692.754L565.237 693.754C568.702 693.769 571.57 692.739 573.728 690.581L573.021 689.874ZM565.241 692.754V691.754C562.06 691.754 559.726 690.85 558.096 689.159L557.376 689.853L556.656 690.546C558.755 692.724 561.665 693.754 565.241 693.754V692.754ZM557.376 689.853L558.101 689.164C556.477 687.453 555.601 684.996 555.601 681.651H554.601H553.601C553.601 685.345 554.575 688.355 556.651 690.541L557.376 689.853ZM561.666 682.787H560.666C560.666 684.451 560.971 685.89 561.686 687.006L562.528 686.467L563.37 685.928C562.936 685.249 562.666 684.235 562.666 682.787H561.666ZM562.528 686.467L561.696 687.022C562.503 688.232 563.757 688.792 565.262 688.792V687.792V686.792C564.3 686.792 563.731 686.469 563.36 685.912L562.528 686.467ZM565.262 687.792V688.792C566.767 688.792 568.02 688.231 568.813 687.012L567.975 686.467L567.136 685.922C566.78 686.469 566.224 686.792 565.262 686.792V687.792ZM567.975 686.467L568.811 687.016C569.544 685.898 569.858 684.455 569.858 682.787H568.858H567.858C567.858 684.231 567.582 685.242 567.139 685.918L567.975 686.467ZM568.858 682.787H569.858V671.2H568.858H567.858V682.787H568.858ZM568.858 671.2H569.858C569.858 669.51 569.547 668.055 568.807 666.945L567.975 667.499L567.143 668.054C567.58 668.711 567.858 669.722 567.858 671.2H568.858ZM567.975 667.499L568.817 666.96C568.026 665.727 566.773 665.154 565.262 665.154V666.154V667.154C566.218 667.154 566.773 667.478 567.133 668.039L567.975 667.499ZM565.262 666.154V665.154C563.75 665.154 562.496 665.726 561.692 666.951L562.528 667.499L563.364 668.048C563.738 667.478 564.306 667.154 565.262 667.154V666.154ZM562.528 667.499L561.69 666.954C560.969 668.062 560.666 669.514 560.666 671.2H561.666H562.666C562.666 669.719 562.938 668.703 563.366 668.045L562.528 667.499ZM561.666 671.2H560.666V682.787H561.666H562.666V671.2H561.666ZM582.694 665.859L583.408 666.56L583.41 666.558L582.694 665.859ZM596.888 661.254H597.888V660.254H596.888V661.254ZM596.888 666.784V667.784H597.888V666.784H596.888ZM587.762 669.581L588.464 670.294L588.464 670.294L587.762 669.581ZM584.944 679.296H583.944V679.434L583.982 679.567L584.944 679.296ZM585.134 679.969H586.134V679.831L586.096 679.698L585.134 679.969ZM586.29 686.257L585.476 686.838L585.481 686.844L585.485 686.85L586.29 686.257ZM592.241 686.572L591.45 685.96L591.449 685.962L592.241 686.572ZM592.283 678.077L591.463 678.648L591.467 678.654L592.283 678.077ZM586.332 678.056L585.592 677.384L585.591 677.384L586.332 678.056ZM585.113 681.63V682.63H586.113V681.63H585.113ZM583.536 681.63H582.536V682.63H583.536V681.63ZM585.828 674.88L586.571 675.55L586.573 675.547L585.828 674.88ZM597.961 674.922L597.213 675.586L597.216 675.589L597.961 674.922ZM578.194 679.591H579.194V678.35H578.194H577.194V679.591H578.194ZM578.194 678.35H579.194C579.194 673.277 580.632 669.388 583.408 666.56L582.694 665.859L581.981 665.159C578.757 668.443 577.194 672.881 577.194 678.35H578.194ZM582.694 665.859L583.41 666.558C586.169 663.734 590.181 662.254 595.606 662.254V661.254V660.254C589.815 660.254 585.22 661.844 581.979 665.16L582.694 665.859ZM595.606 661.254V662.254H596.888V661.254V660.254H595.606V661.254ZM596.888 661.254H595.888V666.784H596.888H597.888V661.254H596.888ZM596.888 666.784V665.784H595.774V666.784V667.784H596.888V666.784ZM595.774 666.784V665.784C592.144 665.784 589.191 666.77 587.06 668.869L587.762 669.581L588.464 670.294C590.118 668.664 592.507 667.784 595.774 667.784V666.784ZM587.762 669.581L587.06 668.869C584.89 671.007 583.944 674.589 583.944 679.296H584.944H585.944C585.944 674.751 586.878 671.856 588.464 670.294L587.762 669.581ZM584.944 679.296L583.982 679.567L584.171 680.24L585.134 679.969L586.096 679.698L585.907 679.026L584.944 679.296ZM585.134 679.969H584.134C584.134 681.561 584.232 682.928 584.439 684.056C584.644 685.171 584.969 686.128 585.476 686.838L586.29 686.257L587.104 685.675C586.84 685.306 586.587 684.676 586.406 683.694C586.228 682.726 586.134 681.49 586.134 679.969H585.134ZM586.29 686.257L585.485 686.85C586.45 688.16 587.774 688.855 589.381 688.855V687.855V686.855C588.437 686.855 587.7 686.484 587.095 685.663L586.29 686.257ZM589.381 687.855V688.855C590.885 688.855 592.154 688.324 593.033 687.182L592.241 686.572L591.449 685.962C591.011 686.531 590.374 686.855 589.381 686.855V687.855ZM592.241 686.572L593.032 687.184C593.92 686.037 594.251 684.23 594.251 682.03H593.251H592.251C592.251 684.148 591.908 685.369 591.45 685.96L592.241 686.572ZM593.251 682.03H594.251C594.251 680.204 593.913 678.648 593.1 677.499L592.283 678.077L591.467 678.654C591.943 679.327 592.251 680.407 592.251 682.03H593.251ZM592.283 678.077L593.104 677.505C592.241 676.266 590.932 675.689 589.36 675.689V676.689V677.689C590.396 677.689 591.036 678.036 591.463 678.648L592.283 678.077ZM589.36 676.689V675.689C587.876 675.689 586.601 676.271 585.592 677.384L586.332 678.056L587.073 678.728C587.717 678.018 588.461 677.689 589.36 677.689V676.689ZM586.332 678.056L585.591 677.384C584.576 678.505 584.113 679.955 584.113 681.63H585.113H586.113C586.113 680.334 586.463 679.401 587.073 678.727L586.332 678.056ZM585.113 681.63V680.63H583.536V681.63V682.63H585.113V681.63ZM583.536 681.63H584.536C584.536 679.015 585.244 677.023 586.571 675.55L585.828 674.88L585.085 674.211C583.355 676.131 582.536 678.638 582.536 681.63H583.536ZM585.828 674.88L586.573 675.547C587.905 674.057 589.578 673.315 591.673 673.315V672.315V671.315C589.03 671.315 586.807 672.284 585.082 674.214L585.828 674.88ZM591.673 672.315V673.315C594.081 673.315 595.888 674.093 597.213 675.586L597.961 674.922L598.709 674.259C596.95 672.275 594.565 671.315 591.673 671.315V672.315ZM597.961 674.922L597.216 675.589C598.546 677.077 599.274 679.208 599.274 682.114H600.274H601.274C601.274 678.88 600.46 676.217 598.706 674.256L597.961 674.922ZM600.274 682.114H599.274C599.274 685.145 598.349 687.452 596.575 689.151L597.267 689.874L597.959 690.596C600.194 688.454 601.274 685.588 601.274 682.114H600.274ZM597.267 689.874L596.575 689.151C594.789 690.863 592.418 691.754 589.36 691.754V692.754V693.754C592.836 693.754 595.736 692.726 597.959 690.596L597.267 689.874ZM589.36 692.754V691.754C586.236 691.754 583.809 690.79 581.979 688.921L581.264 689.621L580.55 690.321C582.813 692.63 585.784 693.754 589.36 693.754V692.754ZM581.264 689.621L581.979 688.921C580.196 687.102 579.194 684.072 579.194 679.591H578.194H577.194C577.194 684.306 578.239 687.963 580.55 690.321L581.264 689.621ZM598.907 694.878L597.965 694.542L597.489 695.878H598.907V694.878ZM610.767 661.633V660.633H610.062L609.825 661.297L610.767 661.633ZM616.634 661.633L617.576 661.969L618.053 660.633H616.634V661.633ZM604.753 694.878V695.878H605.458L605.695 695.215L604.753 694.878ZM598.907 694.878L599.849 695.214L611.709 661.969L610.767 661.633L609.825 661.297L597.965 694.542L598.907 694.878ZM610.767 661.633V662.633H616.634V661.633V660.633H610.767V661.633ZM616.634 661.633L615.692 661.296L603.811 694.542L604.753 694.878L605.695 695.215L617.576 661.969L616.634 661.633ZM604.753 694.878V693.878H598.907V694.878V695.878H604.753V694.878ZM620.377 665.859L621.091 666.56L621.092 666.558L620.377 665.859ZM634.571 661.254H635.571V660.254H634.571V661.254ZM634.571 666.784V667.784H635.571V666.784H634.571ZM625.445 669.581L626.147 670.294L626.147 670.294L625.445 669.581ZM622.627 679.296H621.627V679.434L621.664 679.567L622.627 679.296ZM622.816 679.969H623.816V679.831L623.779 679.698L622.816 679.969ZM623.973 686.257L623.159 686.838L623.163 686.844L623.168 686.85L623.973 686.257ZM629.924 686.572L629.133 685.96L629.132 685.962L629.924 686.572ZM629.966 678.077L629.146 678.648L629.15 678.654L629.966 678.077ZM624.015 678.056L623.275 677.384L623.274 677.384L624.015 678.056ZM622.795 681.63V682.63H623.795V681.63H622.795ZM621.218 681.63H620.218V682.63H621.218V681.63ZM623.51 674.88L624.253 675.55L624.256 675.547L623.51 674.88ZM635.644 674.922L634.896 675.586L634.898 675.589L635.644 674.922ZM615.877 679.591H616.877V678.35H615.877H614.877V679.591H615.877ZM615.877 678.35H616.877C616.877 673.277 618.315 669.388 621.091 666.56L620.377 665.859L619.663 665.159C616.439 668.443 614.877 672.881 614.877 678.35H615.877ZM620.377 665.859L621.092 666.558C623.851 663.734 627.864 662.254 633.288 662.254V661.254V660.254C627.498 660.254 622.903 661.844 619.662 665.16L620.377 665.859ZM633.288 661.254V662.254H634.571V661.254V660.254H633.288V661.254ZM634.571 661.254H633.571V666.784H634.571H635.571V661.254H634.571ZM634.571 666.784V665.784H633.457V666.784V667.784H634.571V666.784ZM633.457 666.784V665.784C629.827 665.784 626.874 666.77 624.743 668.869L625.445 669.581L626.147 670.294C627.801 668.664 630.189 667.784 633.457 667.784V666.784ZM625.445 669.581L624.743 668.869C622.573 671.007 621.627 674.589 621.627 679.296H622.627H623.627C623.627 674.751 624.56 671.856 626.147 670.294L625.445 669.581ZM622.627 679.296L621.664 679.567L621.854 680.24L622.816 679.969L623.779 679.698L623.59 679.026L622.627 679.296ZM622.816 679.969H621.816C621.816 681.561 621.915 682.928 622.122 684.056C622.327 685.171 622.652 686.128 623.159 686.838L623.973 686.257L624.787 685.675C624.523 685.306 624.27 684.676 624.089 683.694C623.911 682.726 623.816 681.49 623.816 679.969H622.816ZM623.973 686.257L623.168 686.85C624.133 688.16 625.457 688.855 627.064 688.855V687.855V686.855C626.12 686.855 625.383 686.484 624.778 685.663L623.973 686.257ZM627.064 687.855V688.855C628.567 688.855 629.837 688.324 630.716 687.182L629.924 686.572L629.132 685.962C628.693 686.531 628.056 686.855 627.064 686.855V687.855ZM629.924 686.572L630.715 687.184C631.603 686.037 631.933 684.23 631.933 682.03H630.933H629.933C629.933 684.148 629.591 685.369 629.133 685.96L629.924 686.572ZM630.933 682.03H631.933C631.933 680.204 631.596 678.648 630.782 677.499L629.966 678.077L629.15 678.654C629.626 679.327 629.933 680.407 629.933 682.03H630.933ZM629.966 678.077L630.786 677.505C629.923 676.266 628.615 675.689 627.043 675.689V676.689V677.689C628.079 677.689 628.719 678.036 629.146 678.648L629.966 678.077ZM627.043 676.689V675.689C625.559 675.689 624.284 676.271 623.275 677.384L624.015 678.056L624.755 678.728C625.4 678.018 626.144 677.689 627.043 677.689V676.689ZM624.015 678.056L623.274 677.384C622.258 678.505 621.795 679.955 621.795 681.63H622.795H623.795C623.795 680.334 624.145 679.401 624.756 678.727L624.015 678.056ZM622.795 681.63V680.63H621.218V681.63V682.63H622.795V681.63ZM621.218 681.63H622.218C622.218 679.015 622.926 677.023 624.253 675.55L623.51 674.88L622.767 674.211C621.038 676.131 620.218 678.638 620.218 681.63H621.218ZM623.51 674.88L624.256 675.547C625.587 674.057 627.261 673.315 629.356 673.315V672.315V671.315C626.713 671.315 624.489 672.284 622.765 674.214L623.51 674.88ZM629.356 672.315V673.315C631.764 673.315 633.571 674.093 634.896 675.586L635.644 674.922L636.392 674.259C634.632 672.275 632.247 671.315 629.356 671.315V672.315ZM635.644 674.922L634.898 675.589C636.229 677.077 636.957 679.208 636.957 682.114H637.957H638.957C638.957 678.88 638.142 676.217 636.389 674.256L635.644 674.922ZM637.957 682.114H636.957C636.957 685.145 636.032 687.452 634.258 689.151L634.95 689.874L635.641 690.596C637.877 688.454 638.957 685.588 638.957 682.114H637.957ZM634.95 689.874L634.258 689.151C632.472 690.863 630.1 691.754 627.043 691.754V692.754V693.754C630.519 693.754 633.418 692.726 635.641 690.596L634.95 689.874ZM627.043 692.754V691.754C623.919 691.754 621.492 690.79 619.661 688.921L618.947 689.621L618.233 690.321C620.496 692.63 623.466 693.754 627.043 693.754V692.754ZM618.947 689.621L619.661 688.921C617.879 687.102 616.877 684.072 616.877 679.591H615.877H614.877C614.877 684.306 615.922 687.963 618.233 690.321L618.947 689.621ZM642.52 664.009L643.209 664.733L643.209 664.733L642.52 664.009ZM658.522 664.261L657.808 664.961L657.811 664.963L658.522 664.261ZM657.114 687.876L657.824 688.58L657.826 688.578L657.114 687.876ZM644.202 692.481V693.481L644.21 693.481L644.202 692.481ZM642.898 692.481H641.898V693.481H642.898V692.481ZM642.898 687.035V686.035H641.898V687.035H642.898ZM651.983 684.259L651.281 683.547L651.278 683.549L651.983 684.259ZM654.8 674.67H655.8V674.587L655.787 674.506L654.8 674.67ZM654.674 673.913H653.674V673.996L653.688 674.077L654.674 673.913ZM647.525 667.394L646.739 666.776L646.737 666.778L647.525 667.394ZM653.455 675.848L652.725 675.164L652.724 675.165L653.455 675.848ZM654.695 672.294V671.294H653.695V672.294H654.695ZM656.167 672.294H657.167V671.294H656.167V672.294ZM653.959 678.939L653.199 678.29L653.196 678.293L653.959 678.939ZM641.826 678.918L641.078 679.581L641.081 679.585L641.826 678.918ZM639.513 671.726H640.513C640.513 668.711 641.437 666.419 643.209 664.733L642.52 664.009L641.831 663.284C639.594 665.412 638.513 668.265 638.513 671.726H639.513ZM642.52 664.009L643.209 664.733C645.01 663.02 647.39 662.128 650.448 662.128V661.128V660.128C646.972 660.128 644.067 661.157 641.831 663.284L642.52 664.009ZM650.448 661.128V662.128C653.557 662.128 655.977 663.092 657.808 664.961L658.522 664.261L659.237 663.561C656.975 661.253 654.011 660.128 650.448 660.128V661.128ZM658.522 664.261L657.811 664.963C659.605 666.783 660.614 669.812 660.614 674.292H661.614H662.614C662.614 669.575 661.561 665.917 659.234 663.559L658.522 664.261ZM661.614 674.292H660.614V675.532H661.614H662.614V674.292H661.614ZM661.614 675.532H660.614C660.614 680.516 659.179 684.357 656.402 687.174L657.114 687.876L657.826 688.578C661.048 685.31 662.614 680.922 662.614 675.532H661.614ZM657.114 687.876L656.403 687.172C653.642 689.959 649.624 691.44 644.195 691.481L644.202 692.481L644.21 693.481C649.995 693.438 654.585 691.849 657.824 688.58L657.114 687.876ZM644.202 692.481V691.481H642.898V692.481V693.481H644.202V692.481ZM642.898 692.481H643.898V687.035H642.898H641.898V692.481H642.898ZM642.898 687.035V688.035H644.034V687.035V686.035H642.898V687.035ZM644.034 687.035V688.035C647.648 688.035 650.583 687.057 652.687 684.969L651.983 684.259L651.278 683.549C649.653 685.162 647.289 686.035 644.034 686.035V687.035ZM651.983 684.259L652.684 684.971C654.852 682.836 655.8 679.299 655.8 674.67H654.8H653.8C653.8 679.125 652.87 681.981 651.281 683.547L651.983 684.259ZM654.8 674.67L655.787 674.506L655.661 673.749L654.674 673.913L653.688 674.077L653.814 674.834L654.8 674.67ZM654.674 673.913H655.674C655.674 672.383 655.578 671.06 655.374 669.957C655.172 668.864 654.853 667.923 654.364 667.209L653.539 667.773L652.713 668.337C652.982 668.73 653.231 669.366 653.407 670.32C653.582 671.264 653.674 672.457 653.674 673.913H654.674ZM653.539 667.773L654.364 667.209C653.42 665.827 652.059 665.112 650.384 665.112V666.112V667.112C651.401 667.112 652.143 667.503 652.713 668.337L653.539 667.773ZM650.384 666.112V665.112C648.891 665.112 647.628 665.645 646.739 666.776L647.525 667.394L648.31 668.013C648.767 667.433 649.411 667.112 650.384 667.112V666.112ZM647.525 667.394L646.737 666.778C645.859 667.899 645.536 669.667 645.536 671.81H646.536H647.536C647.536 669.748 647.872 668.572 648.312 668.011L647.525 667.394ZM646.536 671.81H645.536C645.536 673.693 645.869 675.283 646.696 676.416L647.504 675.827L648.311 675.237C647.849 674.604 647.536 673.517 647.536 671.81H646.536ZM647.504 675.827L646.696 676.416C647.564 677.606 648.862 678.151 650.405 678.151V677.151V676.151C649.37 676.151 648.732 675.814 648.311 675.237L647.504 675.827ZM650.405 677.151V678.151C651.894 678.151 653.177 677.608 654.185 676.531L653.455 675.848L652.724 675.165C652.106 675.826 651.356 676.151 650.405 676.151V677.151ZM653.455 675.848L654.184 676.531C655.223 675.423 655.695 673.973 655.695 672.294H654.695H653.695C653.695 673.587 653.341 674.506 652.725 675.164L653.455 675.848ZM654.695 672.294V673.294H656.167V672.294V671.294H654.695V672.294ZM656.167 672.294H655.167C655.167 674.81 654.487 676.78 653.199 678.29L653.959 678.939L654.72 679.588C656.375 677.649 657.167 675.189 657.167 672.294H656.167ZM653.959 678.939L653.196 678.293C651.943 679.775 650.29 680.525 648.134 680.525V681.525V682.525C650.829 682.525 653.059 681.552 654.723 679.585L653.959 678.939ZM648.134 681.525V680.525C645.727 680.525 643.911 679.747 642.571 678.251L641.826 678.918L641.081 679.585C642.853 681.565 645.243 682.525 648.134 682.525V681.525ZM641.826 678.918L642.574 678.254C641.24 676.75 640.513 674.616 640.513 671.726H639.513H638.513C638.513 674.948 639.328 677.609 641.078 679.581L641.826 678.918Z" fill="black" mask="url(#path-9-outside-4_17007_2267)"/> +<mask id="path-11-outside-5_17007_2267" maskUnits="userSpaceOnUse" x="69" y="487" width="836" height="67" fill="black"> +<rect fill="white" x="69" y="487" width="836" height="67"/> +<path d="M72.6781 526.108V523.111C72.6781 513.149 75.4881 505.318 81.1083 499.618C86.7285 493.892 94.5994 491.028 104.721 491.028H108.077V502.175H105.2C99.1541 502.175 94.5195 503.933 91.2965 507.449C88.0736 510.939 86.4621 517.198 86.4621 526.228L86.5021 527.106C86.5021 532.807 87.168 536.602 88.4998 538.493C89.8582 540.384 91.6161 541.33 93.7737 541.33C95.798 541.33 97.4228 540.598 98.648 539.133C99.8733 537.641 100.486 534.671 100.486 530.223C100.486 527 99.9132 524.603 98.7679 523.031C97.6492 521.433 95.9977 520.634 93.8136 520.634C91.7893 520.634 90.0713 521.406 88.6596 522.951C87.2479 524.47 86.542 526.547 86.542 529.184H84.1448C84.1448 523.99 85.6231 519.955 88.5797 517.078C91.5362 514.175 95.0522 512.723 99.1275 512.723C103.789 512.723 107.504 514.268 110.275 517.358C113.045 520.421 114.43 524.842 114.43 530.622C114.43 536.935 112.459 541.889 108.517 545.485C104.574 549.054 99.6202 550.839 93.6538 550.839C87.1546 550.839 82.0272 548.855 78.2716 544.886C74.5426 540.891 72.6781 534.631 72.6781 526.108ZM120.5 511.205C120.5 504.919 122.471 499.991 126.413 496.422C130.355 492.826 135.322 491.028 141.315 491.028C147.788 491.028 152.889 493.013 156.618 496.981C160.373 500.95 162.251 507.21 162.251 515.76V518.716C162.251 528.651 159.441 536.469 153.821 542.169C148.227 547.869 140.357 550.732 130.208 550.759H126.852V539.812H129.729C135.775 539.838 140.41 538.107 143.633 534.618C146.856 531.129 148.467 524.882 148.467 515.879L148.427 514.761C148.427 509.194 147.761 505.465 146.43 503.574C145.098 501.656 143.34 500.697 141.156 500.697C139.131 500.697 137.507 501.443 136.281 502.934C135.056 504.399 134.443 507.289 134.443 511.604C134.443 514.987 135.003 517.464 136.121 519.036C137.267 520.581 138.932 521.353 141.116 521.353C143.14 521.353 144.858 520.607 146.27 519.116C147.708 517.597 148.427 515.52 148.427 512.883H150.745C150.745 518.05 149.28 522.072 146.35 524.949C143.42 527.799 139.904 529.224 135.802 529.224C131.141 529.224 127.425 527.666 124.655 524.549C121.885 521.433 120.5 516.985 120.5 511.205ZM168.721 526.108V523.111C168.721 513.149 171.531 505.318 177.151 499.618C182.771 493.892 190.642 491.028 200.763 491.028H204.12V502.175H201.243C195.197 502.175 190.562 503.933 187.339 507.449C184.116 510.939 182.505 517.198 182.505 526.228L182.545 527.106C182.545 532.807 183.21 536.602 184.542 538.493C185.901 540.384 187.659 541.33 189.816 541.33C191.84 541.33 193.465 540.598 194.69 539.133C195.916 537.641 196.528 534.671 196.528 530.223C196.528 527 195.956 524.603 194.81 523.031C193.692 521.433 192.04 520.634 189.856 520.634C187.832 520.634 186.114 521.406 184.702 522.951C183.29 524.47 182.584 526.547 182.584 529.184H180.187C180.187 523.99 181.666 519.955 184.622 517.078C187.579 514.175 191.095 512.723 195.17 512.723C199.831 512.723 203.547 514.268 206.317 517.358C209.087 520.421 210.472 524.842 210.472 530.622C210.472 536.935 208.501 541.889 204.559 545.485C200.617 549.054 195.663 550.839 189.696 550.839C183.197 550.839 178.07 548.855 174.314 544.886C170.585 540.891 168.721 534.631 168.721 526.108ZM216.542 511.205C216.542 504.919 218.513 499.991 222.455 496.422C226.397 492.826 231.365 491.028 237.358 491.028C243.83 491.028 248.931 493.013 252.66 496.981C256.416 500.95 258.294 507.21 258.294 515.76V518.716C258.294 528.651 255.484 536.469 249.863 542.169C244.27 547.869 236.399 550.732 226.251 550.759H222.895V539.812H225.771C231.818 539.838 236.452 538.107 239.675 534.618C242.898 531.129 244.51 524.882 244.51 515.879L244.47 514.761C244.47 509.194 243.804 505.465 242.472 503.574C241.14 501.656 239.382 500.697 237.198 500.697C235.174 500.697 233.549 501.443 232.324 502.934C231.099 504.399 230.486 507.289 230.486 511.604C230.486 514.987 231.045 517.464 232.164 519.036C233.309 520.581 234.974 521.353 237.158 521.353C239.182 521.353 240.9 520.607 242.312 519.116C243.751 517.597 244.47 515.52 244.47 512.883H246.787C246.787 518.05 245.322 522.072 242.392 524.949C239.462 527.799 235.946 529.224 231.844 529.224C227.183 529.224 223.467 527.666 220.697 524.549C217.927 521.433 216.542 516.985 216.542 511.205ZM287.733 529.863V511.964C287.733 505.278 289.531 500.111 293.127 496.462C296.723 492.813 301.664 490.988 307.95 490.988C314.236 490.988 319.177 492.786 322.773 496.382C326.395 499.951 328.206 505.145 328.206 511.964V529.863C328.206 536.789 326.315 542.023 322.533 545.565C318.777 549.108 313.916 550.866 307.95 550.839C301.611 550.812 296.656 549.041 293.087 545.525C289.518 541.983 287.733 536.762 287.733 529.863ZM301.637 532.7C301.637 535.47 302.157 537.601 303.195 539.093C304.261 540.584 305.846 541.33 307.95 541.33C310.054 541.33 311.639 540.584 312.704 539.093C313.77 537.601 314.303 535.47 314.303 532.7V509.407C314.303 506.584 313.77 504.426 312.704 502.934C311.639 501.443 310.054 500.697 307.95 500.697C305.846 500.697 304.261 501.443 303.195 502.934C302.157 504.426 301.637 506.584 301.637 509.407V532.7ZM357.969 550V535.297L358.408 534.618V509.487H358.089L347.021 528.105H363.402L364.601 527.746H377.426V538.533H334.156V528.625L359.487 491.827H370.754V550H357.969ZM383.136 550V541.33L404.152 519.515C405.75 517.651 407.122 515.746 408.267 513.802C409.413 511.857 409.985 509.846 409.985 507.769C409.985 505.238 409.413 503.427 408.267 502.335C407.122 501.243 405.617 500.697 403.753 500.697C401.808 500.697 400.237 501.336 399.038 502.615C397.839 503.867 397.24 506.331 397.24 510.006V511.644H383.136V508.208C383.136 503.227 385.054 499.112 388.89 495.863C392.725 492.613 397.76 490.988 403.992 490.988C410.518 490.988 415.472 492.44 418.855 495.343C422.238 498.22 423.943 502.135 423.969 507.09C423.969 510.765 423.183 514.055 421.612 516.958C420.067 519.862 417.856 522.818 414.98 525.828L403.952 538.853H425.328V550H383.136ZM431.797 529.863V511.964C431.797 505.278 433.595 500.111 437.191 496.462C440.787 492.813 445.728 490.988 452.014 490.988C458.3 490.988 463.241 492.786 466.836 496.382C470.459 499.951 472.27 505.145 472.27 511.964V529.863C472.27 536.789 470.379 542.023 466.597 545.565C462.841 549.108 457.98 550.866 452.014 550.839C445.674 550.812 440.72 549.041 437.151 545.525C433.582 541.983 431.797 536.762 431.797 529.863ZM445.701 532.7C445.701 535.47 446.22 537.601 447.259 539.093C448.325 540.584 449.909 541.33 452.014 541.33C454.118 541.33 455.703 540.584 456.768 539.093C457.834 537.601 458.366 535.47 458.366 532.7V509.407C458.366 506.584 457.834 504.426 456.768 502.934C455.703 501.443 454.118 500.697 452.014 500.697C449.909 500.697 448.325 501.443 447.259 502.934C446.22 504.426 445.701 506.584 445.701 509.407V532.7ZM501.39 534.178C501.39 530.369 502.402 527.2 504.427 524.669C506.477 522.139 508.675 520.527 511.019 519.835V519.675C508.648 518.61 506.717 516.998 505.226 514.841C503.761 512.657 503.028 509.913 503.028 506.61C503.028 501.842 504.733 498.047 508.142 495.223C511.578 492.4 516.359 490.988 522.486 490.988C528.612 490.988 533.366 492.44 536.749 495.343C540.159 498.22 541.863 501.976 541.863 506.61C541.863 510.02 541.091 512.83 539.546 515.04C538.028 517.225 536.097 518.756 533.753 519.635V519.795C536.176 520.461 538.401 522.072 540.425 524.629C542.476 527.16 543.501 530.343 543.501 534.178C543.501 539.319 541.557 543.381 537.668 546.364C533.806 549.347 528.745 550.839 522.486 550.839C516.2 550.839 511.112 549.347 507.223 546.364C503.334 543.381 501.39 539.319 501.39 534.178ZM515.414 532.66C515.414 535.776 516.026 538.041 517.252 539.452C518.504 540.837 520.235 541.53 522.446 541.53C524.63 541.53 526.335 540.824 527.56 539.412C528.785 538.001 529.398 535.75 529.398 532.66C529.398 529.437 528.745 527.173 527.44 525.868C526.161 524.536 524.497 523.87 522.446 523.87C520.395 523.87 518.703 524.536 517.372 525.868C516.066 527.173 515.414 529.437 515.414 532.66ZM516.333 508.448C516.333 511.138 516.905 513.189 518.051 514.601C519.196 515.986 520.661 516.679 522.446 516.679C524.204 516.679 525.655 515.986 526.801 514.601C527.973 513.189 528.559 511.138 528.559 508.448C528.559 505.731 528.039 503.734 527 502.455C525.988 501.15 524.47 500.497 522.446 500.497C520.421 500.497 518.89 501.123 517.851 502.375C516.839 503.627 516.333 505.651 516.333 508.448ZM549.411 534.178C549.411 530.369 550.423 527.2 552.448 524.669C554.499 522.139 556.696 520.527 559.04 519.835V519.675C556.67 518.61 554.738 516.998 553.247 514.841C551.782 512.657 551.049 509.913 551.049 506.61C551.049 501.842 552.754 498.047 556.163 495.223C559.599 492.4 564.381 490.988 570.507 490.988C576.633 490.988 581.388 492.44 584.77 495.343C588.18 498.22 589.884 501.976 589.884 506.61C589.884 510.02 589.112 512.83 587.567 515.04C586.049 517.225 584.118 518.756 581.774 519.635V519.795C584.198 520.461 586.422 522.072 588.446 524.629C590.497 527.16 591.523 530.343 591.523 534.178C591.523 539.319 589.578 543.381 585.689 546.364C581.827 549.347 576.766 550.839 570.507 550.839C564.221 550.839 559.133 549.347 555.245 546.364C551.356 543.381 549.411 539.319 549.411 534.178ZM563.435 532.66C563.435 535.776 564.048 538.041 565.273 539.452C566.525 540.837 568.256 541.53 570.467 541.53C572.651 541.53 574.356 540.824 575.581 539.412C576.806 538.001 577.419 535.75 577.419 532.66C577.419 529.437 576.766 527.173 575.461 525.868C574.183 524.536 572.518 523.87 570.467 523.87C568.416 523.87 566.725 524.536 565.393 525.868C564.088 527.173 563.435 529.437 563.435 532.66ZM564.354 508.448C564.354 511.138 564.927 513.189 566.072 514.601C567.217 515.986 568.682 516.679 570.467 516.679C572.225 516.679 573.677 515.986 574.822 514.601C575.994 513.189 576.58 511.138 576.58 508.448C576.58 505.731 576.06 503.734 575.022 502.455C574.009 501.15 572.491 500.497 570.467 500.497C568.443 500.497 566.911 501.123 565.872 502.375C564.86 503.627 564.354 505.651 564.354 508.448ZM597.433 534.178C597.433 530.369 598.445 527.2 600.469 524.669C602.52 522.139 604.717 520.527 607.061 519.835V519.675C604.691 518.61 602.76 516.998 601.268 514.841C599.803 512.657 599.071 509.913 599.071 506.61C599.071 501.842 600.775 498.047 604.185 495.223C607.621 492.4 612.402 490.988 618.528 490.988C624.654 490.988 629.409 492.44 632.792 495.343C636.201 498.22 637.906 501.976 637.906 506.61C637.906 510.02 637.133 512.83 635.588 515.04C634.07 517.225 632.139 518.756 629.795 519.635V519.795C632.219 520.461 634.443 522.072 636.467 524.629C638.518 527.16 639.544 530.343 639.544 534.178C639.544 539.319 637.599 543.381 633.711 546.364C629.848 549.347 624.788 550.839 618.528 550.839C612.242 550.839 607.155 549.347 603.266 546.364C599.377 543.381 597.433 539.319 597.433 534.178ZM611.456 532.66C611.456 535.776 612.069 538.041 613.294 539.452C614.546 540.837 616.277 541.53 618.488 541.53C620.672 541.53 622.377 540.824 623.602 539.412C624.827 538.001 625.44 535.75 625.44 532.66C625.44 529.437 624.788 527.173 623.482 525.868C622.204 524.536 620.539 523.87 618.488 523.87C616.437 523.87 614.746 524.536 613.414 525.868C612.109 527.173 611.456 529.437 611.456 532.66ZM612.375 508.448C612.375 511.138 612.948 513.189 614.093 514.601C615.239 515.986 616.704 516.679 618.488 516.679C620.246 516.679 621.698 515.986 622.843 514.601C624.015 513.189 624.601 511.138 624.601 508.448C624.601 505.731 624.082 503.734 623.043 502.455C622.031 501.15 620.512 500.497 618.488 500.497C616.464 500.497 614.932 501.123 613.893 502.375C612.881 503.627 612.375 505.651 612.375 508.448ZM646.413 529.863V511.964C646.413 505.278 648.211 500.111 651.806 496.462C655.402 492.813 660.343 490.988 666.629 490.988C672.915 490.988 677.856 492.786 681.452 496.382C685.075 499.951 686.886 505.145 686.886 511.964V529.863C686.886 536.789 684.995 542.023 681.212 545.565C677.457 549.108 672.596 550.866 666.629 550.839C660.29 550.812 655.336 549.041 651.766 545.525C648.197 541.983 646.413 536.762 646.413 529.863ZM660.317 532.7C660.317 535.47 660.836 537.601 661.875 539.093C662.94 540.584 664.525 541.33 666.629 541.33C668.733 541.33 670.318 540.584 671.384 539.093C672.449 537.601 672.982 535.47 672.982 532.7V509.407C672.982 506.584 672.449 504.426 671.384 502.934C670.318 501.443 668.733 500.697 666.629 500.697C664.525 500.697 662.94 501.443 661.875 502.934C660.836 504.426 660.317 506.584 660.317 509.407V532.7ZM716.965 529.863V511.964C716.965 505.278 718.763 500.111 722.358 496.462C725.954 492.813 730.895 490.988 737.181 490.988C743.467 490.988 748.408 492.786 752.004 496.382C755.627 499.951 757.438 505.145 757.438 511.964V529.863C757.438 536.789 755.547 542.023 751.764 545.565C748.009 549.108 743.148 550.866 737.181 550.839C730.842 550.812 725.888 549.041 722.318 545.525C718.749 541.983 716.965 536.762 716.965 529.863ZM730.869 532.7C730.869 535.47 731.388 537.601 732.427 539.093C733.492 540.584 735.077 541.33 737.181 541.33C739.285 541.33 740.87 540.584 741.936 539.093C743.001 537.601 743.534 535.47 743.534 532.7V509.407C743.534 506.584 743.001 504.426 741.936 502.934C740.87 501.443 739.285 500.697 737.181 500.697C735.077 500.697 733.492 501.443 732.427 502.934C731.388 504.426 730.869 506.584 730.869 509.407V532.7ZM787.2 550V535.297L787.64 534.618V509.487H787.32L776.253 528.105H792.634L793.832 527.746H806.658V538.533H763.388V528.625L788.718 491.827H799.985V550H787.2ZM812.368 550V541.33L833.383 519.515C834.982 517.651 836.353 515.746 837.499 513.802C838.644 511.857 839.217 509.846 839.217 507.769C839.217 505.238 838.644 503.427 837.499 502.335C836.353 501.243 834.848 500.697 832.984 500.697C831.04 500.697 829.468 501.336 828.269 502.615C827.071 503.867 826.471 506.331 826.471 510.006V511.644H812.368V508.208C812.368 503.227 814.286 499.112 818.121 495.863C821.957 492.613 826.991 490.988 833.224 490.988C839.749 490.988 844.704 492.44 848.086 495.343C851.469 498.22 853.174 502.135 853.201 507.09C853.201 510.765 852.415 514.055 850.843 516.958C849.298 519.862 847.088 522.818 844.211 525.828L833.184 538.853H854.559V550H812.368ZM861.028 529.863V511.964C861.028 505.278 862.826 500.111 866.422 496.462C870.018 492.813 874.959 490.988 881.245 490.988C887.531 490.988 892.472 492.786 896.068 496.382C899.69 499.951 901.501 505.145 901.501 511.964V529.863C901.501 536.789 899.61 542.023 895.828 545.565C892.072 549.108 887.211 550.866 881.245 550.839C874.906 550.812 869.951 549.041 866.382 545.525C862.813 541.983 861.028 536.762 861.028 529.863ZM874.932 532.7C874.932 535.47 875.452 537.601 876.49 539.093C877.556 540.584 879.141 541.33 881.245 541.33C883.349 541.33 884.934 540.584 885.999 539.093C887.065 537.601 887.598 535.47 887.598 532.7V509.407C887.598 506.584 887.065 504.426 885.999 502.934C884.934 501.443 883.349 500.697 881.245 500.697C879.141 500.697 877.556 501.443 876.49 502.934C875.452 504.426 874.932 506.584 874.932 509.407V532.7Z"/> +</mask> +<path d="M72.6781 526.108V523.111C72.6781 513.149 75.4881 505.318 81.1083 499.618C86.7285 493.892 94.5994 491.028 104.721 491.028H108.077V502.175H105.2C99.1541 502.175 94.5195 503.933 91.2965 507.449C88.0736 510.939 86.4621 517.198 86.4621 526.228L86.5021 527.106C86.5021 532.807 87.168 536.602 88.4998 538.493C89.8582 540.384 91.6161 541.33 93.7737 541.33C95.798 541.33 97.4228 540.598 98.648 539.133C99.8733 537.641 100.486 534.671 100.486 530.223C100.486 527 99.9132 524.603 98.7679 523.031C97.6492 521.433 95.9977 520.634 93.8136 520.634C91.7893 520.634 90.0713 521.406 88.6596 522.951C87.2479 524.47 86.542 526.547 86.542 529.184H84.1448C84.1448 523.99 85.6231 519.955 88.5797 517.078C91.5362 514.175 95.0522 512.723 99.1275 512.723C103.789 512.723 107.504 514.268 110.275 517.358C113.045 520.421 114.43 524.842 114.43 530.622C114.43 536.935 112.459 541.889 108.517 545.485C104.574 549.054 99.6202 550.839 93.6538 550.839C87.1546 550.839 82.0272 548.855 78.2716 544.886C74.5426 540.891 72.6781 534.631 72.6781 526.108ZM120.5 511.205C120.5 504.919 122.471 499.991 126.413 496.422C130.355 492.826 135.322 491.028 141.315 491.028C147.788 491.028 152.889 493.013 156.618 496.981C160.373 500.95 162.251 507.21 162.251 515.76V518.716C162.251 528.651 159.441 536.469 153.821 542.169C148.227 547.869 140.357 550.732 130.208 550.759H126.852V539.812H129.729C135.775 539.838 140.41 538.107 143.633 534.618C146.856 531.129 148.467 524.882 148.467 515.879L148.427 514.761C148.427 509.194 147.761 505.465 146.43 503.574C145.098 501.656 143.34 500.697 141.156 500.697C139.131 500.697 137.507 501.443 136.281 502.934C135.056 504.399 134.443 507.289 134.443 511.604C134.443 514.987 135.003 517.464 136.121 519.036C137.267 520.581 138.932 521.353 141.116 521.353C143.14 521.353 144.858 520.607 146.27 519.116C147.708 517.597 148.427 515.52 148.427 512.883H150.745C150.745 518.05 149.28 522.072 146.35 524.949C143.42 527.799 139.904 529.224 135.802 529.224C131.141 529.224 127.425 527.666 124.655 524.549C121.885 521.433 120.5 516.985 120.5 511.205ZM168.721 526.108V523.111C168.721 513.149 171.531 505.318 177.151 499.618C182.771 493.892 190.642 491.028 200.763 491.028H204.12V502.175H201.243C195.197 502.175 190.562 503.933 187.339 507.449C184.116 510.939 182.505 517.198 182.505 526.228L182.545 527.106C182.545 532.807 183.21 536.602 184.542 538.493C185.901 540.384 187.659 541.33 189.816 541.33C191.84 541.33 193.465 540.598 194.69 539.133C195.916 537.641 196.528 534.671 196.528 530.223C196.528 527 195.956 524.603 194.81 523.031C193.692 521.433 192.04 520.634 189.856 520.634C187.832 520.634 186.114 521.406 184.702 522.951C183.29 524.47 182.584 526.547 182.584 529.184H180.187C180.187 523.99 181.666 519.955 184.622 517.078C187.579 514.175 191.095 512.723 195.17 512.723C199.831 512.723 203.547 514.268 206.317 517.358C209.087 520.421 210.472 524.842 210.472 530.622C210.472 536.935 208.501 541.889 204.559 545.485C200.617 549.054 195.663 550.839 189.696 550.839C183.197 550.839 178.07 548.855 174.314 544.886C170.585 540.891 168.721 534.631 168.721 526.108ZM216.542 511.205C216.542 504.919 218.513 499.991 222.455 496.422C226.397 492.826 231.365 491.028 237.358 491.028C243.83 491.028 248.931 493.013 252.66 496.981C256.416 500.95 258.294 507.21 258.294 515.76V518.716C258.294 528.651 255.484 536.469 249.863 542.169C244.27 547.869 236.399 550.732 226.251 550.759H222.895V539.812H225.771C231.818 539.838 236.452 538.107 239.675 534.618C242.898 531.129 244.51 524.882 244.51 515.879L244.47 514.761C244.47 509.194 243.804 505.465 242.472 503.574C241.14 501.656 239.382 500.697 237.198 500.697C235.174 500.697 233.549 501.443 232.324 502.934C231.099 504.399 230.486 507.289 230.486 511.604C230.486 514.987 231.045 517.464 232.164 519.036C233.309 520.581 234.974 521.353 237.158 521.353C239.182 521.353 240.9 520.607 242.312 519.116C243.751 517.597 244.47 515.52 244.47 512.883H246.787C246.787 518.05 245.322 522.072 242.392 524.949C239.462 527.799 235.946 529.224 231.844 529.224C227.183 529.224 223.467 527.666 220.697 524.549C217.927 521.433 216.542 516.985 216.542 511.205ZM287.733 529.863V511.964C287.733 505.278 289.531 500.111 293.127 496.462C296.723 492.813 301.664 490.988 307.95 490.988C314.236 490.988 319.177 492.786 322.773 496.382C326.395 499.951 328.206 505.145 328.206 511.964V529.863C328.206 536.789 326.315 542.023 322.533 545.565C318.777 549.108 313.916 550.866 307.95 550.839C301.611 550.812 296.656 549.041 293.087 545.525C289.518 541.983 287.733 536.762 287.733 529.863ZM301.637 532.7C301.637 535.47 302.157 537.601 303.195 539.093C304.261 540.584 305.846 541.33 307.95 541.33C310.054 541.33 311.639 540.584 312.704 539.093C313.77 537.601 314.303 535.47 314.303 532.7V509.407C314.303 506.584 313.77 504.426 312.704 502.934C311.639 501.443 310.054 500.697 307.95 500.697C305.846 500.697 304.261 501.443 303.195 502.934C302.157 504.426 301.637 506.584 301.637 509.407V532.7ZM357.969 550V535.297L358.408 534.618V509.487H358.089L347.021 528.105H363.402L364.601 527.746H377.426V538.533H334.156V528.625L359.487 491.827H370.754V550H357.969ZM383.136 550V541.33L404.152 519.515C405.75 517.651 407.122 515.746 408.267 513.802C409.413 511.857 409.985 509.846 409.985 507.769C409.985 505.238 409.413 503.427 408.267 502.335C407.122 501.243 405.617 500.697 403.753 500.697C401.808 500.697 400.237 501.336 399.038 502.615C397.839 503.867 397.24 506.331 397.24 510.006V511.644H383.136V508.208C383.136 503.227 385.054 499.112 388.89 495.863C392.725 492.613 397.76 490.988 403.992 490.988C410.518 490.988 415.472 492.44 418.855 495.343C422.238 498.22 423.943 502.135 423.969 507.09C423.969 510.765 423.183 514.055 421.612 516.958C420.067 519.862 417.856 522.818 414.98 525.828L403.952 538.853H425.328V550H383.136ZM431.797 529.863V511.964C431.797 505.278 433.595 500.111 437.191 496.462C440.787 492.813 445.728 490.988 452.014 490.988C458.3 490.988 463.241 492.786 466.836 496.382C470.459 499.951 472.27 505.145 472.27 511.964V529.863C472.27 536.789 470.379 542.023 466.597 545.565C462.841 549.108 457.98 550.866 452.014 550.839C445.674 550.812 440.72 549.041 437.151 545.525C433.582 541.983 431.797 536.762 431.797 529.863ZM445.701 532.7C445.701 535.47 446.22 537.601 447.259 539.093C448.325 540.584 449.909 541.33 452.014 541.33C454.118 541.33 455.703 540.584 456.768 539.093C457.834 537.601 458.366 535.47 458.366 532.7V509.407C458.366 506.584 457.834 504.426 456.768 502.934C455.703 501.443 454.118 500.697 452.014 500.697C449.909 500.697 448.325 501.443 447.259 502.934C446.22 504.426 445.701 506.584 445.701 509.407V532.7ZM501.39 534.178C501.39 530.369 502.402 527.2 504.427 524.669C506.477 522.139 508.675 520.527 511.019 519.835V519.675C508.648 518.61 506.717 516.998 505.226 514.841C503.761 512.657 503.028 509.913 503.028 506.61C503.028 501.842 504.733 498.047 508.142 495.223C511.578 492.4 516.359 490.988 522.486 490.988C528.612 490.988 533.366 492.44 536.749 495.343C540.159 498.22 541.863 501.976 541.863 506.61C541.863 510.02 541.091 512.83 539.546 515.04C538.028 517.225 536.097 518.756 533.753 519.635V519.795C536.176 520.461 538.401 522.072 540.425 524.629C542.476 527.16 543.501 530.343 543.501 534.178C543.501 539.319 541.557 543.381 537.668 546.364C533.806 549.347 528.745 550.839 522.486 550.839C516.2 550.839 511.112 549.347 507.223 546.364C503.334 543.381 501.39 539.319 501.39 534.178ZM515.414 532.66C515.414 535.776 516.026 538.041 517.252 539.452C518.504 540.837 520.235 541.53 522.446 541.53C524.63 541.53 526.335 540.824 527.56 539.412C528.785 538.001 529.398 535.75 529.398 532.66C529.398 529.437 528.745 527.173 527.44 525.868C526.161 524.536 524.497 523.87 522.446 523.87C520.395 523.87 518.703 524.536 517.372 525.868C516.066 527.173 515.414 529.437 515.414 532.66ZM516.333 508.448C516.333 511.138 516.905 513.189 518.051 514.601C519.196 515.986 520.661 516.679 522.446 516.679C524.204 516.679 525.655 515.986 526.801 514.601C527.973 513.189 528.559 511.138 528.559 508.448C528.559 505.731 528.039 503.734 527 502.455C525.988 501.15 524.47 500.497 522.446 500.497C520.421 500.497 518.89 501.123 517.851 502.375C516.839 503.627 516.333 505.651 516.333 508.448ZM549.411 534.178C549.411 530.369 550.423 527.2 552.448 524.669C554.499 522.139 556.696 520.527 559.04 519.835V519.675C556.67 518.61 554.738 516.998 553.247 514.841C551.782 512.657 551.049 509.913 551.049 506.61C551.049 501.842 552.754 498.047 556.163 495.223C559.599 492.4 564.381 490.988 570.507 490.988C576.633 490.988 581.388 492.44 584.77 495.343C588.18 498.22 589.884 501.976 589.884 506.61C589.884 510.02 589.112 512.83 587.567 515.04C586.049 517.225 584.118 518.756 581.774 519.635V519.795C584.198 520.461 586.422 522.072 588.446 524.629C590.497 527.16 591.523 530.343 591.523 534.178C591.523 539.319 589.578 543.381 585.689 546.364C581.827 549.347 576.766 550.839 570.507 550.839C564.221 550.839 559.133 549.347 555.245 546.364C551.356 543.381 549.411 539.319 549.411 534.178ZM563.435 532.66C563.435 535.776 564.048 538.041 565.273 539.452C566.525 540.837 568.256 541.53 570.467 541.53C572.651 541.53 574.356 540.824 575.581 539.412C576.806 538.001 577.419 535.75 577.419 532.66C577.419 529.437 576.766 527.173 575.461 525.868C574.183 524.536 572.518 523.87 570.467 523.87C568.416 523.87 566.725 524.536 565.393 525.868C564.088 527.173 563.435 529.437 563.435 532.66ZM564.354 508.448C564.354 511.138 564.927 513.189 566.072 514.601C567.217 515.986 568.682 516.679 570.467 516.679C572.225 516.679 573.677 515.986 574.822 514.601C575.994 513.189 576.58 511.138 576.58 508.448C576.58 505.731 576.06 503.734 575.022 502.455C574.009 501.15 572.491 500.497 570.467 500.497C568.443 500.497 566.911 501.123 565.872 502.375C564.86 503.627 564.354 505.651 564.354 508.448ZM597.433 534.178C597.433 530.369 598.445 527.2 600.469 524.669C602.52 522.139 604.717 520.527 607.061 519.835V519.675C604.691 518.61 602.76 516.998 601.268 514.841C599.803 512.657 599.071 509.913 599.071 506.61C599.071 501.842 600.775 498.047 604.185 495.223C607.621 492.4 612.402 490.988 618.528 490.988C624.654 490.988 629.409 492.44 632.792 495.343C636.201 498.22 637.906 501.976 637.906 506.61C637.906 510.02 637.133 512.83 635.588 515.04C634.07 517.225 632.139 518.756 629.795 519.635V519.795C632.219 520.461 634.443 522.072 636.467 524.629C638.518 527.16 639.544 530.343 639.544 534.178C639.544 539.319 637.599 543.381 633.711 546.364C629.848 549.347 624.788 550.839 618.528 550.839C612.242 550.839 607.155 549.347 603.266 546.364C599.377 543.381 597.433 539.319 597.433 534.178ZM611.456 532.66C611.456 535.776 612.069 538.041 613.294 539.452C614.546 540.837 616.277 541.53 618.488 541.53C620.672 541.53 622.377 540.824 623.602 539.412C624.827 538.001 625.44 535.75 625.44 532.66C625.44 529.437 624.788 527.173 623.482 525.868C622.204 524.536 620.539 523.87 618.488 523.87C616.437 523.87 614.746 524.536 613.414 525.868C612.109 527.173 611.456 529.437 611.456 532.66ZM612.375 508.448C612.375 511.138 612.948 513.189 614.093 514.601C615.239 515.986 616.704 516.679 618.488 516.679C620.246 516.679 621.698 515.986 622.843 514.601C624.015 513.189 624.601 511.138 624.601 508.448C624.601 505.731 624.082 503.734 623.043 502.455C622.031 501.15 620.512 500.497 618.488 500.497C616.464 500.497 614.932 501.123 613.893 502.375C612.881 503.627 612.375 505.651 612.375 508.448ZM646.413 529.863V511.964C646.413 505.278 648.211 500.111 651.806 496.462C655.402 492.813 660.343 490.988 666.629 490.988C672.915 490.988 677.856 492.786 681.452 496.382C685.075 499.951 686.886 505.145 686.886 511.964V529.863C686.886 536.789 684.995 542.023 681.212 545.565C677.457 549.108 672.596 550.866 666.629 550.839C660.29 550.812 655.336 549.041 651.766 545.525C648.197 541.983 646.413 536.762 646.413 529.863ZM660.317 532.7C660.317 535.47 660.836 537.601 661.875 539.093C662.94 540.584 664.525 541.33 666.629 541.33C668.733 541.33 670.318 540.584 671.384 539.093C672.449 537.601 672.982 535.47 672.982 532.7V509.407C672.982 506.584 672.449 504.426 671.384 502.934C670.318 501.443 668.733 500.697 666.629 500.697C664.525 500.697 662.94 501.443 661.875 502.934C660.836 504.426 660.317 506.584 660.317 509.407V532.7ZM716.965 529.863V511.964C716.965 505.278 718.763 500.111 722.358 496.462C725.954 492.813 730.895 490.988 737.181 490.988C743.467 490.988 748.408 492.786 752.004 496.382C755.627 499.951 757.438 505.145 757.438 511.964V529.863C757.438 536.789 755.547 542.023 751.764 545.565C748.009 549.108 743.148 550.866 737.181 550.839C730.842 550.812 725.888 549.041 722.318 545.525C718.749 541.983 716.965 536.762 716.965 529.863ZM730.869 532.7C730.869 535.47 731.388 537.601 732.427 539.093C733.492 540.584 735.077 541.33 737.181 541.33C739.285 541.33 740.87 540.584 741.936 539.093C743.001 537.601 743.534 535.47 743.534 532.7V509.407C743.534 506.584 743.001 504.426 741.936 502.934C740.87 501.443 739.285 500.697 737.181 500.697C735.077 500.697 733.492 501.443 732.427 502.934C731.388 504.426 730.869 506.584 730.869 509.407V532.7ZM787.2 550V535.297L787.64 534.618V509.487H787.32L776.253 528.105H792.634L793.832 527.746H806.658V538.533H763.388V528.625L788.718 491.827H799.985V550H787.2ZM812.368 550V541.33L833.383 519.515C834.982 517.651 836.353 515.746 837.499 513.802C838.644 511.857 839.217 509.846 839.217 507.769C839.217 505.238 838.644 503.427 837.499 502.335C836.353 501.243 834.848 500.697 832.984 500.697C831.04 500.697 829.468 501.336 828.269 502.615C827.071 503.867 826.471 506.331 826.471 510.006V511.644H812.368V508.208C812.368 503.227 814.286 499.112 818.121 495.863C821.957 492.613 826.991 490.988 833.224 490.988C839.749 490.988 844.704 492.44 848.086 495.343C851.469 498.22 853.174 502.135 853.201 507.09C853.201 510.765 852.415 514.055 850.843 516.958C849.298 519.862 847.088 522.818 844.211 525.828L833.184 538.853H854.559V550H812.368ZM861.028 529.863V511.964C861.028 505.278 862.826 500.111 866.422 496.462C870.018 492.813 874.959 490.988 881.245 490.988C887.531 490.988 892.472 492.786 896.068 496.382C899.69 499.951 901.501 505.145 901.501 511.964V529.863C901.501 536.789 899.61 542.023 895.828 545.565C892.072 549.108 887.211 550.866 881.245 550.839C874.906 550.812 869.951 549.041 866.382 545.525C862.813 541.983 861.028 536.762 861.028 529.863ZM874.932 532.7C874.932 535.47 875.452 537.601 876.49 539.093C877.556 540.584 879.141 541.33 881.245 541.33C883.349 541.33 884.934 540.584 885.999 539.093C887.065 537.601 887.598 535.47 887.598 532.7V509.407C887.598 506.584 887.065 504.426 885.999 502.934C884.934 501.443 883.349 500.697 881.245 500.697C879.141 500.697 877.556 501.443 876.49 502.934C875.452 504.426 874.932 506.584 874.932 509.407V532.7Z" fill="white"/> +<path d="M81.1083 499.618L83.2446 501.725L83.2494 501.72L81.1083 499.618ZM108.077 491.028H111.077V488.028H108.077V491.028ZM108.077 502.175V505.175H111.077V502.175H108.077ZM91.2965 507.449L93.5003 509.485L93.508 509.476L91.2965 507.449ZM86.4621 526.228H83.4621V526.296L83.4652 526.364L86.4621 526.228ZM86.5021 527.106H89.5021V527.038L89.499 526.97L86.5021 527.106ZM88.4998 538.493L86.0469 540.221L86.055 540.232L86.0632 540.244L88.4998 538.493ZM98.648 539.133L100.949 541.057L100.958 541.047L100.966 541.037L98.648 539.133ZM98.7679 523.031L96.3102 524.752L96.3266 524.775L96.3434 524.798L98.7679 523.031ZM88.6596 522.951L90.8566 524.994L90.8654 524.985L90.8742 524.975L88.6596 522.951ZM86.542 529.184V532.184H89.542V529.184H86.542ZM84.1448 529.184H81.1448V532.184H84.1448V529.184ZM88.5797 517.078L90.6717 519.228L90.6816 519.219L88.5797 517.078ZM110.275 517.358L108.041 519.36L108.049 519.37L110.275 517.358ZM108.517 545.485L110.53 547.709L110.538 547.702L108.517 545.485ZM78.2716 544.886L76.0784 546.933L76.0855 546.94L76.0926 546.948L78.2716 544.886ZM72.6781 526.108H75.6781V523.111H72.6781H69.6781V526.108H72.6781ZM72.6781 523.111H75.6781C75.6781 513.734 78.3059 506.733 83.2445 501.725L81.1083 499.618L78.9721 497.512C72.6704 503.903 69.6781 512.564 69.6781 523.111H72.6781ZM81.1083 499.618L83.2494 501.72C88.1667 496.709 95.1824 494.028 104.721 494.028V491.028V488.028C94.0163 488.028 85.2902 491.074 78.9672 497.517L81.1083 499.618ZM104.721 491.028V494.028H108.077V491.028V488.028H104.721V491.028ZM108.077 491.028H105.077V502.175H108.077H111.077V491.028H108.077ZM108.077 502.175V499.175H105.2V502.175V505.175H108.077V502.175ZM105.2 502.175V499.175C98.5531 499.175 93.0203 501.129 89.0851 505.422L91.2965 507.449L93.508 509.476C96.0186 506.738 99.755 505.175 105.2 505.175V502.175ZM91.2965 507.449L89.0928 505.414C85.0608 509.779 83.4621 517.042 83.4621 526.228H86.4621H89.4621C89.4621 517.354 91.0864 512.098 93.5003 509.485L91.2965 507.449ZM86.4621 526.228L83.4652 526.364L83.5052 527.243L86.5021 527.106L89.499 526.97L89.459 526.091L86.4621 526.228ZM86.5021 527.106H83.5021C83.5021 530.056 83.6731 532.618 84.0466 534.747C84.4115 536.826 85.0116 538.75 86.0469 540.221L88.4998 538.493L90.9526 536.766C90.6561 536.345 90.2574 535.426 89.9564 533.71C89.664 532.043 89.5021 529.857 89.5021 527.106H86.5021ZM88.4998 538.493L86.0632 540.244C87.933 542.847 90.5639 544.33 93.7736 544.33V541.33V538.33C92.6684 538.33 91.7834 537.922 90.9363 536.743L88.4998 538.493ZM93.7736 541.33V544.33C96.6255 544.33 99.116 543.249 100.949 541.057L98.648 539.133L96.3468 537.208C95.7295 537.946 94.9704 538.33 93.7736 538.33V541.33ZM98.648 539.133L100.966 541.037C102.015 539.76 102.611 538.109 102.965 536.393C103.326 534.639 103.486 532.566 103.486 530.223H100.486H97.4859C97.4859 532.328 97.3393 533.964 97.0883 535.18C96.8296 536.434 96.5062 537.014 96.3298 537.228L98.648 539.133ZM100.486 530.223H103.486C103.486 526.745 102.886 523.588 101.192 521.264L98.7679 523.031L96.3434 524.798C96.9403 525.617 97.4859 527.255 97.4859 530.223H100.486ZM98.7679 523.031L101.226 521.311C99.4717 518.805 96.8405 517.634 93.8136 517.634V520.634V523.634C95.155 523.634 95.8267 524.061 96.3102 524.752L98.7679 523.031ZM93.8136 520.634V517.634C90.915 517.634 88.4032 518.785 86.4449 520.928L88.6596 522.951L90.8742 524.975C91.7393 524.028 92.6636 523.634 93.8136 523.634V520.634ZM88.6596 522.951L86.4626 520.908C84.4054 523.121 83.542 526.003 83.542 529.184H86.542H89.542C89.542 527.091 90.0903 525.818 90.8566 524.994L88.6596 522.951ZM86.542 529.184V526.184H84.1448V529.184V532.184H86.542V529.184ZM84.1448 529.184H87.1448C87.1448 524.578 88.4375 521.402 90.6717 519.228L88.5797 517.078L86.4876 514.928C82.8086 518.507 81.1448 523.402 81.1448 529.184H84.1448ZM88.5797 517.078L90.6816 519.219C93.0878 516.856 95.853 515.723 99.1275 515.723V512.723V509.723C94.2513 509.723 89.9847 511.494 86.4777 514.938L88.5797 517.078ZM99.1275 512.723V515.723C103.053 515.723 105.913 516.987 108.041 519.36L110.275 517.358L112.508 515.355C109.096 511.549 104.524 509.723 99.1275 509.723V512.723ZM110.275 517.358L108.049 519.37C110.152 521.695 111.43 525.289 111.43 530.622H114.43H117.43C117.43 524.396 115.937 519.147 112.5 515.346L110.275 517.358ZM114.43 530.622H111.43C111.43 536.26 109.699 540.346 106.495 543.269L108.517 545.485L110.538 547.702C115.218 543.433 117.43 537.61 117.43 530.622H114.43ZM108.517 545.485L106.503 543.261C103.181 546.269 98.9737 547.839 93.6538 547.839V550.839V553.839C100.267 553.839 105.968 551.84 110.53 547.709L108.517 545.485ZM93.6538 550.839V547.839C87.8099 547.839 83.533 546.081 80.4506 542.824L78.2716 544.886L76.0926 546.948C80.5214 551.628 86.4994 553.839 93.6538 553.839V550.839ZM78.2716 544.886L80.4648 542.839C77.4786 539.64 75.6781 534.281 75.6781 526.108H72.6781H69.6781C69.6781 534.982 71.6065 542.142 76.0784 546.933L78.2716 544.886ZM126.413 496.422L128.426 498.646L128.434 498.638L126.413 496.422ZM156.618 496.981L154.431 499.036L154.439 499.043L156.618 496.981ZM153.821 542.169L151.685 540.063L151.68 540.068L153.821 542.169ZM130.208 550.759V553.759L130.216 553.759L130.208 550.759ZM126.852 550.759H123.852V553.759H126.852V550.759ZM126.852 539.812V536.812H123.852V539.812H126.852ZM129.729 539.812L129.742 536.812H129.729V539.812ZM148.467 515.879H151.467V515.826L151.465 515.772L148.467 515.879ZM148.427 514.761H145.427V514.814L145.429 514.868L148.427 514.761ZM146.43 503.574L143.965 505.285L143.971 505.293L143.977 505.301L146.43 503.574ZM136.281 502.934L138.583 504.859L138.591 504.849L138.599 504.839L136.281 502.934ZM136.121 519.036L133.677 520.776L133.694 520.799L133.712 520.823L136.121 519.036ZM146.27 519.116L144.092 517.053L144.091 517.054L146.27 519.116ZM148.427 512.883V509.883H145.427V512.883H148.427ZM150.745 512.883H153.745V509.883H150.745V512.883ZM146.35 524.949L148.441 527.099L148.451 527.09L146.35 524.949ZM120.5 511.205H123.5C123.5 505.598 125.227 501.542 128.426 498.646L126.413 496.422L124.399 494.198C119.714 498.44 117.5 504.24 117.5 511.205H120.5ZM126.413 496.422L128.434 498.638C131.755 495.61 135.971 494.028 141.315 494.028V491.028V488.028C134.674 488.028 128.955 490.042 124.391 494.206L126.413 496.422ZM141.315 491.028V494.028C147.129 494.028 151.376 495.784 154.431 499.036L156.618 496.981L158.804 494.927C154.402 490.242 148.447 488.028 141.315 488.028V491.028ZM156.618 496.981L154.439 499.043C157.437 502.212 159.251 507.559 159.251 515.76H162.251H165.251C165.251 506.86 163.31 499.688 158.797 494.919L156.618 496.981ZM162.251 515.76H159.251V518.716H162.251H165.251V515.76H162.251ZM162.251 518.716H159.251C159.251 528.064 156.625 535.052 151.685 540.063L153.821 542.169L155.957 544.275C162.257 537.886 165.251 529.239 165.251 518.716H162.251ZM153.821 542.169L151.68 540.068C146.791 545.05 139.775 547.734 130.2 547.759L130.208 550.759L130.216 553.759C140.938 553.731 149.664 550.688 155.962 544.27L153.821 542.169ZM130.208 550.759V547.759H126.852V550.759V553.759H130.208V550.759ZM126.852 550.759H129.852V539.812H126.852H123.852V550.759H126.852ZM126.852 539.812V542.812H129.729V539.812V536.812H126.852V539.812ZM129.729 539.812L129.716 542.812C136.359 542.841 141.895 540.92 145.837 536.653L143.633 534.618L141.429 532.582C138.924 535.294 135.191 536.836 129.742 536.812L129.729 539.812ZM143.633 534.618L145.837 536.653C149.867 532.289 151.467 525.042 151.467 515.879H148.467H145.467C145.467 524.723 143.844 529.968 141.429 532.582L143.633 534.618ZM148.467 515.879L151.465 515.772L151.425 514.654L148.427 514.761L145.429 514.868L145.469 515.987L148.467 515.879ZM148.427 514.761H151.427C151.427 511.875 151.256 509.36 150.881 507.261C150.514 505.207 149.912 503.308 148.882 501.846L146.43 503.574L143.977 505.301C144.279 505.73 144.675 506.641 144.975 508.316C145.266 509.946 145.427 512.08 145.427 514.761H148.427ZM146.43 503.574L148.894 501.863C147.047 499.203 144.4 497.697 141.156 497.697V500.697V503.697C142.279 503.697 143.149 504.109 143.965 505.285L146.43 503.574ZM141.156 500.697V497.697C138.284 497.697 135.789 498.807 133.963 501.03L136.281 502.934L138.599 504.839C139.224 504.079 139.979 503.697 141.156 503.697V500.697ZM136.281 502.934L133.98 501.01C132.927 502.269 132.326 503.892 131.968 505.579C131.604 507.298 131.443 509.324 131.443 511.604H134.443H137.443C137.443 509.57 137.59 507.993 137.838 506.823C138.093 505.619 138.41 505.065 138.583 504.859L136.281 502.934ZM134.443 511.604H131.443C131.443 515.195 132.014 518.439 133.677 520.776L136.121 519.036L138.565 517.296C137.992 516.49 137.443 514.779 137.443 511.604H134.443ZM136.121 519.036L133.712 520.823C135.505 523.242 138.129 524.353 141.116 524.353V521.353V518.353C139.734 518.353 139.028 517.919 138.531 517.249L136.121 519.036ZM141.116 521.353V524.353C143.978 524.353 146.48 523.258 148.449 521.178L146.27 519.116L144.091 517.054C143.236 517.956 142.302 518.353 141.116 518.353V521.353ZM146.27 519.116L148.448 521.179C150.542 518.968 151.427 516.078 151.427 512.883H148.427H145.427C145.427 514.961 144.874 516.227 144.092 517.053L146.27 519.116ZM148.427 512.883V515.883H150.745V512.883V509.883H148.427V512.883ZM150.745 512.883H147.745C147.745 517.465 146.463 520.633 144.248 522.808L146.35 524.949L148.451 527.09C152.096 523.511 153.745 518.636 153.745 512.883H150.745ZM146.35 524.949L144.258 522.799C141.89 525.102 139.126 526.224 135.802 526.224V529.224V532.224C140.682 532.224 144.949 530.496 148.441 527.099L146.35 524.949ZM135.802 529.224V526.224C131.885 526.224 129.027 524.953 126.897 522.556L124.655 524.549L122.412 526.543C125.823 530.379 130.396 532.224 135.802 532.224V529.224ZM124.655 524.549L126.897 522.556C124.775 520.17 123.5 516.534 123.5 511.205H120.5H117.5C117.5 517.436 118.994 522.696 122.412 526.543L124.655 524.549ZM177.151 499.618L179.287 501.725L179.292 501.72L177.151 499.618ZM204.12 491.028H207.12V488.028H204.12V491.028ZM204.12 502.175V505.175H207.12V502.175H204.12ZM187.339 507.449L189.543 509.485L189.55 509.476L187.339 507.449ZM182.505 526.228H179.505V526.296L179.508 526.364L182.505 526.228ZM182.545 527.106H185.545V527.038L185.541 526.97L182.545 527.106ZM184.542 538.493L182.089 540.221L182.097 540.232L182.106 540.244L184.542 538.493ZM194.69 539.133L196.992 541.057L197 541.047L197.009 541.037L194.69 539.133ZM194.81 523.031L192.353 524.752L192.369 524.775L192.386 524.798L194.81 523.031ZM184.702 522.951L186.899 524.994L186.908 524.985L186.917 524.975L184.702 522.951ZM182.584 529.184V532.184H185.584V529.184H182.584ZM180.187 529.184H177.187V532.184H180.187V529.184ZM184.622 517.078L186.714 519.228L186.724 519.219L184.622 517.078ZM206.317 517.358L204.083 519.36L204.092 519.37L206.317 517.358ZM204.559 545.485L206.573 547.709L206.581 547.702L204.559 545.485ZM174.314 544.886L172.121 546.933L172.128 546.94L172.135 546.948L174.314 544.886ZM168.721 526.108H171.721V523.111H168.721H165.721V526.108H168.721ZM168.721 523.111H171.721C171.721 513.734 174.348 506.733 179.287 501.725L177.151 499.618L175.015 497.512C168.713 503.903 165.721 512.564 165.721 523.111H168.721ZM177.151 499.618L179.292 501.72C184.209 496.709 191.225 494.028 200.763 494.028V491.028V488.028C190.059 488.028 181.333 491.074 175.01 497.517L177.151 499.618ZM200.763 491.028V494.028H204.12V491.028V488.028H200.763V491.028ZM204.12 491.028H201.12V502.175H204.12H207.12V491.028H204.12ZM204.12 502.175V499.175H201.243V502.175V505.175H204.12V502.175ZM201.243 502.175V499.175C194.596 499.175 189.063 501.129 185.128 505.422L187.339 507.449L189.55 509.476C192.061 506.738 195.798 505.175 201.243 505.175V502.175ZM187.339 507.449L185.135 505.414C181.103 509.779 179.505 517.042 179.505 526.228H182.505H185.505C185.505 517.354 187.129 512.098 189.543 509.485L187.339 507.449ZM182.505 526.228L179.508 526.364L179.548 527.243L182.545 527.106L185.541 526.97L185.501 526.091L182.505 526.228ZM182.545 527.106H179.545C179.545 530.056 179.716 532.618 180.089 534.747C180.454 536.826 181.054 538.75 182.089 540.221L184.542 538.493L186.995 536.766C186.699 536.345 186.3 535.426 185.999 533.71C185.706 532.043 185.545 529.857 185.545 527.106H182.545ZM184.542 538.493L182.106 540.244C183.975 542.847 186.606 544.33 189.816 544.33V541.33V538.33C188.711 538.33 187.826 537.922 186.979 536.743L184.542 538.493ZM189.816 541.33V544.33C192.668 544.33 195.159 543.249 196.992 541.057L194.69 539.133L192.389 537.208C191.772 537.946 191.013 538.33 189.816 538.33V541.33ZM194.69 539.133L197.009 541.037C198.058 539.76 198.653 538.109 199.007 536.393C199.369 534.639 199.528 532.566 199.528 530.223H196.528H193.528C193.528 532.328 193.382 533.964 193.131 535.18C192.872 536.434 192.549 537.014 192.372 537.228L194.69 539.133ZM196.528 530.223H199.528C199.528 526.745 198.929 523.588 197.235 521.264L194.81 523.031L192.386 524.798C192.983 525.617 193.528 527.255 193.528 530.223H196.528ZM194.81 523.031L197.268 521.311C195.514 518.805 192.883 517.634 189.856 517.634V520.634V523.634C191.197 523.634 191.869 524.061 192.353 524.752L194.81 523.031ZM189.856 520.634V517.634C186.957 517.634 184.446 518.785 182.487 520.928L184.702 522.951L186.917 524.975C187.782 524.028 188.706 523.634 189.856 523.634V520.634ZM184.702 522.951L182.505 520.908C180.448 523.121 179.584 526.003 179.584 529.184H182.584H185.584C185.584 527.091 186.133 525.818 186.899 524.994L184.702 522.951ZM182.584 529.184V526.184H180.187V529.184V532.184H182.584V529.184ZM180.187 529.184H183.187C183.187 524.578 184.48 521.402 186.714 519.228L184.622 517.078L182.53 514.928C178.851 518.507 177.187 523.402 177.187 529.184H180.187ZM184.622 517.078L186.724 519.219C189.13 516.856 191.896 515.723 195.17 515.723V512.723V509.723C190.294 509.723 186.027 511.494 182.52 514.938L184.622 517.078ZM195.17 512.723V515.723C199.096 515.723 201.956 516.987 204.083 519.36L206.317 517.358L208.551 515.355C205.138 511.549 200.567 509.723 195.17 509.723V512.723ZM206.317 517.358L204.092 519.37C206.195 521.695 207.472 525.289 207.472 530.622H210.472H213.472C213.472 524.396 211.98 519.147 208.542 515.346L206.317 517.358ZM210.472 530.622H207.472C207.472 536.26 205.742 540.346 202.537 543.269L204.559 545.485L206.581 547.702C211.261 543.433 213.472 537.61 213.472 530.622H210.472ZM204.559 545.485L202.546 543.261C199.223 546.269 195.016 547.839 189.696 547.839V550.839V553.839C196.309 553.839 202.01 551.84 206.573 547.709L204.559 545.485ZM189.696 550.839V547.839C183.852 547.839 179.576 546.081 176.493 542.824L174.314 544.886L172.135 546.948C176.564 551.628 182.542 553.839 189.696 553.839V550.839ZM174.314 544.886L176.507 542.839C173.521 539.64 171.721 534.281 171.721 526.108H168.721H165.721C165.721 534.982 167.649 542.142 172.121 546.933L174.314 544.886ZM222.455 496.422L224.469 498.646L224.477 498.638L222.455 496.422ZM252.66 496.981L250.474 499.036L250.481 499.043L252.66 496.981ZM249.863 542.169L247.727 540.063L247.722 540.068L249.863 542.169ZM226.251 550.759V553.759L226.259 553.759L226.251 550.759ZM222.895 550.759H219.895V553.759H222.895V550.759ZM222.895 539.812V536.812H219.895V539.812H222.895ZM225.771 539.812L225.785 536.812H225.771V539.812ZM244.51 515.879H247.51V515.826L247.508 515.772L244.51 515.879ZM244.47 514.761H241.47V514.814L241.472 514.868L244.47 514.761ZM242.472 503.574L240.008 505.285L240.014 505.293L240.019 505.301L242.472 503.574ZM232.324 502.934L234.625 504.859L234.633 504.849L234.642 504.839L232.324 502.934ZM232.164 519.036L229.72 520.776L229.737 520.799L229.754 520.823L232.164 519.036ZM242.312 519.116L240.134 517.053L240.133 517.054L242.312 519.116ZM244.47 512.883V509.883H241.47V512.883H244.47ZM246.787 512.883H249.787V509.883H246.787V512.883ZM242.392 524.949L244.484 527.099L244.494 527.09L242.392 524.949ZM216.542 511.205H219.542C219.542 505.598 221.27 501.542 224.469 498.646L222.455 496.422L220.442 494.198C215.756 498.44 213.542 504.24 213.542 511.205H216.542ZM222.455 496.422L224.477 498.638C227.797 495.61 232.014 494.028 237.358 494.028V491.028V488.028C230.716 488.028 224.997 490.042 220.433 494.206L222.455 496.422ZM237.358 491.028V494.028C243.172 494.028 247.418 495.784 250.474 499.036L252.66 496.981L254.847 494.927C250.444 490.242 244.489 488.028 237.358 488.028V491.028ZM252.66 496.981L250.481 499.043C253.48 502.212 255.294 507.559 255.294 515.76H258.294H261.294C261.294 506.86 259.352 499.688 254.839 494.919L252.66 496.981ZM258.294 515.76H255.294V518.716H258.294H261.294V515.76H258.294ZM258.294 518.716H255.294C255.294 528.064 252.667 535.052 247.727 540.063L249.863 542.169L252 544.275C258.3 537.886 261.294 529.239 261.294 518.716H258.294ZM249.863 542.169L247.722 540.068C242.833 545.05 235.817 547.734 226.243 547.759L226.251 550.759L226.259 553.759C236.981 553.731 245.707 550.688 252.005 544.27L249.863 542.169ZM226.251 550.759V547.759H222.895V550.759V553.759H226.251V550.759ZM222.895 550.759H225.895V539.812H222.895H219.895V550.759H222.895ZM222.895 539.812V542.812H225.771V539.812V536.812H222.895V539.812ZM225.771 539.812L225.758 542.812C232.401 542.841 237.938 540.92 241.879 536.653L239.675 534.618L237.471 532.582C234.967 535.294 231.234 536.836 225.785 536.812L225.771 539.812ZM239.675 534.618L241.879 536.653C245.91 532.289 247.51 525.042 247.51 515.879H244.51H241.51C241.51 524.723 239.886 529.968 237.471 532.582L239.675 534.618ZM244.51 515.879L247.508 515.772L247.468 514.654L244.47 514.761L241.472 514.868L241.512 515.987L244.51 515.879ZM244.47 514.761H247.47C247.47 511.875 247.298 509.36 246.924 507.261C246.557 505.207 245.954 503.308 244.925 501.846L242.472 503.574L240.019 505.301C240.321 505.73 240.718 506.641 241.017 508.316C241.308 509.946 241.47 512.08 241.47 514.761H244.47ZM242.472 503.574L244.936 501.863C243.089 499.203 240.443 497.697 237.198 497.697V500.697V503.697C238.322 503.697 239.191 504.109 240.008 505.285L242.472 503.574ZM237.198 500.697V497.697C234.326 497.697 231.832 498.807 230.006 501.03L232.324 502.934L234.642 504.839C235.266 504.079 236.021 503.697 237.198 503.697V500.697ZM232.324 502.934L230.023 501.01C228.97 502.269 228.368 503.892 228.011 505.579C227.646 507.298 227.486 509.324 227.486 511.604H230.486H233.486C233.486 509.57 233.632 507.993 233.88 506.823C234.135 505.619 234.453 505.065 234.625 504.859L232.324 502.934ZM230.486 511.604H227.486C227.486 515.195 228.056 518.439 229.72 520.776L232.164 519.036L234.608 517.296C234.034 516.49 233.486 514.779 233.486 511.604H230.486ZM232.164 519.036L229.754 520.823C231.548 523.242 234.172 524.353 237.158 524.353V521.353V518.353C235.776 518.353 235.071 517.919 234.574 517.249L232.164 519.036ZM237.158 521.353V524.353C240.02 524.353 242.522 523.258 244.491 521.178L242.312 519.116L240.133 517.054C239.279 517.956 238.345 518.353 237.158 518.353V521.353ZM242.312 519.116L244.49 521.179C246.584 518.968 247.47 516.078 247.47 512.883H244.47H241.47C241.47 514.961 240.917 516.227 240.134 517.053L242.312 519.116ZM244.47 512.883V515.883H246.787V512.883V509.883H244.47V512.883ZM246.787 512.883H243.787C243.787 517.465 242.506 520.633 240.29 522.808L242.392 524.949L244.494 527.09C248.138 523.511 249.787 518.636 249.787 512.883H246.787ZM242.392 524.949L240.3 522.799C237.933 525.102 235.168 526.224 231.844 526.224V529.224V532.224C236.724 532.224 240.992 530.496 244.484 527.099L242.392 524.949ZM231.844 529.224V526.224C227.927 526.224 225.069 524.953 222.939 522.556L220.697 524.549L218.455 526.543C221.865 530.379 226.439 532.224 231.844 532.224V529.224ZM220.697 524.549L222.939 522.556C220.818 520.17 219.542 516.534 219.542 511.205H216.542H213.542C213.542 517.436 215.036 522.696 218.455 526.543L220.697 524.549ZM322.773 496.382L320.651 498.503L320.659 498.511L320.667 498.519L322.773 496.382ZM322.533 545.565L320.482 543.376L320.474 543.383L322.533 545.565ZM307.95 550.839L307.963 547.839H307.962L307.95 550.839ZM293.087 545.525L290.974 547.654L290.982 547.662L293.087 545.525ZM303.195 539.093L300.734 540.807L300.744 540.822L300.754 540.836L303.195 539.093ZM303.195 502.934L300.754 501.191L300.744 501.205L300.734 501.22L303.195 502.934ZM287.733 529.863H290.733V511.964H287.733H284.733V529.863H287.733ZM287.733 511.964H290.733C290.733 505.817 292.375 501.5 295.264 498.568L293.127 496.462L290.99 494.356C286.688 498.722 284.733 504.74 284.733 511.964H287.733ZM293.127 496.462L295.264 498.568C298.173 495.616 302.273 493.988 307.95 493.988V490.988V487.988C301.055 487.988 295.273 490.01 290.99 494.356L293.127 496.462ZM307.95 490.988V493.988C313.639 493.988 317.745 495.597 320.651 498.503L322.773 496.382L324.894 494.261C320.609 489.976 314.832 487.988 307.95 487.988V490.988ZM322.773 496.382L320.667 498.519C323.543 501.353 325.206 505.666 325.206 511.964H328.206H331.206C331.206 504.625 329.247 498.55 324.878 494.245L322.773 496.382ZM328.206 511.964H325.206V529.863H328.206H331.206V511.964H328.206ZM328.206 529.863H325.206C325.206 536.25 323.475 540.572 320.482 543.376L322.533 545.565L324.584 547.755C329.156 543.473 331.206 537.327 331.206 529.863H328.206ZM322.533 545.565L320.474 543.383C317.366 546.315 313.289 547.863 307.963 547.839L307.95 550.839L307.936 553.839C314.544 553.868 320.189 551.901 324.591 547.747L322.533 545.565ZM307.95 550.839L307.962 547.839C302.189 547.815 298.065 546.218 295.192 543.388L293.087 545.525L290.982 547.662C295.247 551.864 301.032 553.81 307.937 553.839L307.95 550.839ZM293.087 545.525L295.2 543.396C292.383 540.6 290.733 536.267 290.733 529.863H287.733H284.733C284.733 537.257 286.652 543.365 290.974 547.654L293.087 545.525ZM301.637 532.7H298.637C298.637 535.782 299.205 538.612 300.734 540.807L303.195 539.093L305.657 537.378C305.108 536.59 304.637 535.158 304.637 532.7H301.637ZM303.195 539.093L300.754 540.836C302.472 543.242 305.042 544.33 307.95 544.33V541.33V538.33C306.65 538.33 306.049 537.927 305.637 537.349L303.195 539.093ZM307.95 541.33V544.33C310.858 544.33 313.428 543.242 315.146 540.836L312.704 539.093L310.263 537.349C309.85 537.927 309.25 538.33 307.95 538.33V541.33ZM312.704 539.093L315.146 540.836C316.717 538.636 317.303 535.794 317.303 532.7H314.303H311.303C311.303 535.146 310.822 536.566 310.263 537.349L312.704 539.093ZM314.303 532.7H317.303V509.407H314.303H311.303V532.7H314.303ZM314.303 509.407H317.303C317.303 506.274 316.723 503.399 315.146 501.191L312.704 502.934L310.263 504.678C310.817 505.453 311.303 506.893 311.303 509.407H314.303ZM312.704 502.934L315.146 501.191C313.428 498.786 310.858 497.697 307.95 497.697V500.697V503.697C309.25 503.697 309.85 504.1 310.263 504.678L312.704 502.934ZM307.95 500.697V497.697C305.042 497.697 302.472 498.786 300.754 501.191L303.195 502.934L305.637 504.678C306.049 504.1 306.65 503.697 307.95 503.697V500.697ZM303.195 502.934L300.734 501.22C299.199 503.423 298.637 506.286 298.637 509.407H301.637H304.637C304.637 506.881 305.114 505.429 305.657 504.649L303.195 502.934ZM301.637 509.407H298.637V532.7H301.637H304.637V509.407H301.637ZM357.969 550H354.969V553H357.969V550ZM357.969 535.297L355.45 533.667L354.969 534.411V535.297H357.969ZM358.408 534.618L360.927 536.248L361.408 535.504V534.618H358.408ZM358.408 509.487H361.408V506.487H358.408V509.487ZM358.089 509.487V506.487H356.382L355.51 507.954L358.089 509.487ZM347.021 528.105L344.443 526.572L341.748 531.105H347.021V528.105ZM363.402 528.105V531.105H363.843L364.265 530.979L363.402 528.105ZM364.601 527.746V524.746H364.161L363.739 524.872L364.601 527.746ZM377.426 527.746H380.426V524.746H377.426V527.746ZM377.426 538.533V541.533H380.426V538.533H377.426ZM334.156 538.533H331.156V541.533H334.156V538.533ZM334.156 528.625L331.685 526.924L331.156 527.692V528.625H334.156ZM359.487 491.827V488.827H357.91L357.016 490.126L359.487 491.827ZM370.754 491.827H373.754V488.827H370.754V491.827ZM370.754 550V553H373.754V550H370.754ZM357.969 550H360.969V535.297H357.969H354.969V550H357.969ZM357.969 535.297L360.487 536.927L360.927 536.248L358.408 534.618L355.89 532.988L355.45 533.667L357.969 535.297ZM358.408 534.618H361.408V509.487H358.408H355.408V534.618H358.408ZM358.408 509.487V506.487H358.089V509.487V512.487H358.408V509.487ZM358.089 509.487L355.51 507.954L344.443 526.572L347.021 528.105L349.6 529.638L360.667 511.02L358.089 509.487ZM347.021 528.105V531.105H363.402V528.105V525.105H347.021V528.105ZM363.402 528.105L364.265 530.979L365.463 530.619L364.601 527.746L363.739 524.872L362.54 525.232L363.402 528.105ZM364.601 527.746V530.746H377.426V527.746V524.746H364.601V527.746ZM377.426 527.746H374.426V538.533H377.426H380.426V527.746H377.426ZM377.426 538.533V535.533H334.156V538.533V541.533H377.426V538.533ZM334.156 538.533H337.156V528.625H334.156H331.156V538.533H334.156ZM334.156 528.625L336.627 530.326L361.958 493.528L359.487 491.827L357.016 490.126L331.685 526.924L334.156 528.625ZM359.487 491.827V494.827H370.754V491.827V488.827H359.487V491.827ZM370.754 491.827H367.754V550H370.754H373.754V491.827H370.754ZM370.754 550V547H357.969V550V553H370.754V550ZM383.136 550H380.136V553H383.136V550ZM383.136 541.33L380.976 539.249L380.136 540.12V541.33H383.136ZM404.152 519.515L406.313 521.597L406.373 521.534L406.43 521.468L404.152 519.515ZM399.038 502.615L401.205 504.69L401.216 504.678L401.227 504.667L399.038 502.615ZM397.24 511.644V514.644H400.24V511.644H397.24ZM383.136 511.644H380.136V514.644H383.136V511.644ZM418.855 495.343L416.901 497.62L416.912 497.629L418.855 495.343ZM423.969 507.09H426.969V507.082L426.969 507.074L423.969 507.09ZM421.612 516.958L418.974 515.53L418.969 515.54L418.964 515.549L421.612 516.958ZM414.98 525.828L412.811 523.755L412.748 523.821L412.69 523.89L414.98 525.828ZM403.952 538.853L401.663 536.914L397.482 541.853H403.952V538.853ZM425.328 538.853H428.328V535.853H425.328V538.853ZM425.328 550V553H428.328V550H425.328ZM383.136 550H386.136V541.33H383.136H380.136V550H383.136ZM383.136 541.33L385.297 543.411L406.313 521.597L404.152 519.515L401.992 517.434L380.976 539.249L383.136 541.33ZM404.152 519.515L406.43 521.468C408.133 519.481 409.61 517.434 410.852 515.324L408.267 513.802L405.682 512.279C404.634 514.059 403.368 515.821 401.874 517.563L404.152 519.515ZM408.267 513.802L410.852 515.324C412.245 512.96 412.985 510.428 412.985 507.769H409.985H406.985C406.985 509.265 406.58 510.755 405.682 512.279L408.267 513.802ZM409.985 507.769H412.985C412.985 504.895 412.35 502.083 410.338 500.164L408.267 502.335L406.197 504.506C406.475 504.771 406.985 505.582 406.985 507.769H409.985ZM408.267 502.335L410.338 500.164C408.536 498.447 406.241 497.697 403.753 497.697V500.697V503.697C404.993 503.697 405.708 504.04 406.197 504.506L408.267 502.335ZM403.753 500.697V497.697C401.08 497.697 398.681 498.61 396.849 500.563L399.038 502.615L401.227 504.667C401.793 504.063 402.537 503.697 403.753 503.697V500.697ZM399.038 502.615L396.871 500.54C395.776 501.684 395.145 503.17 394.775 504.693C394.399 506.235 394.24 508.026 394.24 510.006H397.24H400.24C400.24 508.311 400.38 507.032 400.605 506.111C400.833 505.17 401.102 504.797 401.205 504.69L399.038 502.615ZM397.24 510.006H394.24V511.644H397.24H400.24V510.006H397.24ZM397.24 511.644V508.644H383.136V511.644V514.644H397.24V511.644ZM383.136 511.644H386.136V508.208H383.136H380.136V511.644H383.136ZM383.136 508.208H386.136C386.136 504.119 387.659 500.837 390.829 498.152L388.89 495.863L386.951 493.574C382.449 497.387 380.136 502.336 380.136 508.208H383.136ZM388.89 495.863L390.829 498.152C394.002 495.463 398.294 493.988 403.992 493.988V490.988V487.988C397.225 487.988 391.449 489.763 386.951 493.574L388.89 495.863ZM403.992 490.988V493.988C410.126 493.988 414.266 495.358 416.901 497.62L418.855 495.343L420.809 493.067C416.678 489.522 410.91 487.988 403.992 487.988V490.988ZM418.855 495.343L416.912 497.629C419.547 499.869 420.947 502.912 420.969 507.106L423.969 507.09L426.969 507.074C426.938 501.359 424.929 496.57 420.799 493.058L418.855 495.343ZM423.969 507.09H420.969C420.969 510.324 420.282 513.113 418.974 515.53L421.612 516.958L424.25 518.386C426.085 514.996 426.969 511.207 426.969 507.09H423.969ZM421.612 516.958L418.964 515.549C417.576 518.156 415.546 520.894 412.811 523.755L414.98 525.828L417.148 527.901C420.167 524.743 422.558 521.567 424.26 518.367L421.612 516.958ZM414.98 525.828L412.69 523.89L401.663 536.914L403.952 538.853L406.242 540.791L417.269 527.766L414.98 525.828ZM403.952 538.853V541.853H425.328V538.853V535.853H403.952V538.853ZM425.328 538.853H422.328V550H425.328H428.328V538.853H425.328ZM425.328 550V547H383.136V550V553H425.328V550ZM466.836 496.382L464.715 498.503L464.723 498.511L464.731 498.519L466.836 496.382ZM466.597 545.565L464.546 543.376L464.538 543.383L466.597 545.565ZM452.014 550.839L452.027 547.839H452.026L452.014 550.839ZM437.151 545.525L435.037 547.654L435.045 547.662L437.151 545.525ZM447.259 539.093L444.797 540.807L444.807 540.822L444.818 540.836L447.259 539.093ZM447.259 502.934L444.818 501.191L444.807 501.205L444.797 501.22L447.259 502.934ZM431.797 529.863H434.797V511.964H431.797H428.797V529.863H431.797ZM431.797 511.964H434.797C434.797 505.817 436.438 501.5 439.328 498.568L437.191 496.462L435.054 494.356C430.751 498.722 428.797 504.74 428.797 511.964H431.797ZM437.191 496.462L439.328 498.568C442.236 495.616 446.337 493.988 452.014 493.988V490.988V487.988C445.118 487.988 439.337 490.01 435.054 494.356L437.191 496.462ZM452.014 490.988V493.988C457.703 493.988 461.809 495.597 464.715 498.503L466.836 496.382L468.958 494.261C464.673 489.976 458.896 487.988 452.014 487.988V490.988ZM466.836 496.382L464.731 498.519C467.607 501.353 469.27 505.666 469.27 511.964H472.27H475.27C475.27 504.625 473.311 498.55 468.942 494.245L466.836 496.382ZM472.27 511.964H469.27V529.863H472.27H475.27V511.964H472.27ZM472.27 529.863H469.27C469.27 536.25 467.539 540.572 464.546 543.376L466.597 545.565L468.647 547.755C473.219 543.473 475.27 537.327 475.27 529.863H472.27ZM466.597 545.565L464.538 543.383C461.43 546.315 457.352 547.863 452.027 547.839L452.014 550.839L452 553.839C458.608 553.868 464.252 551.901 468.655 547.747L466.597 545.565ZM452.014 550.839L452.026 547.839C446.252 547.815 442.129 546.218 439.256 543.388L437.151 545.525L435.045 547.662C439.311 551.864 445.096 553.81 452.001 553.839L452.014 550.839ZM437.151 545.525L439.264 543.396C436.447 540.6 434.797 536.267 434.797 529.863H431.797H428.797C428.797 537.257 430.716 543.365 435.037 547.654L437.151 545.525ZM445.701 532.7H442.701C442.701 535.782 443.268 538.612 444.797 540.807L447.259 539.093L449.721 537.378C449.172 536.59 448.701 535.158 448.701 532.7H445.701ZM447.259 539.093L444.818 540.836C446.536 543.242 449.105 544.33 452.014 544.33V541.33V538.33C450.713 538.33 450.113 537.927 449.7 537.349L447.259 539.093ZM452.014 541.33V544.33C454.922 544.33 457.491 543.242 459.209 540.836L456.768 539.093L454.327 537.349C453.914 537.927 453.314 538.33 452.014 538.33V541.33ZM456.768 539.093L459.209 540.836C460.781 538.636 461.366 535.794 461.366 532.7H458.366H455.366C455.366 535.146 454.886 536.566 454.327 537.349L456.768 539.093ZM458.366 532.7H461.366V509.407H458.366H455.366V532.7H458.366ZM458.366 509.407H461.366C461.366 506.274 460.787 503.399 459.209 501.191L456.768 502.934L454.327 504.678C454.88 505.453 455.366 506.893 455.366 509.407H458.366ZM456.768 502.934L459.209 501.191C457.491 498.786 454.922 497.697 452.014 497.697V500.697V503.697C453.314 503.697 453.914 504.1 454.327 504.678L456.768 502.934ZM452.014 500.697V497.697C449.105 497.697 446.536 498.786 444.818 501.191L447.259 502.934L449.7 504.678C450.113 504.1 450.713 503.697 452.014 503.697V500.697ZM447.259 502.934L444.797 501.22C443.263 503.423 442.701 506.286 442.701 509.407H445.701H448.701C448.701 506.881 449.177 505.429 449.721 504.649L447.259 502.934ZM445.701 509.407H442.701V532.7H445.701H448.701V509.407H445.701ZM504.427 524.669L502.096 522.78L502.09 522.788L502.084 522.795L504.427 524.669ZM511.019 519.835L511.869 522.712L514.019 522.077V519.835H511.019ZM511.019 519.675H514.019V517.734L512.249 516.939L511.019 519.675ZM505.226 514.841L502.734 516.512L502.746 516.529L502.758 516.547L505.226 514.841ZM508.142 495.223L506.238 492.905L506.229 492.913L508.142 495.223ZM536.749 495.343L534.795 497.62L534.805 497.628L534.815 497.636L536.749 495.343ZM539.546 515.04L537.087 513.322L537.083 513.328L539.546 515.04ZM533.753 519.635L532.699 516.826L530.753 517.556V519.635H533.753ZM533.753 519.795H530.753V522.082L532.958 522.688L533.753 519.795ZM540.425 524.629L538.073 526.491L538.083 526.505L538.094 526.518L540.425 524.629ZM537.668 546.364L535.842 543.984L535.834 543.99L537.668 546.364ZM507.223 546.364L505.397 548.744L507.223 546.364ZM517.252 539.452L514.986 541.419L515.006 541.441L515.026 541.464L517.252 539.452ZM527.44 525.868L525.276 527.946L525.297 527.968L525.319 527.989L527.44 525.868ZM518.051 514.601L515.721 516.491L515.73 516.502L515.739 516.513L518.051 514.601ZM526.801 514.601L524.492 512.685L524.489 512.689L526.801 514.601ZM527 502.455L524.63 504.293L524.651 504.32L524.672 504.347L527 502.455ZM517.851 502.375L515.542 500.459L515.53 500.474L515.518 500.489L517.851 502.375ZM501.39 534.178H504.39C504.39 530.926 505.242 528.452 506.769 526.543L504.427 524.669L502.084 522.795C499.562 525.947 498.39 529.813 498.39 534.178H501.39ZM504.427 524.669L506.757 526.558C508.551 524.345 510.272 523.184 511.869 522.712L511.019 519.835L510.169 516.958C507.078 517.871 504.404 519.933 502.096 522.78L504.427 524.669ZM511.019 519.835H514.019V519.675H511.019H508.019V519.835H511.019ZM511.019 519.675L512.249 516.939C510.382 516.1 508.877 514.847 507.693 513.135L505.226 514.841L502.758 516.547C504.558 519.15 506.915 521.12 509.789 522.411L511.019 519.675ZM505.226 514.841L507.717 513.17C506.659 511.593 506.028 509.47 506.028 506.61H503.028H500.028C500.028 510.356 500.862 513.72 502.734 516.512L505.226 514.841ZM503.028 506.61H506.028C506.028 502.657 507.393 499.739 510.056 497.534L508.142 495.223L506.229 492.913C502.073 496.354 500.028 501.027 500.028 506.61H503.028ZM508.142 495.223L510.047 497.541C512.775 495.3 516.794 493.988 522.486 493.988V490.988V487.988C515.925 487.988 510.382 489.5 506.238 492.906L508.142 495.223ZM522.486 490.988V493.988C528.163 493.988 532.13 495.332 534.795 497.62L536.749 495.343L538.703 493.067C534.603 489.547 529.061 487.988 522.486 487.988V490.988ZM536.749 495.343L534.815 497.636C537.519 499.918 538.863 502.82 538.863 506.61H541.863H544.863C544.863 501.131 542.798 496.522 538.684 493.05L536.749 495.343ZM541.863 506.61H538.863C538.863 509.568 538.197 511.734 537.087 513.322L539.546 515.04L542.005 516.759C543.985 513.925 544.863 510.471 544.863 506.61H541.863ZM539.546 515.04L537.083 513.328C535.889 515.045 534.436 516.175 532.699 516.826L533.753 519.635L534.806 522.444C537.757 521.338 540.166 519.404 542.009 516.753L539.546 515.04ZM533.753 519.635H530.753V519.795H533.753H536.753V519.635H533.753ZM533.753 519.795L532.958 522.688C534.605 523.14 536.327 524.286 538.073 526.491L540.425 524.629L542.777 522.767C540.474 519.859 537.748 517.781 534.547 516.902L533.753 519.795ZM540.425 524.629L538.094 526.518C539.638 528.423 540.501 530.903 540.501 534.178H543.501H546.501C546.501 529.783 545.314 525.896 542.755 522.74L540.425 524.629ZM543.501 534.178H540.501C540.501 538.439 538.95 541.6 535.842 543.984L537.668 546.364L539.494 548.744C544.164 545.162 546.501 540.199 546.501 534.178H543.501ZM537.668 546.364L535.834 543.99C532.63 546.465 528.271 547.839 522.486 547.839V550.839V553.839C529.219 553.839 534.982 552.23 539.502 548.738L537.668 546.364ZM522.486 550.839V547.839C516.672 547.839 512.282 546.464 509.049 543.984L507.223 546.364L505.397 548.744C509.942 552.231 515.728 553.839 522.486 553.839V550.839ZM507.223 546.364L509.049 543.984C505.942 541.6 504.39 538.439 504.39 534.178H501.39H498.39C498.39 540.199 500.727 545.162 505.397 548.744L507.223 546.364ZM515.414 532.66H512.414C512.414 536.052 513.059 539.199 514.986 541.419L517.252 539.452L519.517 537.486C518.993 536.882 518.414 535.501 518.414 532.66H515.414ZM517.252 539.452L515.026 541.464C516.952 543.595 519.557 544.53 522.446 544.53V541.53V538.53C520.913 538.53 520.055 538.08 519.477 537.441L517.252 539.452ZM522.446 541.53V544.53C525.337 544.53 527.932 543.56 529.825 541.379L527.56 539.412L525.294 537.446C524.737 538.088 523.922 538.53 522.446 538.53V541.53ZM527.56 539.412L529.825 541.379C531.749 539.162 532.398 536.034 532.398 532.66H529.398H526.398C526.398 535.466 525.821 536.839 525.294 537.446L527.56 539.412ZM529.398 532.66H532.398C532.398 529.191 531.725 525.91 529.561 523.747L527.44 525.868L525.319 527.989C525.765 528.436 526.398 529.683 526.398 532.66H529.398ZM527.44 525.868L529.604 523.79C527.694 521.801 525.214 520.87 522.446 520.87V523.87V526.87C523.78 526.87 524.629 527.271 525.276 527.946L527.44 525.868ZM522.446 523.87V520.87C519.677 520.87 517.197 521.799 515.25 523.747L517.372 525.868L519.493 527.989C520.209 527.273 521.112 526.87 522.446 526.87V523.87ZM517.372 525.868L515.25 523.747C513.086 525.91 512.414 529.191 512.414 532.66H515.414H518.414C518.414 529.683 519.046 528.436 519.493 527.989L517.372 525.868ZM516.333 508.448H513.333C513.333 511.508 513.977 514.341 515.721 516.491L518.051 514.601L520.38 512.711C519.834 512.037 519.333 510.769 519.333 508.448H516.333ZM518.051 514.601L515.739 516.513C517.449 518.581 519.759 519.679 522.446 519.679V516.679V513.679C521.563 513.679 520.943 513.391 520.363 512.689L518.051 514.601ZM522.446 516.679V519.679C525.121 519.679 527.412 518.569 529.113 516.513L526.801 514.601L524.489 512.689C523.899 513.403 523.286 513.679 522.446 513.679V516.679ZM526.801 514.601L529.109 516.517C530.895 514.365 531.559 511.521 531.559 508.448H528.559H525.559C525.559 510.755 525.05 512.013 524.492 512.685L526.801 514.601ZM528.559 508.448H531.559C531.559 505.455 531.006 502.627 529.329 500.563L527 502.455L524.672 504.347C525.073 504.84 525.559 506.007 525.559 508.448H528.559ZM527 502.455L529.371 500.617C527.662 498.413 525.165 497.497 522.446 497.497V500.497V503.497C523.775 503.497 524.314 503.887 524.63 504.293L527 502.455ZM522.446 500.497V497.497C519.767 497.497 517.287 498.356 515.542 500.459L517.851 502.375L520.16 504.291C520.492 503.89 521.076 503.497 522.446 503.497V500.497ZM517.851 502.375L515.518 500.489C513.855 502.546 513.333 505.421 513.333 508.448H516.333H519.333C519.333 505.881 519.822 504.708 520.184 504.261L517.851 502.375ZM552.448 524.669L550.117 522.78L550.111 522.788L550.105 522.795L552.448 524.669ZM559.04 519.835L559.89 522.712L562.04 522.077V519.835H559.04ZM559.04 519.675H562.04V517.734L560.27 516.939L559.04 519.675ZM553.247 514.841L550.755 516.512L550.767 516.529L550.779 516.547L553.247 514.841ZM556.163 495.223L554.259 492.905L554.25 492.913L556.163 495.223ZM584.77 495.343L582.817 497.62L582.826 497.628L582.836 497.636L584.77 495.343ZM587.567 515.04L585.108 513.322L585.104 513.328L587.567 515.04ZM581.774 519.635L580.72 516.826L578.774 517.556V519.635H581.774ZM581.774 519.795H578.774V522.082L580.979 522.688L581.774 519.795ZM588.446 524.629L586.094 526.491L586.105 526.505L586.116 526.518L588.446 524.629ZM585.689 546.364L583.863 543.984L583.855 543.99L585.689 546.364ZM555.245 546.364L553.419 548.744L555.245 546.364ZM565.273 539.452L563.007 541.419L563.027 541.441L563.047 541.464L565.273 539.452ZM575.461 525.868L573.297 527.946L573.318 527.968L573.34 527.989L575.461 525.868ZM566.072 514.601L563.742 516.491L563.751 516.502L563.76 516.513L566.072 514.601ZM574.822 514.601L572.514 512.685L572.51 512.689L574.822 514.601ZM575.022 502.455L572.651 504.293L572.672 504.32L572.693 504.347L575.022 502.455ZM565.872 502.375L563.564 500.459L563.551 500.474L563.539 500.489L565.872 502.375ZM549.411 534.178H552.411C552.411 530.926 553.263 528.452 554.79 526.543L552.448 524.669L550.105 522.795C547.583 525.947 546.411 529.813 546.411 534.178H549.411ZM552.448 524.669L554.778 526.558C556.572 524.345 558.293 523.184 559.89 522.712L559.04 519.835L558.19 516.958C555.099 517.871 552.425 519.933 550.117 522.78L552.448 524.669ZM559.04 519.835H562.04V519.675H559.04H556.04V519.835H559.04ZM559.04 519.675L560.27 516.939C558.403 516.1 556.898 514.847 555.715 513.135L553.247 514.841L550.779 516.547C552.579 519.15 554.936 521.12 557.81 522.411L559.04 519.675ZM553.247 514.841L555.738 513.17C554.681 511.593 554.049 509.47 554.049 506.61H551.049H548.049C548.049 510.356 548.883 513.72 550.755 516.512L553.247 514.841ZM551.049 506.61H554.049C554.049 502.657 555.414 499.739 558.077 497.534L556.163 495.223L554.25 492.913C550.094 496.354 548.049 501.027 548.049 506.61H551.049ZM556.163 495.223L558.068 497.541C560.796 495.3 564.815 493.988 570.507 493.988V490.988V487.988C563.946 487.988 558.403 489.5 554.259 492.906L556.163 495.223ZM570.507 490.988V493.988C576.184 493.988 580.151 495.332 582.817 497.62L584.77 495.343L586.724 493.067C582.624 489.547 577.082 487.988 570.507 487.988V490.988ZM584.77 495.343L582.836 497.636C585.54 499.918 586.884 502.82 586.884 506.61H589.884H592.884C592.884 501.131 590.82 496.522 586.705 493.05L584.77 495.343ZM589.884 506.61H586.884C586.884 509.568 586.218 511.734 585.108 513.322L587.567 515.04L590.026 516.759C592.006 513.925 592.884 510.471 592.884 506.61H589.884ZM587.567 515.04L585.104 513.328C583.91 515.045 582.457 516.175 580.72 516.826L581.774 519.635L582.827 522.444C585.778 521.338 588.187 519.404 590.03 516.753L587.567 515.04ZM581.774 519.635H578.774V519.795H581.774H584.774V519.635H581.774ZM581.774 519.795L580.979 522.688C582.627 523.14 584.348 524.286 586.094 526.491L588.446 524.629L590.798 522.767C588.496 519.859 585.769 517.781 582.569 516.902L581.774 519.795ZM588.446 524.629L586.116 526.518C587.659 528.423 588.523 530.903 588.523 534.178H591.523H594.523C594.523 529.783 593.335 525.896 590.777 522.74L588.446 524.629ZM591.523 534.178H588.523C588.523 538.439 586.971 541.6 583.863 543.984L585.689 546.364L587.515 548.744C592.185 545.162 594.523 540.199 594.523 534.178H591.523ZM585.689 546.364L583.855 543.99C580.651 546.465 576.292 547.839 570.507 547.839V550.839V553.839C577.241 553.839 583.003 552.23 587.523 548.738L585.689 546.364ZM570.507 550.839V547.839C564.693 547.839 560.303 546.464 557.071 543.984L555.245 546.364L553.419 548.744C557.963 552.231 563.749 553.839 570.507 553.839V550.839ZM555.245 546.364L557.071 543.984C553.963 541.6 552.411 538.439 552.411 534.178H549.411H546.411C546.411 540.199 548.748 545.162 553.419 548.744L555.245 546.364ZM563.435 532.66H560.435C560.435 536.052 561.081 539.199 563.007 541.419L565.273 539.452L567.539 537.486C567.015 536.882 566.435 535.501 566.435 532.66H563.435ZM565.273 539.452L563.047 541.464C564.973 543.595 567.579 544.53 570.467 544.53V541.53V538.53C568.934 538.53 568.076 538.08 567.499 537.441L565.273 539.452ZM570.467 541.53V544.53C573.359 544.53 575.954 543.56 577.847 541.379L575.581 539.412L573.315 537.446C572.758 538.088 571.944 538.53 570.467 538.53V541.53ZM575.581 539.412L577.847 541.379C579.77 539.162 580.419 536.034 580.419 532.66H577.419H574.419C574.419 535.466 573.842 536.839 573.315 537.446L575.581 539.412ZM577.419 532.66H580.419C580.419 529.191 579.746 525.91 577.582 523.747L575.461 525.868L573.34 527.989C573.786 528.436 574.419 529.683 574.419 532.66H577.419ZM575.461 525.868L577.625 523.79C575.715 521.801 573.235 520.87 570.467 520.87V523.87V526.87C571.801 526.87 572.65 527.271 573.297 527.946L575.461 525.868ZM570.467 523.87V520.87C567.698 520.87 565.219 521.799 563.271 523.747L565.393 525.868L567.514 527.989C568.23 527.273 569.134 526.87 570.467 526.87V523.87ZM565.393 525.868L563.271 523.747C561.108 525.91 560.435 529.191 560.435 532.66H563.435H566.435C566.435 529.683 567.068 528.436 567.514 527.989L565.393 525.868ZM564.354 508.448H561.354C561.354 511.508 561.998 514.341 563.742 516.491L566.072 514.601L568.402 512.711C567.855 512.037 567.354 510.769 567.354 508.448H564.354ZM566.072 514.601L563.76 516.513C565.471 518.581 567.781 519.679 570.467 519.679V516.679V513.679C569.584 513.679 568.964 513.391 568.384 512.689L566.072 514.601ZM570.467 516.679V519.679C573.142 519.679 575.433 518.569 577.134 516.513L574.822 514.601L572.51 512.689C571.92 513.403 571.308 513.679 570.467 513.679V516.679ZM574.822 514.601L577.13 516.517C578.917 514.365 579.58 511.521 579.58 508.448H576.58H573.58C573.58 510.755 573.071 512.013 572.514 512.685L574.822 514.601ZM576.58 508.448H579.58C579.58 505.455 579.027 502.627 577.35 500.563L575.022 502.455L572.693 504.347C573.094 504.84 573.58 506.007 573.58 508.448H576.58ZM575.022 502.455L577.392 500.617C575.683 498.413 573.186 497.497 570.467 497.497V500.497V503.497C571.796 503.497 572.336 503.887 572.651 504.293L575.022 502.455ZM570.467 500.497V497.497C567.788 497.497 565.309 498.356 563.564 500.459L565.872 502.375L568.181 504.291C568.513 503.89 569.097 503.497 570.467 503.497V500.497ZM565.872 502.375L563.539 500.489C561.877 502.546 561.354 505.421 561.354 508.448H564.354H567.354C567.354 505.881 567.844 504.708 568.205 504.261L565.872 502.375ZM600.469 524.669L598.138 522.78L598.132 522.788L598.126 522.795L600.469 524.669ZM607.061 519.835L607.911 522.712L610.061 522.077V519.835H607.061ZM607.061 519.675H610.061V517.734L608.291 516.939L607.061 519.675ZM601.268 514.841L598.777 516.512L598.788 516.529L598.8 516.547L601.268 514.841ZM604.185 495.223L602.28 492.905L602.271 492.913L604.185 495.223ZM632.792 495.343L630.838 497.62L630.847 497.628L630.857 497.636L632.792 495.343ZM635.588 515.04L633.129 513.322L633.125 513.328L635.588 515.04ZM629.795 519.635L628.742 516.826L626.795 517.556V519.635H629.795ZM629.795 519.795H626.795V522.082L629 522.688L629.795 519.795ZM636.467 524.629L634.115 526.491L634.126 526.505L634.137 526.518L636.467 524.629ZM633.711 546.364L631.885 543.984L631.877 543.99L633.711 546.364ZM603.266 546.364L601.44 548.744L603.266 546.364ZM613.294 539.452L611.029 541.419L611.048 541.441L611.069 541.464L613.294 539.452ZM623.482 525.868L621.318 527.946L621.339 527.968L621.361 527.989L623.482 525.868ZM614.093 514.601L611.764 516.491L611.772 516.502L611.781 516.513L614.093 514.601ZM622.843 514.601L620.535 512.685L620.531 512.689L622.843 514.601ZM623.043 502.455L620.672 504.293L620.693 504.32L620.715 504.347L623.043 502.455ZM613.893 502.375L611.585 500.459L611.573 500.474L611.561 500.489L613.893 502.375ZM597.432 534.178H600.432C600.432 530.926 601.285 528.452 602.812 526.543L600.469 524.669L598.126 522.795C595.605 525.947 594.432 529.813 594.432 534.178H597.432ZM600.469 524.669L602.8 526.558C604.593 524.345 606.315 523.184 607.911 522.712L607.061 519.835L606.211 516.958C603.12 517.871 600.447 519.933 598.138 522.78L600.469 524.669ZM607.061 519.835H610.061V519.675H607.061H604.061V519.835H607.061ZM607.061 519.675L608.291 516.939C606.424 516.1 604.919 514.847 603.736 513.135L601.268 514.841L598.8 516.547C600.6 519.15 602.957 521.12 605.832 522.411L607.061 519.675ZM601.268 514.841L603.76 513.17C602.702 511.593 602.071 509.47 602.071 506.61H599.071H596.071C596.071 510.356 596.904 513.72 598.777 516.512L601.268 514.841ZM599.071 506.61H602.071C602.071 502.657 603.435 499.739 606.098 497.534L604.185 495.223L602.271 492.913C598.115 496.354 596.071 501.027 596.071 506.61H599.071ZM604.185 495.223L606.089 497.541C608.817 495.3 612.836 493.988 618.528 493.988V490.988V487.988C611.968 487.988 606.424 489.5 602.28 492.906L604.185 495.223ZM618.528 490.988V493.988C624.206 493.988 628.173 495.332 630.838 497.62L632.792 495.343L634.745 493.067C630.645 489.547 625.103 487.988 618.528 487.988V490.988ZM632.792 495.343L630.857 497.636C633.561 499.918 634.906 502.82 634.906 506.61H637.906H640.906C640.906 501.131 638.841 496.522 634.726 493.05L632.792 495.343ZM637.906 506.61H634.906C634.906 509.568 634.239 511.734 633.129 513.322L635.588 515.04L638.047 516.759C640.027 513.925 640.906 510.471 640.906 506.61H637.906ZM635.588 515.04L633.125 513.328C631.932 515.045 630.479 516.175 628.742 516.826L629.795 519.635L630.848 522.444C633.799 521.338 636.209 519.404 638.052 516.753L635.588 515.04ZM629.795 519.635H626.795V519.795H629.795H632.795V519.635H629.795ZM629.795 519.795L629 522.688C630.648 523.14 632.369 524.286 634.115 526.491L636.467 524.629L638.82 522.767C636.517 519.859 633.79 517.781 630.59 516.902L629.795 519.795ZM636.467 524.629L634.137 526.518C635.681 528.423 636.544 530.903 636.544 534.178H639.544H642.544C642.544 529.783 641.356 525.896 638.798 522.74L636.467 524.629ZM639.544 534.178H636.544C636.544 538.439 634.992 541.6 631.885 543.984L633.711 546.364L635.536 548.744C640.207 545.162 642.544 540.199 642.544 534.178H639.544ZM633.711 546.364L631.877 543.99C628.672 546.465 624.313 547.839 618.528 547.839V550.839V553.839C625.262 553.839 631.025 552.23 635.544 548.738L633.711 546.364ZM618.528 550.839V547.839C612.714 547.839 608.325 546.464 605.092 543.984L603.266 546.364L601.44 548.744C605.984 552.231 611.77 553.839 618.528 553.839V550.839ZM603.266 546.364L605.092 543.984C601.984 541.6 600.432 538.439 600.432 534.178H597.432H594.432C594.432 540.199 596.77 545.162 601.44 548.744L603.266 546.364ZM611.456 532.66H608.456C608.456 536.052 609.102 539.199 611.029 541.419L613.294 539.452L615.56 537.486C615.036 536.882 614.456 535.501 614.456 532.66H611.456ZM613.294 539.452L611.069 541.464C612.994 543.595 615.6 544.53 618.488 544.53V541.53V538.53C616.955 538.53 616.098 538.08 615.52 537.441L613.294 539.452ZM618.488 541.53V544.53C621.38 544.53 623.975 543.56 625.868 541.379L623.602 539.412L621.337 537.446C620.779 538.088 619.965 538.53 618.488 538.53V541.53ZM623.602 539.412L625.868 541.379C627.791 539.162 628.44 536.034 628.44 532.66H625.44H622.44C622.44 535.466 621.864 536.839 621.337 537.446L623.602 539.412ZM625.44 532.66H628.44C628.44 529.191 627.767 525.91 625.604 523.747L623.482 525.868L621.361 527.989C621.808 528.436 622.44 529.683 622.44 532.66H625.44ZM623.482 525.868L625.647 523.79C623.737 521.801 621.256 520.87 618.488 520.87V523.87V526.87C619.822 526.87 620.671 527.271 621.318 527.946L623.482 525.868ZM618.488 523.87V520.87C615.72 520.87 613.24 521.799 611.293 523.747L613.414 525.868L615.535 527.989C616.252 527.273 617.155 526.87 618.488 526.87V523.87ZM613.414 525.868L611.293 523.747C609.129 525.91 608.456 529.191 608.456 532.66H611.456H614.456C614.456 529.683 615.089 528.436 615.535 527.989L613.414 525.868ZM612.375 508.448H609.375C609.375 511.508 610.019 514.341 611.764 516.491L614.093 514.601L616.423 512.711C615.877 512.037 615.375 510.769 615.375 508.448H612.375ZM614.093 514.601L611.781 516.513C613.492 518.581 615.802 519.679 618.488 519.679V516.679V513.679C617.605 513.679 616.985 513.391 616.405 512.689L614.093 514.601ZM618.488 516.679V519.679C621.163 519.679 623.455 518.569 625.155 516.513L622.843 514.601L620.531 512.689C619.941 513.403 619.329 513.679 618.488 513.679V516.679ZM622.843 514.601L625.151 516.517C626.938 514.365 627.601 511.521 627.601 508.448H624.601H621.601C621.601 510.755 621.092 512.013 620.535 512.685L622.843 514.601ZM624.601 508.448H627.601C627.601 505.455 627.048 502.627 625.371 500.563L623.043 502.455L620.715 504.347C621.115 504.84 621.601 506.007 621.601 508.448H624.601ZM623.043 502.455L625.414 500.617C623.705 498.413 621.208 497.497 618.488 497.497V500.497V503.497C619.817 503.497 620.357 503.887 620.672 504.293L623.043 502.455ZM618.488 500.497V497.497C615.809 497.497 613.33 498.356 611.585 500.459L613.893 502.375L616.202 504.291C616.535 503.89 617.118 503.497 618.488 503.497V500.497ZM613.893 502.375L611.561 500.489C609.898 502.546 609.375 505.421 609.375 508.448H612.375H615.375C615.375 505.881 615.865 504.708 616.226 504.261L613.893 502.375ZM681.452 496.382L679.331 498.503L679.339 498.511L679.347 498.519L681.452 496.382ZM681.212 545.565L679.162 543.376L679.154 543.383L681.212 545.565ZM666.629 550.839L666.643 547.839H666.642L666.629 550.839ZM651.766 545.525L649.653 547.654L649.661 547.662L651.766 545.525ZM661.875 539.093L659.413 540.807L659.423 540.822L659.434 540.836L661.875 539.093ZM661.875 502.934L659.434 501.191L659.423 501.205L659.413 501.22L661.875 502.934ZM646.413 529.863H649.413V511.964H646.413H643.413V529.863H646.413ZM646.413 511.964H649.413C649.413 505.817 651.054 501.5 653.943 498.568L651.806 496.462L649.67 494.356C645.367 498.722 643.413 504.74 643.413 511.964H646.413ZM651.806 496.462L653.943 498.568C656.852 495.616 660.952 493.988 666.629 493.988V490.988V487.988C659.734 487.988 653.952 490.01 649.67 494.356L651.806 496.462ZM666.629 490.988V493.988C672.319 493.988 676.424 495.597 679.331 498.503L681.452 496.382L683.573 494.261C679.288 489.976 673.512 487.988 666.629 487.988V490.988ZM681.452 496.382L679.347 498.519C682.223 501.353 683.886 505.666 683.886 511.964H686.886H689.886C689.886 504.625 687.927 498.55 683.558 494.245L681.452 496.382ZM686.886 511.964H683.886V529.863H686.886H689.886V511.964H686.886ZM686.886 529.863H683.886C683.886 536.25 682.154 540.572 679.162 543.376L681.212 545.565L683.263 547.755C687.835 543.473 689.886 537.327 689.886 529.863H686.886ZM681.212 545.565L679.154 543.383C676.046 546.315 671.968 547.863 666.643 547.839L666.629 550.839L666.616 553.839C673.223 553.868 678.868 551.901 683.271 547.747L681.212 545.565ZM666.629 550.839L666.642 547.839C660.868 547.815 656.745 546.218 653.872 543.388L651.766 545.525L649.661 547.662C653.927 551.864 659.712 553.81 666.617 553.839L666.629 550.839ZM651.766 545.525L653.88 543.396C651.063 540.6 649.413 536.267 649.413 529.863H646.413H643.413C643.413 537.257 645.332 543.365 649.653 547.654L651.766 545.525ZM660.317 532.7H657.317C657.317 535.782 657.884 538.612 659.413 540.807L661.875 539.093L664.337 537.378C663.788 536.59 663.317 535.158 663.317 532.7H660.317ZM661.875 539.093L659.434 540.836C661.152 543.242 663.721 544.33 666.629 544.33V541.33V538.33C665.329 538.33 664.729 537.927 664.316 537.349L661.875 539.093ZM666.629 541.33V544.33C669.538 544.33 672.107 543.242 673.825 540.836L671.384 539.093L668.943 537.349C668.53 537.927 667.93 538.33 666.629 538.33V541.33ZM671.384 539.093L673.825 540.836C675.397 538.636 675.982 535.794 675.982 532.7H672.982H669.982C669.982 535.146 669.502 536.566 668.943 537.349L671.384 539.093ZM672.982 532.7H675.982V509.407H672.982H669.982V532.7H672.982ZM672.982 509.407H675.982C675.982 506.274 675.402 503.399 673.825 501.191L671.384 502.934L668.943 504.678C669.496 505.453 669.982 506.893 669.982 509.407H672.982ZM671.384 502.934L673.825 501.191C672.107 498.786 669.538 497.697 666.629 497.697V500.697V503.697C667.93 503.697 668.53 504.1 668.943 504.678L671.384 502.934ZM666.629 500.697V497.697C663.721 497.697 661.152 498.786 659.434 501.191L661.875 502.934L664.316 504.678C664.729 504.1 665.329 503.697 666.629 503.697V500.697ZM661.875 502.934L659.413 501.22C657.879 503.423 657.317 506.286 657.317 509.407H660.317H663.317C663.317 506.881 663.793 505.429 664.337 504.649L661.875 502.934ZM660.317 509.407H657.317V532.7H660.317H663.317V509.407H660.317ZM752.004 496.382L749.883 498.503L749.891 498.511L749.898 498.519L752.004 496.382ZM751.764 545.565L749.714 543.376L749.706 543.383L751.764 545.565ZM737.181 550.839L737.195 547.839H737.194L737.181 550.839ZM722.318 545.525L720.205 547.654L720.213 547.662L722.318 545.525ZM732.427 539.093L729.965 540.807L729.975 540.822L729.986 540.836L732.427 539.093ZM732.427 502.934L729.986 501.191L729.975 501.205L729.965 501.22L732.427 502.934ZM716.965 529.863H719.965V511.964H716.965H713.965V529.863H716.965ZM716.965 511.964H719.965C719.965 505.817 721.606 501.5 724.495 498.568L722.358 496.462L720.221 494.356C715.919 498.722 713.965 504.74 713.965 511.964H716.965ZM722.358 496.462L724.495 498.568C727.404 495.616 731.504 493.988 737.181 493.988V490.988V487.988C730.286 487.988 724.504 490.01 720.221 494.356L722.358 496.462ZM737.181 490.988V493.988C742.871 493.988 746.976 495.597 749.883 498.503L752.004 496.382L754.125 494.261C749.84 489.976 744.064 487.988 737.181 487.988V490.988ZM752.004 496.382L749.898 498.519C752.774 501.353 754.438 505.666 754.438 511.964H757.438H760.438C760.438 504.625 758.479 498.55 754.11 494.245L752.004 496.382ZM757.438 511.964H754.438V529.863H757.438H760.438V511.964H757.438ZM757.438 529.863H754.438C754.438 536.25 752.706 540.572 749.714 543.376L751.764 545.565L753.815 547.755C758.387 543.473 760.438 537.327 760.438 529.863H757.438ZM751.764 545.565L749.706 543.383C746.597 546.315 742.52 547.863 737.195 547.839L737.181 550.839L737.168 553.839C743.775 553.868 749.42 551.901 753.823 547.747L751.764 545.565ZM737.181 550.839L737.194 547.839C731.42 547.815 727.297 546.218 724.424 543.388L722.318 545.525L720.213 547.662C724.479 551.864 730.264 553.81 737.169 553.839L737.181 550.839ZM722.318 545.525L724.432 543.396C721.615 540.6 719.965 536.267 719.965 529.863H716.965H713.965C713.965 537.257 715.884 543.365 720.205 547.654L722.318 545.525ZM730.869 532.7H727.869C727.869 535.782 728.436 538.612 729.965 540.807L732.427 539.093L734.889 537.378C734.34 536.59 733.869 535.158 733.869 532.7H730.869ZM732.427 539.093L729.986 540.836C731.703 543.242 734.273 544.33 737.181 544.33V541.33V538.33C735.881 538.33 735.281 537.927 734.868 537.349L732.427 539.093ZM737.181 541.33V544.33C740.089 544.33 742.659 543.242 744.377 540.836L741.936 539.093L739.495 537.349C739.082 537.927 738.481 538.33 737.181 538.33V541.33ZM741.936 539.093L744.377 540.836C745.949 538.636 746.534 535.794 746.534 532.7H743.534H740.534C740.534 535.146 740.054 536.566 739.495 537.349L741.936 539.093ZM743.534 532.7H746.534V509.407H743.534H740.534V532.7H743.534ZM743.534 509.407H746.534C746.534 506.274 745.954 503.399 744.377 501.191L741.936 502.934L739.495 504.678C740.048 505.453 740.534 506.893 740.534 509.407H743.534ZM741.936 502.934L744.377 501.191C742.659 498.786 740.089 497.697 737.181 497.697V500.697V503.697C738.481 503.697 739.082 504.1 739.495 504.678L741.936 502.934ZM737.181 500.697V497.697C734.273 497.697 731.703 498.786 729.986 501.191L732.427 502.934L734.868 504.678C735.281 504.1 735.881 503.697 737.181 503.697V500.697ZM732.427 502.934L729.965 501.22C728.431 503.423 727.869 506.286 727.869 509.407H730.869H733.869C733.869 506.881 734.345 505.429 734.889 504.649L732.427 502.934ZM730.869 509.407H727.869V532.7H730.869H733.869V509.407H730.869ZM787.2 550H784.2V553H787.2V550ZM787.2 535.297L784.681 533.667L784.2 534.411V535.297H787.2ZM787.64 534.618L790.158 536.248L790.64 535.504V534.618H787.64ZM787.64 509.487H790.64V506.487H787.64V509.487ZM787.32 509.487V506.487H785.613L784.741 507.954L787.32 509.487ZM776.253 528.105L773.674 526.572L770.98 531.105H776.253V528.105ZM792.634 528.105V531.105H793.074L793.496 530.979L792.634 528.105ZM793.832 527.746V524.746H793.392L792.97 524.872L793.832 527.746ZM806.658 527.746H809.658V524.746H806.658V527.746ZM806.658 538.533V541.533H809.658V538.533H806.658ZM763.388 538.533H760.388V541.533H763.388V538.533ZM763.388 528.625L760.917 526.924L760.388 527.692V528.625H763.388ZM788.718 491.827V488.827H787.141L786.247 490.126L788.718 491.827ZM799.985 491.827H802.985V488.827H799.985V491.827ZM799.985 550V553H802.985V550H799.985ZM787.2 550H790.2V535.297H787.2H784.2V550H787.2ZM787.2 535.297L789.719 536.927L790.158 536.248L787.64 534.618L785.121 532.988L784.681 533.667L787.2 535.297ZM787.64 534.618H790.64V509.487H787.64H784.64V534.618H787.64ZM787.64 509.487V506.487H787.32V509.487V512.487H787.64V509.487ZM787.32 509.487L784.741 507.954L773.674 526.572L776.253 528.105L778.832 529.638L789.899 511.02L787.32 509.487ZM776.253 528.105V531.105H792.634V528.105V525.105H776.253V528.105ZM792.634 528.105L793.496 530.979L794.695 530.619L793.832 527.746L792.97 524.872L791.772 525.232L792.634 528.105ZM793.832 527.746V530.746H806.658V527.746V524.746H793.832V527.746ZM806.658 527.746H803.658V538.533H806.658H809.658V527.746H806.658ZM806.658 538.533V535.533H763.388V538.533V541.533H806.658V538.533ZM763.388 538.533H766.388V528.625H763.388H760.388V538.533H763.388ZM763.388 528.625L765.859 530.326L791.189 493.528L788.718 491.827L786.247 490.126L760.917 526.924L763.388 528.625ZM788.718 491.827V494.827H799.985V491.827V488.827H788.718V491.827ZM799.985 491.827H796.985V550H799.985H802.985V491.827H799.985ZM799.985 550V547H787.2V550V553H799.985V550ZM812.368 550H809.368V553H812.368V550ZM812.368 541.33L810.207 539.249L809.368 540.12V541.33H812.368ZM833.383 519.515L835.544 521.597L835.604 521.534L835.661 521.468L833.383 519.515ZM828.269 502.615L830.436 504.69L830.447 504.678L830.458 504.667L828.269 502.615ZM826.471 511.644V514.644H829.471V511.644H826.471ZM812.368 511.644H809.368V514.644H812.368V511.644ZM848.086 495.343L846.133 497.62L846.143 497.629L848.086 495.343ZM853.201 507.09H856.201V507.082L856.201 507.074L853.201 507.09ZM850.843 516.958L848.205 515.53L848.2 515.54L848.195 515.549L850.843 516.958ZM844.211 525.828L842.042 523.755L841.98 523.821L841.921 523.89L844.211 525.828ZM833.184 538.853L830.894 536.914L826.713 541.853H833.184V538.853ZM854.559 538.853H857.559V535.853H854.559V538.853ZM854.559 550V553H857.559V550H854.559ZM812.368 550H815.368V541.33H812.368H809.368V550H812.368ZM812.368 541.33L814.528 543.411L835.544 521.597L833.383 519.515L831.223 517.434L810.207 539.249L812.368 541.33ZM833.383 519.515L835.661 521.468C837.364 519.481 838.841 517.434 840.084 515.324L837.499 513.802L834.914 512.279C833.865 514.059 832.599 515.821 831.106 517.563L833.383 519.515ZM837.499 513.802L840.084 515.324C841.477 512.96 842.217 510.428 842.217 507.769H839.217H836.217C836.217 509.265 835.812 510.755 834.914 512.279L837.499 513.802ZM839.217 507.769H842.217C842.217 504.895 841.582 502.083 839.569 500.164L837.499 502.335L835.429 504.506C835.706 504.771 836.217 505.582 836.217 507.769H839.217ZM837.499 502.335L839.569 500.164C837.768 498.447 835.473 497.697 832.984 497.697V500.697V503.697C834.224 503.697 834.939 504.04 835.429 504.506L837.499 502.335ZM832.984 500.697V497.697C830.311 497.697 827.912 498.61 826.081 500.563L828.269 502.615L830.458 504.667C831.024 504.063 831.768 503.697 832.984 503.697V500.697ZM828.269 502.615L826.102 500.54C825.007 501.684 824.376 503.17 824.006 504.693C823.631 506.235 823.471 508.026 823.471 510.006H826.471H829.471C829.471 508.311 829.612 507.032 829.836 506.111C830.065 505.17 830.333 504.797 830.436 504.69L828.269 502.615ZM826.471 510.006H823.471V511.644H826.471H829.471V510.006H826.471ZM826.471 511.644V508.644H812.368V511.644V514.644H826.471V511.644ZM812.368 511.644H815.368V508.208H812.368H809.368V511.644H812.368ZM812.368 508.208H815.368C815.368 504.119 816.89 500.837 820.06 498.152L818.121 495.863L816.182 493.574C811.681 497.387 809.368 502.336 809.368 508.208H812.368ZM818.121 495.863L820.06 498.152C823.233 495.463 827.525 493.988 833.224 493.988V490.988V487.988C826.457 487.988 820.68 489.763 816.182 493.574L818.121 495.863ZM833.224 490.988V493.988C839.357 493.988 843.498 495.358 846.133 497.62L848.086 495.343L850.04 493.067C845.91 489.522 840.142 487.988 833.224 487.988V490.988ZM848.086 495.343L846.143 497.629C848.778 499.869 850.178 502.912 850.201 507.106L853.201 507.09L856.201 507.074C856.17 501.359 854.161 496.57 850.03 493.058L848.086 495.343ZM853.201 507.09H850.201C850.201 510.324 849.513 513.113 848.205 515.53L850.843 516.958L853.482 518.386C855.316 514.996 856.201 511.207 856.201 507.09H853.201ZM850.843 516.958L848.195 515.549C846.808 518.156 844.777 520.894 842.042 523.755L844.211 525.828L846.38 527.901C849.398 524.743 851.789 521.567 853.492 518.367L850.843 516.958ZM844.211 525.828L841.921 523.89L830.894 536.914L833.184 538.853L835.473 540.791L846.501 527.766L844.211 525.828ZM833.184 538.853V541.853H854.559V538.853V535.853H833.184V538.853ZM854.559 538.853H851.559V550H854.559H857.559V538.853H854.559ZM854.559 550V547H812.368V550V553H854.559V550ZM896.068 496.382L893.946 498.503L893.954 498.511L893.962 498.519L896.068 496.382ZM895.828 545.565L893.777 543.376L893.77 543.383L895.828 545.565ZM881.245 550.839L881.258 547.839H881.258L881.245 550.839ZM866.382 545.525L864.269 547.654L864.277 547.662L866.382 545.525ZM876.49 539.093L874.029 540.807L874.039 540.822L874.049 540.836L876.49 539.093ZM876.49 502.934L874.049 501.191L874.039 501.205L874.029 501.22L876.49 502.934ZM861.028 529.863H864.028V511.964H861.028H858.028V529.863H861.028ZM861.028 511.964H864.028C864.028 505.817 865.67 501.5 868.559 498.568L866.422 496.462L864.285 494.356C859.983 498.722 858.028 504.74 858.028 511.964H861.028ZM866.422 496.462L868.559 498.568C871.468 495.616 875.568 493.988 881.245 493.988V490.988V487.988C874.35 487.988 868.568 490.01 864.285 494.356L866.422 496.462ZM881.245 490.988V493.988C886.935 493.988 891.04 495.597 893.946 498.503L896.068 496.382L898.189 494.261C893.904 489.976 888.127 487.988 881.245 487.988V490.988ZM896.068 496.382L893.962 498.519C896.838 501.353 898.501 505.666 898.501 511.964H901.501H904.501C904.501 504.625 902.542 498.55 898.173 494.245L896.068 496.382ZM901.501 511.964H898.501V529.863H901.501H904.501V511.964H901.501ZM901.501 529.863H898.501C898.501 536.25 896.77 540.572 893.777 543.376L895.828 545.565L897.879 547.755C902.451 543.473 904.501 537.327 904.501 529.863H901.501ZM895.828 545.565L893.77 543.383C890.661 546.315 886.584 547.863 881.258 547.839L881.245 550.839L881.232 553.839C887.839 553.868 893.484 551.901 897.887 547.747L895.828 545.565ZM881.245 550.839L881.258 547.839C875.484 547.815 871.36 546.218 868.487 543.388L866.382 545.525L864.277 547.662C868.542 551.864 874.327 553.81 881.232 553.839L881.245 550.839ZM866.382 545.525L868.495 543.396C865.678 540.6 864.028 536.267 864.028 529.863H861.028H858.028C858.028 537.257 859.947 543.365 864.269 547.654L866.382 545.525ZM874.932 532.7H871.932C871.932 535.782 872.5 538.612 874.029 540.807L876.49 539.093L878.952 537.378C878.403 536.59 877.932 535.158 877.932 532.7H874.932ZM876.49 539.093L874.049 540.836C875.767 543.242 878.337 544.33 881.245 544.33V541.33V538.33C879.945 538.33 879.344 537.927 878.932 537.349L876.49 539.093ZM881.245 541.33V544.33C884.153 544.33 886.723 543.242 888.441 540.836L885.999 539.093L883.558 537.349C883.145 537.927 882.545 538.33 881.245 538.33V541.33ZM885.999 539.093L888.441 540.836C890.012 538.636 890.598 535.794 890.598 532.7H887.598H884.598C884.598 535.146 884.117 536.566 883.558 537.349L885.999 539.093ZM887.598 532.7H890.598V509.407H887.598H884.598V532.7H887.598ZM887.598 509.407H890.598C890.598 506.274 890.018 503.399 888.441 501.191L885.999 502.934L883.558 504.678C884.112 505.453 884.598 506.893 884.598 509.407H887.598ZM885.999 502.934L888.441 501.191C886.723 498.786 884.153 497.697 881.245 497.697V500.697V503.697C882.545 503.697 883.145 504.1 883.558 504.678L885.999 502.934ZM881.245 500.697V497.697C878.337 497.697 875.767 498.786 874.049 501.191L876.49 502.934L878.932 504.678C879.344 504.1 879.945 503.697 881.245 503.697V500.697ZM876.49 502.934L874.029 501.22C872.494 503.423 871.932 506.286 871.932 509.407H874.932H877.932C877.932 506.881 878.409 505.429 878.952 504.649L876.49 502.934ZM874.932 509.407H871.932V532.7H874.932H877.932V509.407H874.932Z" fill="black" mask="url(#path-11-outside-5_17007_2267)"/> +<path d="M1055.49 109C1055.81 107.808 1056.11 106.89 1056.11 105.59C1056.11 98.3596 1050.63 92.429 1043.57 91.6707C1045.12 86.8503 1045.93 81.7321 1045.93 76.3972C1045.93 48.5582 1023.32 26 995.427 26C972.523 26 953.173 41.2464 947.013 62.0986C944.272 60.0404 940.853 58.7947 937.162 58.7947C928.098 58.7947 920.744 66.1336 920.744 75.1786C920.744 75.2598 920.744 75.341 920.744 75.4223C919.604 75.5306 918.491 75.7202 917.378 75.9097C907.609 68.7604 895.804 64.265 883.049 63.6151C852.519 62.0444 826.358 81.8133 818.243 109.3C814.77 106.673 810.455 105.103 805.76 105.103C794.254 105.103 784.945 114.418 784.945 125.874C784.945 125.982 784.945 126.063 784.945 126.172C784.674 126.172 784.375 126.226 784.104 126.253C752.841 129.584 755.582 175.973 787.008 175.973H1052.53C1071.01 175.973 1085.99 161.024 1085.99 142.582C1085.99 125.17 1072.63 110.871 1055.59 109.327L1055.49 109Z" fill="white" stroke="black" stroke-width="4"/> +<mask id="path-14-outside-6_17007_2267" maskUnits="userSpaceOnUse" x="383" y="171" width="70" height="83" fill="black"> +<rect fill="white" x="383" y="171" width="70" height="83"/> +<path d="M404.667 205.602C409.4 192.936 404.667 176 404.667 176C404.667 176 412.506 196.568 426.333 202.219C434.206 205.436 448 203.91 448 203.91C448 203.91 436.705 212.773 433 220.825C428.31 231.018 431.333 249.581 431.333 249.581C431.333 249.581 422.653 231.856 412.167 227.591C402.18 223.53 388 227.591 388 227.591C388 227.591 400.411 216.991 404.667 205.602Z"/> +</mask> +<path d="M404.667 205.602C409.4 192.936 404.667 176 404.667 176C404.667 176 412.506 196.568 426.333 202.219C434.206 205.436 448 203.91 448 203.91C448 203.91 436.705 212.773 433 220.825C428.31 231.018 431.333 249.581 431.333 249.581C431.333 249.581 422.653 231.856 412.167 227.591C402.18 223.53 388 227.591 388 227.591C388 227.591 400.411 216.991 404.667 205.602Z" fill="#FFD25C"/> +<path d="M404.667 176L408.404 174.575C407.643 172.578 405.445 171.532 403.415 172.201C401.384 172.87 400.239 175.018 400.814 177.077L404.667 176ZM404.667 205.602L408.414 207.002V207.002L404.667 205.602ZM388 227.591L385.402 224.55C383.971 225.772 383.586 227.826 384.476 229.484C385.367 231.142 387.292 231.955 389.101 231.437L388 227.591ZM412.167 227.591L410.66 231.297V231.297L412.167 227.591ZM431.333 249.581L427.741 251.34C428.613 253.121 430.658 253.994 432.548 253.392C434.437 252.79 435.6 250.895 435.281 248.938L431.333 249.581ZM433 220.825L436.634 222.497V222.497L433 220.825ZM448 203.91L450.469 207.057C451.875 205.954 452.379 204.052 451.703 202.398C451.027 200.743 449.336 199.738 447.56 199.934L448 203.91ZM426.333 202.219L427.846 198.516L426.333 202.219ZM404.667 176C400.814 177.077 400.814 177.076 400.814 177.075C400.814 177.075 400.814 177.074 400.814 177.074C400.813 177.073 400.813 177.073 400.813 177.073C400.813 177.073 400.813 177.073 400.814 177.075C400.815 177.079 400.817 177.086 400.82 177.098C400.826 177.121 400.837 177.159 400.851 177.213C400.879 177.32 400.922 177.487 400.977 177.709C401.086 178.153 401.241 178.816 401.415 179.655C401.764 181.338 402.183 183.712 402.462 186.456C403.031 192.047 402.967 198.721 400.92 204.201L404.667 205.602L408.414 207.002C411.099 199.816 411.036 191.69 410.421 185.646C410.108 182.573 409.64 179.922 409.249 178.033C409.053 177.087 408.876 176.327 408.745 175.796C408.679 175.53 408.625 175.321 408.587 175.174C408.567 175.1 408.552 175.042 408.54 175C408.534 174.979 408.53 174.962 408.526 174.95C408.525 174.943 408.523 174.938 408.522 174.933C408.521 174.931 408.521 174.929 408.52 174.928C408.52 174.927 408.52 174.926 408.52 174.925C408.519 174.924 408.519 174.923 404.667 176ZM404.667 205.602L400.92 204.201C399.052 209.199 395.277 214.254 391.753 218.204C390.022 220.144 388.416 221.747 387.247 222.861C386.663 223.417 386.191 223.849 385.869 224.137C385.709 224.281 385.586 224.389 385.507 224.459C385.467 224.494 385.438 224.519 385.42 224.534C385.411 224.542 385.405 224.547 385.402 224.55C385.401 224.551 385.4 224.552 385.4 224.552C385.4 224.552 385.4 224.551 385.4 224.551C385.401 224.551 385.401 224.551 385.401 224.551C385.402 224.55 385.402 224.55 388 227.591C390.598 230.633 390.599 230.632 390.599 230.632C390.599 230.632 390.6 230.631 390.601 230.631C390.602 230.63 390.603 230.628 390.604 230.627C390.607 230.625 390.611 230.622 390.616 230.618C390.624 230.61 390.636 230.6 390.651 230.587C390.681 230.562 390.722 230.526 390.774 230.48C390.878 230.389 391.027 230.258 391.214 230.09C391.588 229.754 392.118 229.269 392.765 228.653C394.055 227.424 395.818 225.665 397.722 223.53C401.467 219.333 406.025 213.393 408.414 207.002L404.667 205.602ZM388 227.591C389.101 231.437 389.101 231.437 389.1 231.437C389.1 231.437 389.099 231.437 389.099 231.437C389.098 231.438 389.098 231.438 389.097 231.438C389.097 231.438 389.097 231.438 389.098 231.438C389.1 231.437 389.106 231.435 389.115 231.433C389.132 231.428 389.163 231.42 389.206 231.408C389.293 231.385 389.429 231.348 389.611 231.302C389.974 231.21 390.518 231.079 391.207 230.932C392.589 230.637 394.532 230.282 396.759 230.046C401.339 229.561 406.586 229.64 410.66 231.297L412.167 227.591L413.674 223.886C407.76 221.481 400.924 221.56 395.917 222.09C393.351 222.362 391.125 222.769 389.536 223.108C388.739 223.279 388.098 223.433 387.647 223.547C387.421 223.604 387.243 223.651 387.117 223.686C387.054 223.703 387.004 223.716 386.967 223.727C386.949 223.732 386.934 223.736 386.923 223.739C386.917 223.741 386.912 223.742 386.908 223.743C386.906 223.744 386.904 223.744 386.903 223.745C386.902 223.745 386.901 223.745 386.9 223.745C386.899 223.746 386.899 223.746 388 227.591ZM412.167 227.591L410.66 231.297C414.741 232.957 418.966 237.575 422.407 242.482C424.055 244.832 425.399 247.066 426.332 248.714C426.796 249.536 427.155 250.206 427.395 250.665C427.515 250.894 427.605 251.07 427.663 251.185C427.692 251.243 427.714 251.285 427.727 251.311C427.733 251.324 427.738 251.333 427.74 251.338C427.741 251.341 427.742 251.342 427.742 251.343C427.742 251.343 427.742 251.343 427.742 251.342C427.742 251.342 427.742 251.342 427.742 251.341C427.741 251.341 427.741 251.34 431.333 249.581C434.926 247.822 434.925 247.821 434.925 247.82C434.925 247.82 434.924 247.819 434.924 247.818C434.923 247.817 434.922 247.815 434.921 247.813C434.92 247.809 434.917 247.804 434.914 247.798C434.908 247.786 434.9 247.769 434.89 247.749C434.869 247.708 434.84 247.65 434.803 247.577C434.729 247.43 434.622 247.221 434.484 246.957C434.209 246.43 433.808 245.682 433.295 244.776C432.272 242.967 430.791 240.503 428.958 237.889C425.437 232.867 420.078 226.491 413.674 223.886L412.167 227.591ZM431.333 249.581C435.281 248.938 435.281 248.939 435.281 248.939C435.282 248.939 435.282 248.94 435.282 248.94C435.282 248.94 435.282 248.94 435.282 248.94C435.282 248.939 435.281 248.938 435.281 248.935C435.28 248.93 435.278 248.92 435.276 248.906C435.272 248.877 435.265 248.832 435.255 248.77C435.237 248.647 435.209 248.459 435.174 248.212C435.105 247.717 435.01 246.99 434.91 246.082C434.709 244.261 434.487 241.734 434.406 238.911C434.239 233.075 434.703 226.694 436.634 222.497L433 220.825L429.366 219.153C426.607 225.15 426.238 233.146 426.41 239.14C426.498 242.232 426.74 244.983 426.959 246.961C427.068 247.952 427.173 248.755 427.251 249.316C427.29 249.596 427.322 249.816 427.346 249.97C427.357 250.047 427.367 250.107 427.373 250.149C427.377 250.171 427.379 250.188 427.381 250.2C427.382 250.206 427.383 250.211 427.384 250.215C427.384 250.217 427.385 250.219 427.385 250.221C427.385 250.221 427.385 250.222 427.385 250.223C427.385 250.223 427.385 250.224 431.333 249.581ZM433 220.825L436.634 222.497C438.163 219.175 441.458 215.373 444.69 212.204C446.254 210.67 447.713 209.372 448.78 208.458C449.312 208.003 449.743 207.645 450.037 207.405C450.184 207.285 450.297 207.194 450.37 207.136C450.407 207.106 450.434 207.085 450.451 207.071C450.459 207.065 450.465 207.06 450.468 207.058C450.47 207.057 450.47 207.056 450.471 207.056C450.471 207.056 450.471 207.056 450.47 207.056C450.47 207.056 450.47 207.056 450.47 207.056C450.47 207.057 450.469 207.057 448 203.91C445.531 200.763 445.53 200.764 445.53 200.764C445.53 200.764 445.529 200.765 445.529 200.765C445.528 200.766 445.527 200.767 445.525 200.768C445.523 200.77 445.519 200.772 445.516 200.775C445.508 200.781 445.497 200.79 445.484 200.8C445.458 200.821 445.421 200.85 445.374 200.888C445.28 200.963 445.147 201.07 444.978 201.208C444.64 201.484 444.16 201.882 443.575 202.383C442.408 203.383 440.811 204.803 439.089 206.492C435.747 209.768 431.542 214.423 429.366 219.153L433 220.825ZM448 203.91C447.56 199.934 447.561 199.934 447.561 199.934C447.561 199.934 447.562 199.934 447.562 199.934C447.562 199.934 447.562 199.934 447.562 199.934C447.562 199.934 447.561 199.934 447.56 199.934C447.556 199.935 447.549 199.936 447.539 199.937C447.519 199.939 447.486 199.942 447.442 199.947C447.352 199.956 447.214 199.969 447.032 199.986C446.669 200.018 446.132 200.063 445.46 200.107C444.113 200.195 442.239 200.281 440.137 200.271C435.783 200.25 431.026 199.815 427.846 198.516L426.333 202.219L424.82 205.921C429.513 207.839 435.59 208.25 440.1 208.271C442.431 208.282 444.498 208.187 445.983 208.09C446.727 208.041 447.33 207.991 447.751 207.953C447.962 207.934 448.128 207.918 448.245 207.906C448.303 207.9 448.349 207.896 448.381 207.892C448.398 207.89 448.411 207.889 448.42 207.888C448.425 207.887 448.429 207.887 448.433 207.887C448.434 207.886 448.436 207.886 448.437 207.886C448.437 207.886 448.438 207.886 448.438 207.886C448.439 207.886 448.44 207.886 448 203.91ZM426.333 202.219L427.846 198.516C422.125 196.178 417.269 190.518 413.698 184.857C411.961 182.103 410.626 179.505 409.725 177.596C409.277 176.644 408.939 175.87 408.717 175.343C408.606 175.08 408.524 174.878 408.472 174.747C408.446 174.682 408.427 174.634 408.416 174.605C408.41 174.59 408.406 174.581 408.405 174.576C408.404 174.573 408.403 174.572 408.403 174.572C408.403 174.572 408.403 174.572 408.403 174.573C408.403 174.573 408.404 174.574 408.404 174.574C408.404 174.575 408.404 174.575 404.667 176C400.929 177.425 400.929 177.426 400.93 177.427C400.93 177.427 400.93 177.428 400.931 177.429C400.931 177.431 400.932 177.433 400.933 177.436C400.935 177.441 400.937 177.447 400.94 177.454C400.946 177.469 400.954 177.489 400.963 177.513C400.982 177.563 401.009 177.631 401.044 177.718C401.113 177.891 401.213 178.137 401.344 178.447C401.605 179.066 401.988 179.943 402.49 181.008C403.491 183.132 404.98 186.03 406.931 189.124C410.737 195.159 416.715 202.609 424.82 205.921L426.333 202.219Z" fill="white" mask="url(#path-14-outside-6_17007_2267)"/> +<path d="M404.667 205.602C409.4 192.936 404.667 176 404.667 176C404.667 176 412.506 196.568 426.333 202.219C434.206 205.436 448 203.91 448 203.91C448 203.91 436.705 212.773 433 220.825C428.31 231.018 431.333 249.581 431.333 249.581C431.333 249.581 422.653 231.856 412.167 227.591C402.18 223.53 388 227.591 388 227.591C388 227.591 400.411 216.991 404.667 205.602Z" fill="#FFD25C"/> +<path d="M404.667 176L406.536 175.288C406.155 174.289 405.056 173.766 404.041 174.1C403.025 174.435 402.453 175.509 402.74 176.538L404.667 176ZM404.667 205.602L406.54 206.302V206.302L404.667 205.602ZM388 227.591L386.701 226.071C385.986 226.682 385.793 227.709 386.238 228.538C386.683 229.367 387.646 229.773 388.551 229.514L388 227.591ZM412.167 227.591L411.413 229.444V229.444L412.167 227.591ZM431.333 249.581L429.537 250.461C429.973 251.351 430.996 251.788 431.94 251.487C432.885 251.186 433.467 250.238 433.307 249.26L431.333 249.581ZM433 220.825L434.817 221.661V221.661L433 220.825ZM448 203.91L449.235 205.484C449.938 204.932 450.189 203.981 449.852 203.154C449.514 202.327 448.668 201.824 447.78 201.922L448 203.91ZM426.333 202.219L427.09 200.367L426.333 202.219ZM404.667 176C402.74 176.538 402.74 176.538 402.74 176.538C402.74 176.538 402.74 176.537 402.74 176.537C402.74 176.537 402.74 176.537 402.74 176.538C402.741 176.539 402.741 176.541 402.742 176.544C402.744 176.55 402.746 176.559 402.75 176.573C402.758 176.601 402.769 176.644 402.785 176.703C402.816 176.82 402.861 176.998 402.919 177.231C403.034 177.697 403.194 178.384 403.374 179.25C403.733 180.984 404.164 183.427 404.452 186.254C405.032 191.957 405 198.995 402.793 204.902L404.667 205.602L406.54 206.302C409.066 199.542 409.034 191.779 408.431 185.849C408.127 182.858 407.671 180.276 407.291 178.439C407.1 177.519 406.928 176.784 406.803 176.274C406.74 176.019 406.689 175.821 406.653 175.684C406.635 175.615 406.62 175.562 406.61 175.525C406.605 175.506 406.601 175.491 406.598 175.481C406.597 175.476 406.596 175.471 406.595 175.468C406.594 175.467 406.594 175.465 406.594 175.464C406.593 175.464 406.593 175.463 406.593 175.463C406.593 175.462 406.593 175.462 404.667 176ZM404.667 205.602L402.793 204.902C400.796 210.247 396.825 215.524 393.245 219.536C391.471 221.524 389.826 223.166 388.626 224.309C388.027 224.88 387.54 225.325 387.206 225.625C387.038 225.775 386.909 225.889 386.824 225.964C386.781 226.002 386.749 226.03 386.728 226.047C386.718 226.056 386.71 226.063 386.706 226.067C386.703 226.069 386.702 226.07 386.701 226.07C386.701 226.071 386.701 226.071 386.701 226.071C386.701 226.071 386.701 226.071 386.701 226.071C386.701 226.071 386.701 226.071 388 227.591C389.299 229.112 389.299 229.112 389.3 229.112C389.3 229.111 389.3 229.111 389.301 229.111C389.301 229.11 389.302 229.109 389.303 229.108C389.306 229.106 389.309 229.104 389.312 229.101C389.32 229.094 389.33 229.085 389.343 229.074C389.37 229.051 389.408 229.018 389.457 228.975C389.555 228.889 389.697 228.764 389.878 228.602C390.239 228.278 390.755 227.806 391.385 227.205C392.645 226.005 394.369 224.284 396.23 222.199C399.919 218.063 404.282 212.345 406.54 206.302L404.667 205.602ZM388 227.591C388.551 229.514 388.55 229.514 388.55 229.514C388.55 229.514 388.55 229.514 388.55 229.514C388.55 229.514 388.55 229.514 388.55 229.514C388.551 229.514 388.552 229.514 388.554 229.513C388.559 229.512 388.567 229.51 388.578 229.506C388.6 229.5 388.636 229.49 388.684 229.477C388.78 229.451 388.927 229.412 389.12 229.364C389.505 229.266 390.074 229.129 390.789 228.976C392.223 228.67 394.237 228.302 396.549 228.057C401.235 227.561 406.88 227.6 411.413 229.444L412.167 227.591L412.92 225.739C407.467 223.521 401.028 223.56 396.127 224.079C393.646 224.342 391.491 224.736 389.954 225.064C389.184 225.229 388.567 225.377 388.138 225.486C387.923 225.54 387.756 225.585 387.639 225.616C387.581 225.632 387.536 225.644 387.504 225.653C387.488 225.658 387.476 225.661 387.466 225.664C387.462 225.665 387.458 225.666 387.455 225.667C387.454 225.667 387.453 225.668 387.452 225.668C387.451 225.668 387.451 225.668 387.45 225.668C387.45 225.669 387.449 225.669 388 227.591ZM412.167 227.591L411.413 229.444C416.076 231.34 420.584 236.398 424.045 241.334C425.739 243.75 427.117 246.041 428.072 247.73C428.549 248.573 428.919 249.262 429.168 249.738C429.292 249.976 429.386 250.16 429.448 250.283C429.479 250.345 429.502 250.391 429.517 250.421C429.525 250.436 429.53 250.447 429.533 250.453C429.535 250.457 429.536 250.459 429.537 250.46C429.537 250.461 429.537 250.461 429.537 250.461C429.537 250.461 429.537 250.461 429.537 250.461C429.537 250.461 429.537 250.461 431.333 249.581C433.13 248.701 433.129 248.701 433.129 248.701C433.129 248.7 433.129 248.7 433.128 248.699C433.128 248.698 433.127 248.697 433.127 248.696C433.125 248.692 433.123 248.688 433.121 248.683C433.115 248.673 433.108 248.658 433.099 248.64C433.08 248.602 433.053 248.548 433.018 248.479C432.948 248.34 432.846 248.139 432.712 247.884C432.445 247.374 432.055 246.646 431.554 245.76C430.554 243.992 429.107 241.586 427.32 239.037C423.819 234.044 418.744 228.107 412.92 225.739L412.167 227.591ZM431.333 249.581C433.307 249.26 433.307 249.26 433.307 249.26C433.307 249.26 433.307 249.26 433.307 249.26C433.307 249.26 433.307 249.26 433.307 249.259C433.307 249.257 433.307 249.255 433.306 249.251C433.305 249.244 433.303 249.233 433.3 249.217C433.295 249.185 433.288 249.136 433.278 249.07C433.258 248.939 433.229 248.743 433.193 248.488C433.122 247.977 433.025 247.231 432.922 246.301C432.716 244.441 432.49 241.858 432.407 238.968C432.239 233.093 432.679 226.308 434.817 221.661L433 220.825L431.183 219.989C428.631 225.536 428.238 233.129 428.409 239.083C428.496 242.107 428.732 244.802 428.946 246.741C429.054 247.712 429.156 248.495 429.232 249.04C429.27 249.312 429.301 249.524 429.323 249.67C429.334 249.743 429.343 249.799 429.349 249.838C429.352 249.858 429.355 249.873 429.356 249.884C429.357 249.889 429.358 249.893 429.358 249.897C429.359 249.898 429.359 249.899 429.359 249.9C429.359 249.901 429.359 249.901 429.359 249.902C429.359 249.902 429.359 249.903 431.333 249.581ZM433 220.825L434.817 221.661C436.507 217.987 440.03 213.971 443.289 210.776C444.894 209.204 446.387 207.875 447.478 206.94C448.024 206.473 448.467 206.105 448.772 205.856C448.925 205.731 449.043 205.636 449.121 205.574C449.161 205.542 449.19 205.519 449.209 205.504C449.219 205.496 449.226 205.491 449.23 205.487C449.232 205.486 449.234 205.484 449.234 205.484C449.235 205.483 449.235 205.483 449.235 205.483C449.235 205.483 449.235 205.483 449.235 205.483C449.235 205.483 449.235 205.484 448 203.91C446.765 202.337 446.765 202.337 446.765 202.337C446.765 202.337 446.764 202.337 446.764 202.338C446.763 202.338 446.763 202.339 446.762 202.34C446.76 202.341 446.757 202.343 446.754 202.346C446.747 202.351 446.738 202.358 446.726 202.368C446.702 202.387 446.668 202.414 446.623 202.45C446.535 202.52 446.406 202.624 446.243 202.757C445.916 203.024 445.448 203.412 444.876 203.902C443.734 204.88 442.172 206.27 440.489 207.92C437.175 211.169 433.197 215.611 431.183 219.989L433 220.825ZM448 203.91C447.78 201.922 447.78 201.922 447.781 201.922C447.781 201.922 447.781 201.922 447.781 201.922C447.781 201.922 447.78 201.922 447.78 201.922C447.779 201.922 447.777 201.923 447.775 201.923C447.77 201.923 447.761 201.924 447.75 201.925C447.727 201.928 447.691 201.932 447.642 201.937C447.546 201.946 447.401 201.96 447.212 201.977C446.834 202.012 446.281 202.057 445.591 202.102C444.209 202.193 442.287 202.281 440.128 202.271C435.734 202.25 430.648 201.821 427.09 200.367L426.333 202.219L425.577 204.07C429.891 205.833 435.638 206.25 440.109 206.271C442.383 206.281 444.402 206.189 445.852 206.094C446.578 206.046 447.165 205.998 447.572 205.961C447.775 205.943 447.934 205.927 448.044 205.916C448.099 205.911 448.141 205.906 448.171 205.903C448.185 205.902 448.197 205.9 448.205 205.9C448.209 205.899 448.213 205.899 448.215 205.898C448.216 205.898 448.217 205.898 448.218 205.898C448.218 205.898 448.219 205.898 448.219 205.898C448.219 205.898 448.22 205.898 448 203.91ZM426.333 202.219L427.09 200.367C420.772 197.785 415.636 191.678 412.006 185.923C410.216 183.084 408.842 180.412 407.917 178.449C407.454 177.469 407.106 176.669 406.874 176.119C406.758 175.844 406.672 175.631 406.615 175.49C406.587 175.419 406.566 175.366 406.553 175.332C406.546 175.315 406.541 175.303 406.538 175.295C406.537 175.292 406.536 175.289 406.536 175.288C406.535 175.287 406.535 175.287 406.535 175.287C406.535 175.287 406.535 175.287 406.535 175.287C406.535 175.287 406.536 175.288 404.667 176C402.798 176.712 402.798 176.713 402.798 176.713C402.798 176.714 402.799 176.714 402.799 176.715C402.799 176.716 402.8 176.718 402.801 176.72C402.802 176.723 402.804 176.728 402.806 176.735C402.811 176.747 402.818 176.764 402.826 176.786C402.844 176.83 402.869 176.894 402.901 176.975C402.966 177.138 403.062 177.372 403.187 177.671C403.438 178.267 403.81 179.119 404.299 180.155C405.275 182.225 406.725 185.048 408.623 188.057C412.37 193.999 418.067 201.001 425.577 204.07L426.333 202.219Z" fill="black"/> +<path d="M1148.21 299.268C1150.88 283.882 1150.98 267.869 1146.7 252.756C1143.06 239.864 1136.1 227.809 1126.14 218.723C1120.62 213.686 1114.29 209.682 1107.31 206.954L1108.98 208.616L1108.67 207.259L1104.68 209.575C1113.43 216.763 1124.65 220.716 1136.01 220.525C1147.37 220.335 1157.31 216.205 1165.6 209.238C1170.11 205.444 1173.93 200.762 1176.7 195.566C1177.3 194.43 1176.98 192.977 1175.84 192.311C1174.75 191.683 1173.17 192.025 1172.57 193.167C1171.96 194.309 1171.36 195.325 1170.69 196.365C1170.37 196.866 1170.04 197.361 1169.69 197.85C1169.53 198.078 1169.37 198.307 1169.2 198.529C1169.11 198.655 1169.01 198.782 1168.91 198.909C1168.88 198.96 1168.56 199.366 1168.78 199.093C1167.29 201.016 1165.63 202.805 1163.84 204.454C1162.93 205.292 1161.99 206.091 1161.02 206.859C1160.98 206.891 1160.66 207.132 1160.93 206.929C1160.84 206.999 1160.74 207.075 1160.65 207.145C1160.43 207.309 1160.2 207.474 1159.97 207.639C1159.46 208.014 1158.93 208.375 1158.39 208.724C1156.33 210.088 1154.15 211.281 1151.88 212.29C1151.74 212.353 1151.59 212.417 1151.45 212.48C1151.45 212.48 1151.08 212.639 1151.29 212.55C1151.53 212.449 1151.07 212.639 1151.02 212.658C1150.92 212.702 1150.8 212.747 1150.69 212.791C1150.1 213.026 1149.5 213.248 1148.9 213.457C1147.72 213.863 1146.54 214.219 1145.34 214.523C1144.14 214.828 1142.86 215.094 1141.61 215.297C1141.32 215.342 1141.02 215.392 1140.73 215.431C1140.3 215.488 1141.02 215.392 1140.6 215.443C1140.43 215.462 1140.27 215.481 1140.09 215.5C1139.42 215.576 1138.74 215.634 1138.06 215.678C1135.47 215.843 1132.87 215.78 1130.29 215.494C1130.12 215.475 1129.95 215.456 1129.78 215.437C1129.74 215.437 1129.32 215.38 1129.66 215.424C1129.37 215.386 1129.07 215.342 1128.78 215.291C1128.1 215.183 1127.43 215.063 1126.77 214.929C1125.47 214.669 1124.19 214.352 1122.92 213.978C1120.04 213.127 1117.82 212.246 1115.23 210.888C1113.91 210.203 1112.63 209.448 1111.38 208.629C1110.14 207.811 1109.12 207.062 1108.07 206.206C1107.25 205.527 1106.16 205.267 1105.18 205.831C1104.21 206.396 1103.84 207.487 1104.07 208.521C1104.15 208.883 1104.23 209.251 1104.31 209.613C1104.63 210.881 1105.47 211.307 1106.6 211.763C1106.79 211.84 1106.97 211.916 1107.16 211.992C1106.84 211.859 1107.21 212.011 1107.26 212.036C1107.63 212.195 1107.99 212.36 1108.36 212.525C1109.16 212.893 1109.95 213.28 1110.73 213.679C1113.56 215.151 1116.27 216.864 1118.82 218.787C1118.82 218.787 1119.44 219.263 1119.1 218.996C1119.23 219.091 1119.35 219.193 1119.48 219.294C1119.79 219.542 1120.1 219.796 1120.41 220.049C1121.06 220.582 1121.69 221.128 1122.32 221.693C1123.54 222.79 1124.72 223.932 1125.86 225.119C1126.99 226.305 1128.04 227.479 1129.06 228.716C1129.31 229.027 1129.57 229.338 1129.81 229.655C1129.92 229.782 1130.01 229.909 1130.11 230.036C1130.59 230.645 1129.98 229.858 1130.26 230.22C1130.77 230.892 1131.27 231.571 1131.76 232.263C1133.65 234.927 1135.35 237.719 1136.85 240.619C1138.49 243.785 1139.56 246.297 1140.71 249.634C1143.26 256.975 1144.66 264.5 1145.13 272.119C1145.66 280.805 1145.06 289.605 1143.6 298.018C1143.39 299.243 1143.92 300.638 1145.27 300.943C1146.43 301.203 1147.98 300.594 1148.21 299.281L1148.21 299.268Z" fill="#090909"/> +<path d="M58.1464 138.347C56.6261 147.497 56.631 156.789 58.0831 165.949C59.5351 175.108 62.4052 183.77 66.5762 191.881C70.7473 199.992 75.9611 206.96 82.2859 213.11C88.6107 219.261 95.647 224.235 103.37 228.105C111.04 231.946 119.27 234.67 127.739 235.975C128.884 236.152 130.029 236.305 131.179 236.437V232.744C121.891 232.867 112.745 234.95 104.213 238.619C95.7931 242.239 88.0406 247.508 81.5355 254.013C77.8517 257.696 74.5724 261.808 71.7901 266.23C71.2589 267.073 71.6147 268.269 72.4479 268.757C73.3299 269.279 74.4165 268.939 74.9476 268.092C77.3596 264.266 79.8837 261.035 83.0363 257.736C84.5615 256.14 86.1598 254.623 87.8214 253.181C89.5755 251.659 91.013 250.536 92.8793 249.212C100.188 244.026 108.019 240.412 116.634 238.299C117.857 237.999 119.085 237.733 120.322 237.501C120.927 237.388 121.526 237.284 122.135 237.186C122.423 237.142 122.71 237.097 122.998 237.053C123.124 237.033 123.251 237.019 123.383 236.999C123.076 237.043 123.607 236.969 123.665 236.964C126.165 236.644 128.674 236.472 131.194 236.437C132.183 236.423 133.021 235.6 133.021 234.591C133.021 233.498 132.178 232.857 131.194 232.744C129.327 232.527 127.364 232.217 125.307 231.809C123.251 231.4 121.234 230.912 119.231 230.341C117.228 229.77 115.24 229.125 113.281 228.406C111.323 227.687 109.612 226.983 107.746 226.126C103.979 224.392 100.344 222.378 96.87 220.103C93.3958 217.828 90.2821 215.44 87.1489 212.613C80.7754 206.866 75.5762 200.425 71.3564 192.989C67.1366 185.553 63.9937 177.132 62.2444 168.401C61.377 164.078 60.8946 160.044 60.7192 155.578C60.5438 151.111 60.7192 146.694 61.2601 142.292C61.3624 141.455 61.5232 140.356 61.6938 139.332C61.8643 138.308 61.416 137.338 60.3976 137.057C59.5205 136.816 58.3121 137.357 58.1513 138.347H58.1464Z" fill="black"/> +<path d="M280.03 346.635C290.015 351.378 296.505 361.613 296.255 372.346C296.255 380.833 292.761 389.071 288.268 396.06C274.039 417.528 248.078 428.262 223.366 430.508C197.904 432.755 169.946 427.513 152.972 406.545C145.234 397.059 141.24 384.827 140.491 372.846C139.243 356.37 143.986 340.644 149.477 325.417C161.21 293.715 185.423 253.027 224.115 253.027C239.591 253.027 254.818 259.767 263.805 272.997C276.036 291.219 277.534 317.429 269.546 337.399C265.302 337.15 261.558 336.9 257.564 336.9C249.826 336.9 242.087 337.399 234.349 338.148C232.102 338.148 230.355 338.398 228.608 339.146C225.862 333.655 224.364 327.414 223.366 321.923C222.617 317.18 221.868 312.187 220.869 307.444C220.62 306.196 219.372 305.447 218.124 305.447C216.876 305.447 215.627 306.196 215.627 307.444C215.378 307.944 215.378 308.443 215.378 309.192C212.632 324.169 206.641 339.895 197.155 351.877C190.416 357.369 185.173 364.608 185.173 373.844C185.173 380.833 187.919 387.324 193.91 391.068C199.901 394.563 207.14 395.561 213.88 395.312C223.615 395.062 232.602 391.817 240.839 387.573C244.334 385.826 241.588 381.083 238.093 382.83C230.106 387.074 221.119 389.82 212.133 389.82C206.641 389.82 200.151 389.071 195.658 385.576C190.416 381.582 189.916 373.095 191.913 367.354C193.661 362.611 197.405 358.867 201.898 355.871C207.39 351.128 218.623 346.635 225.363 345.387C225.612 345.387 225.612 345.637 225.612 345.886C229.856 352.876 237.844 358.367 245.832 359.616C253.32 360.614 260.31 358.367 265.802 353.375C268.547 350.879 270.794 347.634 272.541 343.889C275.287 344.638 277.783 345.637 280.03 346.635ZM242.337 343.14C250.325 342.641 258.812 342.142 267.05 342.891C265.802 344.888 264.803 346.386 263.555 347.883C259.062 352.376 253.071 355.122 246.581 354.124C239.841 352.876 234.848 348.882 231.603 344.139C235.098 343.64 238.842 343.39 242.337 343.14ZM361.469 253.276C400.66 253.276 418.632 293.466 418.632 327.913C418.632 336.9 417.384 346.386 415.138 355.622C404.903 399.805 372.203 431.507 339.502 431.507C320.531 431.507 305.803 421.272 295.818 405.546C283.087 385.576 279.593 356.87 286.083 329.162C296.567 284.978 328.768 253.276 361.469 253.276ZM357.475 317.679C347.989 332.906 340.501 348.882 335.258 366.106C334.759 368.103 336.257 369.351 338.004 369.351C339.252 369.351 340.251 368.852 340.501 367.354C345.743 350.879 352.982 335.153 361.968 320.425C363.466 318.428 361.469 316.181 359.721 316.181C358.723 316.181 357.974 316.68 357.475 317.679ZM632.817 275.992C633.566 295.962 627.575 316.181 620.336 334.653C611.1 358.617 598.12 382.082 581.645 402.051C573.906 411.787 564.421 421.023 552.938 426.514C543.952 430.758 532.968 431.008 525.48 423.769C517.242 415.531 514.995 402.051 513.747 390.818C512.25 375.092 512.998 358.867 514.496 343.14C514.746 339.146 515.495 335.402 515.744 331.658C515.744 331.408 515.744 331.159 515.994 330.659C516.244 327.664 511.002 326.915 510.253 330.16C510.253 330.16 510.253 330.41 510.253 330.659C505.51 351.877 500.268 372.596 492.28 392.566C489.035 400.803 485.29 408.791 480.548 416.03C477.053 421.522 472.809 427.263 467.068 430.508C462.325 433.254 457.083 434.003 451.841 432.256C446.849 430.758 443.603 427.513 441.357 423.02C438.861 417.778 437.862 411.787 437.613 405.796C437.113 398.806 437.862 391.567 438.361 384.328C440.109 371.597 442.855 358.617 446.849 345.886C451.591 331.658 457.582 317.679 465.071 304.199C472.06 291.718 480.048 279.986 490.283 270.5C497.772 263.261 507.507 256.771 518.49 257.52C531.72 257.77 539.209 271.499 542.953 282.732C548.944 301.204 546.448 321.423 546.947 340.644C546.947 343.39 550.941 344.888 552.189 342.142C552.439 341.643 552.688 341.393 552.688 340.644C560.427 324.419 566.168 306.696 573.157 289.971C577.151 281.733 581.145 273.745 585.888 265.757C590.381 258.518 595.873 250.281 603.611 246.287C611.1 242.293 618.589 245.288 623.831 251.03C630.071 257.77 632.318 267.255 632.817 275.992ZM774.066 293.216C775.564 307.195 775.564 321.923 774.066 336.151C772.818 349.381 770.821 362.361 768.325 375.342C764.331 394.063 755.344 432.505 730.382 432.505C720.148 432.505 716.403 423.519 715.155 414.532C714.157 408.542 714.157 402.051 714.656 396.06C714.906 394.563 715.155 392.815 715.654 391.068C716.154 388.821 714.406 387.573 712.659 387.573C711.66 387.573 710.662 388.072 710.163 389.321C703.173 411.787 689.694 428.262 665.48 430.009C657.992 430.758 650.004 430.508 643.014 428.262C627.787 423.269 620.798 407.793 617.553 393.315C614.308 378.088 614.308 362.112 615.556 346.635C617.054 325.168 623.544 290.72 633.778 272.248C639.52 261.764 648.506 251.779 661.486 252.777C675.715 253.776 681.706 268.503 683.703 280.735C685.2 291.469 685.2 302.702 684.951 313.435C684.701 332.157 683.952 350.879 681.206 369.101C680.957 371.098 682.704 372.596 684.202 372.596C685.2 372.596 686.199 372.097 686.698 370.599C691.441 350.13 696.433 329.661 702.674 309.192C707.167 295.213 712.16 280.485 719.898 267.754C720.148 267.505 720.148 267.505 720.148 267.255L720.896 266.506C721.146 266.257 721.396 266.007 721.396 265.757C721.895 265.757 721.895 265.508 722.145 265.009C727.387 257.27 738.37 253.526 747.356 253.526C752.349 253.526 757.092 254.524 760.836 257.27C770.322 265.258 772.818 281.733 774.066 293.216ZM918.299 277.49C918.548 282.482 917.55 286.975 915.303 290.969C907.814 303.95 890.59 309.441 876.861 311.438C871.869 312.187 867.126 312.437 862.383 312.437C860.885 312.437 860.137 312.936 859.887 314.184C859.637 314.683 859.637 315.183 859.637 315.932C862.633 329.162 865.878 342.142 866.876 355.622C867.376 362.611 867.126 369.85 866.627 376.839C865.129 390.319 861.634 404.298 854.395 415.781C850.651 421.522 845.908 426.265 839.667 429.011C833.177 432.006 824.94 432.256 817.95 430.259C802.474 426.265 798.979 408.542 799.229 394.812C799.478 382.83 801.974 370.849 805.719 359.366C809.962 345.886 815.953 332.906 822.943 320.425C823.442 319.676 823.192 318.428 822.693 317.679C822.444 316.68 821.445 315.682 819.947 316.431C819.448 316.68 819.198 316.68 819.198 316.93C815.704 317.929 812.209 318.178 808.465 318.677C802.723 319.177 797.232 319.426 791.74 318.677C780.757 317.18 768.275 312.936 763.533 302.202C762.534 300.205 762.285 297.959 761.536 295.962C761.536 295.712 761.536 295.712 761.536 295.712C761.536 295.213 761.536 294.963 761.536 294.714C761.536 294.464 761.536 293.965 761.536 293.466C761.536 292.217 761.536 291.469 761.536 290.47C761.536 290.22 761.536 289.971 761.536 289.472L762.035 289.222C762.035 288.723 762.035 288.224 762.285 287.475C763.033 284.479 763.533 282.732 765.28 279.986C767.027 277.24 769.274 274.994 772.02 272.497C780.757 265.258 792.239 261.264 803.223 258.768C822.194 254.524 842.164 253.276 861.385 253.526C874.864 253.776 888.843 255.024 901.324 259.767C903.072 260.515 905.069 261.514 907.066 262.263C908.563 263.511 910.061 264.509 911.059 265.258C913.556 267.505 914.804 268.753 916.302 271.499C916.551 271.748 916.551 272.248 916.801 272.747C916.801 272.747 916.801 272.747 916.801 272.997C917.05 273.496 917.3 274.245 917.55 274.994C917.55 275.493 917.799 275.992 917.799 276.491C917.799 276.741 917.799 276.991 917.799 276.991C917.799 277.24 917.799 277.24 917.799 277.24C918.299 277.24 918.299 277.24 918.299 277.24C918.299 277.49 918.299 277.49 918.299 277.49ZM1035.57 340.644C1052.05 355.122 1056.54 381.333 1045.06 400.054C1030.08 425.017 997.382 430.508 970.672 430.259C955.695 430.259 940.218 428.262 926.239 422.271C917.253 418.277 908.766 412.286 903.524 403.549C899.53 396.809 897.782 389.071 898.531 381.582C899.28 376.091 901.527 370.599 906.02 366.355C910.763 362.112 917.253 360.364 923.493 360.614C927.737 360.864 931.481 361.613 935.226 362.861C947.207 371.597 961.436 377.588 975.914 380.833C980.907 382.082 986.398 382.331 991.89 383.33C995.385 383.829 995.385 378.337 991.89 377.838C972.419 375.591 953.198 369.101 937.722 357.868C928.985 351.378 921.496 343.39 915.755 333.655C913.009 329.411 910.763 324.668 909.514 320.175C908.766 317.929 908.017 315.682 907.518 313.935C907.268 311.688 907.018 310.44 906.769 308.942C905.521 293.216 912.76 278.738 924.492 268.753C930.982 263.261 938.72 259.517 946.958 257.021C956.194 254.025 965.68 253.526 975.415 253.526C990.642 253.776 1007.62 255.523 1021.1 262.762C1028.83 267.006 1034.33 272.747 1035.82 280.984C1035.82 281.234 1035.82 281.484 1035.82 281.733C1035.82 281.733 1035.82 281.983 1035.82 282.981C1036.07 283.73 1036.07 284.479 1036.07 285.228C1035.82 287.475 1035.82 287.724 1035.32 289.721C1035.32 290.47 1035.07 290.969 1034.82 291.968C1034.82 292.217 1034.58 292.717 1034.58 292.966C1034.58 292.966 1034.58 293.216 1034.33 293.216V293.466C1034.08 293.715 1033.83 293.715 1033.58 294.464C1031.83 298.208 1030.08 301.703 1027.34 304.948C1019.1 314.683 1006.12 316.93 993.887 313.685C990.642 312.687 987.397 311.688 984.152 310.44C983.153 309.691 982.155 309.192 980.907 308.443C980.657 308.443 980.158 308.193 979.908 308.193C975.165 305.697 970.672 302.702 967.177 299.207C966.678 298.708 965.929 298.208 965.43 297.46C965.18 297.21 964.931 296.96 964.931 296.96C964.931 296.96 964.931 296.96 964.931 296.711H964.681C964.681 296.711 964.681 296.711 964.681 296.461C962.434 293.466 957.941 296.211 959.689 299.207C961.935 302.702 965.43 305.447 968.675 307.694C972.17 310.19 976.164 312.437 979.908 314.434C980.158 314.434 980.158 314.434 980.158 314.434C998.13 324.169 1019.85 326.665 1035.57 340.644ZM1085.13 403.299C1088.12 412.036 1086.62 422.77 1077.89 427.762C1069.9 432.505 1059.66 430.758 1051.93 426.265C1043.19 421.522 1037.7 413.784 1037.7 403.799C1037.7 397.808 1039.69 392.066 1044.69 388.072C1049.18 384.079 1055.92 382.83 1061.66 383.829C1072.15 385.576 1081.63 392.815 1085.13 403.299ZM1085.62 255.773C1089.37 268.254 1089.37 282.233 1088.87 295.213C1088.62 303.95 1087.12 311.938 1085.62 320.425C1083.63 330.909 1081.13 341.892 1076.39 351.877C1074.64 355.871 1072.15 359.865 1068.9 362.861C1066.15 365.606 1063.41 367.104 1059.66 366.855C1056.92 366.355 1054.17 364.858 1052.18 362.112C1050.18 359.366 1048.43 355.372 1047.68 351.877C1045.19 342.142 1045.19 332.157 1045.69 322.422C1045.93 317.929 1046.18 313.435 1046.68 308.942C1046.93 305.447 1047.18 302.452 1047.68 299.706C1047.68 298.957 1047.93 298.208 1048.18 297.46C1049.43 289.472 1051.68 281.983 1054.17 274.494C1055.92 269.252 1057.67 264.26 1060.41 259.267C1062.66 255.024 1065.41 250.78 1069.4 247.785C1072.15 245.788 1076.14 244.29 1078.88 245.538C1082.38 247.285 1084.38 252.028 1085.62 255.773Z" fill="white"/> +<path d="M290.009 350.13C304.986 367.853 296.499 392.566 282.271 407.793C262.051 430.009 229.85 438.247 200.644 436.499C173.934 435.002 147.724 421.522 136.491 396.06C130.5 382.581 129.751 367.603 131.748 353.125C133.246 343.64 135.992 334.653 139.487 325.917C150.22 292.467 176.181 252.028 213.375 247.535C226.355 245.788 241.332 249.282 252.316 257.27C261.802 264.26 268.541 274.744 272.286 286.227C275.281 296.461 276.529 307.195 275.78 317.929C274.782 324.918 273.534 332.157 271.038 339.146C278.027 340.644 285.016 344.139 290.009 350.13ZM276.03 346.635C273.783 345.637 271.287 344.638 268.541 343.889C266.794 347.634 264.547 350.879 261.802 353.375C256.31 358.367 249.32 360.614 241.832 359.616C233.844 358.367 225.856 352.876 221.612 345.886C221.612 345.637 221.612 345.387 221.363 345.387C214.623 346.635 203.39 351.128 197.898 355.871C193.405 358.867 189.661 362.611 187.913 367.354C185.916 373.095 186.416 381.582 191.658 385.576C196.151 389.071 202.641 389.82 208.133 389.82C217.119 389.82 226.106 387.074 234.093 382.83C237.588 381.083 240.334 385.826 236.839 387.573C228.602 391.817 219.615 395.062 209.88 395.312C203.14 395.561 195.901 394.563 189.91 391.068C183.919 387.324 181.173 380.833 181.173 373.844C181.173 364.608 186.416 357.369 193.155 351.877C202.641 339.895 208.632 324.169 211.378 309.192C211.378 308.443 211.378 307.944 211.627 307.444C211.627 306.196 212.876 305.447 214.124 305.447C215.372 305.447 216.62 306.196 216.869 307.444C217.868 312.187 218.617 317.18 219.366 321.923C220.364 327.414 221.862 333.655 224.608 339.146C226.355 338.398 228.102 338.148 230.349 338.148C238.087 337.399 245.826 336.9 253.564 336.9C257.558 336.9 261.302 337.15 265.546 337.399C273.534 317.429 272.036 291.219 259.805 272.997C250.818 259.767 235.591 253.027 220.115 253.027C181.423 253.027 157.21 293.715 145.477 325.417C139.986 340.644 135.243 356.37 136.491 372.846C137.24 384.827 141.234 397.059 148.972 406.545C165.946 427.513 193.904 432.755 219.366 430.508C244.078 428.262 270.039 417.528 284.268 396.06C288.761 389.071 292.255 380.833 292.255 372.346C292.505 361.613 286.015 351.378 276.03 346.635ZM213.874 322.172C211.378 330.16 208.133 338.148 204.139 345.387C207.134 343.889 210.379 342.641 213.375 341.892C214.872 340.894 216.869 340.395 218.617 340.145C216.869 336.151 213.874 326.665 213.874 322.172ZM238.337 343.14C234.842 343.39 231.098 343.64 227.603 344.139C230.848 348.882 235.841 352.876 242.581 354.124C249.071 355.122 255.062 352.376 259.555 347.883C260.803 346.386 261.802 344.888 263.05 342.891C254.812 342.142 246.325 342.641 238.337 343.14ZM406.145 275.742C419.625 296.96 423.369 327.165 416.38 356.62C407.643 393.814 377.688 436.998 335.502 436.998C315.283 436.998 297.809 425.516 287.075 408.791C273.596 387.573 269.602 357.369 276.591 327.664C287.575 280.984 322.522 247.535 357.718 247.535C378.188 247.535 394.912 258.768 406.145 275.742ZM414.632 327.913C414.632 293.466 396.66 253.276 357.469 253.276C324.768 253.276 292.567 284.978 282.083 329.162C275.593 356.87 279.087 385.576 291.818 405.546C301.803 421.272 316.531 431.507 335.502 431.507C368.203 431.507 400.903 399.805 411.138 355.622C413.384 346.386 414.632 336.9 414.632 327.913ZM353.475 317.679C353.974 316.68 354.723 316.181 355.721 316.181C357.469 316.181 359.466 318.428 357.968 320.425C348.982 335.153 341.743 350.879 336.501 367.354C336.251 368.852 335.252 369.351 334.004 369.351C332.257 369.351 330.759 368.103 331.258 366.106C336.501 348.882 343.989 332.906 353.475 317.679ZM629.816 255.773C634.309 264.759 635.058 275.243 634.309 285.228C632.811 306.446 626.071 326.665 617.834 345.886C605.353 375.342 574.4 428.511 542.947 434.752C531.215 436.998 519.982 432.755 513.242 422.77C505.504 411.287 504.256 396.06 503.257 382.83C503.257 377.588 503.008 372.346 503.257 367.104C497.017 389.321 480.791 438.746 453.333 438.746C442.1 438.746 435.11 433.005 430.867 422.77C425.874 409.54 427.372 394.063 429.369 380.584C430.867 368.352 433.613 356.37 437.357 344.638C446.843 313.935 476.298 251.529 513.242 251.529C531.465 251.529 541.2 269.003 545.693 284.479C549.437 298.208 548.938 312.187 548.688 326.416C548.938 326.166 548.938 325.667 548.938 325.667C556.676 307.195 562.667 288.473 571.903 271.249C579.392 257.52 592.622 234.555 611.843 239.298C619.831 241.295 626.321 248.284 629.816 255.773ZM628.817 275.992C628.068 263.761 621.828 244.54 606.601 244.54C595.617 244.54 586.881 257.52 581.888 265.757C577.145 273.745 573.151 281.733 569.157 289.971C562.168 306.696 556.427 324.419 548.688 340.644C548.688 342.142 547.44 343.64 545.943 343.64C544.445 343.64 542.947 342.392 542.947 340.644C542.448 321.423 544.944 301.204 538.953 282.732C535.209 271.499 527.72 257.77 514.49 257.52C503.507 256.771 493.772 263.261 486.283 270.5C457.826 296.96 439.354 347.134 434.361 384.328C433.862 391.567 433.113 398.806 433.613 405.796C434.112 418.277 438.355 433.254 453.582 433.254C483.537 433.254 501.26 353.375 506.253 330.659C506.253 330.41 506.253 330.16 506.253 330.16C506.502 328.662 507.75 328.163 508.998 328.163C510.496 328.163 512.244 328.912 511.994 330.659C511.744 331.159 511.744 331.408 511.744 331.658C511.495 335.402 510.746 339.146 510.496 343.14C508.998 358.867 508.25 375.092 509.747 390.818C511.495 406.794 515.988 429.51 536.207 429.51C570.655 429.51 605.852 361.862 616.336 334.653C623.575 316.181 629.566 295.962 628.817 275.992ZM776.806 305.697C777.055 319.177 776.806 332.656 774.809 345.886C772.562 362.112 770.066 378.587 765.573 394.313C761.329 408.542 755.089 424.517 742.358 433.005C736.617 436.749 729.378 438.995 722.388 437.747C708.909 435.75 705.164 418.526 704.665 407.293C693.432 427.263 676.957 436.499 654.241 436.499C626.034 436.499 613.054 419.525 607.811 392.566C602.569 366.106 605.814 338.148 611.057 311.938C614.302 295.213 618.795 277.49 628.78 263.511C634.771 254.025 644.256 247.285 655.739 247.285C674.71 247.285 683.197 264.26 685.444 280.984C686.942 293.216 686.443 305.447 686.443 317.429C686.443 322.921 686.193 328.662 686.193 334.404C689.438 321.174 692.933 308.193 697.426 295.463C704.665 273.745 715.149 247.535 742.608 247.535C772.313 247.535 776.057 282.732 776.806 305.697ZM770.066 293.216C768.818 281.733 766.322 265.258 756.836 257.27C753.092 254.524 748.349 253.526 743.356 253.526C734.37 253.526 723.387 257.27 718.145 265.009C717.895 265.508 717.895 265.757 717.396 265.757C717.396 266.007 717.146 266.257 716.896 266.506L716.148 267.255C716.148 267.505 716.148 267.505 715.898 267.754C708.16 280.485 703.167 295.213 698.674 309.192C692.433 329.661 687.441 350.13 682.698 370.599C682.199 372.097 681.2 372.596 680.202 372.596C678.704 372.596 676.957 371.098 677.206 369.101C679.952 350.879 680.701 332.157 680.951 313.435C681.2 302.702 681.2 291.469 679.703 280.735C677.706 268.503 671.715 253.776 657.486 252.777C644.506 251.779 635.52 261.764 629.778 272.248C619.544 290.72 613.054 325.168 611.556 346.635C610.308 362.112 610.308 378.088 613.553 393.315C616.798 407.793 623.787 423.269 639.014 428.262C646.004 430.508 653.992 430.758 661.48 430.009C685.694 428.262 699.173 411.787 706.163 389.321C706.662 388.072 707.66 387.573 708.659 387.573C710.406 387.573 712.154 388.821 711.654 391.068C711.155 392.815 710.906 394.563 710.656 396.06C710.157 402.051 710.157 408.542 711.155 414.532C712.403 423.519 716.148 432.505 726.382 432.505C759.832 432.505 768.069 360.364 770.066 336.151C771.564 321.923 771.564 307.195 770.066 293.216ZM919.041 273.745C921.538 284.479 917.044 295.213 909.306 302.202C896.825 313.935 878.353 317.429 861.878 317.929L863.376 325.168C866.371 338.398 868.867 351.877 868.618 365.357C868.618 394.563 858.133 437.248 822.188 437.248C816.946 437.248 811.454 436 806.711 433.504C790.985 425.017 788.738 404.048 789.987 388.322C791.984 365.606 800.221 343.64 810.955 323.67C806.711 324.419 801.719 324.918 796.726 324.918C777.256 324.918 755.788 317.929 752.543 296.96C750.546 283.231 758.784 271.249 770.017 264.26C790.735 251.03 823.686 247.785 848.149 247.785C869.616 247.785 912.801 249.282 919.041 273.745ZM914.299 277.49V277.24C914.299 277.24 914.299 277.24 913.799 277.24V276.491C913.799 276.242 913.799 276.242 913.799 275.992L913.55 275.243C913.3 274.245 913.05 273.496 912.801 272.997C912.551 272.248 912.551 271.748 912.302 271.499C910.804 268.753 909.556 267.505 907.059 265.258C906.061 264.509 904.563 263.511 903.066 262.263C901.069 261.514 899.072 260.515 897.324 259.767C884.843 255.024 870.864 253.776 857.385 253.526C838.164 253.276 818.194 254.524 799.223 258.768C783.496 262.263 762.778 270.001 758.285 287.475C758.035 288.224 758.035 288.723 758.035 289.222L757.536 289.472V295.962C758.285 297.959 758.534 300.205 759.533 302.202C764.275 312.936 776.757 317.18 787.74 318.677C793.232 319.426 798.723 319.177 804.465 318.677C808.209 318.178 811.704 317.929 815.198 316.93C815.198 316.68 815.448 316.68 815.947 316.431C817.445 315.682 818.444 316.68 818.693 317.679C819.192 318.428 819.442 319.676 818.943 320.425C806.711 342.392 795.728 369.351 795.229 394.812C794.979 408.542 798.474 426.265 813.95 430.259C816.946 431.008 820.191 431.507 823.186 431.507C850.645 431.507 860.13 399.306 862.627 376.839C863.126 369.85 863.376 362.611 862.876 355.622C861.878 342.142 858.633 329.162 855.637 315.932C855.637 315.183 855.637 314.683 855.887 314.184C856.137 312.936 856.885 312.437 858.383 312.437C876.356 312.437 901.817 307.444 911.303 290.969C913.55 286.975 914.548 282.482 914.299 277.49ZM1043.81 345.886C1051.04 356.37 1054.04 370.349 1052.79 382.83C1048.3 422.52 1004.12 435.75 969.917 435.75C940.961 435.75 900.772 428.511 890.537 397.558C887.542 388.322 888.291 377.339 893.033 368.852C899.274 357.868 910.757 354.373 921.99 355.372C914.002 347.883 907.262 338.647 902.519 327.913C898.275 317.929 896.278 307.694 897.776 296.711C900.522 278.738 913.752 264.26 929.728 256.272C942.459 249.782 956.437 247.785 970.416 247.785C989.138 247.785 1014.1 250.531 1028.08 263.511C1034.32 269.252 1038.06 277.49 1037.56 286.227C1037.32 290.22 1036.07 293.965 1034.32 297.709C1028.33 309.941 1019.84 318.677 1005.86 320.425C1020.09 326.166 1034.32 332.407 1043.81 345.886ZM1031.57 340.644C1015.85 326.665 994.13 324.169 976.158 314.434H975.908C969.418 310.939 959.683 305.447 955.689 299.207C954.44 297.21 956.188 295.213 958.185 295.213C959.183 295.213 959.932 295.463 960.681 296.711H960.931C960.931 296.96 961.18 297.21 961.43 297.46C963.926 301.454 972.164 306.196 976.158 308.193L976.657 308.443C978.155 309.192 979.153 309.691 980.152 310.44C986.642 312.936 993.382 315.183 1000.37 315.183C1015.35 315.183 1023.59 307.195 1029.58 294.464C1029.83 293.715 1030.08 293.715 1030.33 293.466V293.216C1030.58 293.216 1030.58 292.966 1030.58 292.717L1030.82 292.217C1031.07 290.969 1031.32 290.47 1031.32 289.721C1031.82 287.724 1031.82 287.475 1032.07 285.228C1032.07 284.479 1032.07 283.73 1031.82 282.981V280.984C1027.58 257.27 990.137 253.776 971.415 253.526C953.192 253.526 934.72 256.521 920.492 268.753C908.76 278.738 901.521 293.216 902.769 308.942C903.018 310.44 903.268 311.688 903.518 313.935C905.514 320.924 907.761 327.664 911.755 333.655C927.731 360.864 957.436 374.343 987.89 377.838C991.385 378.337 991.385 383.829 987.89 383.33C982.398 382.331 976.907 382.082 971.914 380.833C957.436 377.588 943.207 371.597 931.226 362.861C927.481 361.613 923.737 360.864 919.493 360.614C913.253 360.364 906.763 362.112 902.02 366.355C897.527 370.599 895.28 376.091 894.531 381.582C893.782 389.071 895.53 396.809 899.524 403.549C912.504 425.017 943.956 430.259 966.672 430.259C993.382 430.508 1026.08 425.017 1041.06 400.054C1052.54 381.333 1048.05 355.122 1031.57 340.644ZM1069.64 240.046C1081.62 237.55 1086.12 250.78 1088.11 260.266C1090.86 274.245 1090.61 288.723 1089.61 302.951C1088.11 321.423 1079.13 372.097 1057.16 372.097C1054.67 372.097 1052.42 371.597 1050.17 370.349C1041.93 366.855 1038.94 356.62 1037.69 348.632C1034.7 331.408 1036.19 313.186 1038.94 296.211C1041.69 279.986 1051.42 243.541 1069.64 240.046ZM1081.62 255.773C1080.38 252.028 1078.38 247.285 1074.88 245.538C1072.14 244.29 1068.15 245.788 1065.4 247.785C1053.92 256.521 1046.18 284.479 1044.18 297.46C1043.93 298.208 1043.68 298.957 1043.68 299.706C1043.18 302.452 1042.93 305.447 1042.68 308.942C1042.18 313.435 1041.93 317.929 1041.69 322.422C1041.19 332.157 1041.19 342.142 1043.68 351.877C1044.93 358.118 1048.67 365.606 1055.66 366.855C1059.41 367.104 1062.15 365.606 1064.9 362.861C1077.88 350.879 1084.37 311.438 1084.87 295.213C1085.37 282.233 1085.37 268.254 1081.62 255.773ZM1088.11 407.543C1089.86 419.525 1083.62 430.758 1071.64 434.752C1068.64 435.75 1065.65 436.25 1062.65 436.25C1054.67 436.25 1046.68 433.254 1040.69 428.511C1030.95 421.023 1026.21 408.292 1029.2 396.31C1030.95 390.069 1034.45 384.827 1039.94 381.582C1045.68 378.337 1052.67 377.339 1059.41 378.587C1073.89 381.083 1086.12 392.815 1088.11 407.543ZM1081.13 403.299C1077.63 392.815 1068.15 385.576 1057.66 383.829C1051.92 382.83 1045.18 384.079 1040.69 388.072C1035.69 392.066 1033.7 397.808 1033.7 403.799C1033.7 419.026 1048.42 430.508 1063.15 430.508C1066.9 430.508 1070.64 429.759 1073.89 427.762C1082.62 422.77 1084.12 412.036 1081.13 403.299Z" fill="black"/> +</g> +<path d="M132.11 140.72L140.378 91.9783H153.599L145.328 140.72H132.11ZM193.034 93.0475C189.24 91.6665 185.232 90.9736 181.196 91.0009C168.149 91.0009 158.957 97.6035 158.878 107.068C158.806 114.064 165.441 117.966 170.45 120.293C175.591 122.681 177.318 124.202 177.293 126.334C177.261 129.596 173.188 131.086 169.394 131.086C164.107 131.086 161.301 130.34 156.962 128.532L155.262 127.759L153.408 138.656C156.492 140.014 162.197 141.192 168.117 141.252C181.998 141.252 191.009 134.727 191.113 124.62C191.163 119.082 187.648 114.867 180.026 111.393C175.41 109.155 172.584 107.638 172.613 105.357C172.613 103.336 175.007 101.172 180.177 101.172C183.564 101.096 186.93 101.731 190.059 103.037L191.242 103.599L193.034 93.0475ZM226.999 91.9783H216.827C213.677 91.9783 211.318 92.8437 209.935 96.002L190.383 140.471H204.299C204.299 140.471 206.527 134.558 207.039 133.259L223.712 133.279C224.101 134.961 225.296 140.471 225.296 140.471H237.651L226.999 91.9783ZM210.826 123.312C211.917 120.507 216.087 109.704 216.087 109.704C216.008 109.834 217.171 106.884 217.837 105.056L218.73 109.254C218.73 109.254 221.26 120.875 221.787 123.312H210.826ZM120.891 91.9783L107.992 125.1L106.618 118.368C104.218 110.61 96.7362 102.204 88.3711 97.9964L100.166 140.471L114.105 140.456L134.847 91.9783H120.827" fill="white"/> +<path d="M95.373 91.9777H74.1708L74 92.9898C90.5668 97.0209 101.528 106.759 106.079 118.457L101.449 96.0759C100.649 92.9948 98.333 92.0746 95.4646 91.9677" fill="white"/> +<path d="M1036.47 641.198C1038.53 640.899 1040.7 641.385 1042.45 642.56C1044.15 643.68 1045.46 645.421 1046.05 647.4C1046.92 650.151 1046.38 653.313 1044.63 655.587C1042.31 658.347 1040.53 661.535 1038.98 664.797C1035.29 672.745 1033.38 681.482 1032.92 690.244C1032.74 693.557 1032.77 696.88 1032.99 700.19C1033.12 702.19 1032.57 704.235 1031.45 705.879C1030.23 707.7 1028.32 709.027 1026.22 709.523C1024.41 709.956 1022.47 709.787 1020.76 709.04C1018.2 707.942 1016.22 705.526 1015.63 702.746C1015.37 701.552 1015.38 700.322 1015.31 699.108C1014.85 688.67 1015.97 678.124 1018.96 668.116C1020.28 663.66 1021.98 659.317 1024.05 655.167C1025.96 651.408 1028.13 647.765 1030.77 644.499C1032.17 642.713 1034.24 641.493 1036.47 641.198ZM1034.58 645.206C1033.86 645.665 1033.3 646.326 1032.77 646.999C1030.83 649.474 1029.18 652.168 1027.68 654.942C1031.07 656.671 1034.34 658.653 1037.45 660.862C1038.81 658.331 1040.31 655.855 1042.16 653.658C1043.46 651.993 1043.72 649.573 1042.83 647.654C1042.13 646.1 1040.73 644.894 1039.11 644.472C1037.59 644.06 1035.9 644.321 1034.58 645.206ZM1020.51 674.452C1018.53 683.212 1017.94 692.277 1018.53 701.241C1018.66 703.04 1019.67 704.746 1021.18 705.691C1023.28 707.1 1026.29 706.82 1028.09 705.023C1029.32 703.87 1030 702.134 1029.89 700.429C1029.27 690.898 1030.13 681.216 1032.9 672.071C1033 671.704 1033.18 671.343 1033.13 670.951C1033.05 669.774 1032.89 668.6 1032.59 667.459C1032.14 665.711 1031.27 664.038 1029.92 662.845C1028.54 661.581 1026.68 660.772 1024.81 660.984C1022.98 665.327 1021.55 669.846 1020.51 674.452Z" fill="black"/> +<path d="M1034.58 645.206C1035.9 644.321 1037.59 644.06 1039.11 644.472C1040.73 644.894 1042.13 646.1 1042.83 647.654C1043.72 649.573 1043.46 651.993 1042.16 653.658C1040.31 655.855 1038.81 658.331 1037.45 660.862C1034.34 658.653 1031.07 656.671 1027.68 654.942C1029.18 652.168 1030.83 649.474 1032.77 646.999C1033.3 646.326 1033.86 645.665 1034.58 645.206Z" fill="#FFCA05"/> +<path d="M1020.51 674.452C1021.55 669.846 1022.98 665.327 1024.81 660.984C1026.68 660.772 1028.54 661.581 1029.92 662.845C1031.27 664.038 1032.14 665.711 1032.59 667.459C1032.89 668.6 1033.05 669.774 1033.13 670.951C1033.18 671.343 1033 671.704 1032.9 672.071C1030.13 681.216 1029.27 690.898 1029.89 700.429C1030 702.134 1029.32 703.87 1028.09 705.023C1026.29 706.82 1023.28 707.1 1021.18 705.691C1019.67 704.746 1018.66 703.04 1018.53 701.241C1017.94 692.277 1018.53 683.212 1020.51 674.452Z" fill="#FFCA05"/> +<path d="M996.039 572.527L996.945 572.781C999.672 573.654 1001.78 576.152 1002.15 579.027C1002.38 580.232 1002.06 581.459 1002.19 582.671C1002.34 584.864 1003.03 587.139 1004.65 588.654C1006.47 590.291 1008.98 590.85 1011.37 591.06C1013.75 591.258 1016.15 591.089 1018.51 590.765C1021.36 590.282 1024.37 591.538 1026 593.888C1027.45 595.882 1027.83 598.61 1027.02 600.983C1026.11 603.815 1023.51 606.016 1020.6 606.434C1015.57 607.148 1010.42 607.299 1005.47 606.237C1001.28 605.343 997.243 603.505 994.077 600.603C992.066 598.813 990.429 596.618 989.202 594.211C987.358 590.574 986.473 586.463 986.434 582.355C986.42 581.177 986.491 579.995 986.665 578.824L986.936 577.906C987.567 576.06 988.882 574.454 990.567 573.48C992.215 572.506 994.19 572.215 996.039 572.527ZM994.784 576.136C992.662 575.919 990.539 577.612 990.249 579.754C989.993 582.001 990.123 584.275 990.516 586.483C991.255 590.705 993.228 594.737 996.362 597.627C999.31 600.405 1003.17 602.05 1007.14 602.768C1011.44 603.546 1015.87 603.369 1020.21 602.749C1021.07 602.601 1021.9 602.162 1022.52 601.523C1023.74 600.303 1024.1 598.318 1023.39 596.777C1022.81 595.499 1021.56 594.571 1020.17 594.415C1019.43 594.319 1018.7 594.492 1017.98 594.573C1015.21 594.897 1012.4 594.999 1009.65 594.613C1007.9 594.363 1006.17 593.91 1004.6 593.113C1002.64 592.141 1000.99 590.554 999.992 588.592C998.697 586.063 998.291 583.12 998.552 580.275C998.614 578.166 996.873 576.245 994.784 576.136Z" fill="black"/> +<path d="M994.784 576.136C996.873 576.245 998.614 578.166 998.552 580.275C998.291 583.12 998.697 586.063 999.992 588.592C1000.99 590.554 1002.64 592.141 1004.6 593.113C1006.17 593.91 1007.9 594.363 1009.65 594.613C1012.4 594.999 1015.21 594.897 1017.98 594.573C1018.7 594.492 1019.43 594.319 1020.17 594.415C1021.56 594.571 1022.81 595.499 1023.39 596.777C1024.1 598.318 1023.74 600.303 1022.52 601.523C1021.9 602.162 1021.07 602.601 1020.21 602.749C1015.87 603.369 1011.44 603.546 1007.14 602.768C1003.17 602.05 999.31 600.405 996.362 597.627C993.228 594.737 991.255 590.705 990.516 586.483C990.123 584.275 989.993 582.001 990.249 579.754C990.539 577.612 992.662 575.919 994.784 576.136Z" fill="#FFCA05"/> +<path d="M1014.35 495.975L1015.51 497.11C1018.35 500.049 1020.37 503.86 1020.88 507.983C1021.18 510.468 1020.98 513.032 1020.23 515.45C1019.21 518.762 1017.55 521.842 1015.75 524.799C1012.67 529.755 1009.1 534.388 1005.32 538.824C1006.11 541.485 1006.47 544.295 1006.19 547.087C1005.88 550.303 1004.89 553.462 1003.35 556.322C1004.76 558.633 1005.46 561.395 1005.21 564.133C1004.96 567.533 1003.46 570.779 1001.33 573.443C997.819 577.812 992.739 580.94 987.263 581.939C985.027 582.348 982.728 582.369 980.503 581.995C977.892 581.567 975.319 580.731 973.104 579.284C971.13 578.007 969.471 576.232 968.392 574.132C968.258 573.867 968.105 573.594 967.812 573.488C967.083 573.136 966.366 572.762 965.698 572.307C962.302 575.82 958.913 579.34 955.52 582.856C954.658 583.758 953.815 584.732 952.667 585.274C950.351 586.484 947.439 586.172 945.417 584.619C942.019 581.252 938.56 577.947 935.139 574.606C933.284 572.832 931.484 570.998 929.594 569.262C927.869 567.371 927.36 564.452 928.4 562.046C928.788 561.081 929.438 560.244 930.175 559.517C935.218 554.3 940.249 549.072 945.289 543.853C945.214 541.442 945.544 538.905 946.858 536.804C947.91 535.087 949.622 533.817 951.532 533.244C951.121 530.731 951.179 528.053 952.225 525.661C952.613 524.725 953.191 523.881 953.794 523.07L954.596 522.239C956.055 520.837 957.891 519.81 959.866 519.425C962.571 518.892 965.371 519.451 967.804 520.61C970.087 518.643 972.864 517.262 975.793 516.662C979.763 515.832 983.991 516.424 987.503 518.357C986.824 517.71 986.164 516.992 985.861 516.08C985.361 514.801 985.516 513.186 986.536 512.165C988.345 510.285 990.162 508.41 991.97 506.529C992.368 506.12 992.742 505.678 993.21 505.345C993.637 505.045 994.148 504.916 994.641 504.776C994.072 502.746 994.073 500.525 994.792 498.505C995.511 496.447 996.985 494.668 998.84 493.533C1000.99 492.22 1003.57 491.616 1006.03 491.957C1009.16 492.381 1011.98 493.98 1014.35 495.975ZM1009.72 497.243C1008.01 496.218 1006.03 495.442 1003.98 495.61C1002.17 495.793 1000.35 496.585 999.185 498.051C998.019 499.493 997.712 501.477 998.119 503.229C998.739 506.001 1000.55 508.313 1002.6 510.176C1004.36 511.773 1006.29 513.286 1008.57 514.07C1009.66 514.433 1010.87 514.614 1011.99 514.229C1012.69 515.235 1013.39 516.24 1014.09 517.244C1012.02 518.563 1009.39 518.358 1007.2 517.587C1007.03 518.167 1006.74 518.709 1006.31 519.142C1004.28 521.247 1002.26 523.354 1000.22 525.449C999.408 526.296 998.164 526.626 997.044 526.43C995.837 526.274 994.846 525.515 993.996 524.704C994.611 525.637 995.025 526.686 995.42 527.73C998.917 529.127 1001.86 531.758 1003.69 535.052C1006.63 531.477 1009.47 527.8 1011.98 523.899C1013.64 521.283 1015.18 518.573 1016.27 515.673C1016.96 513.88 1017.35 511.971 1017.3 510.062C1017.22 504.798 1014.07 499.947 1009.72 497.243ZM995.863 508.197C995.498 508.07 995.263 508.422 995.032 508.644C993.084 510.679 991.115 512.696 989.169 514.734C988.835 515.031 989.076 515.51 989.348 515.739C991.767 518.089 994.183 520.443 996.606 522.788C996.873 523.124 997.417 523.163 997.687 522.786C999.613 520.804 1001.52 518.804 1003.45 516.823C1003.62 516.616 1003.89 516.428 1003.88 516.133C1003.92 515.829 1003.65 515.638 1003.48 515.442C1001.13 513.167 998.781 510.891 996.443 508.608C996.261 508.461 996.112 508.23 995.863 508.197ZM980.844 520.105C977.37 519.691 973.721 520.678 970.895 522.838C974.053 525.45 976.865 528.481 979.203 531.856C981.874 529.744 984.959 528.192 988.195 527.223C989.07 526.977 989.951 526.723 990.859 526.673C988.784 523.075 984.999 520.548 980.844 520.105ZM991.068 530.817C990.741 530.763 990.408 530.804 990.088 530.892C988.044 531.414 986.068 532.224 984.232 533.285C980.701 535.302 977.881 538.404 975.689 541.803C974.49 543.73 973.438 545.796 972.939 548.015C972.66 549.312 972.563 550.717 973.093 551.948C973.498 552.816 974.016 553.643 974.7 554.317C975.408 555.023 976.408 555.474 977.431 555.37C979.216 555.238 980.787 554.187 982.168 553.101C985.16 550.585 987.585 547.322 988.943 543.651C989.383 542.645 990.712 542.176 991.66 542.679C992.586 543.082 993.004 544.251 992.65 545.197C991.611 548.02 989.951 550.59 988.024 552.896C987.322 553.755 986.721 554.748 986.566 555.859C986.278 557.428 986.992 558.992 988.048 560.091C988.5 560.631 989.188 560.968 989.476 561.64C989.845 562.429 989.588 563.453 988.91 564.017C988.249 564.621 987.189 564.673 986.475 564.178C984.431 562.629 982.831 560.361 982.497 557.747C980.503 558.959 978.127 559.749 975.814 559.337C973.772 559.014 972.014 557.724 970.814 556.088C968.724 558.882 965.093 560.069 961.758 559.822C962.559 562.057 963.569 564.238 965.042 566.099C966.582 568.097 968.695 569.712 971.165 570.359C973.88 571.063 976.785 570.724 979.459 569.869C980.045 569.672 980.722 569.689 981.238 570.033C982.17 570.567 982.484 571.924 981.86 572.835C981.36 573.676 980.344 573.821 979.495 574.068C977.697 574.559 975.841 574.805 973.987 574.816C975.214 575.898 976.665 576.718 978.22 577.236C980.586 578.021 983.128 578.409 985.638 578.091C988.552 577.765 991.371 576.643 993.817 574.991C996.594 573.105 998.993 570.52 1000.32 567.405C1001.28 565.156 1001.54 562.57 1000.73 560.272C999.521 561.772 998.151 563.146 996.646 564.351C996.15 564.76 995.465 564.939 994.85 564.78C993.767 564.547 993.081 563.316 993.437 562.252C993.64 561.444 994.428 561.029 994.991 560.496C996.28 559.328 997.499 558.051 998.452 556.592C998.414 556.527 998.339 556.397 998.302 556.333C998.718 555.866 999.226 555.472 999.541 554.924C1001.54 551.403 1002.58 547.275 1002.12 543.27C1001.75 540.51 1000.82 537.795 999.167 535.564C997.252 532.981 994.274 531.228 991.068 530.817ZM966.219 524.408C965.04 523.796 963.749 523.371 962.41 523.282C960.548 523.124 958.615 523.85 957.299 525.22C956.124 526.39 955.488 528.015 955.368 529.639C955.193 531.787 955.757 533.923 956.678 535.824C958.021 538.315 960.101 540.306 962.322 542.003C964.476 543.604 966.83 544.975 969.382 545.847C970.756 541.549 973.306 537.681 976.398 534.407C974.198 531.149 971.513 528.224 968.482 525.735C967.682 525.372 967.012 524.785 966.219 524.408ZM960.553 545.795C957.398 543.497 954.465 540.687 952.763 537.107C952.063 537.322 951.374 537.636 950.853 538.175C949.914 539.126 949.531 540.467 949.39 541.753C949.229 543.447 949.344 545.188 949.958 546.769C951.069 549.714 953.48 551.941 956.112 553.529C958.197 554.749 960.507 555.896 963.011 555.762C964.748 555.732 966.608 555.069 967.663 553.592C968.446 552.482 968.506 551.044 968.198 549.782C965.466 548.837 962.9 547.463 960.553 545.795ZM951.071 554.992C948.91 553.203 947.137 550.911 946.135 548.262C941.552 553.029 936.952 557.776 932.37 562.544C931.265 563.71 931.314 565.732 932.465 566.799C937.517 571.704 942.565 576.616 947.619 581.518C948.726 582.604 950.698 582.54 951.803 581.416C955.502 577.585 959.197 573.751 962.895 569.918C960.02 566.797 958.22 562.811 957.209 558.691C955.002 557.751 952.91 556.531 951.071 554.992Z" fill="black"/> +<path d="M1009.72 497.243C1014.07 499.947 1017.22 504.798 1017.3 510.062C1017.35 511.971 1016.96 513.88 1016.27 515.673C1015.18 518.573 1013.64 521.283 1011.98 523.899C1009.47 527.8 1006.63 531.477 1003.69 535.052C1001.86 531.758 998.917 529.127 995.42 527.73C995.025 526.686 994.611 525.637 993.996 524.704C994.846 525.515 995.837 526.274 997.044 526.43C998.164 526.626 999.408 526.296 1000.22 525.449C1002.26 523.354 1004.28 521.247 1006.31 519.142C1006.74 518.709 1007.03 518.167 1007.2 517.587C1009.39 518.358 1012.02 518.563 1014.09 517.244C1013.39 516.24 1012.69 515.235 1011.99 514.229C1010.87 514.614 1009.66 514.433 1008.57 514.07C1006.29 513.286 1004.36 511.773 1002.6 510.176C1000.55 508.313 998.739 506.001 998.119 503.229C997.712 501.477 998.019 499.493 999.185 498.051C1000.35 496.585 1002.17 495.793 1003.98 495.61C1006.03 495.442 1008.01 496.218 1009.72 497.243Z" fill="white"/> +<path d="M991.068 530.817C994.274 531.228 997.252 532.981 999.167 535.564C1000.82 537.795 1001.75 540.51 1002.12 543.27C1002.58 547.275 1001.54 551.403 999.541 554.924C999.226 555.472 998.718 555.866 998.302 556.333C998.339 556.397 998.414 556.527 998.452 556.592C997.499 558.051 996.28 559.328 994.991 560.496C994.428 561.029 993.64 561.444 993.437 562.252C993.081 563.316 993.767 564.547 994.85 564.78C995.465 564.939 996.15 564.76 996.646 564.351C998.151 563.146 999.521 561.772 1000.73 560.272C1001.54 562.57 1001.28 565.156 1000.32 567.405C998.993 570.52 996.594 573.105 993.817 574.991C991.371 576.643 988.552 577.765 985.638 578.091C983.128 578.409 980.586 578.021 978.22 577.236C976.665 576.718 975.214 575.898 973.987 574.816C975.841 574.805 977.697 574.559 979.495 574.068C980.344 573.821 981.36 573.676 981.86 572.835C982.484 571.924 982.17 570.567 981.238 570.033C980.722 569.689 980.045 569.672 979.459 569.869C976.785 570.724 973.88 571.063 971.165 570.359C968.695 569.712 966.582 568.097 965.042 566.099C963.569 564.238 962.559 562.057 961.758 559.822C965.093 560.069 968.724 558.882 970.814 556.088C972.014 557.724 973.772 559.014 975.814 559.337C978.127 559.749 980.503 558.959 982.497 557.747C982.831 560.361 984.431 562.629 986.475 564.178C987.189 564.673 988.249 564.621 988.91 564.017C989.588 563.453 989.845 562.429 989.476 561.64C989.188 560.968 988.5 560.631 988.048 560.091C986.992 558.992 986.278 557.428 986.566 555.859C986.721 554.748 987.322 553.755 988.024 552.896C989.951 550.59 991.611 548.02 992.65 545.197C993.004 544.251 992.586 543.082 991.66 542.679C990.712 542.176 989.383 542.645 988.943 543.651C987.585 547.322 985.16 550.585 982.168 553.101C980.787 554.187 979.216 555.238 977.431 555.37C976.408 555.474 975.408 555.023 974.7 554.317C974.016 553.643 973.498 552.816 973.093 551.948C972.563 550.717 972.66 549.312 972.939 548.015C973.438 545.796 974.49 543.73 975.689 541.803C977.881 538.404 980.701 535.302 984.232 533.285C986.068 532.224 988.044 531.414 990.088 530.892C990.408 530.804 990.741 530.763 991.068 530.817Z" fill="white"/> +<path d="M966.219 524.408C967.012 524.785 967.682 525.372 968.482 525.735C971.513 528.224 974.198 531.149 976.398 534.407C973.306 537.681 970.756 541.549 969.382 545.847C966.83 544.975 964.476 543.604 962.322 542.003C960.101 540.306 958.021 538.315 956.678 535.824C955.757 533.923 955.193 531.787 955.368 529.639C955.488 528.015 956.124 526.39 957.299 525.22C958.615 523.85 960.548 523.124 962.41 523.282C963.749 523.371 965.04 523.796 966.219 524.408Z" fill="white"/> +<path d="M960.553 545.795C962.9 547.463 965.466 548.837 968.198 549.782C968.506 551.044 968.446 552.482 967.663 553.592C966.608 555.069 964.748 555.732 963.011 555.762C960.507 555.896 958.197 554.749 956.112 553.529C953.48 551.941 951.069 549.714 949.958 546.769C949.344 545.188 949.229 543.447 949.39 541.753C949.531 540.467 949.914 539.126 950.853 538.175C951.374 537.636 952.063 537.322 952.763 537.107C954.465 540.687 957.398 543.497 960.553 545.795Z" fill="white"/> +<path d="M995.863 508.197C996.112 508.23 996.261 508.461 996.443 508.608C998.781 510.891 1001.13 513.167 1003.48 515.442C1003.65 515.638 1003.92 515.829 1003.88 516.133C1003.89 516.428 1003.62 516.616 1003.45 516.823C1001.52 518.804 999.613 520.804 997.687 522.786C997.417 523.163 996.873 523.124 996.606 522.788C994.183 520.443 991.767 518.089 989.348 515.739C989.076 515.51 988.835 515.031 989.169 514.734C991.115 512.696 993.084 510.679 995.032 508.644C995.263 508.422 995.498 508.07 995.863 508.197Z" fill="#BC26DB"/> +<path d="M951.071 554.992C952.91 556.531 955.002 557.751 957.209 558.691C958.22 562.811 960.02 566.797 962.895 569.918C959.197 573.751 955.502 577.585 951.803 581.416C950.698 582.54 948.726 582.604 947.619 581.518C942.565 576.616 937.517 571.704 932.465 566.799C931.314 565.732 931.265 563.71 932.37 562.544C936.952 557.776 941.552 553.029 946.135 548.262C947.137 550.911 948.91 553.203 951.071 554.992Z" fill="#BC26DB"/> +<path d="M980.844 520.105C984.999 520.548 988.784 523.075 990.859 526.673C989.951 526.723 989.07 526.977 988.195 527.223C984.959 528.192 981.874 529.744 979.203 531.856C976.865 528.481 974.053 525.45 970.895 522.838C973.721 520.678 977.37 519.691 980.844 520.105Z" fill="#B5B5B5"/> +<path d="M929.594 569.262C931.484 570.998 933.284 572.832 935.139 574.606C938.56 577.947 942.019 581.252 945.417 584.619L945.151 584.551L929.349 569.199L929.594 569.262Z" fill="black"/> +<path d="M942.493 480.739C949.243 481.528 958.529 487.334 968.446 493.716C973.661 497.073 979.33 501.567 984.424 504.638C988.686 507.206 980.844 499.226 979.054 496.944C962.271 475.561 957.394 459.214 957.487 448" stroke="black" stroke-width="2.64052" stroke-linecap="round"/> +<path d="M1078.93 462H1081.94C1084.97 462.205 1087.98 462.719 1090.96 463.298C1093.95 464.156 1096.95 465.007 1099.82 466.212C1100.99 466.986 1102.24 467.6 1103.44 468.288C1104.63 469.152 1105.9 469.875 1107.09 470.719C1110.55 473.481 1113.7 476.683 1116.2 480.388C1117.1 481.731 1117.96 483.098 1118.84 484.461C1119.7 485.791 1120.26 487.298 1121.01 488.69C1121.82 490.187 1122.33 491.819 1123.05 493.356C1124.17 495.645 1124.64 498.185 1125.54 500.566C1125.91 501.556 1126.02 502.617 1126.25 503.647C1127.41 507.972 1128.03 512.431 1128.45 516.89C1128.56 520.384 1128.98 523.867 1128.93 527.368C1128.73 532.643 1128.6 537.948 1127.63 543.151C1126.99 546.455 1126.78 549.844 1125.86 553.088C1124.67 557.4 1123.79 561.821 1122.09 565.969C1121.03 568.681 1119.87 571.351 1118.84 574.073C1118.21 575.76 1117.57 577.465 1117.33 579.264C1117.01 579.623 1116.88 580.254 1117.38 580.529C1117.31 584.195 1118.11 587.8 1118.91 591.351C1119.7 593.906 1120.57 596.437 1121.19 599.044C1121.68 600.694 1121.9 602.448 1122.7 603.988C1126.65 612.028 1128.55 621.2 1127.59 630.184C1126.61 639.424 1122.92 648.32 1117.27 655.574C1115.35 657.682 1113.53 659.888 1111.49 661.875C1108.25 665.031 1104.74 667.916 1100.87 670.217C1095.04 672.989 1089.03 675.314 1082.95 677.438C1081.18 677.73 1079.44 678.192 1077.64 678.276C1075.84 678.381 1074.06 678.92 1072.25 678.768C1067.85 678.381 1063.35 678.509 1059.09 677.164C1055.33 676.415 1051.82 674.756 1048.37 673.109C1046.24 672.086 1044.18 670.915 1042.1 669.797C1040.9 669.166 1039.94 668.183 1038.82 667.432C1037.03 666.221 1035.52 664.647 1033.94 663.175C1030.71 660.11 1027.95 656.562 1025.52 652.811C1023.97 650.366 1022.32 647.948 1021.27 645.221C1019.67 641.917 1018.55 638.401 1017.43 634.907C1016.99 632.557 1016.31 630.259 1016.02 627.881C1015.55 625.313 1015.35 622.713 1015.21 620.11V618.568C1015.48 614.573 1015.87 610.588 1016.37 606.618C1016.64 604.032 1017.32 601.522 1017.9 598.997C1018.54 596.482 1019.6 594.109 1020.46 591.666C1021.6 588.511 1022.36 585.238 1023.3 582.019C1023.99 579.658 1024.66 577.287 1025.31 574.917C1025.97 572.556 1026.06 570.088 1026.34 567.665C1026.69 564.641 1026.47 561.594 1026.38 558.565C1026.36 555.975 1025.81 553.434 1025.53 550.872C1025.32 548.845 1024.78 546.867 1024.67 544.83C1024.61 543.57 1024.16 542.373 1024.11 541.112C1024 538.607 1023.49 536.134 1023.5 533.621C1023.51 529.619 1023.41 525.601 1023.87 521.619C1024.71 514.39 1026.4 507.263 1028.9 500.451C1029.89 498.11 1030.89 495.765 1032.07 493.516C1032.59 492.271 1033.28 491.116 1034.02 490C1035.25 487.744 1036.85 485.736 1038.26 483.6C1041.51 479.295 1045.41 475.542 1049.66 472.291C1051.88 470.377 1054.45 468.997 1056.98 467.572C1059.55 466.404 1062.11 465.214 1064.78 464.296C1065.48 464.193 1066.18 464.024 1066.84 463.737C1070.79 462.684 1074.85 462.047 1078.93 462ZM1059.33 470.534C1057.09 471.862 1054.67 472.915 1052.62 474.574C1048.77 477.656 1044.94 480.86 1041.91 484.825C1039.79 487.697 1037.65 490.579 1035.97 493.756C1035.39 495.188 1034.46 496.441 1033.94 497.898C1032.32 501.723 1030.65 505.551 1029.69 509.614C1028.61 513.199 1028.04 516.918 1027.62 520.636C1027.4 522.634 1027.1 524.626 1027.05 526.639C1026.95 530.293 1027.22 533.941 1027.34 537.589C1027.57 539.757 1027.77 541.936 1028.17 544.079C1028.53 546.879 1028.94 549.674 1029.41 552.456C1029.55 554.744 1029.77 557.03 1030.1 559.301C1030.27 562.073 1029.96 564.841 1029.86 567.613C1029.55 570.328 1029.36 573.07 1028.81 575.75C1027.32 581.17 1025.96 586.632 1024.17 591.958C1022.71 596.334 1020.71 600.604 1020.23 605.255C1019.41 608.432 1019.24 611.731 1018.83 614.98C1018.6 616.397 1018.99 617.817 1018.82 619.234C1018.64 620.906 1019.12 622.545 1019.16 624.212C1019.39 626.388 1019.68 628.567 1020.22 630.69C1020.51 632.407 1020.83 634.134 1021.44 635.768C1022.05 637.338 1022.35 639.03 1023.15 640.522C1024.15 642.533 1024.83 644.699 1025.91 646.668C1028.17 650.578 1030.78 654.271 1033.63 657.76C1035.57 659.691 1037.53 661.605 1039.59 663.412C1041.56 665.183 1043.82 666.583 1046.06 667.976C1047.87 669.291 1049.97 670.064 1052.01 670.918C1055.35 672.5 1058.93 673.67 1062.6 674.079C1062.69 674.546 1063.57 674.531 1063.92 674.304L1064.09 674.421C1069.05 675.327 1074.12 674.943 1079.11 674.464C1081.14 674.029 1083.15 673.558 1085.18 673.139C1087.74 672.35 1090.29 671.484 1092.74 670.381C1094.58 669.346 1096.56 668.567 1098.32 667.374C1100.96 665.935 1103.34 664.065 1105.68 662.181C1108.01 660.325 1109.95 658.054 1112.03 655.928C1112.51 655.342 1112.89 654.675 1113.39 654.094C1118.03 648.252 1121.47 641.353 1123.01 633.969C1125.09 624.125 1123.67 613.627 1119.42 604.581C1118.97 603.553 1118.23 602.645 1118.09 601.502C1117.08 597.694 1115.83 593.959 1114.83 590.148C1114.37 587.376 1113.93 584.586 1113.81 581.774C1113.84 577.29 1114.85 572.801 1116.82 568.791C1117.25 567.885 1117.92 567.104 1118.18 566.118C1119.7 562.106 1120.77 557.936 1121.91 553.801C1122.48 551.491 1122.8 549.125 1123.3 546.799C1124.38 541.05 1124.86 535.206 1125.16 529.367C1125.42 525.287 1124.88 521.217 1124.79 517.14C1124.44 513.808 1123.94 510.487 1123.29 507.203C1123.04 505.047 1122.29 503.003 1121.73 500.92C1120.46 496.311 1118.77 491.792 1116.33 487.692C1114.67 484.261 1112.19 481.351 1109.87 478.377C1106.44 474.941 1102.73 471.637 1098.21 469.823C1097.3 469.501 1096.54 468.87 1095.64 468.538C1090.64 466.751 1085.36 465.728 1080.05 465.741C1072.92 465.783 1065.75 467.29 1059.33 470.534Z" fill="black"/> +<path d="M1077.93 471.285C1078.99 470.764 1080.66 471.375 1080.68 472.732C1080.77 473.586 1080.04 474.145 1079.6 474.761C1079.03 475.47 1078.54 476.413 1077.6 476.633C1076.17 476.972 1074.8 475.058 1075.72 473.815C1076.36 472.902 1076.97 471.874 1077.93 471.285Z" fill="black"/> +<path d="M1084.32 471.912C1084.83 471.712 1085.43 471.742 1085.94 471.909C1086.9 472.498 1086.98 473.751 1087.43 474.694C1088.63 477.152 1088.73 480.004 1088.47 482.689C1088.33 484.902 1087.42 487.086 1085.91 488.685C1083.79 490.657 1080.7 491.6 1077.89 490.909C1074.68 490.128 1071.71 488.303 1069.46 485.836C1068.84 485.169 1068.23 484.199 1068.67 483.255C1069.13 482.003 1070.93 481.636 1071.79 482.686C1073.54 484.957 1076.01 486.774 1078.84 487.268C1080.56 487.567 1082.57 487.161 1083.67 485.668C1085.01 483.919 1084.93 481.556 1084.89 479.452C1084.91 477.411 1083.63 475.694 1083.31 473.731C1083.16 472.962 1083.69 472.263 1084.32 471.912Z" fill="black"/> +<path d="M1064.53 474.834C1065.52 474.469 1066.95 474.826 1067.22 475.986C1067.39 477.057 1066.8 478.045 1066.35 478.966C1064.89 481.613 1063.39 484.291 1061.25 486.432C1059.66 488.056 1057.76 489.594 1055.46 489.895C1053.71 490.17 1051.71 489.648 1050.61 488.144C1049.79 487.003 1049.13 485.638 1049.15 484.194C1049.15 483.413 1049.58 482.619 1050.31 482.317C1051.16 482.105 1052.21 482.489 1052.57 483.348C1052.82 484.313 1052.94 485.484 1053.82 486.093C1054.59 486.562 1055.52 486.155 1056.23 485.761C1058 484.72 1059.26 483.018 1060.57 481.459C1061.66 479.939 1062.65 478.32 1063.33 476.563C1063.6 475.912 1063.89 475.183 1064.53 474.834Z" fill="black"/> +<path d="M1099.15 474.764C1099.78 474.382 1100.61 474.587 1101.17 475.028C1102.56 476.079 1103.85 477.379 1104.57 479.013C1104.94 480.144 1105.58 481.227 1105.55 482.454C1105.6 484.114 1105.49 485.898 1104.56 487.315C1103.78 488.446 1102.66 489.332 1101.39 489.801C1099.3 490.305 1097.03 490.192 1095.05 489.317C1093.93 488.867 1093.58 487.268 1094.25 486.3C1094.85 485.616 1095.9 485.421 1096.7 485.846C1098.09 486.537 1099.93 486.709 1101.19 485.643C1102.15 484.807 1102.1 483.365 1101.83 482.217C1101.47 480.78 1100.83 479.285 1099.58 478.439C1098.92 477.965 1098.08 477.409 1098.08 476.475C1098.01 475.714 1098.62 475.178 1099.15 474.764Z" fill="black"/> +<path d="M1105.04 492.882C1105.5 492.773 1106.02 492.595 1106.47 492.837C1107.68 493.456 1108.48 494.634 1109.44 495.575C1111.35 497.439 1112.74 499.78 1113.96 502.155C1114.79 504.451 1115.28 507.016 1114.63 509.429C1114.18 511.168 1113.04 512.813 1111.4 513.531C1110.07 513.921 1108.7 512.331 1109.22 511.034C1109.66 510.123 1110.76 509.716 1111.04 508.7C1111.57 506.964 1111.37 504.995 1110.47 503.42C1109.26 501.197 1107.98 498.914 1106.01 497.302C1105.3 496.695 1104.5 496.144 1104.05 495.3C1103.55 494.397 1104.28 493.327 1105.04 492.882Z" fill="black"/> +<path d="M1070.2 494.894C1073.64 494.222 1077.08 495.348 1080.19 496.773C1081.01 497.152 1081.85 497.945 1081.67 498.964C1081.49 500.353 1079.67 501.007 1078.6 500.214C1076.52 498.801 1073.94 498.477 1071.5 498.527C1069.69 498.552 1067.91 499.385 1066.73 500.793C1066.23 501.411 1066.15 502.295 1065.6 502.881C1064.67 503.775 1062.89 503.193 1062.61 501.918C1062.45 501.12 1062.83 500.356 1063.2 499.682C1064.02 498.232 1065.17 496.917 1066.63 496.134C1067.8 495.657 1068.94 495.058 1070.2 494.894Z" fill="black"/> +<path d="M1113.28 520.77C1114.24 520.231 1115.64 520.76 1115.86 521.911C1116.43 524.354 1116.69 526.886 1116.56 529.397C1116.43 532.83 1116.2 536.311 1115.14 539.598C1114.42 541.866 1113.55 544.122 1112.27 546.126C1111.62 546.782 1111.32 547.942 1110.3 548.084C1108.98 548.386 1107.68 546.894 1108.14 545.589C1108.45 544.955 1108.98 544.481 1109.36 543.887C1110.2 542.674 1110.65 541.245 1111.14 539.852C1112.23 536.641 1112.88 533.267 1112.98 529.868C1113.03 528.279 1112.86 526.697 1112.79 525.112C1112.75 524.174 1112.34 523.306 1112.27 522.375C1112.22 521.669 1112.8 521.17 1113.28 520.77Z" fill="black"/> +<path d="M1038.43 534.704C1039.76 534.1 1041.47 535.336 1041.13 536.848C1040.89 538.313 1038.96 538.697 1037.99 537.719C1036.99 536.915 1037.47 535.303 1038.43 534.704Z" fill="black"/> +<path d="M1032.81 537.407C1033.73 536.913 1035 537.527 1035.28 538.547C1035.66 539.635 1034.84 540.878 1033.76 541.052C1032.56 541.165 1031.4 539.922 1031.67 538.694C1031.8 538.096 1032.36 537.746 1032.81 537.407Z" fill="black"/> +<path d="M1089.16 537.988C1089.89 537.806 1090.8 537.961 1091.22 538.664C1091.96 539.837 1091.1 541.544 1089.82 541.796C1088.83 541.901 1087.89 541.06 1087.72 540.084C1087.59 539.144 1088.4 538.355 1089.16 537.988Z" fill="black"/> +<path d="M1039.15 541.893C1040.12 541.492 1041.53 541.928 1041.76 543.086C1042.06 544.242 1041.11 545.295 1040.09 545.611C1039.08 545.769 1038.1 544.873 1037.93 543.88C1037.83 543.006 1038.53 542.36 1039.15 541.893Z" fill="black"/> +<path d="M1095.2 543.411C1096.57 542.694 1098.45 544.012 1098.08 545.602C1097.76 547.154 1095.62 547.513 1094.67 546.348C1093.76 545.509 1094.15 543.912 1095.2 543.411Z" fill="black"/> +<path d="M1089.09 544.878C1090.48 544.421 1091.93 546.128 1091.34 547.478C1090.82 548.626 1089.01 548.995 1088.2 547.982C1087.39 547.004 1087.68 545.075 1089.09 544.878Z" fill="black"/> +<path d="M1106.66 557.13C1108.01 556.374 1109.78 557.819 1109.31 559.316C1108.95 560.9 1108.85 562.54 1108.37 564.095C1107.11 568.419 1105.43 572.708 1102.69 576.292C1101.01 578.488 1098.83 580.466 1096.1 581.123C1094.05 581.689 1091.61 581.37 1090.1 579.715C1087.39 576.838 1086.26 572.708 1086.28 568.781C1086.28 567.783 1086.1 566.705 1086.57 565.781C1087.36 564.451 1089.66 565.063 1089.87 566.555C1089.98 568.047 1089.76 569.557 1090.02 571.042C1090.35 573.01 1090.94 575.022 1092.2 576.586C1092.84 577.402 1093.89 577.909 1094.92 577.687C1096.5 577.357 1097.73 576.189 1098.81 575.037C1102.31 571.184 1104.22 566.126 1105.36 561.07C1105.75 559.738 1105.26 557.936 1106.66 557.13Z" fill="black"/> +<path d="M1037.69 559.376C1038.65 559.016 1040.09 559.371 1040.32 560.531C1040.43 561.789 1040.15 563.039 1040.12 564.297C1040.05 566.388 1040.12 568.484 1040.19 570.575C1040.41 572.736 1040.45 574.964 1041.24 577.013C1041.65 578.443 1042.38 579.805 1043.47 580.816C1044.14 581.405 1045.24 581.714 1045.37 582.737C1045.61 584.207 1043.83 585.452 1042.59 584.669C1040.68 583.418 1039.03 581.629 1038.22 579.438C1037.76 578.35 1037.3 577.235 1037.2 576.042C1037.08 574.61 1036.6 573.23 1036.6 571.785C1036.56 569.375 1036.45 566.962 1036.55 564.551C1036.61 563.221 1036.41 561.869 1036.71 560.561C1036.83 560.032 1037.26 559.658 1037.69 559.376Z" fill="black"/> +<path d="M1036.77 592.384C1037.85 591.301 1039.13 590.388 1040.57 589.884C1041.37 589.624 1042.11 590.118 1042.76 590.53C1042.9 591.206 1043.21 591.958 1042.87 592.626C1042.55 593.265 1041.8 593.407 1041.21 593.687C1040.1 594.096 1039.36 595.099 1038.63 595.995C1037.14 597.824 1036.11 600.102 1035.93 602.493C1035.69 603.958 1033.42 604.372 1032.68 603.107C1032.16 602.243 1032.35 601.17 1032.59 600.247C1033.39 597.362 1034.66 594.518 1036.77 592.384Z" fill="black"/> +<path d="M1105.98 590.585C1106.78 590.186 1107.91 590.408 1108.29 591.296C1108.89 592.639 1109.58 593.959 1109.94 595.399C1110.21 596.412 1110.23 597.475 1110.5 598.49C1110.77 599.336 1110.2 600.257 1109.46 600.611C1108.56 600.918 1107.37 600.527 1107.04 599.556C1106.6 598.358 1106.75 597.021 1106.29 595.828C1105.82 594.645 1105.1 593.542 1104.9 592.264C1104.84 591.518 1105.45 590.979 1105.98 590.585Z" fill="black"/> +<path d="M1089.21 593.919C1089.8 593.677 1090.59 593.694 1091.06 594.203C1092.14 595.429 1092.79 596.963 1093.51 598.423C1094.38 600.07 1094.9 601.879 1095.33 603.688C1095.5 604.382 1095.59 605.273 1094.99 605.789C1094.16 606.695 1092.5 606.311 1092.05 605.188C1091.55 603.898 1091.33 602.503 1090.73 601.248C1090.14 599.96 1089.72 598.578 1088.9 597.41C1088.53 596.823 1088.02 596.212 1088.12 595.463C1088.18 594.787 1088.72 594.313 1089.21 593.919Z" fill="black"/> +<path d="M1056.5 594.608C1057.53 594.094 1059.11 594.74 1059.17 596.012C1059.13 596.856 1058.72 597.629 1058.63 598.47C1057.97 602.757 1057.79 607.189 1058.7 611.456C1059.06 613.145 1059.65 614.785 1060.49 616.29C1061.2 617.44 1060.19 619.177 1058.86 619.072C1058.04 619.077 1057.4 618.431 1057.08 617.709C1056.3 615.978 1055.59 614.201 1055.09 612.364C1054.88 610.742 1054.48 609.133 1054.56 607.486C1054.46 603.863 1054.69 600.235 1055.28 596.661C1055.38 595.823 1055.78 595.044 1056.5 594.608Z" fill="black"/> +<path d="M1046.68 596.579C1047.45 596.304 1048.47 596.412 1048.9 597.2C1049.54 598.348 1049.38 599.726 1049.49 600.993C1049.8 603.626 1049.11 606.286 1048.02 608.654C1047.05 610.61 1045.65 612.537 1043.58 613.355C1041.18 614.293 1038.43 613.867 1036.19 612.691C1034.84 611.98 1033.65 610.887 1032.97 609.487C1032.35 608.107 1033.9 606.326 1035.31 606.872C1036.17 607.214 1036.39 608.245 1037.05 608.821C1038.55 610.124 1040.84 610.558 1042.61 609.58C1043.84 608.906 1044.57 607.601 1045.06 606.316C1046.09 603.835 1046.03 601.095 1045.65 598.48C1045.47 597.714 1046.04 596.908 1046.68 596.579Z" fill="black"/> +<path d="M1075.45 598.303C1076.23 598.006 1077.33 598.004 1077.88 598.742C1080.51 603.082 1081.65 608.187 1082.02 613.233C1082.13 616.302 1080.57 619.506 1077.85 620.931C1075.76 622.056 1073.29 621.914 1071.03 621.572C1069.6 621.215 1067.97 620.761 1067.12 619.436C1066.32 618.204 1067.43 616.359 1068.85 616.502C1069.6 616.684 1070.07 617.398 1070.79 617.652C1072.35 618.174 1074.09 618.226 1075.65 617.692C1076.85 617.295 1077.92 616.332 1078.24 615.057C1078.6 613.617 1078.21 612.147 1078.07 610.705C1077.98 609.335 1077.52 608.038 1077.31 606.688C1077.05 605.103 1076.3 603.681 1075.69 602.221C1075.43 601.545 1074.76 601.148 1074.49 600.487C1074.36 599.673 1074.69 598.685 1075.45 598.303Z" fill="black"/> +<path d="M1091.06 612.534C1092.22 611.973 1093.83 612.854 1093.83 614.199C1092.85 617.677 1092.48 621.363 1092.93 624.963C1093.21 626.615 1093.59 628.372 1094.72 629.65C1095.58 630.58 1096.98 630.648 1098.13 630.368C1099.72 630.012 1101.25 629.273 1102.48 628.165C1103.12 627.623 1103.22 626.633 1103.98 626.214C1104.75 625.685 1105.92 625.857 1106.42 626.683C1107.03 627.661 1106.65 628.941 1105.97 629.769C1103.87 632.397 1100.65 634.044 1097.35 634.281C1095.03 634.423 1092.77 633.168 1091.43 631.257C1089.6 628.744 1089.16 625.505 1089.06 622.451C1088.9 619.596 1089.41 616.761 1090.09 614.006C1090.25 613.432 1090.52 612.821 1091.06 612.534Z" fill="black"/> +<path d="M1028.65 621.273C1029.58 621.001 1030.83 621.405 1031.1 622.453C1031.25 623.773 1030.83 625.088 1030.98 626.413C1031.17 628.22 1031.1 630.106 1031.83 631.801C1032.39 632.931 1031.33 634.491 1030.09 634.299C1029.11 634.216 1028.4 633.343 1028.13 632.432C1027.63 630.648 1027.63 628.779 1027.45 626.947C1027.32 625.527 1027.39 624.098 1027.51 622.68C1027.52 622.001 1028.15 621.595 1028.65 621.273Z" fill="black"/> +<path d="M1114.29 622.548C1114.51 621.7 1115.48 621.557 1116.17 621.308C1116.71 621.567 1117.42 621.71 1117.68 622.346C1118.25 623.551 1118.31 624.919 1118.59 626.211C1119.15 628.829 1119.05 631.541 1118.78 634.189C1118.26 636.479 1117.33 638.775 1115.63 640.42C1114.28 641.72 1112.38 642.533 1110.52 642.214C1109.19 641.815 1108.88 639.683 1110.02 638.892C1110.86 638.378 1111.98 638.648 1112.76 638.004C1114.19 636.856 1115.09 635.05 1115.19 633.196C1115.39 630.65 1115.54 628.013 1114.76 625.55C1114.49 624.582 1114.06 623.571 1114.29 622.548Z" fill="black"/> +<path d="M1044.74 624.759C1045.63 624.302 1046.91 624.619 1047.24 625.665C1048.56 630.017 1048.87 634.72 1047.92 639.189C1047.33 641.872 1045.86 644.574 1043.34 645.795C1041.85 646.578 1040.11 646.623 1038.5 646.231C1035.74 645.625 1033.14 644.073 1031.41 641.777C1030.72 640.874 1030.44 639.342 1031.39 638.521C1032.25 637.715 1033.74 638.129 1034.23 639.164C1034.87 640.627 1036.35 641.418 1037.71 642.029C1039.16 642.586 1040.89 643.097 1042.32 642.241C1043.75 641.138 1044.18 639.232 1044.52 637.53C1045.06 633.829 1044.7 630.017 1043.68 626.438C1043.6 625.715 1044.19 625.108 1044.74 624.759Z" fill="black"/> +<path d="M1055 630.498C1055.67 630.124 1056.59 630.406 1057 631.062C1057.69 632.135 1057.79 633.463 1058.09 634.683C1058.32 635.851 1058.83 636.984 1058.76 638.194C1058.58 639.254 1057.42 640.008 1056.4 639.604C1055.24 639.297 1055.05 637.909 1054.85 636.894C1054.65 635.294 1053.94 633.809 1053.82 632.202C1053.71 631.386 1054.41 630.877 1055 630.498Z" fill="black"/> +<path d="M1081.84 635.035C1082.94 634.618 1084.51 635.344 1084.42 636.692C1083.89 639.244 1083.43 641.912 1082.04 644.155C1081.31 645.173 1080.68 646.276 1079.82 647.182C1078.43 648.564 1076.87 649.827 1075.03 650.526C1073.11 651.536 1070.94 651.823 1068.82 651.931C1066.27 651.926 1063.69 651.729 1061.24 650.98C1060.29 650.658 1059.19 650.234 1058.77 649.211C1058.29 648.03 1059.31 646.563 1060.56 646.628C1061.18 646.708 1061.73 647.035 1062.28 647.299C1063.63 648.015 1065.17 648.128 1066.66 648.225C1069.1 648.312 1071.63 648.11 1073.88 647.065C1076.69 645.597 1078.95 642.995 1079.94 639.916C1080.32 638.63 1080.57 637.308 1080.86 636C1081.1 635.601 1081.46 635.284 1081.84 635.035Z" fill="black"/> +<path d="M1100.56 650.695C1101.63 650.381 1102.96 651.189 1103 652.385C1103.02 653.448 1102.27 654.286 1101.68 655.087C1098.9 658.458 1096.23 662.007 1092.76 664.679C1091.2 665.817 1089.33 666.828 1087.35 666.518C1084.94 666.371 1083.1 664.175 1082.63 661.872C1082.35 660.006 1082.62 657.822 1084.05 656.485C1085.11 655.539 1086.92 656.54 1086.97 657.912C1087.11 658.683 1086.26 659.12 1086.21 659.846C1086.1 660.782 1086.25 661.862 1086.96 662.531C1087.61 663.05 1088.49 662.84 1089.17 662.496C1090.96 661.595 1092.45 660.2 1093.74 658.671C1095.81 656.28 1098.22 654.134 1099.72 651.294C1099.9 650.982 1100.25 650.838 1100.56 650.695Z" fill="black"/> +<path d="M1052.11 653.752C1052.87 653.468 1053.91 653.747 1054.29 654.538C1054.94 655.801 1055.26 657.231 1055.35 658.646C1055.3 660.612 1054.59 662.686 1053.02 663.911C1051.51 665.136 1049.44 665.418 1047.61 664.916C1044.33 664.06 1041.56 661.904 1039.11 659.609C1038.13 658.636 1037.01 657.757 1036.28 656.557C1035.55 655.252 1036.99 653.495 1038.37 653.977C1039.65 654.314 1040.29 655.626 1041.2 656.487C1043.25 658.448 1045.5 660.372 1048.23 661.218C1049.03 661.356 1050.02 661.672 1050.7 661.049C1051.6 660.12 1051.97 658.631 1051.53 657.388C1051.33 656.794 1051.04 656.235 1050.93 655.621C1050.82 654.8 1051.47 654.129 1052.11 653.752Z" fill="black"/> +<path d="M1076.92 655.734C1077.89 655.379 1079.17 655.823 1079.51 656.871C1079.64 657.351 1079.66 657.957 1079.32 658.359C1078 659.806 1077.35 661.787 1075.87 663.1C1074.45 664.372 1072.82 665.423 1071.08 666.162C1069.1 666.748 1066.92 666.84 1064.97 666.084C1063.59 665.543 1061.97 665.141 1061.07 663.841C1060.25 662.596 1061.62 660.799 1063 661.108C1063.8 661.37 1064.44 661.999 1065.23 662.314C1066.99 663.137 1069.14 663.135 1070.85 662.179C1072.49 661.286 1073.88 659.948 1074.93 658.386C1075.52 657.453 1075.81 656.173 1076.92 655.734Z" fill="black"/> +<path d="M1064.78 464.296C1065.43 463.999 1066.13 463.802 1066.84 463.737C1066.18 464.024 1065.48 464.193 1064.78 464.296Z" fill="#403201"/> +<path d="M1059.33 470.534C1065.75 467.29 1072.92 465.783 1080.05 465.741C1085.36 465.728 1090.64 466.751 1095.64 468.538C1096.54 468.87 1097.3 469.501 1098.21 469.823C1102.73 471.637 1106.44 474.941 1109.87 478.377C1112.19 481.351 1114.67 484.261 1116.33 487.692C1118.77 491.792 1120.46 496.311 1121.73 500.92C1122.29 503.003 1123.04 505.047 1123.29 507.203C1123.94 510.487 1124.44 513.808 1124.79 517.14C1124.88 521.217 1125.42 525.287 1125.16 529.367C1124.86 535.206 1124.38 541.05 1123.3 546.799C1122.8 549.125 1122.48 551.491 1121.91 553.801C1120.77 557.936 1119.7 562.106 1118.18 566.118C1117.92 567.104 1117.25 567.885 1116.82 568.791C1114.85 572.801 1113.84 577.29 1113.81 581.774C1113.93 584.586 1114.37 587.376 1114.83 590.148C1115.83 593.959 1117.08 597.694 1118.09 601.502C1118.23 602.645 1118.97 603.553 1119.42 604.581C1123.67 613.627 1125.09 624.125 1123.01 633.969C1121.47 641.353 1118.03 648.252 1113.39 654.094C1112.89 654.675 1112.51 655.342 1112.03 655.928C1109.95 658.054 1108.01 660.325 1105.68 662.181C1103.34 664.065 1100.96 665.935 1098.32 667.374C1096.56 668.567 1094.58 669.346 1092.74 670.381C1090.29 671.484 1087.74 672.35 1085.18 673.139C1083.15 673.558 1081.14 674.029 1079.11 674.464C1074.12 674.943 1069.05 675.327 1064.09 674.421L1063.92 674.304C1063.55 673.989 1063.04 674.089 1062.6 674.079C1058.93 673.67 1055.35 672.5 1052.01 670.918C1049.97 670.064 1047.87 669.291 1046.06 667.976C1043.82 666.583 1041.56 665.183 1039.59 663.412C1037.53 661.605 1035.57 659.691 1033.63 657.76C1030.78 654.271 1028.17 650.578 1025.91 646.668C1024.83 644.699 1024.15 642.533 1023.15 640.522C1022.35 639.03 1022.05 637.338 1021.44 635.768C1020.83 634.134 1020.51 632.407 1020.22 630.69C1019.68 628.567 1019.39 626.388 1019.16 624.212C1019.12 622.545 1018.64 620.906 1018.82 619.234C1018.99 617.817 1018.6 616.397 1018.83 614.98C1019.24 611.731 1019.41 608.432 1020.23 605.255C1020.71 600.604 1022.71 596.334 1024.17 591.958C1025.96 586.632 1027.32 581.17 1028.81 575.75C1029.36 573.07 1029.55 570.328 1029.86 567.613C1030.25 564.866 1030.41 562.058 1030.1 559.301C1029.77 557.03 1029.55 554.744 1029.41 552.456C1028.94 549.674 1028.53 546.879 1028.17 544.079C1027.77 541.936 1027.57 539.757 1027.34 537.589C1027.22 533.941 1026.95 530.293 1027.05 526.639C1027.1 524.626 1027.4 522.634 1027.62 520.636C1028.04 516.918 1028.61 513.199 1029.69 509.614C1030.65 505.551 1032.32 501.723 1033.94 497.898C1034.46 496.441 1035.39 495.188 1035.97 493.756C1037.65 490.579 1039.79 487.697 1041.91 484.825C1044.94 480.86 1048.77 477.656 1052.62 474.574C1054.67 472.915 1057.09 471.862 1059.33 470.534ZM1077.93 471.285C1076.97 471.874 1076.36 472.902 1075.72 473.815C1074.8 475.058 1076.17 476.972 1077.6 476.633C1078.54 476.413 1079.03 475.47 1079.6 474.761C1080.04 474.145 1080.77 473.586 1080.68 472.732C1080.66 471.375 1078.99 470.764 1077.93 471.285ZM1084.32 471.912C1083.69 472.263 1083.16 472.962 1083.31 473.731C1083.63 475.694 1084.91 477.411 1084.89 479.452C1084.93 481.556 1085.01 483.919 1083.67 485.668C1082.57 487.161 1080.56 487.567 1078.84 487.268C1076.01 486.774 1073.54 484.957 1071.79 482.686C1070.93 481.636 1069.13 482.003 1068.67 483.255C1068.23 484.199 1068.84 485.169 1069.46 485.836C1071.71 488.303 1074.68 490.128 1077.89 490.909C1080.7 491.6 1083.79 490.657 1085.91 488.685C1087.42 487.086 1088.33 484.902 1088.47 482.689C1088.73 480.004 1088.63 477.152 1087.43 474.694C1086.98 473.751 1086.9 472.498 1085.94 471.909C1085.43 471.742 1084.83 471.712 1084.32 471.912ZM1064.53 474.834C1063.89 475.183 1063.6 475.912 1063.33 476.563C1062.65 478.32 1061.66 479.939 1060.57 481.459C1059.26 483.018 1058 484.72 1056.23 485.761C1055.52 486.155 1054.59 486.562 1053.82 486.093C1052.94 485.484 1052.82 484.313 1052.57 483.348C1052.21 482.489 1051.16 482.105 1050.31 482.317C1049.58 482.619 1049.15 483.413 1049.15 484.194C1049.13 485.638 1049.79 487.003 1050.61 488.144C1051.71 489.648 1053.71 490.17 1055.46 489.895C1057.76 489.594 1059.66 488.056 1061.25 486.432C1063.39 484.291 1064.89 481.613 1066.35 478.966C1066.8 478.045 1067.39 477.057 1067.22 475.986C1066.95 474.826 1065.52 474.469 1064.53 474.834ZM1099.15 474.764C1098.62 475.178 1098.01 475.714 1098.08 476.475C1098.08 477.409 1098.92 477.965 1099.58 478.439C1100.83 479.285 1101.47 480.78 1101.83 482.217C1102.1 483.365 1102.15 484.807 1101.19 485.643C1099.93 486.709 1098.09 486.537 1096.7 485.846C1095.9 485.421 1094.85 485.616 1094.25 486.3C1093.58 487.268 1093.93 488.867 1095.05 489.317C1097.03 490.192 1099.3 490.305 1101.39 489.801C1102.66 489.332 1103.78 488.446 1104.56 487.315C1105.49 485.898 1105.6 484.114 1105.55 482.454C1105.58 481.227 1104.94 480.144 1104.57 479.013C1103.85 477.379 1102.56 476.079 1101.17 475.028C1100.61 474.587 1099.78 474.382 1099.15 474.764ZM1105.04 492.882C1104.28 493.327 1103.55 494.397 1104.05 495.3C1104.5 496.144 1105.3 496.695 1106.01 497.302C1107.98 498.914 1109.26 501.197 1110.47 503.42C1111.37 504.995 1111.57 506.964 1111.04 508.7C1110.76 509.716 1109.66 510.123 1109.22 511.034C1108.7 512.331 1110.07 513.921 1111.4 513.531C1113.04 512.813 1114.18 511.168 1114.63 509.429C1115.28 507.016 1114.79 504.451 1113.96 502.155C1112.74 499.78 1111.35 497.439 1109.44 495.575C1108.48 494.634 1107.68 493.456 1106.47 492.837C1106.02 492.595 1105.5 492.773 1105.04 492.882ZM1070.2 494.894C1068.94 495.058 1067.8 495.657 1066.63 496.134C1065.17 496.917 1064.02 498.232 1063.2 499.682C1062.83 500.356 1062.45 501.12 1062.61 501.918C1062.89 503.193 1064.67 503.775 1065.6 502.881C1066.15 502.295 1066.23 501.411 1066.73 500.793C1067.91 499.385 1069.69 498.552 1071.5 498.527C1073.94 498.477 1076.52 498.801 1078.6 500.214C1079.67 501.007 1081.49 500.353 1081.67 498.964C1081.85 497.945 1081.01 497.152 1080.19 496.773C1077.08 495.348 1073.64 494.222 1070.2 494.894ZM1113.28 520.77C1112.8 521.17 1112.22 521.669 1112.27 522.375C1112.34 523.306 1112.75 524.174 1112.79 525.112C1112.86 526.697 1113.03 528.279 1112.98 529.868C1112.88 533.267 1112.23 536.641 1111.14 539.852C1110.65 541.245 1110.2 542.674 1109.36 543.887C1108.98 544.481 1108.45 544.955 1108.14 545.589C1107.68 546.894 1108.98 548.386 1110.3 548.084C1111.32 547.942 1111.62 546.782 1112.27 546.126C1113.55 544.122 1114.42 541.866 1115.14 539.598C1116.2 536.311 1116.43 532.83 1116.56 529.397C1116.69 526.886 1116.43 524.354 1115.86 521.911C1115.64 520.76 1114.24 520.231 1113.28 520.77ZM1038.43 534.704C1037.47 535.303 1036.99 536.915 1037.99 537.719C1038.96 538.697 1040.89 538.313 1041.13 536.848C1041.47 535.336 1039.76 534.1 1038.43 534.704ZM1032.81 537.407C1032.36 537.746 1031.8 538.096 1031.67 538.694C1031.4 539.922 1032.56 541.165 1033.76 541.052C1034.84 540.878 1035.66 539.635 1035.28 538.547C1035 537.527 1033.73 536.913 1032.81 537.407ZM1089.16 537.988C1088.4 538.355 1087.59 539.144 1087.72 540.084C1087.89 541.06 1088.83 541.901 1089.82 541.796C1091.1 541.544 1091.96 539.837 1091.22 538.664C1090.8 537.961 1089.89 537.806 1089.16 537.988ZM1039.15 541.893C1038.53 542.36 1037.83 543.006 1037.93 543.88C1038.1 544.873 1039.08 545.769 1040.09 545.611C1041.11 545.295 1042.06 544.242 1041.76 543.086C1041.53 541.928 1040.12 541.492 1039.15 541.893ZM1095.2 543.411C1094.15 543.912 1093.76 545.509 1094.67 546.348C1095.62 547.513 1097.76 547.154 1098.08 545.602C1098.45 544.012 1096.57 542.694 1095.2 543.411ZM1089.09 544.878C1087.68 545.075 1087.39 547.004 1088.2 547.982C1089.01 548.995 1090.82 548.626 1091.34 547.478C1091.93 546.128 1090.48 544.421 1089.09 544.878ZM1106.66 557.13C1105.26 557.936 1105.75 559.738 1105.36 561.07C1104.22 566.126 1102.31 571.184 1098.81 575.037C1097.73 576.189 1096.5 577.357 1094.92 577.687C1093.89 577.909 1092.84 577.402 1092.2 576.586C1090.94 575.022 1090.35 573.01 1090.02 571.042C1089.76 569.557 1089.98 568.047 1089.87 566.555C1089.66 565.063 1087.36 564.451 1086.57 565.781C1086.1 566.705 1086.28 567.783 1086.28 568.781C1086.26 572.708 1087.39 576.838 1090.1 579.715C1091.61 581.37 1094.05 581.689 1096.1 581.123C1098.83 580.466 1101.01 578.488 1102.69 576.292C1105.43 572.708 1107.11 568.419 1108.37 564.095C1108.85 562.54 1108.95 560.9 1109.31 559.316C1109.78 557.819 1108.01 556.374 1106.66 557.13ZM1037.69 559.376C1037.26 559.658 1036.83 560.032 1036.71 560.561C1036.41 561.869 1036.61 563.221 1036.55 564.551C1036.45 566.962 1036.56 569.375 1036.6 571.785C1036.6 573.23 1037.08 574.61 1037.2 576.042C1037.3 577.235 1037.76 578.35 1038.22 579.438C1039.03 581.629 1040.68 583.418 1042.59 584.669C1043.83 585.452 1045.61 584.207 1045.37 582.737C1045.24 581.714 1044.14 581.405 1043.47 580.816C1042.38 579.805 1041.65 578.443 1041.24 577.013C1040.45 574.964 1040.41 572.736 1040.19 570.575C1040.12 568.484 1040.05 566.388 1040.12 564.297C1040.15 563.039 1040.43 561.789 1040.32 560.531C1040.09 559.371 1038.65 559.016 1037.69 559.376ZM1036.77 592.384C1034.66 594.518 1033.39 597.362 1032.59 600.247C1032.35 601.17 1032.16 602.243 1032.68 603.107C1033.42 604.372 1035.69 603.958 1035.93 602.493C1036.11 600.102 1037.14 597.824 1038.63 595.995C1039.36 595.099 1040.1 594.096 1041.21 593.687C1041.8 593.407 1042.55 593.265 1042.87 592.626C1043.21 591.958 1042.9 591.206 1042.76 590.53C1042.11 590.118 1041.37 589.624 1040.57 589.884C1039.13 590.388 1037.85 591.301 1036.77 592.384ZM1105.98 590.585C1105.45 590.979 1104.84 591.518 1104.9 592.264C1105.1 593.542 1105.82 594.645 1106.29 595.828C1106.75 597.021 1106.6 598.358 1107.04 599.556C1107.37 600.527 1108.56 600.918 1109.46 600.611C1110.2 600.257 1110.77 599.336 1110.5 598.49C1110.23 597.475 1110.21 596.412 1109.94 595.399C1109.58 593.959 1108.89 592.639 1108.29 591.296C1107.91 590.408 1106.78 590.186 1105.98 590.585ZM1089.21 593.919C1088.72 594.313 1088.18 594.787 1088.12 595.463C1088.02 596.212 1088.53 596.823 1088.9 597.41C1089.72 598.578 1090.14 599.96 1090.73 601.248C1091.33 602.503 1091.55 603.898 1092.05 605.188C1092.5 606.311 1094.16 606.695 1094.99 605.789C1095.59 605.273 1095.5 604.382 1095.33 603.688C1094.9 601.879 1094.38 600.07 1093.51 598.423C1092.79 596.963 1092.14 595.429 1091.06 594.203C1090.59 593.694 1089.8 593.677 1089.21 593.919ZM1056.5 594.608C1055.78 595.044 1055.38 595.823 1055.28 596.661C1054.69 600.235 1054.46 603.863 1054.56 607.486C1054.48 609.133 1054.88 610.742 1055.09 612.364C1055.59 614.201 1056.3 615.978 1057.08 617.709C1057.4 618.431 1058.04 619.077 1058.86 619.072C1060.19 619.177 1061.2 617.44 1060.49 616.29C1059.65 614.785 1059.06 613.145 1058.7 611.456C1057.79 607.189 1057.97 602.757 1058.63 598.47C1058.72 597.629 1059.13 596.856 1059.17 596.012C1059.11 594.74 1057.53 594.094 1056.5 594.608ZM1046.68 596.579C1046.04 596.908 1045.47 597.714 1045.65 598.48C1046.03 601.095 1046.09 603.835 1045.06 606.316C1044.57 607.601 1043.84 608.906 1042.61 609.58C1040.84 610.558 1038.55 610.124 1037.05 608.821C1036.39 608.245 1036.17 607.214 1035.31 606.872C1033.9 606.326 1032.35 608.107 1032.97 609.487C1033.65 610.887 1034.84 611.98 1036.19 612.691C1038.43 613.867 1041.18 614.293 1043.58 613.355C1045.65 612.537 1047.05 610.61 1048.02 608.654C1049.11 606.286 1049.8 603.626 1049.49 600.993C1049.38 599.726 1049.54 598.348 1048.9 597.2C1048.47 596.412 1047.45 596.304 1046.68 596.579ZM1075.45 598.303C1074.69 598.685 1074.36 599.673 1074.49 600.487C1074.76 601.148 1075.43 601.545 1075.69 602.221C1076.3 603.681 1077.05 605.103 1077.31 606.688C1077.52 608.038 1077.98 609.335 1078.07 610.705C1078.21 612.147 1078.6 613.617 1078.24 615.057C1077.92 616.332 1076.85 617.295 1075.65 617.692C1074.09 618.226 1072.35 618.174 1070.79 617.652C1070.07 617.398 1069.6 616.684 1068.85 616.502C1067.43 616.359 1066.32 618.204 1067.12 619.436C1067.97 620.761 1069.6 621.215 1071.03 621.572C1073.29 621.914 1075.76 622.056 1077.85 620.931C1080.57 619.506 1082.13 616.302 1082.02 613.233C1081.65 608.187 1080.51 603.082 1077.88 598.742C1077.33 598.004 1076.23 598.006 1075.45 598.303ZM1091.06 612.534C1090.52 612.821 1090.25 613.432 1090.09 614.006C1089.41 616.761 1088.9 619.596 1089.06 622.451C1089.16 625.505 1089.6 628.744 1091.43 631.257C1092.77 633.168 1095.03 634.423 1097.35 634.281C1100.65 634.044 1103.87 632.397 1105.97 629.769C1106.65 628.941 1107.03 627.661 1106.42 626.683C1105.92 625.857 1104.75 625.685 1103.98 626.214C1103.22 626.633 1103.12 627.623 1102.48 628.165C1101.25 629.273 1099.72 630.012 1098.13 630.368C1096.98 630.648 1095.58 630.58 1094.72 629.65C1093.59 628.372 1093.21 626.615 1092.93 624.963C1092.48 621.363 1092.85 617.677 1093.83 614.199C1093.83 612.854 1092.22 611.973 1091.06 612.534ZM1028.65 621.273C1028.15 621.595 1027.52 622.001 1027.51 622.68C1027.39 624.098 1027.32 625.527 1027.45 626.947C1027.63 628.779 1027.63 630.648 1028.13 632.432C1028.4 633.343 1029.11 634.216 1030.09 634.299C1031.33 634.491 1032.39 632.931 1031.83 631.801C1031.1 630.106 1031.17 628.22 1030.98 626.413C1030.83 625.088 1031.25 623.773 1031.1 622.453C1030.83 621.405 1029.58 621.001 1028.65 621.273ZM1114.29 622.548C1114.06 623.571 1114.49 624.582 1114.76 625.55C1115.54 628.013 1115.39 630.65 1115.19 633.196C1115.09 635.05 1114.19 636.856 1112.76 638.004C1111.98 638.648 1110.86 638.378 1110.02 638.892C1108.88 639.683 1109.19 641.815 1110.52 642.214C1112.38 642.533 1114.28 641.72 1115.63 640.42C1117.33 638.775 1118.26 636.479 1118.78 634.189C1119.05 631.541 1119.15 628.829 1118.59 626.211C1118.31 624.919 1118.25 623.551 1117.68 622.346C1117.42 621.71 1116.71 621.567 1116.17 621.308C1115.48 621.557 1114.51 621.7 1114.29 622.548ZM1044.74 624.759C1044.19 625.108 1043.6 625.715 1043.68 626.438C1044.7 630.017 1045.06 633.829 1044.52 637.53C1044.18 639.232 1043.75 641.138 1042.32 642.241C1040.89 643.097 1039.16 642.586 1037.71 642.029C1036.35 641.418 1034.87 640.627 1034.23 639.164C1033.74 638.129 1032.25 637.715 1031.39 638.521C1030.44 639.342 1030.72 640.874 1031.41 641.777C1033.14 644.073 1035.74 645.625 1038.5 646.231C1040.11 646.623 1041.85 646.578 1043.34 645.795C1045.86 644.574 1047.33 641.872 1047.92 639.189C1048.87 634.72 1048.56 630.017 1047.24 625.665C1046.91 624.619 1045.63 624.302 1044.74 624.759ZM1055 630.498C1054.41 630.877 1053.71 631.386 1053.82 632.202C1053.94 633.809 1054.65 635.294 1054.85 636.894C1055.05 637.909 1055.24 639.297 1056.4 639.604C1057.42 640.008 1058.58 639.254 1058.76 638.194C1058.83 636.984 1058.32 635.851 1058.09 634.683C1057.79 633.463 1057.69 632.135 1057 631.062C1056.59 630.406 1055.67 630.124 1055 630.498ZM1081.84 635.035C1081.46 635.284 1081.1 635.601 1080.86 636C1080.57 637.308 1080.32 638.63 1079.94 639.916C1078.95 642.995 1076.69 645.597 1073.88 647.065C1071.63 648.11 1069.1 648.312 1066.66 648.225C1065.17 648.128 1063.63 648.015 1062.28 647.299C1061.73 647.035 1061.18 646.708 1060.56 646.628C1059.31 646.563 1058.29 648.03 1058.77 649.211C1059.19 650.234 1060.29 650.658 1061.24 650.98C1063.69 651.729 1066.27 651.926 1068.82 651.931C1070.94 651.823 1073.11 651.536 1075.03 650.526C1076.87 649.827 1078.43 648.564 1079.82 647.182C1080.68 646.276 1081.31 645.173 1082.04 644.155C1083.43 641.912 1083.89 639.244 1084.42 636.692C1084.51 635.344 1082.94 634.618 1081.84 635.035ZM1100.56 650.695C1100.25 650.838 1099.9 650.982 1099.72 651.294C1098.22 654.134 1095.81 656.28 1093.74 658.671C1092.45 660.2 1090.96 661.595 1089.17 662.496C1088.49 662.84 1087.61 663.05 1086.96 662.531C1086.25 661.862 1086.1 660.782 1086.21 659.846C1086.26 659.12 1087.11 658.683 1086.97 657.912C1086.92 656.54 1085.11 655.539 1084.05 656.485C1082.62 657.822 1082.35 660.006 1082.63 661.872C1083.1 664.175 1084.94 666.371 1087.35 666.518C1089.33 666.828 1091.2 665.817 1092.76 664.679C1096.23 662.007 1098.9 658.458 1101.68 655.087C1102.27 654.286 1103.02 653.448 1103 652.385C1102.96 651.189 1101.63 650.381 1100.56 650.695ZM1052.11 653.752C1051.47 654.129 1050.82 654.8 1050.93 655.621C1051.04 656.235 1051.33 656.794 1051.53 657.388C1051.97 658.631 1051.6 660.12 1050.7 661.049C1050.02 661.672 1049.03 661.356 1048.23 661.218C1045.5 660.372 1043.25 658.448 1041.2 656.487C1040.29 655.626 1039.65 654.314 1038.37 653.977C1036.99 653.495 1035.55 655.252 1036.28 656.557C1037.01 657.757 1038.13 658.636 1039.11 659.609C1041.56 661.904 1044.33 664.06 1047.61 664.916C1049.44 665.418 1051.51 665.136 1053.02 663.911C1054.59 662.686 1055.3 660.612 1055.35 658.646C1055.26 657.231 1054.94 655.801 1054.29 654.538C1053.91 653.747 1052.87 653.468 1052.11 653.752ZM1076.92 655.734C1075.81 656.173 1075.52 657.453 1074.93 658.386C1073.88 659.948 1072.49 661.286 1070.85 662.179C1069.14 663.135 1066.99 663.137 1065.23 662.314C1064.44 661.999 1063.8 661.37 1063 661.108C1061.62 660.799 1060.25 662.596 1061.07 663.841C1061.97 665.141 1063.59 665.543 1064.97 666.084C1066.92 666.84 1069.1 666.748 1071.08 666.162C1072.82 665.423 1074.45 664.372 1075.87 663.1C1077.35 661.787 1078 659.806 1079.32 658.359C1079.66 657.957 1079.64 657.351 1079.51 656.871C1079.17 655.823 1077.89 655.379 1076.92 655.734Z" fill="#FFCA05"/> +<path d="M1117.33 579.264C1117.01 579.623 1116.88 580.254 1117.38 580.529C1117.42 580.105 1117.41 579.68 1117.33 579.264Z" fill="#3F3201"/> +<path d="M1063.92 674.304C1063.55 673.989 1063.04 674.089 1062.6 674.079C1062.69 674.546 1063.57 674.531 1063.92 674.304Z" fill="#4F3E01"/> +<path d="M1071.72 763.74C1137.6 763.74 1191 757.673 1191 750.189C1191 742.706 1137.6 736.639 1071.72 736.639C1005.84 736.639 952.438 742.706 952.438 750.189C952.438 757.673 1005.84 763.74 1071.72 763.74Z" fill="black"/> +<path d="M1016.71 696.629C1019.93 695.786 1023.36 695.873 1026.57 696.729C1029.76 697.587 1032.81 699.242 1035.04 701.76C1036.43 703.317 1037.43 705.243 1037.83 707.317V712.027C1037.49 714.424 1036.38 716.788 1034.41 718.215C1035.16 720.584 1035.8 722.99 1036.24 725.44C1036.55 727.166 1036.75 728.916 1036.73 730.673C1036.71 732.212 1036.5 733.78 1035.84 735.18C1036.19 737.381 1036.49 739.605 1036.45 741.839C1036.4 743.028 1036.28 744.302 1035.58 745.295C1034.99 746.122 1034 746.457 1033.09 746.758C1031.31 747.304 1029.49 747.687 1027.66 748.059C1025.27 748.539 1022.86 748.96 1020.45 749.351C1019.62 749.514 1018.73 749.031 1018.43 748.224C1018.23 747.612 1018.2 746.957 1018.08 746.327C1012.12 748.565 1005.8 749.658 999.484 750.15H987.96C984.342 749.86 980.736 749.29 977.25 748.244C974.769 747.49 972.336 746.508 970.132 745.109C969.521 744.688 968.837 744.297 968.469 743.616C967.47 741.895 966.777 739.884 967.001 737.858C967.171 736.233 968.095 734.741 969.403 733.821C968.834 728.52 968.937 723.06 970.395 717.909C971.469 714.13 973.458 710.507 976.534 708.069C979.469 705.685 983.221 704.568 986.926 704.402C991.305 704.169 995.629 705.142 999.829 706.307C1002.23 706.977 1004.61 707.728 1006.91 708.706C1006.71 707.23 1006.84 705.703 1007.35 704.303C1008.01 702.42 1009.31 700.827 1010.83 699.597C1012.56 698.192 1014.58 697.191 1016.71 696.629ZM1013.58 702.169C1012.27 703.11 1011.09 704.389 1010.66 706.003C1010.23 707.564 1010.63 709.24 1011.38 710.624C1012.35 712.343 1013.8 713.805 1015.58 714.619C1016.34 715.017 1016.75 715.999 1016.47 716.834C1016.2 717.833 1015.03 718.427 1014.09 718.032C1012.43 717.318 1010.99 716.131 1009.79 714.768C1009.58 714.619 1009.31 714.555 1009.12 714.372C1008.21 713.415 1007 712.855 1005.83 712.307C1003.48 711.275 1001.02 710.517 998.55 709.837C996.048 709.169 993.528 708.523 990.948 708.265C987.692 707.931 984.277 708.095 981.254 709.491C978.759 710.622 976.732 712.685 975.441 715.13C973.69 718.421 973.011 722.193 972.803 725.902C972.656 728.716 972.777 731.546 973.162 734.337C974.722 735.281 976.398 736.007 978.125 736.562C981.719 737.711 985.466 738.261 989.209 738.575C995.363 739.055 1001.55 738.862 1007.69 738.356C1013.2 737.889 1018.68 737.155 1024.12 736.151C1026.36 735.718 1028.61 735.271 1030.82 734.652C1031.3 734.486 1031.86 734.411 1032.23 734.008C1032.71 733.458 1032.86 732.708 1032.98 732.003C1033.2 730.326 1033.02 728.628 1032.78 726.963C1032.39 724.48 1031.77 722.039 1031.01 719.648C1030.05 719.826 1029.06 719.855 1028.09 719.813C1027 719.705 1026.22 718.45 1026.59 717.391C1026.8 716.717 1027.4 716.189 1028.09 716.101C1028.92 716.022 1029.77 715.987 1030.6 715.899C1031.56 715.716 1032.45 715.179 1033.07 714.4C1033.77 713.487 1034.1 712.335 1034.25 711.197C1034.42 709.864 1034.44 708.477 1034.01 707.191C1033.27 704.894 1031.48 703.109 1029.46 701.936C1026.96 700.478 1024.06 699.76 1021.19 699.787C1018.51 699.82 1015.77 700.543 1013.58 702.169ZM971.002 737.354C970.781 737.664 970.639 738.031 970.624 738.418C970.571 739.292 970.857 740.142 971.202 740.928C971.346 741.236 971.483 741.584 971.797 741.751C973.912 743.159 976.302 744.067 978.717 744.776C984.263 746.353 990.066 746.721 995.798 746.566C1001.28 746.406 1006.76 745.732 1012.07 744.325C1014.24 743.737 1016.39 743.06 1018.43 742.122C1018.87 741.873 1019.39 741.71 1019.89 741.83C1020.61 741.963 1021.21 742.599 1021.33 743.343C1021.44 744.013 1021.53 744.687 1021.64 745.358C1023.3 745.079 1024.95 744.779 1026.6 744.454C1028.64 744.025 1030.7 743.653 1032.66 742.951C1032.94 741.324 1032.72 739.664 1032.55 738.038C1029.96 738.821 1027.3 739.353 1024.64 739.861C1016.97 741.266 1009.21 742.176 1001.42 742.501C995.104 742.73 988.736 742.606 982.492 741.484C978.491 740.739 974.473 739.59 971.002 737.354Z" fill="black"/> +<path d="M1013.58 702.169C1015.77 700.543 1018.51 699.82 1021.19 699.787C1024.06 699.76 1026.96 700.478 1029.46 701.936C1031.48 703.109 1033.27 704.894 1034.01 707.191C1034.44 708.477 1034.42 709.864 1034.25 711.197C1034.1 712.335 1033.77 713.487 1033.07 714.4C1032.45 715.179 1031.56 715.716 1030.6 715.899C1029.77 715.987 1028.92 716.022 1028.09 716.101C1027.4 716.189 1026.8 716.717 1026.59 717.391C1026.22 718.45 1027 719.705 1028.09 719.813C1029.06 719.855 1030.05 719.826 1031.01 719.648C1031.77 722.039 1032.39 724.48 1032.78 726.963C1033.02 728.628 1033.2 730.326 1032.98 732.003C1032.86 732.708 1032.71 733.458 1032.23 734.008C1031.86 734.411 1031.3 734.486 1030.82 734.652C1028.61 735.271 1026.36 735.718 1024.12 736.151C1018.68 737.155 1013.2 737.889 1007.69 738.356C1001.55 738.862 995.363 739.055 989.209 738.575C985.466 738.261 981.719 737.711 978.125 736.562C976.398 736.007 974.722 735.281 973.162 734.337C972.777 731.546 972.656 728.716 972.803 725.902C973.011 722.193 973.69 718.421 975.441 715.13C976.732 712.685 978.759 710.622 981.254 709.491C984.277 708.095 987.692 707.931 990.948 708.265C993.528 708.523 996.048 709.169 998.55 709.837C1001.02 710.517 1003.48 711.275 1005.83 712.307C1007 712.855 1008.21 713.415 1009.12 714.372C1009.31 714.555 1009.58 714.619 1009.79 714.768C1010.99 716.131 1012.43 717.318 1014.09 718.032C1015.03 718.427 1016.2 717.833 1016.47 716.834C1016.75 715.999 1016.34 715.017 1015.58 714.619C1013.8 713.805 1012.35 712.343 1011.38 710.624C1010.63 709.24 1010.23 707.564 1010.66 706.003C1011.09 704.389 1012.27 703.11 1013.58 702.169Z" fill="white"/> +<path d="M971.002 737.354C974.473 739.59 978.491 740.739 982.492 741.484C988.736 742.606 995.104 742.73 1001.42 742.501C1009.21 742.176 1016.97 741.266 1024.64 739.861C1027.3 739.353 1029.96 738.821 1032.55 738.038C1032.72 739.664 1032.94 741.324 1032.66 742.951C1030.7 743.653 1028.64 744.025 1026.6 744.454C1024.95 744.779 1023.3 745.079 1021.64 745.358C1021.53 744.687 1021.44 744.013 1021.33 743.343C1021.21 742.599 1020.61 741.963 1019.89 741.83C1019.39 741.71 1018.87 741.873 1018.43 742.122C1016.39 743.06 1014.24 743.737 1012.07 744.325C1006.76 745.732 1001.28 746.406 995.798 746.566C990.066 746.721 984.263 746.353 978.717 744.776C976.302 744.067 973.912 743.159 971.797 741.751C971.483 741.584 971.346 741.236 971.202 740.928C970.857 740.142 970.571 739.292 970.624 738.418C970.639 738.031 970.781 737.664 971.002 737.354Z" fill="#D684B7"/> +<path d="M1115.95 702.883C1119.6 701.956 1123.54 702.007 1127.11 703.29C1129.79 704.285 1132.31 705.971 1133.98 708.361C1135.3 710.238 1135.85 712.626 1135.53 714.909C1138.9 713.504 1142.43 712.521 1145.97 711.671C1148.16 711.141 1150.38 710.765 1152.63 710.632C1155.77 710.444 1158.99 710.74 1161.94 711.892C1163.97 712.674 1165.83 713.882 1167.39 715.419C1170.12 718.134 1171.78 721.783 1172.65 725.525C1173.75 730.268 1173.81 735.211 1173.28 740.037C1174.38 740.804 1175.21 741.962 1175.55 743.28V746.488C1175.29 747.715 1174.79 748.885 1174.14 749.95C1173.85 750.46 1173.33 750.761 1172.88 751.098C1171.31 752.14 1169.61 752.947 1167.86 753.612C1163.67 755.202 1159.22 755.958 1154.78 756.359H1143.08C1136.69 755.884 1130.3 754.785 1124.27 752.532C1124.12 753.253 1124.16 754.046 1123.79 754.703C1123.42 755.347 1122.64 755.698 1121.92 755.562C1118.69 755.044 1115.48 754.482 1112.29 753.774C1110.99 753.476 1109.68 753.172 1108.43 752.709C1107.75 752.447 1107.04 752.091 1106.63 751.454C1105.95 750.47 1105.84 749.219 1105.79 748.054C1105.75 745.861 1106.04 743.676 1106.38 741.516C1106.42 741.356 1106.32 741.214 1106.27 741.07C1105.49 739.235 1105.44 737.182 1105.55 735.215C1105.82 731.526 1106.75 727.927 1107.84 724.413C1106.72 723.604 1105.84 722.467 1105.26 721.201C1104.37 719.221 1104.13 717.005 1104.24 714.852C1104.4 712.207 1105.6 709.694 1107.38 707.783C1109.66 705.313 1112.74 703.707 1115.95 702.883ZM1118.66 706.158C1115.75 706.582 1112.88 707.711 1110.68 709.721C1109.09 711.165 1107.95 713.215 1107.9 715.416C1107.88 716.968 1108.03 718.588 1108.78 719.972C1109.45 721.26 1110.83 722.125 1112.26 722.16C1112.91 722.216 1113.58 722.25 1114.23 722.315C1115.07 722.425 1115.76 723.191 1115.8 724.046C1115.88 724.989 1115.15 725.915 1114.22 726.023C1113.23 726.065 1112.24 726.035 1111.26 725.855C1110.32 728.862 1109.54 731.945 1109.26 735.096C1109.16 736.352 1109.13 737.633 1109.41 738.868C1109.54 739.407 1109.74 739.967 1110.16 740.343C1110.46 740.573 1110.82 740.668 1111.17 740.776C1112.56 741.184 1113.98 741.5 1115.39 741.803C1120.09 742.781 1124.83 743.5 1129.59 744.054C1135.82 744.761 1142.09 745.168 1148.36 745.032C1153.25 744.908 1158.17 744.49 1162.92 743.234C1165.21 742.619 1167.46 741.779 1169.5 740.535C1169.83 738.12 1169.96 735.676 1169.9 733.237C1169.83 730.557 1169.51 727.872 1168.78 725.29C1168.18 723.187 1167.28 721.146 1165.96 719.409C1164.9 718.009 1163.54 716.838 1162 716.026C1159.59 714.734 1156.82 714.296 1154.12 714.332C1150.37 714.345 1146.71 715.287 1143.11 716.273C1140.71 716.962 1138.3 717.718 1136.03 718.784C1135.11 719.241 1134.16 719.703 1133.44 720.457C1133.22 720.704 1132.91 720.812 1132.63 720.968C1131.45 722.314 1130.03 723.461 1128.41 724.197C1127.62 724.579 1126.61 724.272 1126.13 723.533C1125.53 722.677 1125.83 721.35 1126.75 720.86C1128.59 720.029 1130.1 718.52 1131.07 716.737C1131.85 715.292 1132.22 713.523 1131.67 711.929C1131.1 710.21 1129.7 708.939 1128.24 707.988C1125.41 706.178 1121.92 705.698 1118.66 706.158ZM1167.29 745.751C1163.28 747.28 1159.01 748.004 1154.76 748.42C1148.83 748.972 1142.87 748.881 1136.94 748.489C1129.93 748.004 1122.96 747.099 1116.06 745.762C1113.93 745.33 1111.79 744.882 1109.71 744.24C1109.55 745.687 1109.39 747.149 1109.51 748.605C1109.54 748.788 1109.53 748.997 1109.63 749.16C1110.31 749.433 1111.03 749.611 1111.74 749.796C1114.7 750.523 1117.69 751.055 1120.69 751.566C1120.8 750.88 1120.9 750.192 1121.02 749.507C1121.16 748.658 1121.95 747.991 1122.8 748C1123.41 747.984 1123.92 748.369 1124.47 748.575C1128.11 750.097 1131.96 751.044 1135.83 751.726C1141.55 752.685 1147.37 752.997 1153.15 752.697C1158.04 752.399 1162.96 751.613 1167.51 749.724C1168.77 749.179 1170.03 748.59 1171.13 747.751C1171.61 746.942 1171.96 746.024 1172.05 745.075C1172.1 744.547 1171.98 743.999 1171.67 743.571C1170.29 744.456 1168.81 745.164 1167.29 745.751Z" fill="black"/> +<path d="M1118.66 706.158C1121.92 705.698 1125.41 706.178 1128.24 707.988C1129.7 708.939 1131.1 710.21 1131.67 711.929C1132.22 713.523 1131.85 715.292 1131.07 716.737C1130.1 718.52 1128.59 720.029 1126.75 720.86C1125.83 721.35 1125.53 722.677 1126.13 723.533C1126.61 724.272 1127.62 724.579 1128.41 724.197C1130.03 723.461 1131.45 722.314 1132.63 720.968C1132.91 720.812 1133.22 720.704 1133.44 720.457C1134.16 719.703 1135.11 719.241 1136.03 718.784C1138.3 717.718 1140.71 716.962 1143.11 716.273C1146.71 715.287 1150.37 714.345 1154.12 714.332C1156.82 714.296 1159.59 714.734 1162 716.026C1163.54 716.838 1164.9 718.009 1165.96 719.409C1167.28 721.146 1168.18 723.187 1168.78 725.29C1169.51 727.872 1169.83 730.557 1169.9 733.237C1169.96 735.676 1169.83 738.12 1169.5 740.535C1167.46 741.779 1165.21 742.619 1162.92 743.234C1158.17 744.49 1153.25 744.908 1148.36 745.032C1142.09 745.168 1135.82 744.761 1129.59 744.054C1124.83 743.5 1120.09 742.781 1115.39 741.803C1113.98 741.5 1112.56 741.184 1111.17 740.776C1110.82 740.668 1110.46 740.573 1110.16 740.343C1109.74 739.967 1109.54 739.407 1109.41 738.868C1109.13 737.633 1109.16 736.352 1109.26 735.096C1109.54 731.945 1110.32 728.862 1111.26 725.855C1112.24 726.035 1113.23 726.065 1114.22 726.023C1115.15 725.915 1115.88 724.989 1115.8 724.046C1115.76 723.191 1115.07 722.425 1114.23 722.315C1113.58 722.25 1112.91 722.216 1112.26 722.16C1110.83 722.125 1109.45 721.26 1108.78 719.972C1108.03 718.588 1107.88 716.968 1107.9 715.416C1107.95 713.215 1109.09 711.165 1110.68 709.721C1112.88 707.711 1115.75 706.582 1118.66 706.158Z" fill="white"/> +<path d="M1167.29 745.751C1168.81 745.164 1170.29 744.456 1171.67 743.571C1171.98 743.999 1172.1 744.547 1172.05 745.075C1171.96 746.024 1171.61 746.942 1171.13 747.751C1170.03 748.59 1168.77 749.179 1167.51 749.724C1162.96 751.613 1158.04 752.399 1153.15 752.697C1147.37 752.997 1141.55 752.685 1135.83 751.726C1131.96 751.044 1128.11 750.097 1124.47 748.575C1123.92 748.369 1123.41 747.984 1122.8 748C1121.95 747.991 1121.16 748.658 1121.02 749.507C1120.9 750.192 1120.8 750.88 1120.69 751.566C1117.69 751.055 1114.7 750.523 1111.74 749.796C1111.03 749.611 1110.31 749.433 1109.63 749.16C1109.53 748.997 1109.54 748.788 1109.51 748.605C1109.39 747.149 1109.55 745.687 1109.71 744.24C1111.79 744.882 1113.93 745.33 1116.06 745.762C1122.96 747.099 1129.93 748.004 1136.94 748.489C1142.87 748.881 1148.83 748.972 1154.76 748.42C1159.01 748.004 1163.28 747.28 1167.29 745.751Z" fill="#D684B7"/> +<path d="M1154.54 564.214H1155.42C1159.55 564.288 1163.77 565.134 1167.32 567.392C1170.26 569.241 1172.65 572.02 1173.98 575.288C1175.19 578.223 1175.56 581.473 1175.29 584.633C1174.91 589.049 1173.3 593.295 1170.95 596.998C1169.7 598.947 1168.23 600.746 1166.57 602.339C1165.83 603.045 1165.07 603.753 1164.17 604.24C1162.65 605.091 1160.84 605.385 1159.13 605.072C1157.38 604.759 1155.75 603.824 1154.59 602.444C1153.34 600.978 1152.64 599.02 1152.7 597.072C1152.72 594.859 1153.71 592.681 1155.35 591.236C1157.59 589.284 1159.27 586.564 1159.75 583.57C1159.83 582.783 1159.93 581.867 1159.44 581.195C1158.89 580.702 1158.14 580.521 1157.45 580.362C1155.59 580.006 1153.69 580.132 1151.83 580.369C1147.26 581 1142.84 582.474 1138.55 584.158C1132.6 586.534 1126.87 589.437 1121.27 592.568C1119.86 593.333 1118.22 593.648 1116.63 593.427C1114.85 593.196 1113.14 592.314 1111.92 590.953C1110.72 589.654 1110.01 587.916 1109.84 586.14V585.172C1109.95 582.417 1111.55 579.777 1113.95 578.502C1121.86 574.112 1130 570.084 1138.58 567.246C1143.74 565.564 1149.1 564.306 1154.54 564.214ZM1152.48 568.044C1147.42 568.44 1142.49 569.799 1137.71 571.482C1130.47 574.061 1123.55 577.464 1116.81 581.165C1116.24 581.495 1115.64 581.773 1115.11 582.17C1113.97 583.045 1113.34 584.562 1113.51 586.009C1113.66 587.454 1114.6 588.779 1115.9 589.373C1117 589.904 1118.34 589.887 1119.44 589.331C1126.09 585.625 1132.92 582.194 1140.07 579.599C1144.38 578.074 1148.83 576.784 1153.39 576.462C1155.5 576.335 1157.66 576.406 1159.67 577.114C1160.94 577.572 1162.18 578.376 1162.8 579.642C1163.63 581.261 1163.57 583.187 1163.22 584.934C1162.44 588.512 1160.41 591.756 1157.68 594.114C1156.38 595.288 1155.98 597.326 1156.69 598.937C1157.45 600.767 1159.56 601.851 1161.45 601.342C1162.7 601.063 1163.59 600.066 1164.49 599.213C1167.85 595.797 1170.31 591.423 1171.31 586.675C1172 583.355 1171.9 579.789 1170.58 576.643C1169.34 573.65 1166.94 571.225 1164.09 569.831C1160.5 568.076 1156.4 567.755 1152.48 568.044Z" fill="black"/> +<path d="M1152.48 568.044C1156.4 567.755 1160.5 568.076 1164.09 569.831C1166.94 571.225 1169.34 573.65 1170.58 576.643C1171.9 579.789 1172 583.355 1171.31 586.675C1170.31 591.423 1167.85 595.797 1164.49 599.213C1163.59 600.066 1162.7 601.063 1161.45 601.342C1159.56 601.851 1157.45 600.767 1156.69 598.937C1155.98 597.326 1156.38 595.288 1157.68 594.114C1160.41 591.756 1162.44 588.512 1163.22 584.934C1163.57 583.187 1163.63 581.261 1162.8 579.642C1162.18 578.376 1160.94 577.572 1159.67 577.114C1157.66 576.406 1155.5 576.335 1153.39 576.462C1148.83 576.784 1144.38 578.074 1140.07 579.599C1132.92 582.194 1126.09 585.625 1119.44 589.331C1118.34 589.887 1117 589.904 1115.9 589.373C1114.6 588.779 1113.66 587.454 1113.51 586.009C1113.34 584.562 1113.97 583.045 1115.11 582.17C1115.64 581.773 1116.24 581.495 1116.81 581.165C1123.55 577.464 1130.47 574.061 1137.71 571.482C1142.49 569.799 1147.42 568.44 1152.48 568.044Z" fill="#FFCA05"/> +<path d="M1103.98 645.344C1106.04 644.681 1108.34 644.827 1110.31 645.731C1111.64 646.336 1112.81 647.287 1113.72 648.448C1116.15 651.471 1118.16 654.82 1119.95 658.277C1125.4 668.938 1128.26 680.882 1128.87 692.873V703.001C1128.8 704.395 1128.75 705.818 1128.25 707.136C1127.2 710.183 1124.46 712.517 1121.36 713.059H1118.27C1114.82 712.489 1111.86 709.651 1111.07 706.16C1110.61 704.428 1110.93 702.633 1110.96 700.873C1111.3 691.329 1110.03 681.654 1106.66 672.722C1105.16 668.778 1103.29 664.96 1100.87 661.522C1100.21 660.555 1099.36 659.732 1098.81 658.687C1097.23 655.88 1097.28 652.212 1098.91 649.441C1100.03 647.496 1101.87 646.006 1103.98 645.344ZM1105.72 648.514C1104.66 648.694 1103.66 649.198 1102.87 649.942C1101.56 651.175 1100.86 653.077 1101.12 654.891C1101.26 656.128 1101.84 657.278 1102.67 658.181C1104.95 661.08 1106.75 664.345 1108.29 667.706C1110.29 672.127 1111.78 676.788 1112.78 681.552C1114.31 688.79 1114.72 696.254 1114.25 703.637C1114.07 705.976 1115.49 708.309 1117.59 709.216C1119.25 709.972 1121.27 709.808 1122.8 708.789C1124.18 707.899 1125.14 706.347 1125.33 704.681C1125.88 696.888 1125.5 689.014 1124.09 681.332C1122.5 672.785 1119.64 664.451 1115.32 656.948C1113.99 654.679 1112.56 652.459 1110.88 650.442C1109.65 648.931 1107.61 648.172 1105.72 648.514Z" fill="black"/> +<path d="M1105.72 648.514C1107.61 648.172 1109.65 648.931 1110.88 650.442C1112.56 652.459 1113.99 654.679 1115.32 656.948C1119.64 664.451 1122.5 672.785 1124.09 681.332C1125.5 689.014 1125.88 696.888 1125.33 704.681C1125.14 706.347 1124.18 707.899 1122.8 708.789C1121.27 709.808 1119.25 709.972 1117.59 709.216C1115.49 708.309 1114.07 705.976 1114.25 703.637C1114.72 696.254 1114.31 688.79 1112.78 681.552C1111.78 676.788 1110.29 672.127 1108.29 667.706C1106.75 664.345 1104.95 661.08 1102.67 658.181C1101.84 657.278 1101.26 656.128 1101.12 654.891C1100.86 653.077 1101.56 651.175 1102.87 649.942C1103.66 649.198 1104.66 648.694 1105.72 648.514Z" fill="#FFCA05"/> +<path d="M1148.68 585.699C1150.69 584.905 1152.89 584.658 1155.04 584.783C1158.31 584.984 1161.49 586.002 1164.4 587.496C1167.05 588.888 1169.51 590.708 1171.48 593.017C1174.48 596.462 1176.68 600.718 1177.39 605.305V610.197C1177.06 612.187 1176.27 614.105 1175 615.661C1173.46 617.624 1171.54 619.469 1169.1 620.122C1168.71 621.976 1167.84 623.68 1166.77 625.214C1165.68 626.802 1164.39 628.231 1163.04 629.6C1164.31 631.779 1165.17 634.222 1165.43 636.751C1165.88 640.801 1164.74 644.971 1162.41 648.267C1159.74 652.135 1155.49 654.781 1150.93 655.535H1147.1C1144.19 655.213 1141.23 654.486 1138.78 652.771C1136.09 653.707 1133.09 653.554 1130.44 652.516C1128.06 651.582 1125.95 650.015 1124.17 648.168C1122.55 646.525 1121.18 644.642 1119.97 642.672C1117.46 641.664 1115.22 639.985 1113.55 637.83C1111.06 634.663 1109.8 630.568 1109.84 626.521C1109.86 622.819 1111 619.202 1112.72 615.974C1114.81 612.062 1117.69 608.64 1120.91 605.652C1123.3 603.455 1125.87 601.44 1128.68 599.832C1132.06 598.018 1135.65 596.58 1139.39 595.797C1140.17 592.673 1142.23 590.039 1144.69 588.096C1145.92 587.141 1147.22 586.26 1148.68 585.699ZM1149.83 589.741C1148.4 590.409 1147.12 591.393 1145.97 592.486C1145.09 593.38 1144.33 594.408 1143.8 595.557C1145.45 595.797 1147.09 596.296 1148.52 597.195C1149.38 597.795 1149.65 599.113 1149.07 600.005C1148.56 600.927 1147.29 601.279 1146.39 600.751C1145.41 600.206 1144.34 599.834 1143.24 599.732C1142.56 599.65 1141.88 599.691 1141.2 599.692C1139.84 599.975 1138.48 600.287 1137.15 600.715C1135.23 601.318 1133.37 602.132 1131.56 603.024C1129.74 603.926 1128.07 605.109 1126.46 606.359C1124.46 607.926 1122.6 609.678 1120.88 611.566C1118.7 614.01 1116.77 616.725 1115.46 619.764C1114.33 622.383 1113.71 625.286 1114 628.154C1114.31 631.313 1115.65 634.424 1117.99 636.557C1117.33 632.773 1117.75 628.858 1118.85 625.203C1119.2 624.23 1120.35 623.662 1121.32 623.98C1122.35 624.252 1123.03 625.461 1122.72 626.513C1122.35 627.86 1122.05 629.233 1121.89 630.626C1121.51 633.831 1122.01 637.129 1123.24 640.096C1124.82 642.779 1126.77 645.299 1129.27 647.135C1130.96 648.386 1133 649.227 1135.1 649.204C1133.35 646.991 1132.09 644.337 1131.68 641.506C1131.27 638.847 1131.6 636.133 1132.19 633.53C1132.35 632.883 1132.83 632.332 1133.45 632.107C1134.47 631.679 1135.74 632.284 1136.09 633.355C1136.4 634.134 1136.03 634.935 1135.93 635.714C1135.48 638.085 1135.39 640.606 1136.23 642.901C1137.04 645.182 1138.56 647.133 1140.27 648.774C1140.87 649.1 1141.39 649.549 1142 649.861C1143.75 650.82 1145.75 651.153 1147.71 651.377C1148.4 651.429 1149.09 651.592 1149.78 651.466C1153.29 651.036 1156.63 649.165 1158.78 646.275C1160.39 644.149 1161.34 641.495 1161.39 638.8C1161.45 636.629 1160.91 634.461 1159.95 632.532C1157.58 634.453 1154.83 635.873 1151.89 636.627C1151.2 638.534 1151.36 640.657 1151.93 642.575C1152.27 643.667 1151.53 644.918 1150.45 645.164C1149.46 645.428 1148.35 644.821 1148.03 643.832C1147.39 641.721 1147.14 639.455 1147.52 637.266C1146.42 637.234 1145.47 636.201 1145.54 635.074C1145.56 633.97 1146.54 633.034 1147.61 633.059C1151.61 632.837 1155.56 631.191 1158.41 628.291C1160.53 626.322 1162.62 624.255 1164.11 621.732C1164.62 620.804 1165.09 619.803 1165.14 618.72C1165.12 617.091 1164.74 615.404 1163.72 614.112C1163.2 613.318 1162.28 612.696 1162.25 611.653C1162.14 610.385 1163.35 609.238 1164.58 609.458C1165.47 609.542 1166 610.345 1166.53 610.99C1167.67 612.357 1168.52 613.979 1168.9 615.741C1170.22 614.989 1171.25 613.813 1172.15 612.592C1173.13 611.174 1173.5 609.398 1173.47 607.681C1173.43 605.162 1172.67 602.706 1171.57 600.473C1170.3 597.98 1168.59 595.714 1166.5 593.882C1163.83 591.626 1160.61 590.046 1157.22 589.297C1154.78 588.784 1152.16 588.739 1149.83 589.741Z" fill="black"/> +<path d="M1149.83 589.741C1152.16 588.739 1154.78 588.784 1157.22 589.297C1160.61 590.046 1163.83 591.626 1166.5 593.882C1168.59 595.714 1170.3 597.98 1171.57 600.473C1172.67 602.706 1173.43 605.162 1173.47 607.681C1173.5 609.398 1173.13 611.174 1172.15 612.592C1171.25 613.813 1170.22 614.989 1168.9 615.741C1168.52 613.979 1167.67 612.357 1166.53 610.99C1166 610.345 1165.47 609.542 1164.58 609.458C1163.35 609.238 1162.14 610.385 1162.25 611.653C1162.28 612.696 1163.2 613.318 1163.72 614.112C1164.74 615.404 1165.12 617.091 1165.14 618.72C1165.09 619.803 1164.62 620.804 1164.11 621.732C1162.62 624.255 1160.53 626.322 1158.41 628.291C1155.56 631.191 1151.61 632.837 1147.61 633.059C1146.54 633.034 1145.56 633.97 1145.54 635.074C1145.47 636.201 1146.42 637.234 1147.52 637.266C1147.14 639.455 1147.39 641.721 1148.03 643.832C1148.35 644.821 1149.46 645.428 1150.45 645.164C1151.53 644.918 1152.27 643.667 1151.93 642.575C1151.36 640.657 1151.2 638.534 1151.89 636.627C1154.83 635.873 1157.58 634.453 1159.95 632.532C1160.91 634.461 1161.45 636.629 1161.39 638.8C1161.34 641.495 1160.39 644.149 1158.78 646.275C1156.63 649.165 1153.29 651.036 1149.78 651.466C1149.09 651.592 1148.4 651.429 1147.71 651.377C1145.75 651.153 1143.75 650.82 1142 649.861C1141.39 649.549 1140.87 649.1 1140.27 648.774C1138.56 647.133 1137.04 645.182 1136.23 642.901C1135.39 640.606 1135.48 638.085 1135.93 635.714C1136.03 634.935 1136.4 634.134 1136.09 633.355C1135.74 632.284 1134.47 631.679 1133.45 632.107C1132.83 632.332 1132.35 632.883 1132.19 633.53C1131.6 636.133 1131.27 638.847 1131.68 641.506C1132.09 644.337 1133.35 646.991 1135.1 649.204C1133 649.227 1130.96 648.386 1129.27 647.135C1126.77 645.299 1124.82 642.779 1123.24 640.096C1122.01 637.129 1121.51 633.831 1121.89 630.626C1122.05 629.233 1122.35 627.86 1122.72 626.513C1123.03 625.461 1122.35 624.252 1121.32 623.98C1120.35 623.662 1119.2 624.23 1118.85 625.203C1117.75 628.858 1117.33 632.773 1117.99 636.557C1115.65 634.424 1114.31 631.313 1114 628.154C1113.71 625.286 1114.33 622.383 1115.46 619.764C1116.77 616.725 1118.7 614.01 1120.88 611.566C1122.6 609.678 1124.46 607.926 1126.46 606.359C1128.07 605.109 1129.74 603.926 1131.56 603.024C1133.37 602.132 1135.23 601.318 1137.15 600.715C1138.48 600.287 1139.84 599.975 1141.2 599.692C1141.88 599.691 1142.56 599.65 1143.24 599.732C1144.34 599.834 1145.41 600.206 1146.39 600.751C1147.29 601.279 1148.56 600.927 1149.07 600.005C1149.65 599.113 1149.38 597.795 1148.52 597.195C1147.09 596.296 1145.45 595.797 1143.8 595.557C1144.33 594.408 1145.09 593.38 1145.97 592.486C1147.12 591.393 1148.4 590.409 1149.83 589.741Z" fill="white"/> +<path d="M1054.09 549.084C1054.59 548.464 1055.51 548.265 1056.2 548.643C1056.88 548.984 1057.28 549.823 1057.12 550.586C1056.78 552.183 1055.86 553.597 1054.68 554.662C1056.38 556.139 1058.22 557.468 1060.23 558.48C1063.49 560.155 1067.18 560.917 1070.82 560.58C1074.92 560.267 1078.84 558.639 1082.29 556.369C1080.72 554.921 1079.66 552.773 1079.82 550.569C1079.87 549.654 1080.71 548.896 1081.6 548.948C1082.53 548.95 1083.35 549.85 1083.28 550.814C1083.23 552.049 1083.93 553.209 1084.88 553.915C1086.25 554.963 1088.26 554.902 1089.64 553.9C1090.2 553.528 1090.55 552.825 1091.25 552.671C1092.16 552.389 1093.18 553.056 1093.38 553.997V554.813C1093.3 555.07 1093.2 555.323 1093.02 555.53C1091.47 557.405 1089.02 558.409 1086.64 558.239C1086.58 560.432 1086.32 562.613 1085.96 564.775C1085.23 569.019 1084.07 573.218 1082.18 577.076C1080.61 580.229 1078.48 583.193 1075.58 585.169C1073.57 586.551 1071.22 587.345 1068.83 587.555H1066.6C1063.83 587.386 1061.12 586.317 1058.97 584.502C1056.02 582.046 1054.11 578.532 1052.81 574.915C1051.48 571.181 1050.73 567.251 1050.32 563.304C1050.09 561.078 1049.96 558.838 1050 556.599C1048.75 556.726 1047.48 556.656 1046.24 556.487C1045.33 556.397 1044.6 555.447 1044.74 554.513C1044.82 553.601 1045.67 552.853 1046.56 552.944C1047.98 553.096 1049.45 553.246 1050.83 552.794C1051.96 552.448 1052.99 551.649 1053.49 550.533C1053.72 550.061 1053.74 549.492 1054.09 549.084ZM1053.43 558.294C1053.4 558.609 1053.41 558.927 1053.44 559.242C1053.53 559.068 1053.58 558.876 1053.6 558.681C1053.62 558.539 1053.68 558.162 1053.43 558.294ZM1077.55 562.729C1073.65 564.13 1069.42 564.595 1065.34 563.913C1062.36 563.415 1059.51 562.262 1056.91 560.715C1056.87 561.466 1056.83 562.217 1056.78 562.968C1059.86 564.051 1063.06 564.774 1066.27 565.283C1071.56 566.109 1076.95 566.181 1082.26 565.564C1082.63 563.751 1082.9 561.917 1083.06 560.072C1081.31 561.131 1079.47 562.047 1077.55 562.729ZM1054.03 565.133C1054.47 568.138 1055.12 571.122 1056.16 573.969C1057.92 572.723 1060.04 571.991 1062.18 571.998C1064.5 571.965 1066.78 572.71 1068.81 573.826C1070.51 572.295 1072.52 571.102 1074.71 570.509C1076.77 569.961 1078.96 570.062 1081.01 570.646C1081.13 570.176 1081.28 569.712 1081.41 569.244C1072.88 570.078 1064.17 569.177 1056 566.471C1055.23 566.248 1054.56 565.749 1054.03 565.133ZM1071.52 576.146C1071.04 576.569 1070.53 576.986 1070.18 577.539C1069.14 579.177 1068.27 580.92 1067.4 582.656C1066.99 583.409 1066 583.727 1065.24 583.372C1064.37 583.019 1063.93 581.877 1064.34 581.006C1065.04 579.532 1065.81 578.091 1066.61 576.674C1065.26 576.019 1063.79 575.562 1062.29 575.566C1060.62 575.555 1058.94 576.174 1057.67 577.306C1058.53 578.857 1059.56 580.335 1060.89 581.495C1062.42 582.864 1064.36 583.744 1066.38 583.948C1069.1 584.262 1071.93 583.519 1074.13 581.835C1076.71 579.88 1078.46 576.986 1079.74 574.005C1078.92 573.783 1078.06 573.69 1077.21 573.727C1075.11 573.799 1073.14 574.82 1071.52 576.146Z" fill="black"/> +<path d="M1053.43 558.294C1053.68 558.162 1053.62 558.539 1053.6 558.681C1053.58 558.876 1053.53 559.068 1053.44 559.242C1053.41 558.927 1053.4 558.609 1053.43 558.294Z" fill="#43161D"/> +<path d="M1077.55 562.729C1079.47 562.047 1081.31 561.131 1083.06 560.072C1082.9 561.917 1082.63 563.751 1082.26 565.564C1076.95 566.181 1071.56 566.109 1066.27 565.283C1063.06 564.774 1059.86 564.051 1056.78 562.968C1056.83 562.217 1056.87 561.466 1056.91 560.715C1059.51 562.262 1062.36 563.415 1065.34 563.913C1069.42 564.595 1073.65 564.13 1077.55 562.729Z" fill="#FFF8F5"/> +<path d="M1054.03 565.133C1054.56 565.749 1055.23 566.248 1056 566.471C1064.17 569.177 1072.88 570.078 1081.41 569.244C1081.28 569.712 1081.13 570.176 1081.01 570.646C1078.96 570.062 1076.77 569.961 1074.71 570.509C1072.52 571.102 1070.51 572.295 1068.81 573.826C1066.78 572.71 1064.5 571.965 1062.18 571.998C1060.04 571.991 1057.92 572.723 1056.16 573.969C1055.12 571.122 1054.47 568.138 1054.03 565.133Z" fill="#C34155"/> +<path d="M1071.52 576.146C1073.14 574.82 1075.11 573.799 1077.21 573.727C1078.06 573.69 1078.92 573.783 1079.74 574.005C1078.46 576.986 1076.71 579.88 1074.13 581.835C1071.93 583.519 1069.1 584.262 1066.38 583.948C1064.36 583.744 1062.42 582.864 1060.89 581.495C1059.56 580.335 1058.53 578.857 1057.67 577.306C1058.94 576.174 1060.62 575.555 1062.29 575.566C1063.79 575.562 1065.26 576.019 1066.61 576.674C1065.81 578.091 1065.04 579.532 1064.34 581.006C1063.93 581.877 1064.37 583.019 1065.24 583.372C1066 583.727 1066.99 583.409 1067.4 582.656C1068.27 580.92 1069.14 579.177 1070.18 577.539C1070.53 576.986 1071.04 576.569 1071.52 576.146Z" fill="#F7B5C4"/> +<path d="M1084.32 502.055C1086.45 500.488 1089.2 499.931 1091.77 500.339C1093.75 500.627 1095.61 501.563 1097.09 502.929C1098.74 504.436 1099.92 506.402 1100.81 508.452C1101.63 510.372 1102.19 512.398 1102.59 514.45C1103.58 519.713 1103.59 525.132 1102.98 530.443C1102.68 533.204 1102.05 535.912 1101.48 538.623C1102.26 539.35 1103.04 540.083 1103.78 540.852C1104 541.067 1104.18 541.311 1104.33 541.571V543.198C1104.1 543.725 1103.65 544.145 1103.11 544.302C1102.45 544.5 1101.7 544.316 1101.22 543.821C1100.39 542.99 1099.6 542.104 1098.63 541.441C1095.51 539.137 1092.12 536.994 1088.29 536.247C1085.44 535.675 1082.47 536.149 1079.84 537.327C1078.66 537.793 1077.6 538.524 1076.55 539.226C1075.5 539.923 1073.93 539.24 1073.69 537.99C1073.5 537.229 1073.81 536.363 1074.45 535.922C1075.25 535.365 1076.07 534.838 1076.92 534.36C1076.49 530.058 1076.33 525.719 1076.66 521.404C1076.98 517.338 1077.65 513.257 1079.11 509.445C1080.22 506.608 1081.85 503.855 1084.32 502.055ZM1086.57 505.289C1084.84 506.523 1083.73 508.443 1082.91 510.388C1081.46 513.954 1080.83 517.808 1080.53 521.636C1080.24 525.363 1080.32 529.111 1080.66 532.831C1082.14 532.377 1083.68 532.124 1085.22 532.062C1084.88 530.205 1084.7 528.321 1084.65 526.434C1084.66 526.068 1085.06 525.942 1085.35 525.871C1087.17 525.53 1089.07 525.723 1090.86 525.14C1091.72 524.866 1092.61 524.325 1092.91 523.402C1093.29 522.399 1092.8 521.327 1092.13 520.592C1090.47 518.748 1088.15 517.751 1086.26 516.195C1085.87 515.848 1085.39 515.369 1085.56 514.789C1086.32 511.078 1087.5 507.402 1089.49 504.173C1088.45 504.31 1087.43 504.659 1086.57 505.289Z" fill="black"/> +<path d="M1050.95 500.601C1053.74 500.103 1056.74 500.746 1059.01 502.499C1061.18 504.149 1062.61 506.615 1063.54 509.169C1064.47 511.754 1064.93 514.494 1065.14 517.233C1065.35 520.04 1065.3 522.862 1065.04 525.664C1068.33 526.724 1071.13 529.422 1072.09 532.832C1072.22 533.363 1071.98 533.882 1071.68 534.301C1071.61 534.344 1071.53 534.389 1071.46 534.437C1070.9 534.901 1070.01 534.866 1069.48 534.366C1069.16 534.107 1069.02 533.703 1068.88 533.324C1068.18 531.405 1066.64 529.87 1064.81 529.056C1062.74 528.132 1060.33 528.018 1058.19 528.773C1056.59 529.335 1055.18 530.465 1054.36 531.983C1053.43 533.683 1053.25 535.706 1053.46 537.613C1053.69 539.686 1054.55 541.717 1056.02 543.19C1057.28 544.506 1058.99 545.414 1060.81 545.555C1062.44 545.631 1064.15 545.272 1065.49 544.283C1066.64 543.484 1067.44 542.285 1068.03 541.024C1068.51 540.017 1070.02 539.898 1070.66 540.79C1071.03 541.253 1071.13 541.914 1070.89 542.461C1070.4 543.56 1069.75 544.59 1068.96 545.487C1067.58 547.057 1065.71 548.125 1063.7 548.574H1059.03C1056.46 547.932 1054.15 546.306 1052.6 544.126C1051.02 541.959 1050.25 539.271 1050.17 536.593C1049.25 536.271 1048.3 536.039 1047.33 535.906C1044.68 535.536 1041.97 536.092 1039.51 537.116C1038.75 537.496 1037.99 537.875 1037.26 538.317C1036.38 538.824 1035.16 538.465 1034.68 537.57C1034.16 536.703 1034.44 535.44 1035.3 534.919C1036.15 534.405 1037.02 533.926 1037.93 533.52C1037.82 529.631 1037.94 525.728 1038.44 521.868C1038.91 518.266 1039.66 514.684 1040.92 511.276C1041.99 508.417 1043.44 505.629 1045.62 503.485C1047.09 502.039 1048.93 500.962 1050.95 500.601ZM1048.79 505.896C1047.24 507.172 1046.18 508.954 1045.33 510.766C1044.16 513.297 1043.42 516.006 1042.87 518.738C1042 523.189 1041.68 527.74 1041.78 532.274C1043.29 531.943 1044.84 531.789 1046.38 531.867C1046.17 529.986 1046.13 528.087 1046.22 526.198C1046.23 526.001 1046.39 525.857 1046.56 525.797C1047.02 525.624 1047.52 525.639 1048 525.619C1049.45 525.612 1050.91 525.714 1052.34 525.421C1052.92 525.291 1053.5 525.097 1053.98 524.721C1054.67 524.186 1055.04 523.216 1054.81 522.348C1054.56 521.36 1053.86 520.573 1053.16 519.886C1051.74 518.51 1050.04 517.487 1048.61 516.136C1048.29 515.796 1047.9 515.396 1047.93 514.892C1048.15 513.985 1048.44 513.095 1048.74 512.212C1049.72 509.451 1050.94 506.742 1052.67 504.384C1051.26 504.414 1049.88 504.985 1048.79 505.896Z" fill="black"/> +<path d="M1086.57 505.289C1087.43 504.659 1088.45 504.31 1089.49 504.173C1087.5 507.402 1086.32 511.078 1085.56 514.789C1085.39 515.369 1085.87 515.848 1086.26 516.195C1088.15 517.751 1090.47 518.748 1092.13 520.592C1092.8 521.327 1093.29 522.399 1092.91 523.402C1092.61 524.325 1091.72 524.866 1090.86 525.14C1089.07 525.723 1087.17 525.53 1085.35 525.871C1085.06 525.942 1084.66 526.068 1084.65 526.434C1084.7 528.321 1084.88 530.205 1085.22 532.062C1083.68 532.124 1082.14 532.377 1080.66 532.831C1080.32 529.111 1080.24 525.363 1080.53 521.636C1080.83 517.808 1081.46 513.954 1082.91 510.388C1083.73 508.443 1084.84 506.523 1086.57 505.289Z" fill="white"/> +<path d="M1048.79 505.896C1049.88 504.985 1051.26 504.414 1052.67 504.384C1050.94 506.742 1049.72 509.451 1048.74 512.212C1048.44 513.095 1048.15 513.985 1047.93 514.892C1047.9 515.396 1048.29 515.796 1048.61 516.136C1050.04 517.487 1051.74 518.51 1053.16 519.886C1053.86 520.573 1054.56 521.36 1054.81 522.348C1055.04 523.216 1054.67 524.186 1053.98 524.721C1053.5 525.097 1052.92 525.291 1052.34 525.421C1050.91 525.714 1049.45 525.612 1048 525.619C1047.52 525.639 1047.02 525.624 1046.56 525.797C1046.39 525.857 1046.23 526.001 1046.22 526.198C1046.13 528.087 1046.17 529.986 1046.38 531.867C1044.84 531.789 1043.29 531.943 1041.78 532.274C1041.68 527.74 1042 523.189 1042.87 518.738C1043.42 516.006 1044.16 513.297 1045.33 510.766C1046.18 508.954 1047.24 507.172 1048.79 505.896Z" fill="white"/> +<path d="M1058.19 528.773C1060.33 528.018 1062.74 528.132 1064.81 529.056C1066.64 529.87 1068.18 531.405 1068.88 533.324C1069.02 533.703 1069.16 534.107 1069.48 534.366C1070.01 534.866 1070.9 534.901 1071.46 534.437C1071.5 534.45 1071.58 534.477 1071.62 534.49C1072 536.653 1071.72 538.935 1070.78 540.915L1070.66 540.79C1070.02 539.898 1068.51 540.017 1068.03 541.024C1067.44 542.285 1066.64 543.484 1065.49 544.283C1064.15 545.272 1062.44 545.631 1060.81 545.555C1058.99 545.414 1057.28 544.506 1056.02 543.19C1054.55 541.717 1053.69 539.686 1053.46 537.613C1053.25 535.706 1053.43 533.683 1054.36 531.983C1055.18 530.465 1056.59 529.335 1058.19 528.773Z" fill="#FFCA05"/> +<defs> +<linearGradient id="paint0_linear_17007_2267" x1="5.71025e-06" y1="330.901" x2="1208" y2="382.21" gradientUnits="userSpaceOnUse"> +<stop stop-color="white" stop-opacity="0.29"/> +<stop offset="1" stop-color="white" stop-opacity="0.12"/> +</linearGradient> +</defs> +</svg> diff --git a/src/assets/cards/Cart Gradient 5.png b/src/assets/cards/Cart Gradient 5.png new file mode 100644 index 000000000..abd139106 Binary files /dev/null and b/src/assets/cards/Cart Gradient 5.png differ diff --git a/src/assets/cards/Cart Gradient 9.svg b/src/assets/cards/Cart Gradient 9.svg new file mode 100644 index 000000000..77a1bf628 --- /dev/null +++ b/src/assets/cards/Cart Gradient 9.svg @@ -0,0 +1,70 @@ +<svg width="1208" height="765" viewBox="0 0 1208 765" fill="none" xmlns="http://www.w3.org/2000/svg"> +<rect x="2.1533" y="2.1533" width="1203.69" height="760.114" rx="62.4456" fill="#FF90E8" stroke="url(#paint0_linear_17007_6863)" stroke-width="4.3066"/> +<mask id="mask0_17007_6863" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="0" y="0" width="1208" height="765"> +<rect width="1208" height="764.421" rx="64.5989" fill="#FF90E8"/> +</mask> +<g mask="url(#mask0_17007_6863)"> +<path d="M870.408 367.248C860.33 355.55 855.558 339.496 857.599 324.213C859.212 310.018 866.931 297.003 877.809 287.986L900 277.484C908.848 275.879 917.878 276.139 926.832 276.414C972.69 278.348 1018.03 289.395 1060.48 306.974C1113.05 328.776 1160.97 361.528 1201.37 401.757C1230.92 431.151 1256.53 464.441 1278.23 500.032C1282.56 506.983 1286.46 514.204 1290.74 521.197L1311.36 564.772C1315.58 582.575 1310.39 602.267 1297.79 615.409C1286.37 627.593 1269.19 634.059 1252.56 632.187C1238.18 630.8 1224.5 623.381 1215.37 612.098C1209.57 605.196 1206.5 596.603 1202.24 588.76C1174.96 535.631 1137.97 486.665 1090.35 450.302C1062.7 429.145 1031.66 412.447 998.75 401.308C970.337 392.004 940.541 385.906 910.591 386.67C895.309 386.269 880.308 379.01 870.408 367.248ZM888.351 347.128C894.029 355.964 904.741 360.973 915.087 359.988C940.483 359.84 965.789 364.194 990.272 370.941C1050.18 387.51 1104.92 421.467 1148.04 466.369C1181.46 500.842 1208.36 541.298 1229.65 584.264C1232.06 589.312 1234.42 594.615 1238.75 598.335C1247.92 606.962 1262.91 608.335 1273.32 601.328C1284.79 594.215 1289.52 578.335 1283.86 565.979C1255.4 506.525 1217.13 451.173 1168.2 406.814C1128.41 370.614 1081.65 342.053 1031.06 324.071C992.967 310.775 952.8 302.468 912.431 302.912C901.189 302.688 890.196 309.714 885.965 320.193C882.189 328.801 883.154 339.266 888.351 347.128Z" fill="black"/> +<path d="M888.351 347.128C883.154 339.266 882.189 328.801 885.965 320.193C890.196 309.714 901.189 302.688 912.431 302.912C952.8 302.468 992.967 310.775 1031.06 324.071C1081.65 342.053 1128.41 370.614 1168.2 406.814C1217.13 451.173 1255.4 506.525 1283.86 565.979C1289.52 578.335 1284.79 594.215 1273.32 601.328C1262.91 608.335 1247.92 606.962 1238.75 598.335C1234.42 594.615 1232.06 589.312 1229.65 584.264C1208.36 541.298 1181.46 500.842 1148.04 466.369C1104.92 421.467 1050.18 387.51 990.272 370.941C965.789 364.194 940.483 359.84 915.087 359.988C904.741 360.973 894.029 355.964 888.351 347.128Z" fill="#FFCA05"/> +<path d="M527.124 132.052C530.315 119.576 539.529 108.753 551.432 103.647C563.178 98.4566 576.814 98.6027 588.819 102.687C598.514 105.848 607.13 111.598 614.51 118.517C613.108 108.895 613.59 98.7033 617.751 89.7476C621.989 80.3913 630.324 72.9781 640.119 69.7801C649.876 66.4906 660.722 67.5013 670.112 71.3942C681.391 76.1512 690.803 84.8353 696.902 95.3522C699.528 99.6916 701.219 104.518 703.683 108.948C707.96 116.858 713.393 124.174 720.024 130.289C732.982 142.422 749.986 149.871 767.542 152.435C773.746 153.398 780.064 152.993 786.29 153.726C804.087 155.543 821.357 161.612 836.506 170.982C859.273 184.933 876.907 206.503 886.924 231.099C898.299 229.794 910.237 231.599 920.143 237.432C929.953 242.967 937.444 252.13 941.552 262.53C946.736 275.553 947.517 289.989 945.551 303.788C943.307 319.711 937.642 335.047 929.892 349.14C917.231 371.912 898.828 391.808 876.06 404.84L854.162 413.751C842.945 416.601 830.902 417.202 819.784 413.733C809.359 410.647 800.296 403.717 794.134 394.875C787.412 406.801 779.505 418.152 769.85 427.931C759.624 438.338 747.455 446.999 733.825 452.373C717.991 458.71 700.274 460.381 683.613 456.805C668.142 453.532 653.333 445.665 643.458 433.206C620.071 442.928 595.698 450.877 570.518 454.14C557.171 455.575 542.895 456.051 530.554 450.068C525.309 447.541 521.045 443.319 518.124 438.336L516.402 434.105C514.718 428.972 514.569 423.403 515.971 418.172C511.757 415.357 508.047 411.787 505.524 407.373L503.782 403.092C501.856 397.344 502.017 391.075 503.845 385.308C498.766 382.681 494.616 378.577 491.795 373.636L490.055 369.362C486.824 359.919 489.747 349.546 495.316 341.552C501.218 332.791 509.282 325.726 517.665 319.385C532.237 308.564 548.329 299.972 564.731 292.288C553.107 268.559 551.83 239.109 564.522 215.398C550.907 202.097 538.416 187.108 530.992 169.433C526.185 157.742 523.831 144.503 527.124 132.052ZM546.948 140.964C546.03 149.781 548.981 158.477 552.853 166.265C559.008 178.26 567.752 188.735 577.283 198.216C584.86 190.422 594.108 184.378 603.969 179.84C615.492 174.732 628.607 174.655 640.758 177.186C627.533 166.976 615.668 154.99 606.036 141.356C600.477 133.344 592.885 126.414 583.614 122.973C574.751 119.744 564.238 119.977 556.156 125.252C550.749 128.625 547.526 134.746 546.948 140.964ZM634.99 106.875C634.594 115.39 637.17 123.73 640.494 131.453C646.142 144.255 654.314 155.741 663.127 166.549C664.442 168.377 666.61 169.235 668.429 170.455C687.573 182.023 708.818 190.119 730.778 194.608C734.534 195.467 738.804 195.231 741.949 197.759C745.985 200.77 747.144 206.806 744.605 211.154C742.575 214.943 738.03 217.162 733.784 216.461C725.887 215.341 718.09 213.533 710.425 211.359C714.254 214.47 718.344 217.245 722.138 220.412C725.262 222.989 729.194 225.419 729.902 229.759C731.246 235.44 727.004 241.614 721.143 242.35C716.832 243.276 712.942 240.624 710.008 237.805C691.123 222.808 670.679 209.143 647.805 200.923C637.051 197.356 625.041 194.603 613.952 198.5C605.198 202.161 597.091 207.618 590.729 214.68C582.148 223.908 577.429 236.266 576.734 248.719C576.067 262.908 579.657 277.359 587.413 289.286C590.818 294.342 595.036 299.24 600.761 301.728C605.327 303.562 611.268 303.369 614.808 299.532C619.709 294.263 621.501 287.026 622.657 280.155C623.403 273.861 624.039 267.316 622.134 261.173C620.364 254.689 618.641 248.201 616.888 241.718C642.213 253.421 667.622 264.942 692.951 276.652C697.015 278.289 699.181 282.635 699.216 286.847C701.355 292.895 701.576 299.616 699.429 305.717C710.219 310.96 716.563 323.683 714.109 335.432C715.611 337.315 717.339 339 719.109 340.627C721.015 337.184 721.978 333.354 723.409 329.719C725.856 324.21 733.453 322.054 738.482 325.308C742.476 327.688 744.411 332.809 743.062 337.256C739.713 348.63 733.776 359.154 726.424 368.457C723.391 378.192 716.922 386.454 709.491 393.327C695.935 405.893 679.855 415.407 663.451 423.798C670.099 430.16 678.8 434.087 687.736 436.113C702.879 439.577 719.125 436.872 732.848 429.695C746.66 422.532 757.979 411.295 766.858 398.696C774.85 387.451 781.047 375.048 786.076 362.252C786.871 360.082 788.083 357.98 790.002 356.6C793.726 353.641 799.549 353.667 803.154 356.755C805.896 358.88 807.166 362.409 807.054 365.811C815.454 363.697 823.578 360.498 831.029 356.071C836.777 352.681 844.925 356.267 846.295 362.742C847.372 366.932 845.622 371.756 841.859 374.05C833.189 379.359 823.64 383.081 813.901 385.887C816.43 388.444 819.259 390.805 822.621 392.219C831.696 396.396 842.297 395.504 851.633 392.541C868.013 387.238 882.088 376.455 893.585 363.89C902.726 353.803 910.295 342.311 915.94 329.953C922.351 315.617 926.432 299.842 925.087 284.1C924.185 274.611 920.917 264.69 913.355 258.421C907.827 253.613 900.335 251.64 893.081 251.736C895.108 261.39 896.01 271.306 895.6 281.189C895.462 284.305 893.963 287.427 891.398 289.291C888.212 291.745 883.625 292.134 880.086 290.284C876.443 288.484 874.184 284.397 874.415 280.372C876.076 240.75 852.564 201.441 816.763 184.153C799.731 175.681 780.077 172.47 761.164 175.226C761.928 174.521 762.7 173.838 763.479 173.152C738.265 169.322 714.159 157 697.653 137.53C690.656 129.316 684.999 120.006 680.716 110.112C676.989 101.765 670.671 94.062 661.883 90.7531C655.481 88.4101 647.675 88.2876 641.9 92.3612C637.251 95.648 635.347 101.453 634.99 106.875ZM536.855 328.201C527.616 334.431 518.49 341.222 511.656 350.109C509.035 353.768 506.5 358.165 507.365 362.81C508.135 366.633 511.712 369.042 515.194 370.243C522.084 372.404 529.456 372.375 536.612 371.917C550.337 370.82 563.827 367.702 577.013 363.797C596.369 357.964 615.164 350.266 633.069 340.87C646.45 333.685 659.564 325.682 670.765 315.354C674.92 311.341 678.988 306.994 681.349 301.66C682.284 299.589 682.624 297.317 682.42 295.069C676.169 292.082 669.807 289.328 663.553 286.334C662.406 285.833 661.239 285.2 659.954 285.271C654.293 285.277 648.646 285.827 643.053 286.692C640.839 297.243 636.763 307.97 628.611 315.448C621.738 321.905 611.931 324.829 602.621 323.669C591.519 322.763 581.802 316.073 574.847 307.76C561.673 313.564 548.903 320.32 536.855 328.201ZM524.189 401.287C529.679 405.372 536.914 405.636 543.528 405.776C559.132 405.556 574.5 402.076 589.448 397.766C608.299 392.178 626.627 384.794 644.13 375.833C656.786 369.263 669.097 361.865 680.119 352.785C685.272 348.381 690.288 343.599 693.772 337.734C695.675 334.407 697.079 330.217 695.402 326.542C694.415 324.178 692.21 322.72 690.028 321.565C680.728 332.44 668.871 340.81 656.771 348.319C628.642 365.264 597.888 377.869 565.973 385.572C551.484 388.957 536.552 391.316 521.661 390.138C520.094 393.927 520.684 398.791 524.189 401.287ZM533.654 423.449C532.848 426.912 534.288 430.675 537.265 432.648C542.352 436.125 548.776 436.531 554.767 436.768C566.529 436.84 578.207 434.796 589.63 432.084C608.173 427.607 626.198 421.084 643.566 413.212C660.421 405.442 676.907 396.501 691.416 384.853C696.959 380.291 702.357 375.329 706.138 369.178C707.872 366.085 709.418 362.468 708.498 358.887C708.025 356.79 706.48 355.228 705.009 353.767C693.479 367.412 678.389 377.467 662.993 386.284C635.384 401.844 605.51 413.484 574.557 420.32C561.148 423.068 547.324 425.1 533.654 423.449Z" fill="black"/> +<path d="M546.948 140.964C547.526 134.746 550.749 128.625 556.156 125.252C564.238 119.977 574.751 119.744 583.614 122.973C592.885 126.414 600.477 133.344 606.036 141.356C615.668 154.99 627.533 166.976 640.758 177.186C628.607 174.655 615.492 174.732 603.969 179.84C594.108 184.378 584.86 190.422 577.283 198.216C567.752 188.735 559.008 178.26 552.853 166.265C548.981 158.477 546.03 149.781 546.948 140.964Z" fill="white"/> +<path d="M634.99 106.875C635.347 101.453 637.251 95.648 641.9 92.3612C647.675 88.2876 655.481 88.4101 661.883 90.7531C670.671 94.062 676.989 101.765 680.716 110.112C684.999 120.006 690.656 129.316 697.653 137.53C714.159 157 738.265 169.322 763.479 173.152C762.7 173.838 761.928 174.521 761.164 175.226C780.077 172.47 799.731 175.681 816.763 184.153C852.564 201.441 876.076 240.75 874.415 280.372C874.184 284.397 876.443 288.484 880.086 290.284C883.625 292.134 888.212 291.745 891.398 289.291C893.963 287.427 895.462 284.305 895.6 281.189C896.01 271.306 895.108 261.39 893.081 251.736C900.335 251.64 907.827 253.613 913.355 258.421C920.917 264.69 924.185 274.611 925.087 284.1C926.432 299.842 922.351 315.617 915.94 329.953C910.295 342.311 902.726 353.803 893.585 363.89C882.088 376.455 868.013 387.238 851.633 392.541C842.297 395.504 831.696 396.396 822.621 392.219C819.259 390.805 816.43 388.444 813.901 385.887C823.64 383.081 833.189 379.359 841.859 374.05C845.622 371.756 847.372 366.932 846.295 362.742C844.925 356.267 836.777 352.681 831.029 356.071C823.578 360.498 815.454 363.697 807.054 365.811C807.166 362.409 805.896 358.88 803.154 356.755C799.549 353.667 793.726 353.641 790.002 356.6C788.083 357.98 786.871 360.082 786.076 362.252C781.047 375.048 774.85 387.451 766.858 398.696C757.979 411.295 746.66 422.532 732.848 429.695C719.125 436.872 702.879 439.577 687.736 436.113C678.8 434.087 670.099 430.16 663.451 423.798C679.855 415.407 695.935 405.893 709.491 393.327C716.922 386.454 723.391 378.192 726.424 368.457C733.776 359.154 739.713 348.63 743.062 337.256C744.411 332.809 742.476 327.688 738.482 325.308C733.453 322.054 725.856 324.21 723.409 329.719C721.978 333.354 721.015 337.184 719.109 340.627C717.339 339 715.611 337.315 714.109 335.432C716.563 323.683 710.219 310.96 699.429 305.717C701.576 299.616 701.355 292.895 699.216 286.847C699.181 282.635 697.015 278.289 692.951 276.652C667.622 264.942 642.213 253.421 616.888 241.718C618.641 248.201 620.364 254.689 622.134 261.173C624.039 267.316 623.403 273.861 622.657 280.155C621.501 287.026 619.709 294.263 614.808 299.532C611.268 303.369 605.327 303.562 600.761 301.728C595.036 299.24 590.818 294.342 587.413 289.286C579.657 277.359 576.067 262.908 576.734 248.719C577.429 236.266 582.148 223.908 590.729 214.68C597.091 207.618 605.198 202.161 613.952 198.5C625.041 194.603 637.051 197.356 647.805 200.923C670.679 209.143 691.123 222.808 710.008 237.805C712.942 240.624 716.832 243.276 721.143 242.35C727.004 241.614 731.246 235.44 729.902 229.759C729.194 225.419 725.262 222.989 722.138 220.412C718.344 217.245 714.254 214.47 710.425 211.359C718.09 213.533 725.887 215.341 733.784 216.461C738.03 217.162 742.575 214.943 744.605 211.154C747.144 206.806 745.985 200.77 741.949 197.759C738.804 195.231 734.534 195.467 730.778 194.608C708.818 190.119 687.573 182.023 668.429 170.455C666.61 169.235 664.442 168.377 663.127 166.549C654.314 155.741 646.142 144.255 640.494 131.453C637.17 123.73 634.594 115.39 634.99 106.875Z" fill="white"/> +<path d="M536.855 328.201C548.903 320.32 561.673 313.564 574.847 307.76C581.802 316.073 591.519 322.763 602.621 323.669C611.931 324.829 621.738 321.905 628.611 315.448C636.763 307.97 640.839 297.243 643.053 286.692C648.646 285.827 654.293 285.277 659.954 285.271C661.239 285.2 662.406 285.833 663.553 286.334C669.807 289.328 676.169 292.082 682.42 295.069C682.624 297.317 682.284 299.589 681.349 301.66C678.988 306.994 674.92 311.341 670.765 315.354C659.564 325.682 646.45 333.685 633.069 340.87C615.164 350.266 596.369 357.964 577.013 363.797C563.827 367.702 550.337 370.82 536.612 371.917C529.456 372.375 522.084 372.404 515.194 370.243C511.712 369.042 508.135 366.633 507.365 362.81C506.5 358.165 509.035 353.768 511.656 350.109C518.49 341.222 527.616 334.431 536.855 328.201Z" fill="#FFCA05"/> +<path d="M524.189 401.287C520.684 398.791 520.094 393.927 521.661 390.138C536.552 391.316 551.484 388.957 565.973 385.572C597.888 377.869 628.642 365.264 656.771 348.319C668.871 340.81 680.728 332.44 690.028 321.565C692.21 322.72 694.415 324.178 695.402 326.542C697.079 330.217 695.675 334.407 693.772 337.734C690.288 343.599 685.272 348.381 680.119 352.785C669.097 361.865 656.786 369.263 644.13 375.833C626.627 384.794 608.299 392.178 589.448 397.766C574.5 402.076 559.132 405.556 543.528 405.776C536.914 405.636 529.679 405.372 524.189 401.287Z" fill="#FFCA05"/> +<path d="M533.654 423.449C547.324 425.1 561.148 423.068 574.557 420.32C605.51 413.484 635.384 401.844 662.993 386.284C678.389 377.467 693.479 367.412 705.009 353.767C706.48 355.228 708.025 356.79 708.498 358.887C709.418 362.468 707.872 366.085 706.138 369.178C702.357 375.329 696.959 380.291 691.416 384.853C676.907 396.501 660.421 405.442 643.566 413.212C626.198 421.084 608.173 427.607 589.63 432.084C578.207 434.796 566.529 436.84 554.767 436.768C548.776 436.531 542.352 436.125 537.265 432.648C534.288 430.675 532.848 426.912 533.654 423.449Z" fill="#FFCA05"/> +<mask id="path-5-outside-1_17007_6863" maskUnits="userSpaceOnUse" x="96" y="670.175" width="223" height="35" fill="black"> +<rect fill="white" x="96" y="670.175" width="223" height="35"/> +<path d="M97.4393 703.175L97.4393 672.558L104.652 672.558L113.757 690.243C113.968 690.691 114.157 691.147 114.325 691.609C114.507 692.058 114.668 692.507 114.809 692.955L114.935 692.955C114.921 692.479 114.907 692.002 114.893 691.525C114.893 691.049 114.893 690.572 114.893 690.095L114.893 672.558L120.907 672.558L120.907 703.175L113.757 703.175L104.526 685.448C104.316 685.028 104.126 684.593 103.958 684.144C103.79 683.696 103.643 683.247 103.516 682.799L103.369 682.799C103.397 683.275 103.411 683.745 103.411 684.208C103.425 684.656 103.432 685.126 103.432 685.616L103.432 703.175L97.4393 703.175ZM125.617 691.988L125.617 672.558L132.62 672.558L132.62 692.724C132.62 694.897 133.026 696.432 133.839 697.329C134.652 698.212 135.781 698.654 137.225 698.654C138.627 698.654 139.734 698.212 140.547 697.329C141.374 696.432 141.788 694.897 141.788 692.724L141.788 672.558L148.727 672.558L148.727 691.988C148.727 695.997 147.676 698.948 145.573 700.841C143.484 702.733 140.709 703.68 137.246 703.68C133.727 703.68 130.909 702.733 128.792 700.841C126.676 698.948 125.617 695.997 125.617 691.988ZM151.335 678.046L151.335 672.558L175.37 672.558L175.37 678.046L166.896 678.046L166.896 703.175L159.83 703.175L159.83 678.046L151.335 678.046ZM176.274 678.046L176.274 672.558L200.31 672.558L200.31 678.046L191.835 678.046L191.835 703.175L184.77 703.175L184.77 678.046L176.274 678.046ZM210.487 703.175L210.487 691.736L200.499 672.558L208.174 672.558L213.494 683.072C213.663 683.422 213.817 683.759 213.957 684.081C214.097 684.39 214.23 684.712 214.357 685.049L214.462 685.049C214.588 684.712 214.714 684.39 214.84 684.081C214.98 683.773 215.142 683.436 215.324 683.072L220.644 672.558L227.436 672.558L217.574 691.567L217.574 703.175L210.487 703.175ZM246.95 703.175L246.95 691.736L236.962 672.558L244.637 672.558L249.958 683.072C250.126 683.422 250.28 683.759 250.42 684.081C250.56 684.39 250.694 684.712 250.82 685.049L250.925 685.049C251.051 684.712 251.177 684.39 251.303 684.081C251.444 683.773 251.605 683.436 251.787 683.072L257.107 672.558L263.899 672.558L254.037 691.567L254.037 703.175L246.95 703.175ZM263.92 688.75L263.92 686.983C263.92 681.908 265.133 678.151 267.558 675.712C269.998 673.273 273.138 672.053 276.979 672.053C280.806 672.053 283.939 673.273 286.379 675.712C288.832 678.151 290.058 681.908 290.058 686.983L290.058 688.75C290.058 693.824 288.832 697.582 286.379 700.021C283.939 702.46 280.806 703.68 276.979 703.68C273.138 703.68 269.998 702.46 267.558 700.021C265.133 697.582 263.92 693.824 263.92 688.75ZM271.175 690.243C271.175 693.187 271.694 695.331 272.731 696.677C273.769 698.009 275.184 698.675 276.979 698.675C278.773 698.675 280.189 698.009 281.227 696.677C282.278 695.331 282.804 693.187 282.804 690.243L282.804 685.511C282.804 682.567 282.278 680.436 281.227 679.119C280.189 677.787 278.773 677.121 276.979 677.121C275.184 677.121 273.769 677.787 272.731 679.119C271.694 680.436 271.175 682.567 271.175 685.511L271.175 690.243ZM293.928 691.988L293.928 672.558L300.93 672.558L300.93 692.724C300.93 694.897 301.337 696.432 302.15 697.329C302.963 698.212 304.091 698.654 305.535 698.654C306.937 698.654 308.045 698.212 308.858 697.329C309.685 696.432 310.098 694.897 310.098 692.724L310.098 672.558L317.038 672.558L317.038 691.988C317.038 695.997 315.986 698.948 313.884 700.841C311.795 702.733 309.019 703.68 305.556 703.68C302.038 703.68 299.22 702.733 297.103 700.841C294.986 698.948 293.928 695.997 293.928 691.988Z"/> +</mask> +<path d="M97.4393 703.175L97.4393 672.558L104.652 672.558L113.757 690.243C113.968 690.691 114.157 691.147 114.325 691.609C114.507 692.058 114.668 692.507 114.809 692.955L114.935 692.955C114.921 692.479 114.907 692.002 114.893 691.525C114.893 691.049 114.893 690.572 114.893 690.095L114.893 672.558L120.907 672.558L120.907 703.175L113.757 703.175L104.526 685.448C104.316 685.028 104.126 684.593 103.958 684.144C103.79 683.696 103.643 683.247 103.516 682.799L103.369 682.799C103.397 683.275 103.411 683.745 103.411 684.208C103.425 684.656 103.432 685.126 103.432 685.616L103.432 703.175L97.4393 703.175ZM125.617 691.988L125.617 672.558L132.62 672.558L132.62 692.724C132.62 694.897 133.026 696.432 133.839 697.329C134.652 698.212 135.781 698.654 137.225 698.654C138.627 698.654 139.734 698.212 140.547 697.329C141.374 696.432 141.788 694.897 141.788 692.724L141.788 672.558L148.727 672.558L148.727 691.988C148.727 695.997 147.676 698.948 145.573 700.841C143.484 702.733 140.709 703.68 137.246 703.68C133.727 703.68 130.909 702.733 128.792 700.841C126.676 698.948 125.617 695.997 125.617 691.988ZM151.335 678.046L151.335 672.558L175.37 672.558L175.37 678.046L166.896 678.046L166.896 703.175L159.83 703.175L159.83 678.046L151.335 678.046ZM176.274 678.046L176.274 672.558L200.31 672.558L200.31 678.046L191.835 678.046L191.835 703.175L184.77 703.175L184.77 678.046L176.274 678.046ZM210.487 703.175L210.487 691.736L200.499 672.558L208.174 672.558L213.494 683.072C213.663 683.422 213.817 683.759 213.957 684.081C214.097 684.39 214.23 684.712 214.357 685.049L214.462 685.049C214.588 684.712 214.714 684.39 214.84 684.081C214.98 683.773 215.142 683.436 215.324 683.072L220.644 672.558L227.436 672.558L217.574 691.567L217.574 703.175L210.487 703.175ZM246.95 703.175L246.95 691.736L236.962 672.558L244.637 672.558L249.958 683.072C250.126 683.422 250.28 683.759 250.42 684.081C250.56 684.39 250.694 684.712 250.82 685.049L250.925 685.049C251.051 684.712 251.177 684.39 251.303 684.081C251.444 683.773 251.605 683.436 251.787 683.072L257.107 672.558L263.899 672.558L254.037 691.567L254.037 703.175L246.95 703.175ZM263.92 688.75L263.92 686.983C263.92 681.908 265.133 678.151 267.558 675.712C269.998 673.273 273.138 672.053 276.979 672.053C280.806 672.053 283.939 673.273 286.379 675.712C288.832 678.151 290.058 681.908 290.058 686.983L290.058 688.75C290.058 693.824 288.832 697.582 286.379 700.021C283.939 702.46 280.806 703.68 276.979 703.68C273.138 703.68 269.998 702.46 267.558 700.021C265.133 697.582 263.92 693.824 263.92 688.75ZM271.175 690.243C271.175 693.187 271.694 695.331 272.731 696.677C273.769 698.009 275.184 698.675 276.979 698.675C278.773 698.675 280.189 698.009 281.227 696.677C282.278 695.331 282.804 693.187 282.804 690.243L282.804 685.511C282.804 682.567 282.278 680.436 281.227 679.119C280.189 677.787 278.773 677.121 276.979 677.121C275.184 677.121 273.769 677.787 272.731 679.119C271.694 680.436 271.175 682.567 271.175 685.511L271.175 690.243ZM293.928 691.988L293.928 672.558L300.93 672.558L300.93 692.724C300.93 694.897 301.337 696.432 302.15 697.329C302.963 698.212 304.091 698.654 305.535 698.654C306.937 698.654 308.045 698.212 308.858 697.329C309.685 696.432 310.098 694.897 310.098 692.724L310.098 672.558L317.038 672.558L317.038 691.988C317.038 695.997 315.986 698.948 313.884 700.841C311.795 702.733 309.019 703.68 305.556 703.68C302.038 703.68 299.22 702.733 297.103 700.841C294.986 698.948 293.928 695.997 293.928 691.988Z" fill="white"/> +<path d="M97.4393 703.175L96.4393 703.175L96.4393 704.175L97.4393 704.175L97.4393 703.175ZM97.4393 672.558L97.4393 671.558L96.4393 671.558L96.4393 672.558L97.4393 672.558ZM104.652 672.558L105.541 672.1L105.262 671.558L104.652 671.558L104.652 672.558ZM113.757 690.243L114.663 689.818L114.655 689.801L114.646 689.785L113.757 690.243ZM114.325 691.609L113.385 691.951L113.392 691.969L113.399 691.986L114.325 691.609ZM114.809 692.955L113.854 693.254L114.073 693.955L114.809 693.955L114.809 692.955ZM114.935 692.955L114.935 693.955L115.965 693.955L115.934 692.926L114.935 692.955ZM114.893 691.525L113.893 691.525L113.893 691.54L113.893 691.555L114.893 691.525ZM114.893 672.558L114.893 671.558L113.893 671.558L113.893 672.558L114.893 672.558ZM120.907 672.558L121.907 672.558L121.907 671.558L120.907 671.558L120.907 672.558ZM120.907 703.175L120.907 704.175L121.907 704.175L121.907 703.175L120.907 703.175ZM113.757 703.175L112.87 703.637L113.151 704.175L113.757 704.175L113.757 703.175ZM104.526 685.448L103.631 685.895L103.635 685.903L103.639 685.91L104.526 685.448ZM103.516 682.799L104.479 682.528L104.274 681.799L103.516 681.799L103.516 682.799ZM103.369 682.799L103.369 681.799L102.309 681.799L102.371 682.857L103.369 682.799ZM103.411 684.208L102.411 684.208L102.411 684.223L102.412 684.239L103.411 684.208ZM103.432 703.175L103.432 704.175L104.432 704.175L104.432 703.175L103.432 703.175ZM97.4393 703.175L98.4393 703.175L98.4393 672.558L97.4393 672.558L96.4393 672.558L96.4393 703.175L97.4393 703.175ZM97.4393 672.558L97.4393 673.558L104.652 673.558L104.652 672.558L104.652 671.558L97.4393 671.558L97.4393 672.558ZM104.652 672.558L103.763 673.016L112.868 690.7L113.757 690.243L114.646 689.785L105.541 672.1L104.652 672.558ZM113.757 690.243L112.852 690.667C113.049 691.089 113.227 691.517 113.385 691.951L114.325 691.609L115.265 691.268C115.086 690.777 114.886 690.294 114.663 689.818L113.757 690.243ZM114.325 691.609L113.399 691.986C113.571 692.41 113.722 692.832 113.854 693.254L114.809 692.955L115.763 692.657C115.614 692.181 115.444 691.707 115.251 691.233L114.325 691.609ZM114.809 692.955L114.809 693.955L114.935 693.955L114.935 692.955L114.935 691.955L114.809 691.955L114.809 692.955ZM114.935 692.955L115.934 692.926C115.933 692.868 115.931 692.805 115.929 692.747C115.927 692.69 115.926 692.626 115.924 692.568C115.922 692.511 115.92 692.447 115.919 692.39C115.917 692.332 115.915 692.269 115.913 692.211C115.909 692.071 115.907 691.993 115.903 691.853C115.899 691.714 115.896 691.636 115.892 691.496L114.893 691.525L113.893 691.555C113.895 691.615 113.897 691.673 113.898 691.734C113.9 691.794 113.902 691.852 113.904 691.912C113.905 691.973 113.907 692.031 113.909 692.091C113.911 692.151 113.912 692.209 113.914 692.27C113.918 692.406 113.921 692.491 113.925 692.627C113.929 692.763 113.931 692.849 113.935 692.985L114.935 692.955ZM114.893 691.525L115.893 691.525C115.893 691.524 115.893 691.524 115.893 691.523C115.893 691.522 115.893 691.521 115.893 691.52C115.893 691.519 115.893 691.518 115.893 691.517C115.893 691.516 115.893 691.515 115.893 691.514C115.893 691.513 115.893 691.512 115.893 691.511C115.893 691.51 115.893 691.51 115.893 691.509C115.893 691.508 115.893 691.507 115.893 691.506C115.893 691.505 115.893 691.504 115.893 691.503C115.893 691.502 115.893 691.501 115.893 691.5C115.893 691.499 115.893 691.498 115.893 691.497C115.893 691.497 115.893 691.496 115.893 691.495C115.893 691.494 115.893 691.493 115.893 691.492C115.893 691.491 115.893 691.49 115.893 691.489C115.893 691.488 115.893 691.487 115.893 691.486C115.893 691.485 115.893 691.484 115.893 691.483C115.893 691.483 115.893 691.482 115.893 691.481C115.893 691.48 115.893 691.479 115.893 691.478C115.893 691.477 115.893 691.476 115.893 691.475C115.893 691.474 115.893 691.473 115.893 691.472C115.893 691.471 115.893 691.47 115.893 691.47C115.893 691.469 115.893 691.468 115.893 691.467C115.893 691.466 115.893 691.465 115.893 691.464C115.893 691.463 115.893 691.462 115.893 691.461C115.893 691.46 115.893 691.459 115.893 691.458C115.893 691.457 115.893 691.456 115.893 691.456C115.893 691.455 115.893 691.454 115.893 691.453C115.893 691.452 115.893 691.451 115.893 691.45C115.893 691.449 115.893 691.448 115.893 691.447C115.893 691.446 115.893 691.445 115.893 691.444C115.893 691.443 115.893 691.443 115.893 691.442C115.893 691.441 115.893 691.44 115.893 691.439C115.893 691.438 115.893 691.437 115.893 691.436C115.893 691.435 115.893 691.434 115.893 691.433C115.893 691.432 115.893 691.431 115.893 691.43C115.893 691.429 115.893 691.429 115.893 691.428C115.893 691.427 115.893 691.426 115.893 691.425C115.893 691.424 115.893 691.423 115.893 691.422C115.893 691.421 115.893 691.42 115.893 691.419C115.893 691.418 115.893 691.417 115.893 691.416C115.893 691.416 115.893 691.415 115.893 691.414C115.893 691.413 115.893 691.412 115.893 691.411C115.893 691.41 115.893 691.409 115.893 691.408C115.893 691.407 115.893 691.406 115.893 691.405C115.893 691.404 115.893 691.403 115.893 691.402C115.893 691.402 115.893 691.401 115.893 691.4C115.893 691.399 115.893 691.398 115.893 691.397C115.893 691.396 115.893 691.395 115.893 691.394C115.893 691.393 115.893 691.392 115.893 691.391C115.893 691.39 115.893 691.389 115.893 691.389C115.893 691.388 115.893 691.387 115.893 691.386C115.893 691.385 115.893 691.384 115.893 691.383C115.893 691.382 115.893 691.381 115.893 691.38C115.893 691.379 115.893 691.378 115.893 691.377C115.893 691.376 115.893 691.375 115.893 691.375C115.893 691.374 115.893 691.373 115.893 691.372C115.893 691.371 115.893 691.37 115.893 691.369C115.893 691.368 115.893 691.367 115.893 691.366C115.893 691.365 115.893 691.364 115.893 691.363C115.893 691.362 115.893 691.362 115.893 691.361C115.893 691.36 115.893 691.359 115.893 691.358C115.893 691.357 115.893 691.356 115.893 691.355C115.893 691.354 115.893 691.353 115.893 691.352C115.893 691.351 115.893 691.35 115.893 691.349C115.893 691.348 115.893 691.348 115.893 691.347C115.893 691.346 115.893 691.345 115.893 691.344C115.893 691.343 115.893 691.342 115.893 691.341C115.893 691.34 115.893 691.339 115.893 691.338C115.893 691.337 115.893 691.336 115.893 691.335C115.893 691.335 115.893 691.334 115.893 691.333C115.893 691.332 115.893 691.331 115.893 691.33C115.893 691.329 115.893 691.328 115.893 691.327C115.893 691.326 115.893 691.325 115.893 691.324C115.893 691.323 115.893 691.322 115.893 691.321C115.893 691.321 115.893 691.32 115.893 691.319C115.893 691.318 115.893 691.317 115.893 691.316C115.893 691.315 115.893 691.314 115.893 691.313C115.893 691.312 115.893 691.311 115.893 691.31C115.893 691.309 115.893 691.308 115.893 691.308C115.893 691.307 115.893 691.306 115.893 691.305C115.893 691.304 115.893 691.303 115.893 691.302C115.893 691.301 115.893 691.3 115.893 691.299C115.893 691.298 115.893 691.297 115.893 691.296C115.893 691.295 115.893 691.294 115.893 691.294C115.893 691.293 115.893 691.292 115.893 691.291C115.893 691.29 115.893 691.289 115.893 691.288C115.893 691.287 115.893 691.286 115.893 691.285C115.893 691.284 115.893 691.283 115.893 691.282C115.893 691.281 115.893 691.281 115.893 691.28C115.893 691.279 115.893 691.278 115.893 691.277C115.893 691.276 115.893 691.275 115.893 691.274C115.893 691.273 115.893 691.272 115.893 691.271C115.893 691.27 115.893 691.269 115.893 691.268C115.893 691.268 115.893 691.267 115.893 691.266C115.893 691.265 115.893 691.264 115.893 691.263C115.893 691.262 115.893 691.261 115.893 691.26C115.893 691.259 115.893 691.258 115.893 691.257C115.893 691.256 115.893 691.255 115.893 691.254C115.893 691.254 115.893 691.253 115.893 691.252C115.893 691.251 115.893 691.25 115.893 691.249C115.893 691.248 115.893 691.247 115.893 691.246C115.893 691.245 115.893 691.244 115.893 691.243C115.893 691.242 115.893 691.241 115.893 691.241C115.893 691.24 115.893 691.239 115.893 691.238C115.893 691.237 115.893 691.236 115.893 691.235C115.893 691.234 115.893 691.233 115.893 691.232C115.893 691.231 115.893 691.23 115.893 691.229C115.893 691.228 115.893 691.227 115.893 691.227C115.893 691.226 115.893 691.225 115.893 691.224C115.893 691.223 115.893 691.222 115.893 691.221C115.893 691.22 115.893 691.219 115.893 691.218C115.893 691.217 115.893 691.216 115.893 691.215C115.893 691.214 115.893 691.214 115.893 691.213C115.893 691.212 115.893 691.211 115.893 691.21C115.893 691.209 115.893 691.208 115.893 691.207C115.893 691.206 115.893 691.205 115.893 691.204C115.893 691.203 115.893 691.202 115.893 691.201C115.893 691.2 115.893 691.2 115.893 691.199C115.893 691.198 115.893 691.197 115.893 691.196C115.893 691.195 115.893 691.194 115.893 691.193C115.893 691.192 115.893 691.191 115.893 691.19C115.893 691.189 115.893 691.188 115.893 691.187C115.893 691.187 115.893 691.186 115.893 691.185C115.893 691.184 115.893 691.183 115.893 691.182C115.893 691.181 115.893 691.18 115.893 691.179C115.893 691.178 115.893 691.177 115.893 691.176C115.893 691.175 115.893 691.174 115.893 691.173C115.893 691.173 115.893 691.172 115.893 691.171C115.893 691.17 115.893 691.169 115.893 691.168C115.893 691.167 115.893 691.166 115.893 691.165C115.893 691.164 115.893 691.163 115.893 691.162C115.893 691.161 115.893 691.16 115.893 691.16C115.893 691.159 115.893 691.158 115.893 691.157C115.893 691.156 115.893 691.155 115.893 691.154C115.893 691.153 115.893 691.152 115.893 691.151C115.893 691.15 115.893 691.149 115.893 691.148C115.893 691.147 115.893 691.146 115.893 691.146C115.893 691.145 115.893 691.144 115.893 691.143C115.893 691.142 115.893 691.141 115.893 691.14C115.893 691.139 115.893 691.138 115.893 691.137C115.893 691.136 115.893 691.135 115.893 691.134C115.893 691.133 115.893 691.133 115.893 691.132C115.893 691.131 115.893 691.13 115.893 691.129C115.893 691.128 115.893 691.127 115.893 691.126C115.893 691.125 115.893 691.124 115.893 691.123C115.893 691.122 115.893 691.121 115.893 691.12C115.893 691.119 115.893 691.119 115.893 691.118C115.893 691.117 115.893 691.116 115.893 691.115C115.893 691.114 115.893 691.113 115.893 691.112C115.893 691.111 115.893 691.11 115.893 691.109C115.893 691.108 115.893 691.107 115.893 691.106C115.893 691.106 115.893 691.105 115.893 691.104C115.893 691.103 115.893 691.102 115.893 691.101C115.893 691.1 115.893 691.099 115.893 691.098C115.893 691.097 115.893 691.096 115.893 691.095C115.893 691.094 115.893 691.093 115.893 691.092C115.893 691.092 115.893 691.091 115.893 691.09C115.893 691.089 115.893 691.088 115.893 691.087C115.893 691.086 115.893 691.085 115.893 691.084C115.893 691.083 115.893 691.082 115.893 691.081C115.893 691.08 115.893 691.079 115.893 691.079C115.893 691.078 115.893 691.077 115.893 691.076C115.893 691.075 115.893 691.074 115.893 691.073C115.893 691.072 115.893 691.071 115.893 691.07C115.893 691.069 115.893 691.068 115.893 691.067C115.893 691.066 115.893 691.065 115.893 691.065C115.893 691.064 115.893 691.063 115.893 691.062C115.893 691.061 115.893 691.06 115.893 691.059C115.893 691.058 115.893 691.057 115.893 691.056C115.893 691.055 115.893 691.054 115.893 691.053C115.893 691.052 115.893 691.052 115.893 691.051C115.893 691.05 115.893 691.049 115.893 691.048C115.893 691.047 115.893 691.046 115.893 691.045C115.893 691.044 115.893 691.043 115.893 691.042C115.893 691.041 115.893 691.04 115.893 691.039C115.893 691.038 115.893 691.038 115.893 691.037C115.893 691.036 115.893 691.035 115.893 691.034C115.893 691.033 115.893 691.032 115.893 691.031C115.893 691.03 115.893 691.029 115.893 691.028C115.893 691.027 115.893 691.026 115.893 691.025C115.893 691.025 115.893 691.024 115.893 691.023C115.893 691.022 115.893 691.021 115.893 691.02C115.893 691.019 115.893 691.018 115.893 691.017C115.893 691.016 115.893 691.015 115.893 691.014C115.893 691.013 115.893 691.012 115.893 691.011C115.893 691.011 115.893 691.01 115.893 691.009C115.893 691.008 115.893 691.007 115.893 691.006C115.893 691.005 115.893 691.004 115.893 691.003C115.893 691.002 115.893 691.001 115.893 691C115.893 690.999 115.893 690.998 115.893 690.998C115.893 690.997 115.893 690.996 115.893 690.995C115.893 690.994 115.893 690.993 115.893 690.992C115.893 690.991 115.893 690.99 115.893 690.989C115.893 690.988 115.893 690.987 115.893 690.986C115.893 690.985 115.893 690.984 115.893 690.984C115.893 690.983 115.893 690.982 115.893 690.981C115.893 690.98 115.893 690.979 115.893 690.978C115.893 690.977 115.893 690.976 115.893 690.975C115.893 690.974 115.893 690.973 115.893 690.972C115.893 690.971 115.893 690.971 115.893 690.97C115.893 690.969 115.893 690.968 115.893 690.967C115.893 690.966 115.893 690.965 115.893 690.964C115.893 690.963 115.893 690.962 115.893 690.961C115.893 690.96 115.893 690.959 115.893 690.958C115.893 690.957 115.893 690.957 115.893 690.956C115.893 690.955 115.893 690.954 115.893 690.953C115.893 690.952 115.893 690.951 115.893 690.95C115.893 690.949 115.893 690.948 115.893 690.947C115.893 690.946 115.893 690.945 115.893 690.944C115.893 690.944 115.893 690.943 115.893 690.942C115.893 690.941 115.893 690.94 115.893 690.939C115.893 690.938 115.893 690.937 115.893 690.936C115.893 690.935 115.893 690.934 115.893 690.933C115.893 690.932 115.893 690.931 115.893 690.931C115.893 690.93 115.893 690.929 115.893 690.928C115.893 690.927 115.893 690.926 115.893 690.925C115.893 690.924 115.893 690.923 115.893 690.922C115.893 690.921 115.893 690.92 115.893 690.919C115.893 690.918 115.893 690.917 115.893 690.917C115.893 690.916 115.893 690.915 115.893 690.914C115.893 690.913 115.893 690.912 115.893 690.911C115.893 690.91 115.893 690.909 115.893 690.908C115.893 690.907 115.893 690.906 115.893 690.905C115.893 690.904 115.893 690.904 115.893 690.903C115.893 690.902 115.893 690.901 115.893 690.9C115.893 690.899 115.893 690.898 115.893 690.897C115.893 690.896 115.893 690.895 115.893 690.894C115.893 690.893 115.893 690.892 115.893 690.891C115.893 690.89 115.893 690.89 115.893 690.889C115.893 690.888 115.893 690.887 115.893 690.886C115.893 690.885 115.893 690.884 115.893 690.883C115.893 690.882 115.893 690.881 115.893 690.88C115.893 690.879 115.893 690.878 115.893 690.877C115.893 690.877 115.893 690.876 115.893 690.875C115.893 690.874 115.893 690.873 115.893 690.872C115.893 690.871 115.893 690.87 115.893 690.869C115.893 690.868 115.893 690.867 115.893 690.866C115.893 690.865 115.893 690.864 115.893 690.863C115.893 690.863 115.893 690.862 115.893 690.861C115.893 690.86 115.893 690.859 115.893 690.858C115.893 690.857 115.893 690.856 115.893 690.855C115.893 690.854 115.893 690.853 115.893 690.852C115.893 690.851 115.893 690.85 115.893 690.85C115.893 690.849 115.893 690.848 115.893 690.847C115.893 690.846 115.893 690.845 115.893 690.844C115.893 690.843 115.893 690.842 115.893 690.841C115.893 690.84 115.893 690.839 115.893 690.838C115.893 690.837 115.893 690.836 115.893 690.836C115.893 690.835 115.893 690.834 115.893 690.833C115.893 690.832 115.893 690.831 115.893 690.83C115.893 690.829 115.893 690.828 115.893 690.827C115.893 690.826 115.893 690.825 115.893 690.824C115.893 690.823 115.893 690.823 115.893 690.822C115.893 690.821 115.893 690.82 115.893 690.819C115.893 690.818 115.893 690.817 115.893 690.816C115.893 690.815 115.893 690.814 115.893 690.813C115.893 690.812 115.893 690.811 115.893 690.81C115.893 690.809 115.893 690.809 115.893 690.808C115.893 690.807 115.893 690.806 115.893 690.805C115.893 690.804 115.893 690.803 115.893 690.802C115.893 690.801 115.893 690.8 115.893 690.799C115.893 690.798 115.893 690.797 115.893 690.796C115.893 690.796 115.893 690.795 115.893 690.794C115.893 690.793 115.893 690.792 115.893 690.791C115.893 690.79 115.893 690.789 115.893 690.788C115.893 690.787 115.893 690.786 115.893 690.785C115.893 690.784 115.893 690.783 115.893 690.782C115.893 690.782 115.893 690.781 115.893 690.78C115.893 690.779 115.893 690.778 115.893 690.777C115.893 690.776 115.893 690.775 115.893 690.774C115.893 690.773 115.893 690.772 115.893 690.771C115.893 690.77 115.893 690.769 115.893 690.769C115.893 690.768 115.893 690.767 115.893 690.766C115.893 690.765 115.893 690.764 115.893 690.763C115.893 690.762 115.893 690.761 115.893 690.76C115.893 690.759 115.893 690.758 115.893 690.757C115.893 690.756 115.893 690.755 115.893 690.755C115.893 690.754 115.893 690.753 115.893 690.752C115.893 690.751 115.893 690.75 115.893 690.749C115.893 690.748 115.893 690.747 115.893 690.746C115.893 690.745 115.893 690.744 115.893 690.743C115.893 690.742 115.893 690.742 115.893 690.741C115.893 690.74 115.893 690.739 115.893 690.738C115.893 690.737 115.893 690.736 115.893 690.735C115.893 690.734 115.893 690.733 115.893 690.732C115.893 690.731 115.893 690.73 115.893 690.729C115.893 690.728 115.893 690.728 115.893 690.727C115.893 690.726 115.893 690.725 115.893 690.724C115.893 690.723 115.893 690.722 115.893 690.721C115.893 690.72 115.893 690.719 115.893 690.718C115.893 690.717 115.893 690.716 115.893 690.715C115.893 690.715 115.893 690.714 115.893 690.713C115.893 690.712 115.893 690.711 115.893 690.71C115.893 690.709 115.893 690.708 115.893 690.707C115.893 690.706 115.893 690.705 115.893 690.704C115.893 690.703 115.893 690.702 115.893 690.701C115.893 690.701 115.893 690.7 115.893 690.699C115.893 690.698 115.893 690.697 115.893 690.696C115.893 690.695 115.893 690.694 115.893 690.693C115.893 690.692 115.893 690.691 115.893 690.69C115.893 690.689 115.893 690.688 115.893 690.688C115.893 690.687 115.893 690.686 115.893 690.685C115.893 690.684 115.893 690.683 115.893 690.682C115.893 690.681 115.893 690.68 115.893 690.679C115.893 690.678 115.893 690.677 115.893 690.676C115.893 690.675 115.893 690.674 115.893 690.674C115.893 690.673 115.893 690.672 115.893 690.671C115.893 690.67 115.893 690.669 115.893 690.668C115.893 690.667 115.893 690.666 115.893 690.665C115.893 690.664 115.893 690.663 115.893 690.662C115.893 690.661 115.893 690.661 115.893 690.66C115.893 690.659 115.893 690.658 115.893 690.657C115.893 690.656 115.893 690.655 115.893 690.654C115.893 690.653 115.893 690.652 115.893 690.651C115.893 690.65 115.893 690.649 115.893 690.648C115.893 690.647 115.893 690.647 115.893 690.646C115.893 690.645 115.893 690.644 115.893 690.643C115.893 690.642 115.893 690.641 115.893 690.64C115.893 690.639 115.893 690.638 115.893 690.637C115.893 690.636 115.893 690.635 115.893 690.634C115.893 690.634 115.893 690.633 115.893 690.632C115.893 690.631 115.893 690.63 115.893 690.629C115.893 690.628 115.893 690.627 115.893 690.626C115.893 690.625 115.893 690.624 115.893 690.623C115.893 690.622 115.893 690.621 115.893 690.62C115.893 690.62 115.893 690.619 115.893 690.618C115.893 690.617 115.893 690.616 115.893 690.615C115.893 690.614 115.893 690.613 115.893 690.612C115.893 690.611 115.893 690.61 115.893 690.609C115.893 690.608 115.893 690.607 115.893 690.607C115.893 690.606 115.893 690.605 115.893 690.604C115.893 690.603 115.893 690.602 115.893 690.601C115.893 690.6 115.893 690.599 115.893 690.598C115.893 690.597 115.893 690.596 115.893 690.595C115.893 690.594 115.893 690.594 115.893 690.593C115.893 690.592 115.893 690.591 115.893 690.59C115.893 690.589 115.893 690.588 115.893 690.587C115.893 690.586 115.893 690.585 115.893 690.584C115.893 690.583 115.893 690.582 115.893 690.581C115.893 690.58 115.893 690.58 115.893 690.579C115.893 690.578 115.893 690.577 115.893 690.576C115.893 690.575 115.893 690.574 115.893 690.573C115.893 690.572 115.893 690.571 115.893 690.57C115.893 690.569 115.893 690.568 115.893 690.567C115.893 690.567 115.893 690.566 115.893 690.565C115.893 690.564 115.893 690.563 115.893 690.562C115.893 690.561 115.893 690.56 115.893 690.559C115.893 690.558 115.893 690.557 115.893 690.556C115.893 690.555 115.893 690.554 115.893 690.553C115.893 690.553 115.893 690.552 115.893 690.551C115.893 690.55 115.893 690.549 115.893 690.548C115.893 690.547 115.893 690.546 115.893 690.545C115.893 690.544 115.893 690.543 115.893 690.542C115.893 690.541 115.893 690.54 115.893 690.54C115.893 690.539 115.893 690.538 115.893 690.537C115.893 690.536 115.893 690.535 115.893 690.534C115.893 690.533 115.893 690.532 115.893 690.531C115.893 690.53 115.893 690.529 115.893 690.528C115.893 690.527 115.893 690.526 115.893 690.526C115.893 690.525 115.893 690.524 115.893 690.523C115.893 690.522 115.893 690.521 115.893 690.52C115.893 690.519 115.893 690.518 115.893 690.517C115.893 690.516 115.893 690.515 115.893 690.514C115.893 690.513 115.893 690.513 115.893 690.512C115.893 690.511 115.893 690.51 115.893 690.509C115.893 690.508 115.893 690.507 115.893 690.506C115.893 690.505 115.893 690.504 115.893 690.503C115.893 690.502 115.893 690.501 115.893 690.5C115.893 690.499 115.893 690.499 115.893 690.498C115.893 690.497 115.893 690.496 115.893 690.495C115.893 690.494 115.893 690.493 115.893 690.492C115.893 690.491 115.893 690.49 115.893 690.489C115.893 690.488 115.893 690.487 115.893 690.486C115.893 690.486 115.893 690.485 115.893 690.484C115.893 690.483 115.893 690.482 115.893 690.481C115.893 690.48 115.893 690.479 115.893 690.478C115.893 690.477 115.893 690.476 115.893 690.475C115.893 690.474 115.893 690.473 115.893 690.472C115.893 690.472 115.893 690.471 115.893 690.47C115.893 690.469 115.893 690.468 115.893 690.467C115.893 690.466 115.893 690.465 115.893 690.464C115.893 690.463 115.893 690.462 115.893 690.461C115.893 690.46 115.893 690.459 115.893 690.459C115.893 690.458 115.893 690.457 115.893 690.456C115.893 690.455 115.893 690.454 115.893 690.453C115.893 690.452 115.893 690.451 115.893 690.45C115.893 690.449 115.893 690.448 115.893 690.447C115.893 690.446 115.893 690.445 115.893 690.445C115.893 690.444 115.893 690.443 115.893 690.442C115.893 690.441 115.893 690.44 115.893 690.439C115.893 690.438 115.893 690.437 115.893 690.436C115.893 690.435 115.893 690.434 115.893 690.433C115.893 690.432 115.893 690.432 115.893 690.431C115.893 690.43 115.893 690.429 115.893 690.428C115.893 690.427 115.893 690.426 115.893 690.425C115.893 690.424 115.893 690.423 115.893 690.422C115.893 690.421 115.893 690.42 115.893 690.419C115.893 690.418 115.893 690.418 115.893 690.417C115.893 690.416 115.893 690.415 115.893 690.414C115.893 690.413 115.893 690.412 115.893 690.411C115.893 690.41 115.893 690.409 115.893 690.408C115.893 690.407 115.893 690.406 115.893 690.405C115.893 690.405 115.893 690.404 115.893 690.403C115.893 690.402 115.893 690.401 115.893 690.4C115.893 690.399 115.893 690.398 115.893 690.397C115.893 690.396 115.893 690.395 115.893 690.394C115.893 690.393 115.893 690.392 115.893 690.391C115.893 690.391 115.893 690.39 115.893 690.389C115.893 690.388 115.893 690.387 115.893 690.386C115.893 690.385 115.893 690.384 115.893 690.383C115.893 690.382 115.893 690.381 115.893 690.38C115.893 690.379 115.893 690.378 115.893 690.378C115.893 690.377 115.893 690.376 115.893 690.375C115.893 690.374 115.893 690.373 115.893 690.372C115.893 690.371 115.893 690.37 115.893 690.369C115.893 690.368 115.893 690.367 115.893 690.366C115.893 690.365 115.893 690.364 115.893 690.364C115.893 690.363 115.893 690.362 115.893 690.361C115.893 690.36 115.893 690.359 115.893 690.358C115.893 690.357 115.893 690.356 115.893 690.355C115.893 690.354 115.893 690.353 115.893 690.352C115.893 690.351 115.893 690.351 115.893 690.35C115.893 690.349 115.893 690.348 115.893 690.347C115.893 690.346 115.893 690.345 115.893 690.344C115.893 690.343 115.893 690.342 115.893 690.341C115.893 690.34 115.893 690.339 115.893 690.338C115.893 690.337 115.893 690.337 115.893 690.336C115.893 690.335 115.893 690.334 115.893 690.333C115.893 690.332 115.893 690.331 115.893 690.33C115.893 690.329 115.893 690.328 115.893 690.327C115.893 690.326 115.893 690.325 115.893 690.324C115.893 690.324 115.893 690.323 115.893 690.322C115.893 690.321 115.893 690.32 115.893 690.319C115.893 690.318 115.893 690.317 115.893 690.316C115.893 690.315 115.893 690.314 115.893 690.313C115.893 690.312 115.893 690.311 115.893 690.31C115.893 690.31 115.893 690.309 115.893 690.308C115.893 690.307 115.893 690.306 115.893 690.305C115.893 690.304 115.893 690.303 115.893 690.302C115.893 690.301 115.893 690.3 115.893 690.299C115.893 690.298 115.893 690.297 115.893 690.297C115.893 690.296 115.893 690.295 115.893 690.294C115.893 690.293 115.893 690.292 115.893 690.291C115.893 690.29 115.893 690.289 115.893 690.288C115.893 690.287 115.893 690.286 115.893 690.285C115.893 690.284 115.893 690.283 115.893 690.283C115.893 690.282 115.893 690.281 115.893 690.28C115.893 690.279 115.893 690.278 115.893 690.277C115.893 690.276 115.893 690.275 115.893 690.274C115.893 690.273 115.893 690.272 115.893 690.271C115.893 690.27 115.893 690.27 115.893 690.269C115.893 690.268 115.893 690.267 115.893 690.266C115.893 690.265 115.893 690.264 115.893 690.263C115.893 690.262 115.893 690.261 115.893 690.26C115.893 690.259 115.893 690.258 115.893 690.257C115.893 690.257 115.893 690.256 115.893 690.255C115.893 690.254 115.893 690.253 115.893 690.252C115.893 690.251 115.893 690.25 115.893 690.249C115.893 690.248 115.893 690.247 115.893 690.246C115.893 690.245 115.893 690.244 115.893 690.243C115.893 690.243 115.893 690.242 115.893 690.241C115.893 690.24 115.893 690.239 115.893 690.238C115.893 690.237 115.893 690.236 115.893 690.235C115.893 690.234 115.893 690.233 115.893 690.232C115.893 690.231 115.893 690.23 115.893 690.23C115.893 690.229 115.893 690.228 115.893 690.227C115.893 690.226 115.893 690.225 115.893 690.224C115.893 690.223 115.893 690.222 115.893 690.221C115.893 690.22 115.893 690.219 115.893 690.218C115.893 690.217 115.893 690.216 115.893 690.216C115.893 690.215 115.893 690.214 115.893 690.213C115.893 690.212 115.893 690.211 115.893 690.21C115.893 690.209 115.893 690.208 115.893 690.207C115.893 690.206 115.893 690.205 115.893 690.204C115.893 690.203 115.893 690.203 115.893 690.202C115.893 690.201 115.893 690.2 115.893 690.199C115.893 690.198 115.893 690.197 115.893 690.196C115.893 690.195 115.893 690.194 115.893 690.193C115.893 690.192 115.893 690.191 115.893 690.19C115.893 690.189 115.893 690.189 115.893 690.188C115.893 690.187 115.893 690.186 115.893 690.185C115.893 690.184 115.893 690.183 115.893 690.182C115.893 690.181 115.893 690.18 115.893 690.179C115.893 690.178 115.893 690.177 115.893 690.176C115.893 690.176 115.893 690.175 115.893 690.174C115.893 690.173 115.893 690.172 115.893 690.171C115.893 690.17 115.893 690.169 115.893 690.168C115.893 690.167 115.893 690.166 115.893 690.165C115.893 690.164 115.893 690.163 115.893 690.162C115.893 690.162 115.893 690.161 115.893 690.16C115.893 690.159 115.893 690.158 115.893 690.157C115.893 690.156 115.893 690.155 115.893 690.154C115.893 690.153 115.893 690.152 115.893 690.151C115.893 690.15 115.893 690.149 115.893 690.149C115.893 690.148 115.893 690.147 115.893 690.146C115.893 690.145 115.893 690.144 115.893 690.143C115.893 690.142 115.893 690.141 115.893 690.14C115.893 690.139 115.893 690.138 115.893 690.137C115.893 690.136 115.893 690.135 115.893 690.135C115.893 690.134 115.893 690.133 115.893 690.132C115.893 690.131 115.893 690.13 115.893 690.129C115.893 690.128 115.893 690.127 115.893 690.126C115.893 690.125 115.893 690.124 115.893 690.123C115.893 690.122 115.893 690.122 115.893 690.121C115.893 690.12 115.893 690.119 115.893 690.118C115.893 690.117 115.893 690.116 115.893 690.115C115.893 690.114 115.893 690.113 115.893 690.112C115.893 690.111 115.893 690.11 115.893 690.109C115.893 690.108 115.893 690.108 115.893 690.107C115.893 690.106 115.893 690.105 115.893 690.104C115.893 690.103 115.893 690.102 115.893 690.101C115.893 690.1 115.893 690.099 115.893 690.098C115.893 690.097 115.893 690.096 115.893 690.095L114.893 690.095L113.893 690.095C113.893 690.096 113.893 690.097 113.893 690.098C113.893 690.099 113.893 690.1 113.893 690.101C113.893 690.102 113.893 690.103 113.893 690.104C113.893 690.105 113.893 690.106 113.893 690.107C113.893 690.108 113.893 690.108 113.893 690.109C113.893 690.11 113.893 690.111 113.893 690.112C113.893 690.113 113.893 690.114 113.893 690.115C113.893 690.116 113.893 690.117 113.893 690.118C113.893 690.119 113.893 690.12 113.893 690.121C113.893 690.122 113.893 690.122 113.893 690.123C113.893 690.124 113.893 690.125 113.893 690.126C113.893 690.127 113.893 690.128 113.893 690.129C113.893 690.13 113.893 690.131 113.893 690.132C113.893 690.133 113.893 690.134 113.893 690.135C113.893 690.135 113.893 690.136 113.893 690.137C113.893 690.138 113.893 690.139 113.893 690.14C113.893 690.141 113.893 690.142 113.893 690.143C113.893 690.144 113.893 690.145 113.893 690.146C113.893 690.147 113.893 690.148 113.893 690.149C113.893 690.149 113.893 690.15 113.893 690.151C113.893 690.152 113.893 690.153 113.893 690.154C113.893 690.155 113.893 690.156 113.893 690.157C113.893 690.158 113.893 690.159 113.893 690.16C113.893 690.161 113.893 690.162 113.893 690.162C113.893 690.163 113.893 690.164 113.893 690.165C113.893 690.166 113.893 690.167 113.893 690.168C113.893 690.169 113.893 690.17 113.893 690.171C113.893 690.172 113.893 690.173 113.893 690.174C113.893 690.175 113.893 690.176 113.893 690.176C113.893 690.177 113.893 690.178 113.893 690.179C113.893 690.18 113.893 690.181 113.893 690.182C113.893 690.183 113.893 690.184 113.893 690.185C113.893 690.186 113.893 690.187 113.893 690.188C113.893 690.189 113.893 690.189 113.893 690.19C113.893 690.191 113.893 690.192 113.893 690.193C113.893 690.194 113.893 690.195 113.893 690.196C113.893 690.197 113.893 690.198 113.893 690.199C113.893 690.2 113.893 690.201 113.893 690.202C113.893 690.203 113.893 690.203 113.893 690.204C113.893 690.205 113.893 690.206 113.893 690.207C113.893 690.208 113.893 690.209 113.893 690.21C113.893 690.211 113.893 690.212 113.893 690.213C113.893 690.214 113.893 690.215 113.893 690.216C113.893 690.216 113.893 690.217 113.893 690.218C113.893 690.219 113.893 690.22 113.893 690.221C113.893 690.222 113.893 690.223 113.893 690.224C113.893 690.225 113.893 690.226 113.893 690.227C113.893 690.228 113.893 690.229 113.893 690.23C113.893 690.23 113.893 690.231 113.893 690.232C113.893 690.233 113.893 690.234 113.893 690.235C113.893 690.236 113.893 690.237 113.893 690.238C113.893 690.239 113.893 690.24 113.893 690.241C113.893 690.242 113.893 690.243 113.893 690.243C113.893 690.244 113.893 690.245 113.893 690.246C113.893 690.247 113.893 690.248 113.893 690.249C113.893 690.25 113.893 690.251 113.893 690.252C113.893 690.253 113.893 690.254 113.893 690.255C113.893 690.256 113.893 690.257 113.893 690.257C113.893 690.258 113.893 690.259 113.893 690.26C113.893 690.261 113.893 690.262 113.893 690.263C113.893 690.264 113.893 690.265 113.893 690.266C113.893 690.267 113.893 690.268 113.893 690.269C113.893 690.27 113.893 690.27 113.893 690.271C113.893 690.272 113.893 690.273 113.893 690.274C113.893 690.275 113.893 690.276 113.893 690.277C113.893 690.278 113.893 690.279 113.893 690.28C113.893 690.281 113.893 690.282 113.893 690.283C113.893 690.283 113.893 690.284 113.893 690.285C113.893 690.286 113.893 690.287 113.893 690.288C113.893 690.289 113.893 690.29 113.893 690.291C113.893 690.292 113.893 690.293 113.893 690.294C113.893 690.295 113.893 690.296 113.893 690.297C113.893 690.297 113.893 690.298 113.893 690.299C113.893 690.3 113.893 690.301 113.893 690.302C113.893 690.303 113.893 690.304 113.893 690.305C113.893 690.306 113.893 690.307 113.893 690.308C113.893 690.309 113.893 690.31 113.893 690.31C113.893 690.311 113.893 690.312 113.893 690.313C113.893 690.314 113.893 690.315 113.893 690.316C113.893 690.317 113.893 690.318 113.893 690.319C113.893 690.32 113.893 690.321 113.893 690.322C113.893 690.323 113.893 690.324 113.893 690.324C113.893 690.325 113.893 690.326 113.893 690.327C113.893 690.328 113.893 690.329 113.893 690.33C113.893 690.331 113.893 690.332 113.893 690.333C113.893 690.334 113.893 690.335 113.893 690.336C113.893 690.337 113.893 690.337 113.893 690.338C113.893 690.339 113.893 690.34 113.893 690.341C113.893 690.342 113.893 690.343 113.893 690.344C113.893 690.345 113.893 690.346 113.893 690.347C113.893 690.348 113.893 690.349 113.893 690.35C113.893 690.351 113.893 690.351 113.893 690.352C113.893 690.353 113.893 690.354 113.893 690.355C113.893 690.356 113.893 690.357 113.893 690.358C113.893 690.359 113.893 690.36 113.893 690.361C113.893 690.362 113.893 690.363 113.893 690.364C113.893 690.364 113.893 690.365 113.893 690.366C113.893 690.367 113.893 690.368 113.893 690.369C113.893 690.37 113.893 690.371 113.893 690.372C113.893 690.373 113.893 690.374 113.893 690.375C113.893 690.376 113.893 690.377 113.893 690.378C113.893 690.378 113.893 690.379 113.893 690.38C113.893 690.381 113.893 690.382 113.893 690.383C113.893 690.384 113.893 690.385 113.893 690.386C113.893 690.387 113.893 690.388 113.893 690.389C113.893 690.39 113.893 690.391 113.893 690.391C113.893 690.392 113.893 690.393 113.893 690.394C113.893 690.395 113.893 690.396 113.893 690.397C113.893 690.398 113.893 690.399 113.893 690.4C113.893 690.401 113.893 690.402 113.893 690.403C113.893 690.404 113.893 690.405 113.893 690.405C113.893 690.406 113.893 690.407 113.893 690.408C113.893 690.409 113.893 690.41 113.893 690.411C113.893 690.412 113.893 690.413 113.893 690.414C113.893 690.415 113.893 690.416 113.893 690.417C113.893 690.418 113.893 690.418 113.893 690.419C113.893 690.42 113.893 690.421 113.893 690.422C113.893 690.423 113.893 690.424 113.893 690.425C113.893 690.426 113.893 690.427 113.893 690.428C113.893 690.429 113.893 690.43 113.893 690.431C113.893 690.432 113.893 690.432 113.893 690.433C113.893 690.434 113.893 690.435 113.893 690.436C113.893 690.437 113.893 690.438 113.893 690.439C113.893 690.44 113.893 690.441 113.893 690.442C113.893 690.443 113.893 690.444 113.893 690.445C113.893 690.445 113.893 690.446 113.893 690.447C113.893 690.448 113.893 690.449 113.893 690.45C113.893 690.451 113.893 690.452 113.893 690.453C113.893 690.454 113.893 690.455 113.893 690.456C113.893 690.457 113.893 690.458 113.893 690.459C113.893 690.459 113.893 690.46 113.893 690.461C113.893 690.462 113.893 690.463 113.893 690.464C113.893 690.465 113.893 690.466 113.893 690.467C113.893 690.468 113.893 690.469 113.893 690.47C113.893 690.471 113.893 690.472 113.893 690.472C113.893 690.473 113.893 690.474 113.893 690.475C113.893 690.476 113.893 690.477 113.893 690.478C113.893 690.479 113.893 690.48 113.893 690.481C113.893 690.482 113.893 690.483 113.893 690.484C113.893 690.485 113.893 690.486 113.893 690.486C113.893 690.487 113.893 690.488 113.893 690.489C113.893 690.49 113.893 690.491 113.893 690.492C113.893 690.493 113.893 690.494 113.893 690.495C113.893 690.496 113.893 690.497 113.893 690.498C113.893 690.499 113.893 690.499 113.893 690.5C113.893 690.501 113.893 690.502 113.893 690.503C113.893 690.504 113.893 690.505 113.893 690.506C113.893 690.507 113.893 690.508 113.893 690.509C113.893 690.51 113.893 690.511 113.893 690.512C113.893 690.513 113.893 690.513 113.893 690.514C113.893 690.515 113.893 690.516 113.893 690.517C113.893 690.518 113.893 690.519 113.893 690.52C113.893 690.521 113.893 690.522 113.893 690.523C113.893 690.524 113.893 690.525 113.893 690.526C113.893 690.526 113.893 690.527 113.893 690.528C113.893 690.529 113.893 690.53 113.893 690.531C113.893 690.532 113.893 690.533 113.893 690.534C113.893 690.535 113.893 690.536 113.893 690.537C113.893 690.538 113.893 690.539 113.893 690.54C113.893 690.54 113.893 690.541 113.893 690.542C113.893 690.543 113.893 690.544 113.893 690.545C113.893 690.546 113.893 690.547 113.893 690.548C113.893 690.549 113.893 690.55 113.893 690.551C113.893 690.552 113.893 690.553 113.893 690.553C113.893 690.554 113.893 690.555 113.893 690.556C113.893 690.557 113.893 690.558 113.893 690.559C113.893 690.56 113.893 690.561 113.893 690.562C113.893 690.563 113.893 690.564 113.893 690.565C113.893 690.566 113.893 690.567 113.893 690.567C113.893 690.568 113.893 690.569 113.893 690.57C113.893 690.571 113.893 690.572 113.893 690.573C113.893 690.574 113.893 690.575 113.893 690.576C113.893 690.577 113.893 690.578 113.893 690.579C113.893 690.58 113.893 690.58 113.893 690.581C113.893 690.582 113.893 690.583 113.893 690.584C113.893 690.585 113.893 690.586 113.893 690.587C113.893 690.588 113.893 690.589 113.893 690.59C113.893 690.591 113.893 690.592 113.893 690.593C113.893 690.594 113.893 690.594 113.893 690.595C113.893 690.596 113.893 690.597 113.893 690.598C113.893 690.599 113.893 690.6 113.893 690.601C113.893 690.602 113.893 690.603 113.893 690.604C113.893 690.605 113.893 690.606 113.893 690.607C113.893 690.607 113.893 690.608 113.893 690.609C113.893 690.61 113.893 690.611 113.893 690.612C113.893 690.613 113.893 690.614 113.893 690.615C113.893 690.616 113.893 690.617 113.893 690.618C113.893 690.619 113.893 690.62 113.893 690.62C113.893 690.621 113.893 690.622 113.893 690.623C113.893 690.624 113.893 690.625 113.893 690.626C113.893 690.627 113.893 690.628 113.893 690.629C113.893 690.63 113.893 690.631 113.893 690.632C113.893 690.633 113.893 690.634 113.893 690.634C113.893 690.635 113.893 690.636 113.893 690.637C113.893 690.638 113.893 690.639 113.893 690.64C113.893 690.641 113.893 690.642 113.893 690.643C113.893 690.644 113.893 690.645 113.893 690.646C113.893 690.647 113.893 690.647 113.893 690.648C113.893 690.649 113.893 690.65 113.893 690.651C113.893 690.652 113.893 690.653 113.893 690.654C113.893 690.655 113.893 690.656 113.893 690.657C113.893 690.658 113.893 690.659 113.893 690.66C113.893 690.661 113.893 690.661 113.893 690.662C113.893 690.663 113.893 690.664 113.893 690.665C113.893 690.666 113.893 690.667 113.893 690.668C113.893 690.669 113.893 690.67 113.893 690.671C113.893 690.672 113.893 690.673 113.893 690.674C113.893 690.674 113.893 690.675 113.893 690.676C113.893 690.677 113.893 690.678 113.893 690.679C113.893 690.68 113.893 690.681 113.893 690.682C113.893 690.683 113.893 690.684 113.893 690.685C113.893 690.686 113.893 690.687 113.893 690.688C113.893 690.688 113.893 690.689 113.893 690.69C113.893 690.691 113.893 690.692 113.893 690.693C113.893 690.694 113.893 690.695 113.893 690.696C113.893 690.697 113.893 690.698 113.893 690.699C113.893 690.7 113.893 690.701 113.893 690.701C113.893 690.702 113.893 690.703 113.893 690.704C113.893 690.705 113.893 690.706 113.893 690.707C113.893 690.708 113.893 690.709 113.893 690.71C113.893 690.711 113.893 690.712 113.893 690.713C113.893 690.714 113.893 690.715 113.893 690.715C113.893 690.716 113.893 690.717 113.893 690.718C113.893 690.719 113.893 690.72 113.893 690.721C113.893 690.722 113.893 690.723 113.893 690.724C113.893 690.725 113.893 690.726 113.893 690.727C113.893 690.728 113.893 690.728 113.893 690.729C113.893 690.73 113.893 690.731 113.893 690.732C113.893 690.733 113.893 690.734 113.893 690.735C113.893 690.736 113.893 690.737 113.893 690.738C113.893 690.739 113.893 690.74 113.893 690.741C113.893 690.742 113.893 690.742 113.893 690.743C113.893 690.744 113.893 690.745 113.893 690.746C113.893 690.747 113.893 690.748 113.893 690.749C113.893 690.75 113.893 690.751 113.893 690.752C113.893 690.753 113.893 690.754 113.893 690.755C113.893 690.755 113.893 690.756 113.893 690.757C113.893 690.758 113.893 690.759 113.893 690.76C113.893 690.761 113.893 690.762 113.893 690.763C113.893 690.764 113.893 690.765 113.893 690.766C113.893 690.767 113.893 690.768 113.893 690.769C113.893 690.769 113.893 690.77 113.893 690.771C113.893 690.772 113.893 690.773 113.893 690.774C113.893 690.775 113.893 690.776 113.893 690.777C113.893 690.778 113.893 690.779 113.893 690.78C113.893 690.781 113.893 690.782 113.893 690.782C113.893 690.783 113.893 690.784 113.893 690.785C113.893 690.786 113.893 690.787 113.893 690.788C113.893 690.789 113.893 690.79 113.893 690.791C113.893 690.792 113.893 690.793 113.893 690.794C113.893 690.795 113.893 690.796 113.893 690.796C113.893 690.797 113.893 690.798 113.893 690.799C113.893 690.8 113.893 690.801 113.893 690.802C113.893 690.803 113.893 690.804 113.893 690.805C113.893 690.806 113.893 690.807 113.893 690.808C113.893 690.809 113.893 690.809 113.893 690.81C113.893 690.811 113.893 690.812 113.893 690.813C113.893 690.814 113.893 690.815 113.893 690.816C113.893 690.817 113.893 690.818 113.893 690.819C113.893 690.82 113.893 690.821 113.893 690.822C113.893 690.823 113.893 690.823 113.893 690.824C113.893 690.825 113.893 690.826 113.893 690.827C113.893 690.828 113.893 690.829 113.893 690.83C113.893 690.831 113.893 690.832 113.893 690.833C113.893 690.834 113.893 690.835 113.893 690.836C113.893 690.836 113.893 690.837 113.893 690.838C113.893 690.839 113.893 690.84 113.893 690.841C113.893 690.842 113.893 690.843 113.893 690.844C113.893 690.845 113.893 690.846 113.893 690.847C113.893 690.848 113.893 690.849 113.893 690.85C113.893 690.85 113.893 690.851 113.893 690.852C113.893 690.853 113.893 690.854 113.893 690.855C113.893 690.856 113.893 690.857 113.893 690.858C113.893 690.859 113.893 690.86 113.893 690.861C113.893 690.862 113.893 690.863 113.893 690.863C113.893 690.864 113.893 690.865 113.893 690.866C113.893 690.867 113.893 690.868 113.893 690.869C113.893 690.87 113.893 690.871 113.893 690.872C113.893 690.873 113.893 690.874 113.893 690.875C113.893 690.876 113.893 690.877 113.893 690.877C113.893 690.878 113.893 690.879 113.893 690.88C113.893 690.881 113.893 690.882 113.893 690.883C113.893 690.884 113.893 690.885 113.893 690.886C113.893 690.887 113.893 690.888 113.893 690.889C113.893 690.89 113.893 690.89 113.893 690.891C113.893 690.892 113.893 690.893 113.893 690.894C113.893 690.895 113.893 690.896 113.893 690.897C113.893 690.898 113.893 690.899 113.893 690.9C113.893 690.901 113.893 690.902 113.893 690.903C113.893 690.904 113.893 690.904 113.893 690.905C113.893 690.906 113.893 690.907 113.893 690.908C113.893 690.909 113.893 690.91 113.893 690.911C113.893 690.912 113.893 690.913 113.893 690.914C113.893 690.915 113.893 690.916 113.893 690.917C113.893 690.917 113.893 690.918 113.893 690.919C113.893 690.92 113.893 690.921 113.893 690.922C113.893 690.923 113.893 690.924 113.893 690.925C113.893 690.926 113.893 690.927 113.893 690.928C113.893 690.929 113.893 690.93 113.893 690.931C113.893 690.931 113.893 690.932 113.893 690.933C113.893 690.934 113.893 690.935 113.893 690.936C113.893 690.937 113.893 690.938 113.893 690.939C113.893 690.94 113.893 690.941 113.893 690.942C113.893 690.943 113.893 690.944 113.893 690.944C113.893 690.945 113.893 690.946 113.893 690.947C113.893 690.948 113.893 690.949 113.893 690.95C113.893 690.951 113.893 690.952 113.893 690.953C113.893 690.954 113.893 690.955 113.893 690.956C113.893 690.957 113.893 690.957 113.893 690.958C113.893 690.959 113.893 690.96 113.893 690.961C113.893 690.962 113.893 690.963 113.893 690.964C113.893 690.965 113.893 690.966 113.893 690.967C113.893 690.968 113.893 690.969 113.893 690.97C113.893 690.971 113.893 690.971 113.893 690.972C113.893 690.973 113.893 690.974 113.893 690.975C113.893 690.976 113.893 690.977 113.893 690.978C113.893 690.979 113.893 690.98 113.893 690.981C113.893 690.982 113.893 690.983 113.893 690.984C113.893 690.984 113.893 690.985 113.893 690.986C113.893 690.987 113.893 690.988 113.893 690.989C113.893 690.99 113.893 690.991 113.893 690.992C113.893 690.993 113.893 690.994 113.893 690.995C113.893 690.996 113.893 690.997 113.893 690.998C113.893 690.998 113.893 690.999 113.893 691C113.893 691.001 113.893 691.002 113.893 691.003C113.893 691.004 113.893 691.005 113.893 691.006C113.893 691.007 113.893 691.008 113.893 691.009C113.893 691.01 113.893 691.011 113.893 691.011C113.893 691.012 113.893 691.013 113.893 691.014C113.893 691.015 113.893 691.016 113.893 691.017C113.893 691.018 113.893 691.019 113.893 691.02C113.893 691.021 113.893 691.022 113.893 691.023C113.893 691.024 113.893 691.025 113.893 691.025C113.893 691.026 113.893 691.027 113.893 691.028C113.893 691.029 113.893 691.03 113.893 691.031C113.893 691.032 113.893 691.033 113.893 691.034C113.893 691.035 113.893 691.036 113.893 691.037C113.893 691.038 113.893 691.038 113.893 691.039C113.893 691.04 113.893 691.041 113.893 691.042C113.893 691.043 113.893 691.044 113.893 691.045C113.893 691.046 113.893 691.047 113.893 691.048C113.893 691.049 113.893 691.05 113.893 691.051C113.893 691.052 113.893 691.052 113.893 691.053C113.893 691.054 113.893 691.055 113.893 691.056C113.893 691.057 113.893 691.058 113.893 691.059C113.893 691.06 113.893 691.061 113.893 691.062C113.893 691.063 113.893 691.064 113.893 691.065C113.893 691.065 113.893 691.066 113.893 691.067C113.893 691.068 113.893 691.069 113.893 691.07C113.893 691.071 113.893 691.072 113.893 691.073C113.893 691.074 113.893 691.075 113.893 691.076C113.893 691.077 113.893 691.078 113.893 691.079C113.893 691.079 113.893 691.08 113.893 691.081C113.893 691.082 113.893 691.083 113.893 691.084C113.893 691.085 113.893 691.086 113.893 691.087C113.893 691.088 113.893 691.089 113.893 691.09C113.893 691.091 113.893 691.092 113.893 691.092C113.893 691.093 113.893 691.094 113.893 691.095C113.893 691.096 113.893 691.097 113.893 691.098C113.893 691.099 113.893 691.1 113.893 691.101C113.893 691.102 113.893 691.103 113.893 691.104C113.893 691.105 113.893 691.106 113.893 691.106C113.893 691.107 113.893 691.108 113.893 691.109C113.893 691.11 113.893 691.111 113.893 691.112C113.893 691.113 113.893 691.114 113.893 691.115C113.893 691.116 113.893 691.117 113.893 691.118C113.893 691.119 113.893 691.119 113.893 691.12C113.893 691.121 113.893 691.122 113.893 691.123C113.893 691.124 113.893 691.125 113.893 691.126C113.893 691.127 113.893 691.128 113.893 691.129C113.893 691.13 113.893 691.131 113.893 691.132C113.893 691.133 113.893 691.133 113.893 691.134C113.893 691.135 113.893 691.136 113.893 691.137C113.893 691.138 113.893 691.139 113.893 691.14C113.893 691.141 113.893 691.142 113.893 691.143C113.893 691.144 113.893 691.145 113.893 691.146C113.893 691.146 113.893 691.147 113.893 691.148C113.893 691.149 113.893 691.15 113.893 691.151C113.893 691.152 113.893 691.153 113.893 691.154C113.893 691.155 113.893 691.156 113.893 691.157C113.893 691.158 113.893 691.159 113.893 691.16C113.893 691.16 113.893 691.161 113.893 691.162C113.893 691.163 113.893 691.164 113.893 691.165C113.893 691.166 113.893 691.167 113.893 691.168C113.893 691.169 113.893 691.17 113.893 691.171C113.893 691.172 113.893 691.173 113.893 691.173C113.893 691.174 113.893 691.175 113.893 691.176C113.893 691.177 113.893 691.178 113.893 691.179C113.893 691.18 113.893 691.181 113.893 691.182C113.893 691.183 113.893 691.184 113.893 691.185C113.893 691.186 113.893 691.187 113.893 691.187C113.893 691.188 113.893 691.189 113.893 691.19C113.893 691.191 113.893 691.192 113.893 691.193C113.893 691.194 113.893 691.195 113.893 691.196C113.893 691.197 113.893 691.198 113.893 691.199C113.893 691.2 113.893 691.2 113.893 691.201C113.893 691.202 113.893 691.203 113.893 691.204C113.893 691.205 113.893 691.206 113.893 691.207C113.893 691.208 113.893 691.209 113.893 691.21C113.893 691.211 113.893 691.212 113.893 691.213C113.893 691.214 113.893 691.214 113.893 691.215C113.893 691.216 113.893 691.217 113.893 691.218C113.893 691.219 113.893 691.22 113.893 691.221C113.893 691.222 113.893 691.223 113.893 691.224C113.893 691.225 113.893 691.226 113.893 691.227C113.893 691.227 113.893 691.228 113.893 691.229C113.893 691.23 113.893 691.231 113.893 691.232C113.893 691.233 113.893 691.234 113.893 691.235C113.893 691.236 113.893 691.237 113.893 691.238C113.893 691.239 113.893 691.24 113.893 691.241C113.893 691.241 113.893 691.242 113.893 691.243C113.893 691.244 113.893 691.245 113.893 691.246C113.893 691.247 113.893 691.248 113.893 691.249C113.893 691.25 113.893 691.251 113.893 691.252C113.893 691.253 113.893 691.254 113.893 691.254C113.893 691.255 113.893 691.256 113.893 691.257C113.893 691.258 113.893 691.259 113.893 691.26C113.893 691.261 113.893 691.262 113.893 691.263C113.893 691.264 113.893 691.265 113.893 691.266C113.893 691.267 113.893 691.268 113.893 691.268C113.893 691.269 113.893 691.27 113.893 691.271C113.893 691.272 113.893 691.273 113.893 691.274C113.893 691.275 113.893 691.276 113.893 691.277C113.893 691.278 113.893 691.279 113.893 691.28C113.893 691.281 113.893 691.281 113.893 691.282C113.893 691.283 113.893 691.284 113.893 691.285C113.893 691.286 113.893 691.287 113.893 691.288C113.893 691.289 113.893 691.29 113.893 691.291C113.893 691.292 113.893 691.293 113.893 691.294C113.893 691.294 113.893 691.295 113.893 691.296C113.893 691.297 113.893 691.298 113.893 691.299C113.893 691.3 113.893 691.301 113.893 691.302C113.893 691.303 113.893 691.304 113.893 691.305C113.893 691.306 113.893 691.307 113.893 691.308C113.893 691.308 113.893 691.309 113.893 691.31C113.893 691.311 113.893 691.312 113.893 691.313C113.893 691.314 113.893 691.315 113.893 691.316C113.893 691.317 113.893 691.318 113.893 691.319C113.893 691.32 113.893 691.321 113.893 691.321C113.893 691.322 113.893 691.323 113.893 691.324C113.893 691.325 113.893 691.326 113.893 691.327C113.893 691.328 113.893 691.329 113.893 691.33C113.893 691.331 113.893 691.332 113.893 691.333C113.893 691.334 113.893 691.335 113.893 691.335C113.893 691.336 113.893 691.337 113.893 691.338C113.893 691.339 113.893 691.34 113.893 691.341C113.893 691.342 113.893 691.343 113.893 691.344C113.893 691.345 113.893 691.346 113.893 691.347C113.893 691.348 113.893 691.348 113.893 691.349C113.893 691.35 113.893 691.351 113.893 691.352C113.893 691.353 113.893 691.354 113.893 691.355C113.893 691.356 113.893 691.357 113.893 691.358C113.893 691.359 113.893 691.36 113.893 691.361C113.893 691.362 113.893 691.362 113.893 691.363C113.893 691.364 113.893 691.365 113.893 691.366C113.893 691.367 113.893 691.368 113.893 691.369C113.893 691.37 113.893 691.371 113.893 691.372C113.893 691.373 113.893 691.374 113.893 691.375C113.893 691.375 113.893 691.376 113.893 691.377C113.893 691.378 113.893 691.379 113.893 691.38C113.893 691.381 113.893 691.382 113.893 691.383C113.893 691.384 113.893 691.385 113.893 691.386C113.893 691.387 113.893 691.388 113.893 691.389C113.893 691.389 113.893 691.39 113.893 691.391C113.893 691.392 113.893 691.393 113.893 691.394C113.893 691.395 113.893 691.396 113.893 691.397C113.893 691.398 113.893 691.399 113.893 691.4C113.893 691.401 113.893 691.402 113.893 691.402C113.893 691.403 113.893 691.404 113.893 691.405C113.893 691.406 113.893 691.407 113.893 691.408C113.893 691.409 113.893 691.41 113.893 691.411C113.893 691.412 113.893 691.413 113.893 691.414C113.893 691.415 113.893 691.416 113.893 691.416C113.893 691.417 113.893 691.418 113.893 691.419C113.893 691.42 113.893 691.421 113.893 691.422C113.893 691.423 113.893 691.424 113.893 691.425C113.893 691.426 113.893 691.427 113.893 691.428C113.893 691.429 113.893 691.429 113.893 691.43C113.893 691.431 113.893 691.432 113.893 691.433C113.893 691.434 113.893 691.435 113.893 691.436C113.893 691.437 113.893 691.438 113.893 691.439C113.893 691.44 113.893 691.441 113.893 691.442C113.893 691.443 113.893 691.443 113.893 691.444C113.893 691.445 113.893 691.446 113.893 691.447C113.893 691.448 113.893 691.449 113.893 691.45C113.893 691.451 113.893 691.452 113.893 691.453C113.893 691.454 113.893 691.455 113.893 691.456C113.893 691.456 113.893 691.457 113.893 691.458C113.893 691.459 113.893 691.46 113.893 691.461C113.893 691.462 113.893 691.463 113.893 691.464C113.893 691.465 113.893 691.466 113.893 691.467C113.893 691.468 113.893 691.469 113.893 691.47C113.893 691.47 113.893 691.471 113.893 691.472C113.893 691.473 113.893 691.474 113.893 691.475C113.893 691.476 113.893 691.477 113.893 691.478C113.893 691.479 113.893 691.48 113.893 691.481C113.893 691.482 113.893 691.483 113.893 691.483C113.893 691.484 113.893 691.485 113.893 691.486C113.893 691.487 113.893 691.488 113.893 691.489C113.893 691.49 113.893 691.491 113.893 691.492C113.893 691.493 113.893 691.494 113.893 691.495C113.893 691.496 113.893 691.497 113.893 691.497C113.893 691.498 113.893 691.499 113.893 691.5C113.893 691.501 113.893 691.502 113.893 691.503C113.893 691.504 113.893 691.505 113.893 691.506C113.893 691.507 113.893 691.508 113.893 691.509C113.893 691.51 113.893 691.51 113.893 691.511C113.893 691.512 113.893 691.513 113.893 691.514C113.893 691.515 113.893 691.516 113.893 691.517C113.893 691.518 113.893 691.519 113.893 691.52C113.893 691.521 113.893 691.522 113.893 691.523C113.893 691.524 113.893 691.524 113.893 691.525L114.893 691.525ZM114.893 690.095L115.893 690.095L115.893 672.558L114.893 672.558L113.893 672.558L113.893 690.095L114.893 690.095ZM114.893 672.558L114.893 673.558L120.907 673.558L120.907 672.558L120.907 671.558L114.893 671.558L114.893 672.558ZM120.907 672.558L119.907 672.558L119.907 703.175L120.907 703.175L121.907 703.175L121.907 672.558L120.907 672.558ZM120.907 703.175L120.907 702.175L113.757 702.175L113.757 703.175L113.757 704.175L120.907 704.175L120.907 703.175ZM113.757 703.175L114.644 702.713L105.413 684.986L104.526 685.448L103.639 685.91L112.87 703.637L113.757 703.175ZM104.526 685.448L105.42 685.001C105.226 684.612 105.051 684.21 104.894 683.793L103.958 684.144L103.022 684.496C103.202 684.976 103.405 685.443 103.631 685.895L104.526 685.448ZM103.958 684.144L104.894 683.793C104.736 683.37 104.597 682.949 104.479 682.528L103.516 682.799L102.554 683.069C102.688 683.546 102.844 684.021 103.022 684.496L103.958 684.144ZM103.516 682.799L103.516 681.799L103.369 681.799L103.369 682.799L103.369 683.799L103.516 683.799L103.516 682.799ZM103.369 682.799L102.371 682.857C102.398 683.315 102.411 683.765 102.411 684.208L103.411 684.208L104.411 684.208C104.411 683.725 104.397 683.235 104.368 682.74L103.369 682.799ZM103.411 684.208L102.412 684.239C102.425 684.676 102.432 685.135 102.432 685.616L103.432 685.616L104.432 685.616C104.432 685.116 104.425 684.636 104.411 684.176L103.411 684.208ZM103.432 685.616L102.432 685.616L102.432 703.175L103.432 703.175L104.432 703.175L104.432 685.616L103.432 685.616ZM103.432 703.175L103.432 702.175L97.4393 702.175L97.4393 703.175L97.4393 704.175L103.432 704.175L103.432 703.175ZM125.617 672.558L125.617 671.558L124.617 671.558L124.617 672.558L125.617 672.558ZM132.62 672.558L133.62 672.558L133.62 671.558L132.62 671.558L132.62 672.558ZM133.839 697.329L133.098 698.001L133.104 698.006L133.839 697.329ZM140.547 697.329L139.812 696.651L139.812 696.652L140.547 697.329ZM141.788 672.558L141.788 671.558L140.788 671.558L140.788 672.558L141.788 672.558ZM148.727 672.558L149.727 672.558L149.727 671.558L148.727 671.558L148.727 672.558ZM145.573 700.841L144.904 700.098L144.902 700.1L145.573 700.841ZM125.617 691.988L126.617 691.988L126.617 672.558L125.617 672.558L124.617 672.558L124.617 691.988L125.617 691.988ZM125.617 672.558L125.617 673.558L132.62 673.558L132.62 672.558L132.62 671.558L125.617 671.558L125.617 672.558ZM132.62 672.558L131.62 672.558L131.62 692.724L132.62 692.724L133.62 692.724L133.62 672.558L132.62 672.558ZM132.62 692.724L131.62 692.724C131.62 694.967 132.029 696.82 133.098 698.001L133.839 697.329L134.58 696.658C134.024 696.043 133.62 694.827 133.62 692.724L132.62 692.724ZM133.839 697.329L133.104 698.006C134.144 699.137 135.563 699.654 137.225 699.654L137.225 698.654L137.225 697.654C135.999 697.654 135.161 697.288 134.575 696.652L133.839 697.329ZM137.225 698.654L137.225 699.654C138.855 699.654 140.248 699.13 141.283 698.006L140.547 697.329L139.812 696.652C139.22 697.294 138.398 697.654 137.225 697.654L137.225 698.654ZM140.547 697.329L141.283 698.007C142.371 696.826 142.788 694.97 142.788 692.724L141.788 692.724L140.788 692.724C140.788 694.824 140.378 696.038 139.812 696.651L140.547 697.329ZM141.788 692.724L142.788 692.724L142.788 672.558L141.788 672.558L140.788 672.558L140.788 692.724L141.788 692.724ZM141.788 672.558L141.788 673.558L148.727 673.558L148.727 672.558L148.727 671.558L141.788 671.558L141.788 672.558ZM148.727 672.558L147.727 672.558L147.727 691.988L148.727 691.988L149.727 691.988L149.727 672.558L148.727 672.558ZM148.727 691.988L147.727 691.988C147.727 695.835 146.72 698.463 144.904 700.098L145.573 700.841L146.242 701.584C148.632 699.434 149.727 696.159 149.727 691.988L148.727 691.988ZM145.573 700.841L144.902 700.1C143.036 701.79 140.52 702.68 137.246 702.68L137.246 703.68L137.246 704.68C140.897 704.68 143.932 703.677 146.244 701.582L145.573 700.841ZM137.246 703.68L137.246 702.68C133.912 702.68 131.351 701.787 129.459 700.095L128.792 700.841L128.126 701.586C130.467 703.68 133.542 704.68 137.246 704.68L137.246 703.68ZM128.792 700.841L129.459 700.095C127.63 698.46 126.617 695.834 126.617 691.988L125.617 691.988L124.617 691.988C124.617 696.161 125.721 699.436 128.126 701.586L128.792 700.841ZM151.335 678.046L150.335 678.046L150.335 679.046L151.335 679.046L151.335 678.046ZM151.335 672.558L151.335 671.558L150.335 671.558L150.335 672.558L151.335 672.558ZM175.37 672.558L176.37 672.558L176.37 671.558L175.37 671.558L175.37 672.558ZM175.37 678.046L175.37 679.046L176.37 679.046L176.37 678.046L175.37 678.046ZM166.896 678.046L166.896 677.046L165.896 677.046L165.896 678.046L166.896 678.046ZM166.896 703.175L166.896 704.175L167.896 704.175L167.896 703.175L166.896 703.175ZM159.83 703.175L158.83 703.175L158.83 704.175L159.83 704.175L159.83 703.175ZM159.83 678.046L160.83 678.046L160.83 677.046L159.83 677.046L159.83 678.046ZM151.335 678.046L152.335 678.046L152.335 672.558L151.335 672.558L150.335 672.558L150.335 678.046L151.335 678.046ZM151.335 672.558L151.335 673.558L175.37 673.558L175.37 672.558L175.37 671.558L151.335 671.558L151.335 672.558ZM175.37 672.558L174.37 672.558L174.37 678.046L175.37 678.046L176.37 678.046L176.37 672.558L175.37 672.558ZM175.37 678.046L175.37 677.046L166.896 677.046L166.896 678.046L166.896 679.046L175.37 679.046L175.37 678.046ZM166.896 678.046L165.896 678.046L165.896 703.175L166.896 703.175L167.896 703.175L167.896 678.046L166.896 678.046ZM166.896 703.175L166.896 702.175L159.83 702.175L159.83 703.175L159.83 704.175L166.896 704.175L166.896 703.175ZM159.83 703.175L160.83 703.175L160.83 678.046L159.83 678.046L158.83 678.046L158.83 703.175L159.83 703.175ZM159.83 678.046L159.83 677.046L151.335 677.046L151.335 678.046L151.335 679.046L159.83 679.046L159.83 678.046ZM176.274 678.046L175.274 678.046L175.274 679.046L176.274 679.046L176.274 678.046ZM176.274 672.558L176.274 671.558L175.274 671.558L175.274 672.558L176.274 672.558ZM200.31 672.558L201.31 672.558L201.31 671.558L200.31 671.558L200.31 672.558ZM200.31 678.046L200.31 679.046L201.31 679.046L201.31 678.046L200.31 678.046ZM191.835 678.046L191.835 677.046L190.835 677.046L190.835 678.046L191.835 678.046ZM191.835 703.175L191.835 704.175L192.835 704.175L192.835 703.175L191.835 703.175ZM184.77 703.175L183.77 703.175L183.77 704.175L184.77 704.175L184.77 703.175ZM184.77 678.046L185.77 678.046L185.77 677.046L184.77 677.046L184.77 678.046ZM176.274 678.046L177.274 678.046L177.274 672.558L176.274 672.558L175.274 672.558L175.274 678.046L176.274 678.046ZM176.274 672.558L176.274 673.558L200.31 673.558L200.31 672.558L200.31 671.558L176.274 671.558L176.274 672.558ZM200.31 672.558L199.31 672.558L199.31 678.046L200.31 678.046L201.31 678.046L201.31 672.558L200.31 672.558ZM200.31 678.046L200.31 677.046L191.835 677.046L191.835 678.046L191.835 679.046L200.31 679.046L200.31 678.046ZM191.835 678.046L190.835 678.046L190.835 703.175L191.835 703.175L192.835 703.175L192.835 678.046L191.835 678.046ZM191.835 703.175L191.835 702.175L184.77 702.175L184.77 703.175L184.77 704.175L191.835 704.175L191.835 703.175ZM184.77 703.175L185.77 703.175L185.77 678.046L184.77 678.046L183.77 678.046L183.77 703.175L184.77 703.175ZM184.77 678.046L184.77 677.046L176.274 677.046L176.274 678.046L176.274 679.046L184.77 679.046L184.77 678.046ZM210.487 703.175L209.487 703.175L209.487 704.175L210.487 704.175L210.487 703.175ZM210.487 691.736L211.487 691.736L211.487 691.491L211.374 691.274L210.487 691.736ZM200.499 672.558L200.499 671.558L198.851 671.558L199.612 673.02L200.499 672.558ZM208.174 672.558L209.067 672.106L208.789 671.558L208.174 671.558L208.174 672.558ZM213.494 683.072L214.396 682.639L214.391 682.63L214.387 682.621L213.494 683.072ZM213.957 684.081L213.04 684.48L213.043 684.488L213.047 684.495L213.957 684.081ZM214.357 685.049L213.42 685.4L213.664 686.049L214.357 686.049L214.357 685.049ZM214.462 685.049L214.462 686.049L215.155 686.049L215.398 685.4L214.462 685.049ZM214.84 684.081L213.93 683.668L213.922 683.685L213.915 683.703L214.84 684.081ZM215.324 683.072L214.432 682.621L214.429 682.625L215.324 683.072ZM220.644 672.558L220.644 671.558L220.029 671.558L219.752 672.106L220.644 672.558ZM227.436 672.558L228.324 673.018L229.082 671.558L227.436 671.558L227.436 672.558ZM217.574 691.567L216.686 691.107L216.574 691.323L216.574 691.567L217.574 691.567ZM217.574 703.175L217.574 704.175L218.574 704.175L218.574 703.175L217.574 703.175ZM210.487 703.175L211.487 703.175L211.487 691.736L210.487 691.736L209.487 691.736L209.487 703.175L210.487 703.175ZM210.487 691.736L211.374 691.274L201.386 672.096L200.499 672.558L199.612 673.02L209.601 692.198L210.487 691.736ZM200.499 672.558L200.499 673.558L208.174 673.558L208.174 672.558L208.174 671.558L200.499 671.558L200.499 672.558ZM208.174 672.558L207.282 673.009L212.602 683.523L213.494 683.072L214.387 682.621L209.067 672.106L208.174 672.558ZM213.494 683.072L212.593 683.505C212.756 683.845 212.905 684.17 213.04 684.48L213.957 684.081L214.874 683.683C214.729 683.348 214.569 683 214.396 682.639L213.494 683.072ZM213.957 684.081L213.047 684.495C213.177 684.782 213.302 685.083 213.42 685.4L214.357 685.049L215.293 684.698C215.159 684.341 215.018 683.998 214.867 683.668L213.957 684.081ZM214.357 685.049L214.357 686.049L214.462 686.049L214.462 685.049L214.462 684.049L214.357 684.049L214.357 685.049ZM214.462 685.049L215.398 685.4C215.521 685.072 215.644 684.759 215.766 684.46L214.84 684.081L213.915 683.703C213.785 684.021 213.655 684.353 213.525 684.698L214.462 685.049ZM214.84 684.081L215.751 684.495C215.885 684.2 216.041 683.875 216.218 683.519L215.324 683.072L214.429 682.625C214.243 682.998 214.076 683.346 213.93 683.668L214.84 684.081ZM215.324 683.072L216.216 683.523L221.536 673.009L220.644 672.558L219.752 672.106L214.432 682.621L215.324 683.072ZM220.644 672.558L220.644 673.558L227.436 673.558L227.436 672.558L227.436 671.558L220.644 671.558L220.644 672.558ZM227.436 672.558L226.549 672.097L216.686 691.107L217.574 691.567L218.462 692.028L228.324 673.018L227.436 672.558ZM217.574 691.567L216.574 691.567L216.574 703.175L217.574 703.175L218.574 703.175L218.574 691.567L217.574 691.567ZM217.574 703.175L217.574 702.175L210.487 702.175L210.487 703.175L210.487 704.175L217.574 704.175L217.574 703.175ZM246.95 703.175L245.95 703.175L245.95 704.175L246.95 704.175L246.95 703.175ZM246.95 691.736L247.95 691.736L247.95 691.491L247.837 691.274L246.95 691.736ZM236.962 672.558L236.962 671.558L235.314 671.558L236.075 673.02L236.962 672.558ZM244.637 672.558L245.53 672.106L245.252 671.558L244.637 671.558L244.637 672.558ZM249.958 683.072L250.859 682.639L250.855 682.63L250.85 682.621L249.958 683.072ZM250.42 684.081L249.503 684.48L249.506 684.488L249.51 684.495L250.42 684.081ZM250.82 685.049L249.883 685.4L250.127 686.049L250.82 686.049L250.82 685.049ZM250.925 685.049L250.925 686.049L251.618 686.049L251.861 685.4L250.925 685.049ZM251.303 684.081L250.393 683.668L250.385 683.685L250.378 683.703L251.303 684.081ZM251.787 683.072L250.895 682.621L250.893 682.625L251.787 683.072ZM257.107 672.558L257.107 671.558L256.492 671.558L256.215 672.106L257.107 672.558ZM263.899 672.558L264.787 673.018L265.545 671.558L263.899 671.558L263.899 672.558ZM254.037 691.567L253.149 691.107L253.037 691.323L253.037 691.567L254.037 691.567ZM254.037 703.175L254.037 704.175L255.037 704.175L255.037 703.175L254.037 703.175ZM246.95 703.175L247.95 703.175L247.95 691.736L246.95 691.736L245.95 691.736L245.95 703.175L246.95 703.175ZM246.95 691.736L247.837 691.274L237.849 672.096L236.962 672.558L236.075 673.02L246.064 692.198L246.95 691.736ZM236.962 672.558L236.962 673.558L244.637 673.558L244.637 672.558L244.637 671.558L236.962 671.558L236.962 672.558ZM244.637 672.558L243.745 673.009L249.065 683.523L249.958 683.072L250.85 682.621L245.53 672.106L244.637 672.558ZM249.958 683.072L249.056 683.505C249.219 683.845 249.368 684.17 249.503 684.48L250.42 684.081L251.337 683.683C251.192 683.348 251.032 683 250.859 682.639L249.958 683.072ZM250.42 684.081L249.51 684.495C249.64 684.782 249.765 685.083 249.883 685.4L250.82 685.049L251.756 684.698C251.622 684.341 251.481 683.998 251.331 683.668L250.42 684.081ZM250.82 685.049L250.82 686.049L250.925 686.049L250.925 685.049L250.925 684.049L250.82 684.049L250.82 685.049ZM250.925 685.049L251.861 685.4C251.984 685.072 252.107 684.759 252.229 684.46L251.303 684.081L250.378 683.703C250.248 684.021 250.118 684.353 249.989 684.698L250.925 685.049ZM251.303 684.081L252.214 684.495C252.348 684.2 252.504 683.875 252.681 683.519L251.787 683.072L250.893 682.625C250.706 682.998 250.539 683.346 250.393 683.668L251.303 684.081ZM251.787 683.072L252.679 683.523L257.999 673.009L257.107 672.558L256.215 672.106L250.895 682.621L251.787 683.072ZM257.107 672.558L257.107 673.558L263.899 673.558L263.899 672.558L263.899 671.558L257.107 671.558L257.107 672.558ZM263.899 672.558L263.012 672.097L253.149 691.107L254.037 691.567L254.925 692.028L264.787 673.018L263.899 672.558ZM254.037 691.567L253.037 691.567L253.037 703.175L254.037 703.175L255.037 703.175L255.037 691.567L254.037 691.567ZM254.037 703.175L254.037 702.175L246.95 702.175L246.95 703.175L246.95 704.175L254.037 704.175L254.037 703.175ZM267.558 675.712L266.851 675.005L266.849 675.007L267.558 675.712ZM286.379 675.712L285.671 676.419L285.673 676.421L286.379 675.712ZM286.379 700.021L285.673 699.312L285.671 699.314L286.379 700.021ZM267.558 700.021L266.849 700.726L266.851 700.728L267.558 700.021ZM272.731 696.677L271.939 697.288L271.942 697.292L272.731 696.677ZM281.227 696.677L280.439 696.062L280.438 696.063L281.227 696.677ZM281.227 679.119L280.438 679.733L280.445 679.742L281.227 679.119ZM272.731 679.119L273.517 679.737L273.52 679.733L272.731 679.119ZM263.92 688.75L264.92 688.75L264.92 686.983L263.92 686.983L262.92 686.983L262.92 688.75L263.92 688.75ZM263.92 686.983L264.92 686.983C264.92 682.048 266.101 678.596 268.267 676.417L267.558 675.712L266.849 675.007C264.165 677.707 262.92 681.769 262.92 686.983L263.92 686.983ZM267.558 675.712L268.265 676.419C270.495 674.19 273.37 673.053 276.979 673.053L276.979 672.053L276.979 671.053C272.905 671.053 269.5 672.356 266.851 675.005L267.558 675.712ZM276.979 672.053L276.979 673.053C280.573 673.053 283.441 674.189 285.671 676.419L286.379 675.712L287.086 675.005C284.437 672.357 281.039 671.053 276.979 671.053L276.979 672.053ZM286.379 675.712L285.673 676.421C287.865 678.6 289.059 682.051 289.059 686.983L290.059 686.983L291.059 686.983C291.059 681.766 289.798 677.702 287.084 675.003L286.379 675.712ZM290.059 686.983L289.059 686.983L289.059 688.75L290.059 688.75L291.059 688.75L291.059 686.983L290.059 686.983ZM290.059 688.75L289.059 688.75C289.059 693.682 287.865 697.132 285.673 699.312L286.379 700.021L287.084 700.73C289.798 698.031 291.059 693.967 291.059 688.75L290.059 688.75ZM286.379 700.021L285.671 699.314C283.441 701.544 280.573 702.68 276.979 702.68L276.979 703.68L276.979 704.68C281.039 704.68 284.437 703.376 287.086 700.728L286.379 700.021ZM276.979 703.68L276.979 702.68C273.37 702.68 270.495 701.543 268.265 699.314L267.558 700.021L266.851 700.728C269.5 703.377 272.905 704.68 276.979 704.68L276.979 703.68ZM267.558 700.021L268.267 699.316C266.101 697.137 264.92 693.685 264.92 688.75L263.92 688.75L262.92 688.75C262.92 693.964 264.165 698.026 266.849 700.726L267.558 700.021ZM271.175 690.243L270.175 690.243C270.175 693.262 270.699 695.679 271.939 697.288L272.731 696.677L273.523 696.067C272.688 694.984 272.175 693.111 272.175 690.243L271.175 690.243ZM272.731 696.677L271.942 697.292C273.183 698.884 274.899 699.675 276.979 699.675L276.979 698.675L276.979 697.675C275.47 697.675 274.355 697.134 273.52 696.063L272.731 696.677ZM276.979 698.675L276.979 699.675C279.059 699.675 280.775 698.884 282.016 697.292L281.227 696.677L280.438 696.063C279.603 697.134 278.487 697.675 276.979 697.675L276.979 698.675ZM281.227 696.677L282.015 697.293C283.272 695.683 283.804 693.264 283.804 690.243L282.804 690.243L281.804 690.243C281.804 693.109 281.284 694.98 280.439 696.062L281.227 696.677ZM282.804 690.243L283.804 690.243L283.804 685.511L282.804 685.511L281.804 685.511L281.804 690.243L282.804 690.243ZM282.804 685.511L283.804 685.511C283.804 682.493 283.273 680.08 282.008 678.495L281.227 679.119L280.445 679.742C281.283 680.793 281.804 682.642 281.804 685.511L282.804 685.511ZM281.227 679.119L282.016 678.504C280.775 676.912 279.059 676.121 276.979 676.121L276.979 677.121L276.979 678.121C278.487 678.121 279.603 678.662 280.438 679.733L281.227 679.119ZM276.979 677.121L276.979 676.121C274.899 676.121 273.183 676.912 271.942 678.504L272.731 679.119L273.52 679.733C274.355 678.662 275.47 678.121 276.979 678.121L276.979 677.121ZM272.731 679.119L271.945 678.5C270.698 680.085 270.175 682.495 270.175 685.511L271.175 685.511L272.175 685.511C272.175 682.64 272.69 680.788 273.517 679.737L272.731 679.119ZM271.175 685.511L270.175 685.511L270.175 690.243L271.175 690.243L272.175 690.243L272.175 685.511L271.175 685.511ZM293.928 672.558L293.928 671.558L292.928 671.558L292.928 672.558L293.928 672.558ZM300.93 672.558L301.93 672.558L301.93 671.558L300.93 671.558L300.93 672.558ZM302.15 697.329L301.409 698.001L301.414 698.006L302.15 697.329ZM308.858 697.329L308.123 696.651L308.122 696.652L308.858 697.329ZM310.098 672.558L310.098 671.558L309.098 671.558L309.098 672.558L310.098 672.558ZM317.038 672.558L318.038 672.558L318.038 671.558L317.038 671.558L317.038 672.558ZM313.884 700.841L313.215 700.098L313.212 700.1L313.884 700.841ZM293.928 691.988L294.928 691.988L294.928 672.558L293.928 672.558L292.928 672.558L292.928 691.988L293.928 691.988ZM293.928 672.558L293.928 673.558L300.93 673.558L300.93 672.558L300.93 671.558L293.928 671.558L293.928 672.558ZM300.93 672.558L299.93 672.558L299.93 692.724L300.93 692.724L301.93 692.724L301.93 672.558L300.93 672.558ZM300.93 692.724L299.93 692.724C299.93 694.967 300.339 696.82 301.409 698.001L302.15 697.329L302.891 696.658C302.334 696.043 301.93 694.827 301.93 692.724L300.93 692.724ZM302.15 697.329L301.414 698.006C302.454 699.137 303.873 699.654 305.535 699.654L305.535 698.654L305.535 697.654C304.309 697.654 303.471 697.288 302.885 696.652L302.15 697.329ZM305.535 698.654L305.535 699.654C307.165 699.654 308.559 699.13 309.593 698.006L308.858 697.329L308.122 696.652C307.531 697.294 306.709 697.654 305.535 697.654L305.535 698.654ZM308.858 697.329L309.593 698.007C310.681 696.826 311.098 694.97 311.098 692.724L310.098 692.724L309.098 692.724C309.098 694.824 308.688 696.038 308.123 696.651L308.858 697.329ZM310.098 692.724L311.098 692.724L311.098 672.558L310.098 672.558L309.098 672.558L309.098 692.724L310.098 692.724ZM310.098 672.558L310.098 673.558L317.038 673.558L317.038 672.558L317.038 671.558L310.098 671.558L310.098 672.558ZM317.038 672.558L316.038 672.558L316.038 691.988L317.038 691.988L318.038 691.988L318.038 672.558L317.038 672.558ZM317.038 691.988L316.038 691.988C316.038 695.835 315.031 698.463 313.215 700.098L313.884 700.841L314.553 701.584C316.942 699.434 318.038 696.159 318.038 691.988L317.038 691.988ZM313.884 700.841L313.212 700.1C311.347 701.79 308.83 702.68 305.556 702.68L305.556 703.68L305.556 704.68C309.208 704.68 312.243 703.677 314.555 701.582L313.884 700.841ZM305.556 703.68L305.556 702.68C302.222 702.68 299.662 701.787 297.769 700.095L297.103 700.841L296.436 701.586C298.778 703.68 301.853 704.68 305.556 704.68L305.556 703.68ZM297.103 700.841L297.769 700.095C295.941 698.46 294.928 695.834 294.928 691.988L293.928 691.988L292.928 691.988C292.928 696.161 294.032 699.436 296.436 701.586L297.103 700.841Z" fill="black" mask="url(#path-5-outside-1_17007_6863)"/> +<mask id="path-7-outside-2_17007_6863" maskUnits="userSpaceOnUse" x="96" y="615.343" width="261" height="31" fill="black"> +<rect fill="white" x="96" y="615.343" width="261" height="31"/> +<path d="M97.208 644.343L97.208 617.327L108.081 617.327C111.013 617.327 113.258 618.137 114.816 619.758C116.375 621.366 117.154 623.562 117.154 626.345C117.154 629.116 116.381 631.317 114.835 632.95C113.301 634.571 111.025 635.381 108.007 635.381L103.368 635.381L103.368 644.343L97.208 644.343ZM103.368 631.039L106.949 631.039C108.471 631.039 109.528 630.612 110.122 629.759C110.716 628.893 111.013 627.78 111.013 626.419C111.013 625.071 110.716 623.976 110.122 623.135C109.528 622.281 108.471 621.854 106.949 621.854L103.368 621.854L103.368 631.039ZM118.62 635.474L118.62 634.88C118.62 632.06 119.505 629.802 121.273 628.107C123.042 626.413 125.362 625.565 128.231 625.565C131.076 625.565 133.291 626.369 134.874 627.978C136.457 629.586 137.249 631.806 137.249 634.639L137.249 636.457L122.164 636.457L122.164 633.191L131.441 633.191L131.441 632.932C131.441 632.016 131.169 631.256 130.625 630.649C130.081 630.043 129.271 629.74 128.194 629.74C127.007 629.74 126.098 630.173 125.467 631.039C124.848 631.905 124.539 633.024 124.539 634.397L124.539 635.641C124.539 637.199 124.873 638.418 125.541 639.296C126.221 640.174 127.205 640.613 128.491 640.613C129.407 640.613 130.186 640.403 130.829 639.982C131.472 639.562 131.986 639.049 132.369 638.442L137.008 640.354C136.426 641.714 135.424 642.803 134.002 643.619C132.592 644.436 130.78 644.844 128.565 644.844C125.436 644.844 122.993 644.003 121.236 642.32C119.492 640.626 118.62 638.343 118.62 635.474ZM139.197 639.036C139.197 637.106 139.952 635.616 141.461 634.564C142.982 633.513 144.949 632.981 147.361 632.969L151.443 632.969L151.443 631.874C151.443 631.058 151.239 630.414 150.831 629.944C150.423 629.474 149.73 629.239 148.753 629.239C147.776 629.239 147.058 629.437 146.601 629.833C146.143 630.229 145.914 630.755 145.914 631.41L145.914 631.744L140.292 631.726L140.292 631.354C140.292 629.66 141.09 628.281 142.686 627.217C144.294 626.141 146.434 625.603 149.105 625.603C151.802 625.603 153.855 626.116 155.266 627.143C156.688 628.169 157.399 629.802 157.399 632.041L157.399 640.205C157.399 640.947 157.461 641.659 157.585 642.339C157.721 643.007 157.913 643.582 158.16 644.064L158.16 644.343L152.297 644.343C152.136 644.046 151.994 643.681 151.87 643.248C151.759 642.815 151.685 642.376 151.647 641.931C151.239 642.623 150.509 643.248 149.458 643.805C148.419 644.361 147.108 644.64 145.524 644.64C143.644 644.64 142.117 644.17 140.941 643.229C139.779 642.289 139.197 640.892 139.197 639.036ZM145.116 638.572C145.116 639.352 145.339 639.964 145.784 640.409C146.229 640.842 146.91 641.059 147.825 641.059C148.815 641.059 149.662 640.731 150.367 640.075C151.085 639.407 151.443 638.634 151.443 637.756L151.443 636.197L148.809 636.197C147.547 636.197 146.613 636.389 146.007 636.772C145.413 637.156 145.116 637.756 145.116 638.572ZM161.37 644.343L161.37 626.104L167.159 626.104L167.215 628.386L167.289 628.386C167.759 627.582 168.477 626.932 169.441 626.438C170.419 625.93 171.563 625.677 172.874 625.677C174.754 625.677 176.282 626.202 177.457 627.254C178.632 628.305 179.22 630.093 179.22 632.616L179.22 644.343L173.264 644.343L173.264 633.136C173.264 632.047 173.029 631.28 172.559 630.835C172.101 630.377 171.451 630.148 170.61 630.148C169.893 630.148 169.243 630.359 168.662 630.779C168.081 631.2 167.635 631.763 167.326 632.468L167.326 644.343L161.37 644.343ZM182.801 637.7L182.801 626.104L188.775 626.104L188.775 637.273C188.775 638.424 189.01 639.228 189.48 639.686C189.951 640.131 190.6 640.354 191.429 640.354C192.159 640.354 192.808 640.131 193.377 639.686C193.946 639.24 194.385 638.684 194.694 638.016L194.694 626.104L200.65 626.104L200.65 644.343L194.88 644.343L194.806 642.042L194.75 642.042C194.23 642.871 193.482 643.533 192.505 644.027C191.54 644.522 190.396 644.77 189.072 644.77C187.217 644.77 185.708 644.225 184.545 643.137C183.382 642.036 182.801 640.224 182.801 637.7ZM202.691 630.408L202.691 626.104L215.03 626.104L215.03 630.408L202.691 630.408ZM205.475 638.758L205.475 627.532L205.586 627.161L205.586 620.927L211.356 620.927L211.356 637.867C211.356 638.931 211.517 639.636 211.839 639.982C212.16 640.329 212.643 640.502 213.286 640.502C213.595 640.502 213.892 640.477 214.177 640.428C214.461 640.366 214.74 640.279 215.012 640.168L215.012 644.287C214.69 644.411 214.214 644.528 213.583 644.64C212.952 644.751 212.204 644.807 211.338 644.807C209.495 644.807 208.054 644.33 207.015 643.378C205.988 642.413 205.475 640.873 205.475 638.758ZM226.979 644.343L226.979 617.327L237.853 617.327C240.784 617.327 243.029 618.137 244.588 619.758C246.146 621.366 246.926 623.562 246.926 626.345C246.926 629.116 246.153 631.317 244.606 632.95C243.073 634.571 240.797 635.381 237.778 635.381L233.14 635.381L233.14 644.343L226.979 644.343ZM233.14 631.039L236.721 631.039C238.242 631.039 239.3 630.612 239.894 629.759C240.487 628.893 240.784 627.78 240.784 626.419C240.784 625.071 240.487 623.976 239.894 623.135C239.3 622.281 238.242 621.854 236.721 621.854L233.14 621.854L233.14 631.039ZM249.635 644.343L249.635 626.104L255.665 626.104L255.665 644.343L249.635 644.343ZM249.245 620.37C249.245 619.504 249.542 618.774 250.136 618.181C250.729 617.575 251.577 617.271 252.678 617.271C253.766 617.271 254.601 617.568 255.183 618.162C255.764 618.756 256.055 619.492 256.055 620.37C256.055 621.236 255.758 621.972 255.164 622.578C254.57 623.184 253.729 623.487 252.641 623.487C251.54 623.487 250.699 623.184 250.117 622.578C249.536 621.972 249.245 621.236 249.245 620.37ZM258.708 635.492L258.708 634.898C258.708 632.066 259.617 629.802 261.436 628.107C263.254 626.4 265.647 625.547 268.616 625.547C271.585 625.547 273.972 626.4 275.778 628.107C277.597 629.802 278.506 632.066 278.506 634.898L278.506 635.492C278.506 638.325 277.597 640.595 275.778 642.302C273.972 643.996 271.585 644.844 268.616 644.844C265.635 644.844 263.235 643.996 261.417 642.302C259.611 640.595 258.708 638.325 258.708 635.492ZM264.757 634.639L264.757 635.733C264.757 637.243 265.085 638.424 265.74 639.277C266.408 640.118 267.361 640.539 268.598 640.539C269.847 640.539 270.799 640.118 271.455 639.277C272.123 638.424 272.457 637.243 272.457 635.733L272.457 634.639C272.457 633.142 272.123 631.979 271.455 631.15C270.787 630.309 269.835 629.889 268.598 629.889C267.373 629.889 266.427 630.309 265.759 631.15C265.091 631.979 264.757 633.142 264.757 634.639ZM281.493 644.343L281.493 626.104L287.282 626.104L287.338 628.386L287.412 628.386C287.882 627.582 288.6 626.932 289.564 626.438C290.542 625.93 291.686 625.677 292.997 625.677C294.877 625.677 296.405 626.202 297.58 627.254C298.755 628.305 299.343 630.093 299.343 632.616L299.343 644.343L293.387 644.343L293.387 633.136C293.387 632.047 293.152 631.28 292.682 630.835C292.224 630.377 291.575 630.148 290.733 630.148C290.016 630.148 289.367 630.359 288.785 630.779C288.204 631.2 287.758 631.763 287.449 632.468L287.449 644.343L281.493 644.343ZM302.163 635.474L302.163 634.88C302.163 632.06 303.048 629.802 304.816 628.107C306.585 626.413 308.905 625.565 311.774 625.565C314.619 625.565 316.834 626.369 318.417 627.978C320 629.586 320.792 631.806 320.792 634.639L320.792 636.457L305.707 636.457L305.707 633.191L314.984 633.191L314.984 632.932C314.984 632.016 314.712 631.256 314.168 630.649C313.624 630.043 312.813 629.74 311.737 629.74C310.55 629.74 309.641 630.173 309.01 631.039C308.391 631.905 308.082 633.024 308.082 634.397L308.082 635.641C308.082 637.199 308.416 638.418 309.084 639.296C309.764 640.174 310.748 640.613 312.034 640.613C312.95 640.613 313.729 640.403 314.372 639.982C315.015 639.562 315.529 639.049 315.912 638.442L320.551 640.354C319.969 641.714 318.967 642.803 317.545 643.619C316.135 644.436 314.323 644.844 312.108 644.844C308.979 644.844 306.536 644.003 304.779 642.32C303.035 640.626 302.163 638.343 302.163 635.474ZM322.685 635.474L322.685 634.88C322.685 632.06 323.569 629.802 325.338 628.107C327.107 626.413 329.426 625.565 332.296 625.565C335.141 625.565 337.355 626.369 338.938 627.978C340.522 629.586 341.313 631.806 341.313 634.639L341.313 636.457L326.229 636.457L326.229 633.191L335.506 633.191L335.506 632.932C335.506 632.016 335.234 631.256 334.689 630.649C334.145 630.043 333.335 629.74 332.259 629.74C331.071 629.74 330.162 630.173 329.531 631.039C328.913 631.905 328.604 633.024 328.604 634.397L328.604 635.641C328.604 637.199 328.937 638.418 329.605 639.296C330.286 640.174 331.269 640.613 332.556 640.613C333.471 640.613 334.25 640.403 334.894 639.982C335.537 639.562 336.05 639.049 336.434 638.442L341.072 640.354C340.491 641.714 339.489 642.803 338.066 643.619C336.656 644.436 334.844 644.844 332.63 644.844C329.5 644.844 327.057 644.003 325.301 642.32C323.557 640.626 322.685 638.343 322.685 635.474ZM344.134 644.343L344.134 626.104L349.997 626.104L350.071 628.367L350.127 628.367C350.56 627.6 351.147 626.963 351.89 626.456C352.632 625.949 353.467 625.695 354.395 625.695C354.716 625.695 355.025 625.72 355.322 625.77C355.619 625.819 355.829 625.868 355.953 625.918L355.953 630.612C355.73 630.538 355.471 630.482 355.174 630.445C354.889 630.408 354.568 630.39 354.209 630.39C353.38 630.39 352.601 630.643 351.871 631.15C351.141 631.658 350.578 632.319 350.183 633.136L350.183 644.343L344.134 644.343Z"/> +</mask> +<path d="M97.208 644.343L97.208 617.327L108.081 617.327C111.013 617.327 113.258 618.137 114.816 619.758C116.375 621.366 117.154 623.562 117.154 626.345C117.154 629.116 116.381 631.317 114.835 632.95C113.301 634.571 111.025 635.381 108.007 635.381L103.368 635.381L103.368 644.343L97.208 644.343ZM103.368 631.039L106.949 631.039C108.471 631.039 109.528 630.612 110.122 629.759C110.716 628.893 111.013 627.78 111.013 626.419C111.013 625.071 110.716 623.976 110.122 623.135C109.528 622.281 108.471 621.854 106.949 621.854L103.368 621.854L103.368 631.039ZM118.62 635.474L118.62 634.88C118.62 632.06 119.505 629.802 121.273 628.107C123.042 626.413 125.362 625.565 128.231 625.565C131.076 625.565 133.291 626.369 134.874 627.978C136.457 629.586 137.249 631.806 137.249 634.639L137.249 636.457L122.164 636.457L122.164 633.191L131.441 633.191L131.441 632.932C131.441 632.016 131.169 631.256 130.625 630.649C130.081 630.043 129.271 629.74 128.194 629.74C127.007 629.74 126.098 630.173 125.467 631.039C124.848 631.905 124.539 633.024 124.539 634.397L124.539 635.641C124.539 637.199 124.873 638.418 125.541 639.296C126.221 640.174 127.205 640.613 128.491 640.613C129.407 640.613 130.186 640.403 130.829 639.982C131.472 639.562 131.986 639.049 132.369 638.442L137.008 640.354C136.426 641.714 135.424 642.803 134.002 643.619C132.592 644.436 130.78 644.844 128.565 644.844C125.436 644.844 122.993 644.003 121.236 642.32C119.492 640.626 118.62 638.343 118.62 635.474ZM139.197 639.036C139.197 637.106 139.952 635.616 141.461 634.564C142.982 633.513 144.949 632.981 147.361 632.969L151.443 632.969L151.443 631.874C151.443 631.058 151.239 630.414 150.831 629.944C150.423 629.474 149.73 629.239 148.753 629.239C147.776 629.239 147.058 629.437 146.601 629.833C146.143 630.229 145.914 630.755 145.914 631.41L145.914 631.744L140.292 631.726L140.292 631.354C140.292 629.66 141.09 628.281 142.686 627.217C144.294 626.141 146.434 625.603 149.105 625.603C151.802 625.603 153.855 626.116 155.266 627.143C156.688 628.169 157.399 629.802 157.399 632.041L157.399 640.205C157.399 640.947 157.461 641.659 157.585 642.339C157.721 643.007 157.913 643.582 158.16 644.064L158.16 644.343L152.297 644.343C152.136 644.046 151.994 643.681 151.87 643.248C151.759 642.815 151.685 642.376 151.647 641.931C151.239 642.623 150.509 643.248 149.458 643.805C148.419 644.361 147.108 644.64 145.524 644.64C143.644 644.64 142.117 644.17 140.941 643.229C139.779 642.289 139.197 640.892 139.197 639.036ZM145.116 638.572C145.116 639.352 145.339 639.964 145.784 640.409C146.229 640.842 146.91 641.059 147.825 641.059C148.815 641.059 149.662 640.731 150.367 640.075C151.085 639.407 151.443 638.634 151.443 637.756L151.443 636.197L148.809 636.197C147.547 636.197 146.613 636.389 146.007 636.772C145.413 637.156 145.116 637.756 145.116 638.572ZM161.37 644.343L161.37 626.104L167.159 626.104L167.215 628.386L167.289 628.386C167.759 627.582 168.477 626.932 169.441 626.438C170.419 625.93 171.563 625.677 172.874 625.677C174.754 625.677 176.282 626.202 177.457 627.254C178.632 628.305 179.22 630.093 179.22 632.616L179.22 644.343L173.264 644.343L173.264 633.136C173.264 632.047 173.029 631.28 172.559 630.835C172.101 630.377 171.451 630.148 170.61 630.148C169.893 630.148 169.243 630.359 168.662 630.779C168.081 631.2 167.635 631.763 167.326 632.468L167.326 644.343L161.37 644.343ZM182.801 637.7L182.801 626.104L188.775 626.104L188.775 637.273C188.775 638.424 189.01 639.228 189.48 639.686C189.951 640.131 190.6 640.354 191.429 640.354C192.159 640.354 192.808 640.131 193.377 639.686C193.946 639.24 194.385 638.684 194.694 638.016L194.694 626.104L200.65 626.104L200.65 644.343L194.88 644.343L194.806 642.042L194.75 642.042C194.23 642.871 193.482 643.533 192.505 644.027C191.54 644.522 190.396 644.77 189.072 644.77C187.217 644.77 185.708 644.225 184.545 643.137C183.382 642.036 182.801 640.224 182.801 637.7ZM202.691 630.408L202.691 626.104L215.03 626.104L215.03 630.408L202.691 630.408ZM205.475 638.758L205.475 627.532L205.586 627.161L205.586 620.927L211.356 620.927L211.356 637.867C211.356 638.931 211.517 639.636 211.839 639.982C212.16 640.329 212.643 640.502 213.286 640.502C213.595 640.502 213.892 640.477 214.177 640.428C214.461 640.366 214.74 640.279 215.012 640.168L215.012 644.287C214.69 644.411 214.214 644.528 213.583 644.64C212.952 644.751 212.204 644.807 211.338 644.807C209.495 644.807 208.054 644.33 207.015 643.378C205.988 642.413 205.475 640.873 205.475 638.758ZM226.979 644.343L226.979 617.327L237.853 617.327C240.784 617.327 243.029 618.137 244.588 619.758C246.146 621.366 246.926 623.562 246.926 626.345C246.926 629.116 246.153 631.317 244.606 632.95C243.073 634.571 240.797 635.381 237.778 635.381L233.14 635.381L233.14 644.343L226.979 644.343ZM233.14 631.039L236.721 631.039C238.242 631.039 239.3 630.612 239.894 629.759C240.487 628.893 240.784 627.78 240.784 626.419C240.784 625.071 240.487 623.976 239.894 623.135C239.3 622.281 238.242 621.854 236.721 621.854L233.14 621.854L233.14 631.039ZM249.635 644.343L249.635 626.104L255.665 626.104L255.665 644.343L249.635 644.343ZM249.245 620.37C249.245 619.504 249.542 618.774 250.136 618.181C250.729 617.575 251.577 617.271 252.678 617.271C253.766 617.271 254.601 617.568 255.183 618.162C255.764 618.756 256.055 619.492 256.055 620.37C256.055 621.236 255.758 621.972 255.164 622.578C254.57 623.184 253.729 623.487 252.641 623.487C251.54 623.487 250.699 623.184 250.117 622.578C249.536 621.972 249.245 621.236 249.245 620.37ZM258.708 635.492L258.708 634.898C258.708 632.066 259.617 629.802 261.436 628.107C263.254 626.4 265.647 625.547 268.616 625.547C271.585 625.547 273.972 626.4 275.778 628.107C277.597 629.802 278.506 632.066 278.506 634.898L278.506 635.492C278.506 638.325 277.597 640.595 275.778 642.302C273.972 643.996 271.585 644.844 268.616 644.844C265.635 644.844 263.235 643.996 261.417 642.302C259.611 640.595 258.708 638.325 258.708 635.492ZM264.757 634.639L264.757 635.733C264.757 637.243 265.085 638.424 265.74 639.277C266.408 640.118 267.361 640.539 268.598 640.539C269.847 640.539 270.799 640.118 271.455 639.277C272.123 638.424 272.457 637.243 272.457 635.733L272.457 634.639C272.457 633.142 272.123 631.979 271.455 631.15C270.787 630.309 269.835 629.889 268.598 629.889C267.373 629.889 266.427 630.309 265.759 631.15C265.091 631.979 264.757 633.142 264.757 634.639ZM281.493 644.343L281.493 626.104L287.282 626.104L287.338 628.386L287.412 628.386C287.882 627.582 288.6 626.932 289.564 626.438C290.542 625.93 291.686 625.677 292.997 625.677C294.877 625.677 296.405 626.202 297.58 627.254C298.755 628.305 299.343 630.093 299.343 632.616L299.343 644.343L293.387 644.343L293.387 633.136C293.387 632.047 293.152 631.28 292.682 630.835C292.224 630.377 291.575 630.148 290.733 630.148C290.016 630.148 289.367 630.359 288.785 630.779C288.204 631.2 287.758 631.763 287.449 632.468L287.449 644.343L281.493 644.343ZM302.163 635.474L302.163 634.88C302.163 632.06 303.048 629.802 304.816 628.107C306.585 626.413 308.905 625.565 311.774 625.565C314.619 625.565 316.834 626.369 318.417 627.978C320 629.586 320.792 631.806 320.792 634.639L320.792 636.457L305.707 636.457L305.707 633.191L314.984 633.191L314.984 632.932C314.984 632.016 314.712 631.256 314.168 630.649C313.624 630.043 312.813 629.74 311.737 629.74C310.55 629.74 309.641 630.173 309.01 631.039C308.391 631.905 308.082 633.024 308.082 634.397L308.082 635.641C308.082 637.199 308.416 638.418 309.084 639.296C309.764 640.174 310.748 640.613 312.034 640.613C312.95 640.613 313.729 640.403 314.372 639.982C315.015 639.562 315.529 639.049 315.912 638.442L320.551 640.354C319.969 641.714 318.967 642.803 317.545 643.619C316.135 644.436 314.323 644.844 312.108 644.844C308.979 644.844 306.536 644.003 304.779 642.32C303.035 640.626 302.163 638.343 302.163 635.474ZM322.685 635.474L322.685 634.88C322.685 632.06 323.569 629.802 325.338 628.107C327.107 626.413 329.426 625.565 332.296 625.565C335.141 625.565 337.355 626.369 338.938 627.978C340.522 629.586 341.313 631.806 341.313 634.639L341.313 636.457L326.229 636.457L326.229 633.191L335.506 633.191L335.506 632.932C335.506 632.016 335.234 631.256 334.689 630.649C334.145 630.043 333.335 629.74 332.259 629.74C331.071 629.74 330.162 630.173 329.531 631.039C328.913 631.905 328.604 633.024 328.604 634.397L328.604 635.641C328.604 637.199 328.937 638.418 329.605 639.296C330.286 640.174 331.269 640.613 332.556 640.613C333.471 640.613 334.25 640.403 334.894 639.982C335.537 639.562 336.05 639.049 336.434 638.442L341.072 640.354C340.491 641.714 339.489 642.803 338.066 643.619C336.656 644.436 334.844 644.844 332.63 644.844C329.5 644.844 327.057 644.003 325.301 642.32C323.557 640.626 322.685 638.343 322.685 635.474ZM344.134 644.343L344.134 626.104L349.997 626.104L350.071 628.367L350.127 628.367C350.56 627.6 351.147 626.963 351.89 626.456C352.632 625.949 353.467 625.695 354.395 625.695C354.716 625.695 355.025 625.72 355.322 625.77C355.619 625.819 355.829 625.868 355.953 625.918L355.953 630.612C355.73 630.538 355.471 630.482 355.174 630.445C354.889 630.408 354.568 630.39 354.209 630.39C353.38 630.39 352.601 630.643 351.871 631.15C351.141 631.658 350.578 632.319 350.183 633.136L350.183 644.343L344.134 644.343Z" fill="white"/> +<path d="M97.208 644.343L96.208 644.343L96.208 645.343L97.208 645.343L97.208 644.343ZM97.208 617.327L97.208 616.327L96.208 616.327L96.208 617.327L97.208 617.327ZM114.816 619.758L114.096 620.451L114.098 620.454L114.816 619.758ZM114.835 632.95L114.109 632.263L114.109 632.263L114.835 632.95ZM103.368 635.381L103.368 634.381L102.368 634.381L102.368 635.381L103.368 635.381ZM103.368 644.343L103.368 645.343L104.368 645.343L104.368 644.343L103.368 644.343ZM103.368 631.039L102.368 631.039L102.368 632.039L103.368 632.039L103.368 631.039ZM110.122 629.759L110.943 630.33L110.947 630.324L110.122 629.759ZM110.122 623.135L109.301 623.706L109.305 623.711L110.122 623.135ZM103.368 621.854L103.368 620.854L102.368 620.854L102.368 621.854L103.368 621.854ZM97.208 644.343L98.208 644.343L98.208 617.327L97.208 617.327L96.208 617.327L96.208 644.343L97.208 644.343ZM97.208 617.327L97.208 618.327L108.081 618.327L108.081 617.327L108.081 616.327L97.208 616.327L97.208 617.327ZM108.081 617.327L108.081 618.327C110.827 618.327 112.778 619.081 114.096 620.451L114.816 619.758L115.537 619.065C113.737 617.193 111.198 616.327 108.081 616.327L108.081 617.327ZM114.816 619.758L114.098 620.454C115.435 621.832 116.154 623.755 116.154 626.345L117.154 626.345L118.154 626.345C118.154 623.368 117.315 620.899 115.534 619.062L114.816 619.758ZM117.154 626.345L116.154 626.345C116.154 628.922 115.44 630.856 114.109 632.263L114.835 632.95L115.561 633.638C117.322 631.778 118.154 629.309 118.154 626.345L117.154 626.345ZM114.835 632.95L114.109 632.263C112.823 633.621 110.851 634.381 108.007 634.381L108.007 635.381L108.007 636.381C111.199 636.381 113.779 635.52 115.561 633.638L114.835 632.95ZM108.007 635.381L108.007 634.381L103.368 634.381L103.368 635.381L103.368 636.381L108.007 636.381L108.007 635.381ZM103.368 635.381L102.368 635.381L102.368 644.343L103.368 644.343L104.368 644.343L104.368 635.381L103.368 635.381ZM103.368 644.343L103.368 643.343L97.208 643.343L97.208 644.343L97.208 645.343L103.368 645.343L103.368 644.343ZM103.368 631.039L103.368 632.039L106.949 632.039L106.949 631.039L106.949 630.039L103.368 630.039L103.368 631.039ZM106.949 631.039L106.949 632.039C108.637 632.039 110.086 631.562 110.943 630.33L110.122 629.759L109.301 629.188C108.97 629.663 108.304 630.039 106.949 630.039L106.949 631.039ZM110.122 629.759L110.947 630.324C111.684 629.249 112.013 627.922 112.013 626.419L111.013 626.419L110.013 626.419C110.013 627.637 109.747 628.537 109.297 629.193L110.122 629.759ZM111.013 626.419L112.013 626.419C112.013 624.928 111.684 623.613 110.939 622.558L110.122 623.135L109.305 623.711C109.748 624.339 110.013 625.214 110.013 626.419L111.013 626.419ZM110.122 623.135L110.943 622.564C110.086 621.332 108.637 620.854 106.949 620.854L106.949 621.854L106.949 622.854C108.304 622.854 108.97 623.23 109.301 623.706L110.122 623.135ZM106.949 621.854L106.949 620.854L103.368 620.854L103.368 621.854L103.368 622.854L106.949 622.854L106.949 621.854ZM103.368 621.854L102.368 621.854L102.368 631.039L103.368 631.039L104.368 631.039L104.368 621.854L103.368 621.854ZM121.273 628.107L121.965 628.83L121.273 628.107ZM137.249 636.457L137.249 637.457L138.249 637.457L138.249 636.457L137.249 636.457ZM122.164 636.457L121.164 636.457L121.164 637.457L122.164 637.457L122.164 636.457ZM122.164 633.191L122.164 632.191L121.164 632.191L121.164 633.191L122.164 633.191ZM131.441 633.191L131.441 634.191L132.441 634.191L132.441 633.191L131.441 633.191ZM125.467 631.039L124.659 630.45L124.653 630.458L125.467 631.039ZM125.541 639.296L124.745 639.901L124.75 639.908L125.541 639.296ZM132.369 638.442L132.75 637.518L131.973 637.198L131.524 637.908L132.369 638.442ZM137.008 640.354L137.927 640.746L138.325 639.815L137.389 639.429L137.008 640.354ZM134.002 643.619L133.504 642.752L133.501 642.754L134.002 643.619ZM121.236 642.32L120.539 643.038L120.545 643.043L121.236 642.32ZM118.62 635.474L119.62 635.474L119.62 634.88L118.62 634.88L117.62 634.88L117.62 635.474L118.62 635.474ZM118.62 634.88L119.62 634.88C119.62 632.287 120.424 630.307 121.965 628.83L121.273 628.107L120.582 627.385C118.586 629.298 117.62 631.832 117.62 634.88L118.62 634.88ZM121.273 628.107L121.965 628.83C123.516 627.343 125.572 626.565 128.231 626.565L128.231 625.565L128.231 624.565C125.151 624.565 122.568 625.482 120.582 627.385L121.273 628.107ZM128.231 625.565L128.231 626.565C130.882 626.565 132.812 627.309 134.161 628.679L134.874 627.978L135.587 627.276C133.769 625.43 131.271 624.565 128.231 624.565L128.231 625.565ZM134.874 627.978L134.161 628.679C135.516 630.055 136.249 631.998 136.249 634.639L137.249 634.639L138.249 634.639C138.249 631.614 137.398 629.116 135.587 627.276L134.874 627.978ZM137.249 634.639L136.249 634.639L136.249 636.457L137.249 636.457L138.249 636.457L138.249 634.639L137.249 634.639ZM137.249 636.457L137.249 635.457L122.164 635.457L122.164 636.457L122.164 637.457L137.249 637.457L137.249 636.457ZM122.164 636.457L123.164 636.457L123.164 633.191L122.164 633.191L121.164 633.191L121.164 636.457L122.164 636.457ZM122.164 633.191L122.164 634.191L131.441 634.191L131.441 633.191L131.441 632.191L122.164 632.191L122.164 633.191ZM131.441 633.191L132.441 633.191L132.441 632.932L131.441 632.932L130.441 632.932L130.441 633.191L131.441 633.191ZM131.441 632.932L132.441 632.932C132.441 631.802 132.099 630.794 131.369 629.981L130.625 630.649L129.881 631.318C130.24 631.717 130.441 632.23 130.441 632.932L131.441 632.932ZM130.625 630.649L131.369 629.981C130.579 629.102 129.458 628.74 128.194 628.74L128.194 629.74L128.194 630.74C129.083 630.74 129.582 630.985 129.881 631.318L130.625 630.649ZM128.194 629.74L128.194 628.74C126.727 628.74 125.5 629.295 124.659 630.45L125.467 631.039L126.275 631.628C126.695 631.051 127.286 630.74 128.194 630.74L128.194 629.74ZM125.467 631.039L124.653 630.458C123.882 631.537 123.539 632.876 123.539 634.397L124.539 634.397L125.539 634.397C125.539 633.172 125.814 632.273 126.281 631.62L125.467 631.039ZM124.539 634.397L123.539 634.397L123.539 635.641L124.539 635.641L125.539 635.641L125.539 634.397L124.539 634.397ZM124.539 635.641L123.539 635.641C123.539 637.33 123.9 638.79 124.745 639.901L125.541 639.296L126.337 638.691C125.846 638.045 125.539 637.068 125.539 635.641L124.539 635.641ZM125.541 639.296L124.75 639.908C125.652 641.072 126.951 641.613 128.491 641.613L128.491 640.613L128.491 639.613C127.459 639.613 126.791 639.277 126.332 638.684L125.541 639.296ZM128.491 640.613L128.491 641.613C129.563 641.613 130.542 641.365 131.376 640.819L130.829 639.982L130.282 639.145C129.83 639.441 129.25 639.613 128.491 639.613L128.491 640.613ZM130.829 639.982L131.376 640.819C132.131 640.326 132.749 639.713 133.214 638.977L132.369 638.442L131.524 637.908C131.222 638.384 130.814 638.797 130.282 639.145L130.829 639.982ZM132.369 638.442L131.988 639.367L136.627 641.278L137.008 640.354L137.389 639.429L132.75 637.518L132.369 638.442ZM137.008 640.354L136.088 639.961C135.601 641.1 134.76 642.031 133.504 642.752L134.002 643.619L134.5 644.486C136.089 643.574 137.251 642.329 137.927 640.746L137.008 640.354ZM134.002 643.619L133.501 642.754C132.288 643.456 130.664 643.844 128.565 643.844L128.565 644.844L128.565 645.844C130.895 645.844 132.895 645.415 134.503 644.485L134.002 643.619ZM128.565 644.844L128.565 643.844C125.617 643.844 123.449 643.055 121.928 641.598L121.236 642.32L120.545 643.043C122.536 644.95 125.255 645.844 128.565 645.844L128.565 644.844ZM121.236 642.32L121.933 641.603C120.418 640.13 119.62 638.126 119.62 635.474L118.62 635.474L117.62 635.474C117.62 638.561 118.567 641.121 120.539 643.038L121.236 642.32ZM141.461 634.564L140.892 633.742L140.889 633.744L141.461 634.564ZM147.361 632.969L147.361 631.969L147.356 631.969L147.361 632.969ZM151.443 632.969L151.443 633.969L152.443 633.969L152.443 632.969L151.443 632.969ZM145.914 631.744L145.911 632.744L146.914 632.747L146.914 631.744L145.914 631.744ZM140.292 631.726L139.292 631.726L139.292 632.722L140.289 632.726L140.292 631.726ZM142.686 627.217L143.24 628.049L143.242 628.048L142.686 627.217ZM155.266 627.143L154.677 627.951L154.68 627.953L155.266 627.143ZM157.585 642.339L156.601 642.518L156.603 642.528L156.605 642.538L157.585 642.339ZM158.16 644.064L159.16 644.064L159.16 643.823L159.05 643.608L158.16 644.064ZM158.16 644.343L158.16 645.343L159.16 645.343L159.16 644.343L158.16 644.343ZM152.297 644.343L151.418 644.819L151.701 645.343L152.297 645.343L152.297 644.343ZM151.87 643.248L150.902 643.497L150.905 643.51L150.909 643.523L151.87 643.248ZM151.647 641.931L152.644 641.848L152.383 638.713L150.786 641.423L151.647 641.931ZM149.458 643.805L148.99 642.921L148.986 642.923L149.458 643.805ZM140.941 643.229L140.313 644.007L140.317 644.01L140.941 643.229ZM145.784 640.409L145.077 641.116L145.087 641.126L145.784 640.409ZM150.367 640.075L151.048 640.808L151.049 640.807L150.367 640.075ZM151.443 636.197L152.443 636.197L152.443 635.197L151.443 635.197L151.443 636.197ZM146.007 636.772L145.472 635.927L145.464 635.932L146.007 636.772ZM139.197 639.036L140.197 639.036C140.197 637.414 140.807 636.239 142.033 635.385L141.461 634.564L140.889 633.744C139.097 634.993 138.197 636.798 138.197 639.036L139.197 639.036ZM141.461 634.564L142.029 635.387C143.342 634.48 145.095 633.98 147.366 633.969L147.361 632.969L147.356 631.969C144.803 631.982 142.623 632.546 140.892 633.742L141.461 634.564ZM147.361 632.969L147.361 633.969L151.443 633.969L151.443 632.969L151.443 631.969L147.361 631.969L147.361 632.969ZM151.443 632.969L152.443 632.969L152.443 631.874L151.443 631.874L150.443 631.874L150.443 632.969L151.443 632.969ZM151.443 631.874L152.443 631.874C152.443 630.893 152.196 629.991 151.586 629.289L150.831 629.944L150.076 630.6C150.282 630.838 150.443 631.222 150.443 631.874L151.443 631.874ZM150.831 629.944L151.586 629.289C150.902 628.501 149.856 628.239 148.753 628.239L148.753 629.239L148.753 630.239C149.604 630.239 149.944 630.448 150.076 630.6L150.831 629.944ZM148.753 629.239L148.753 628.239C147.674 628.239 146.669 628.452 145.946 629.077L146.601 629.833L147.255 630.589C147.448 630.422 147.877 630.239 148.753 630.239L148.753 629.239ZM146.601 629.833L145.946 629.077C145.249 629.68 144.914 630.492 144.914 631.41L145.914 631.41L146.914 631.41C146.914 631.018 147.037 630.778 147.255 630.589L146.601 629.833ZM145.914 631.41L144.914 631.41L144.914 631.744L145.914 631.744L146.914 631.744L146.914 631.41L145.914 631.41ZM145.914 631.744L145.917 630.744L140.295 630.726L140.292 631.726L140.289 632.726L145.911 632.744L145.914 631.744ZM140.292 631.726L141.292 631.726L141.292 631.354L140.292 631.354L139.292 631.354L139.292 631.726L140.292 631.726ZM140.292 631.354L141.292 631.354C141.292 630.043 141.88 628.956 143.24 628.049L142.686 627.217L142.131 626.385C140.3 627.605 139.292 629.277 139.292 631.354L140.292 631.354ZM142.686 627.217L143.242 628.048C144.634 627.116 146.559 626.603 149.105 626.603L149.105 625.603L149.105 624.603C146.309 624.603 143.954 625.165 142.129 626.386L142.686 627.217ZM149.105 625.603L149.105 626.603C151.699 626.603 153.508 627.1 154.677 627.951L155.266 627.143L155.854 626.334C154.203 625.132 151.906 624.603 149.105 624.603L149.105 625.603ZM155.266 627.143L154.68 627.953C155.772 628.741 156.399 630.025 156.399 632.041L157.399 632.041L158.399 632.041C158.399 629.579 157.605 627.597 155.851 626.332L155.266 627.143ZM157.399 632.041L156.399 632.041L156.399 640.205L157.399 640.205L158.399 640.205L158.399 632.041L157.399 632.041ZM157.399 640.205L156.399 640.205C156.399 641.003 156.466 641.774 156.601 642.518L157.585 642.339L158.569 642.16C158.457 641.543 158.399 640.892 158.399 640.205L157.399 640.205ZM157.585 642.339L156.605 642.538C156.755 643.274 156.972 643.94 157.27 644.521L158.16 644.064L159.05 643.608C158.853 643.224 158.687 642.74 158.565 642.139L157.585 642.339ZM158.16 644.064L157.16 644.064L157.16 644.343L158.16 644.343L159.16 644.343L159.16 644.064L158.16 644.064ZM158.16 644.343L158.16 643.343L152.297 643.343L152.297 644.343L152.297 645.343L158.16 645.343L158.16 644.343ZM152.297 644.343L153.176 643.866C153.059 643.651 152.942 643.358 152.832 642.973L151.87 643.248L150.909 643.523C151.046 644.004 151.213 644.441 151.418 644.819L152.297 644.343ZM151.87 643.248L152.839 642.999C152.741 642.62 152.676 642.237 152.644 641.848L151.647 641.931L150.651 642.014C150.693 642.515 150.776 643.01 150.902 643.497L151.87 643.248ZM151.647 641.931L150.786 641.423C150.506 641.897 149.951 642.412 148.99 642.921L149.458 643.805L149.926 644.688C151.067 644.084 151.972 643.349 152.509 642.438L151.647 641.931ZM149.458 643.805L148.986 642.923C148.133 643.38 146.997 643.64 145.524 643.64L145.524 644.64L145.524 645.64C147.218 645.64 148.705 645.343 149.93 644.686L149.458 643.805ZM145.524 644.64L145.524 643.64C143.813 643.64 142.523 643.214 141.566 642.449L140.941 643.229L140.317 644.01C141.71 645.125 143.475 645.64 145.524 645.64L145.524 644.64ZM140.941 643.229L141.57 642.452C140.698 641.747 140.197 640.669 140.197 639.036L139.197 639.036L138.197 639.036C138.197 641.114 138.859 642.832 140.313 644.007L140.941 643.229ZM145.116 638.572L144.116 638.572C144.116 639.55 144.402 640.441 145.077 641.116L145.784 640.409L146.491 639.702C146.276 639.487 146.116 639.153 146.116 638.572L145.116 638.572ZM145.784 640.409L145.087 641.126C145.791 641.811 146.772 642.059 147.825 642.059L147.825 641.059L147.825 640.059C147.048 640.059 146.668 639.873 146.481 639.692L145.784 640.409ZM147.825 641.059L147.825 642.059C149.06 642.059 150.152 641.64 151.048 640.808L150.367 640.075L149.686 639.343C149.172 639.821 148.57 640.059 147.825 640.059L147.825 641.059ZM150.367 640.075L151.049 640.807C151.943 639.974 152.443 638.946 152.443 637.756L151.443 637.756L150.443 637.756C150.443 638.323 150.226 638.84 149.686 639.343L150.367 640.075ZM151.443 637.756L152.443 637.756L152.443 636.197L151.443 636.197L150.443 636.197L150.443 637.756L151.443 637.756ZM151.443 636.197L151.443 635.197L148.809 635.197L148.809 636.197L148.809 637.197L151.443 637.197L151.443 636.197ZM148.809 636.197L148.809 635.197C147.483 635.197 146.319 635.392 145.472 635.927L146.007 636.772L146.541 637.618C146.907 637.386 147.611 637.197 148.809 637.197L148.809 636.197ZM146.007 636.772L145.464 635.932C144.537 636.531 144.116 637.478 144.116 638.572L145.116 638.572L146.116 638.572C146.116 638.034 146.289 637.781 146.549 637.613L146.007 636.772ZM161.37 644.343L160.37 644.343L160.37 645.343L161.37 645.343L161.37 644.343ZM161.37 626.104L161.37 625.104L160.37 625.104L160.37 626.104L161.37 626.104ZM167.159 626.104L168.159 626.079L168.135 625.104L167.159 625.104L167.159 626.104ZM167.215 628.386L166.215 628.41L166.239 629.386L167.215 629.386L167.215 628.386ZM167.289 628.386L167.289 629.386L167.863 629.386L168.152 628.89L167.289 628.386ZM169.441 626.438L169.898 627.327L169.902 627.325L169.441 626.438ZM177.457 627.254L178.124 626.509L177.457 627.254ZM179.22 644.343L179.22 645.343L180.22 645.343L180.22 644.343L179.22 644.343ZM173.264 644.343L172.264 644.343L172.264 645.343L173.264 645.343L173.264 644.343ZM172.559 630.835L171.851 631.542L171.861 631.552L171.871 631.561L172.559 630.835ZM168.662 630.779L168.076 629.969L168.662 630.779ZM167.326 632.468L166.41 632.066L166.326 632.258L166.326 632.468L167.326 632.468ZM167.326 644.343L167.326 645.343L168.326 645.343L168.326 644.343L167.326 644.343ZM161.37 644.343L162.37 644.343L162.37 626.104L161.37 626.104L160.37 626.104L160.37 644.343L161.37 644.343ZM161.37 626.104L161.37 627.104L167.159 627.104L167.159 626.104L167.159 625.104L161.37 625.104L161.37 626.104ZM167.159 626.104L166.159 626.128L166.215 628.41L167.215 628.386L168.215 628.361L168.159 626.079L167.159 626.104ZM167.215 628.386L167.215 629.386L167.289 629.386L167.289 628.386L167.289 627.386L167.215 627.386L167.215 628.386ZM167.289 628.386L168.152 628.89C168.511 628.276 169.074 627.75 169.898 627.327L169.441 626.438L168.985 625.548C167.879 626.115 167.007 626.887 166.426 627.881L167.289 628.386ZM169.441 626.438L169.902 627.325C170.712 626.905 171.693 626.677 172.874 626.677L172.874 625.677L172.874 624.677C171.433 624.677 170.125 624.956 168.981 625.55L169.441 626.438ZM172.874 625.677L172.874 626.677C174.558 626.677 175.833 627.142 176.79 627.999L177.457 627.254L178.124 626.509C176.731 625.263 174.95 624.677 172.874 624.677L172.874 625.677ZM177.457 627.254L176.79 627.999C177.654 628.772 178.22 630.21 178.22 632.616L179.22 632.616L180.22 632.616C180.22 629.975 179.61 627.838 178.124 626.509L177.457 627.254ZM179.22 632.616L178.22 632.616L178.22 644.343L179.22 644.343L180.22 644.343L180.22 632.616L179.22 632.616ZM179.22 644.343L179.22 643.343L173.264 643.343L173.264 644.343L173.264 645.343L179.22 645.343L179.22 644.343ZM173.264 644.343L174.264 644.343L174.264 633.136L173.264 633.136L172.264 633.136L172.264 644.343L173.264 644.343ZM173.264 633.136L174.264 633.136C174.264 631.95 174.016 630.838 173.246 630.109L172.559 630.835L171.871 631.561C172.042 631.723 172.264 632.144 172.264 633.136L173.264 633.136ZM172.559 630.835L173.266 630.128C172.569 629.431 171.634 629.148 170.61 629.148L170.61 630.148L170.61 631.148C171.269 631.148 171.633 631.323 171.851 631.542L172.559 630.835ZM170.61 630.148L170.61 629.148C169.682 629.148 168.828 629.425 168.076 629.969L168.662 630.779L169.248 631.59C169.659 631.292 170.103 631.148 170.61 631.148L170.61 630.148ZM168.662 630.779L168.076 629.969C167.34 630.502 166.786 631.21 166.41 632.066L167.326 632.468L168.242 632.869C168.485 632.315 168.822 631.898 169.248 631.59L168.662 630.779ZM167.326 632.468L166.326 632.468L166.326 644.343L167.326 644.343L168.326 644.343L168.326 632.468L167.326 632.468ZM167.326 644.343L167.326 643.343L161.37 643.343L161.37 644.343L161.37 645.343L167.326 645.343L167.326 644.343ZM182.801 626.104L182.801 625.104L181.801 625.104L181.801 626.104L182.801 626.104ZM188.775 626.104L189.775 626.104L189.775 625.104L188.775 625.104L188.775 626.104ZM189.48 639.686L188.783 640.402L188.793 640.412L189.48 639.686ZM194.694 638.016L195.602 638.436L195.694 638.236L195.694 638.016L194.694 638.016ZM194.694 626.104L194.694 625.104L193.694 625.104L193.694 626.104L194.694 626.104ZM200.65 626.104L201.65 626.104L201.65 625.104L200.65 625.104L200.65 626.104ZM200.65 644.343L200.65 645.343L201.65 645.343L201.65 644.343L200.65 644.343ZM194.88 644.343L193.88 644.375L193.912 645.343L194.88 645.343L194.88 644.343ZM194.806 642.042L195.805 642.01L195.774 641.042L194.806 641.042L194.806 642.042ZM194.75 642.042L194.75 641.042L194.197 641.042L193.903 641.511L194.75 642.042ZM192.505 644.027L192.053 643.135L192.049 643.138L192.505 644.027ZM184.545 643.137L183.857 643.863L183.861 643.867L184.545 643.137ZM182.801 637.7L183.801 637.7L183.801 626.104L182.801 626.104L181.801 626.104L181.801 637.7L182.801 637.7ZM182.801 626.104L182.801 627.104L188.775 627.104L188.775 626.104L188.775 625.104L182.801 625.104L182.801 626.104ZM188.775 626.104L187.775 626.104L187.775 637.273L188.775 637.273L189.775 637.273L189.775 626.104L188.775 626.104ZM188.775 637.273L187.775 637.273C187.775 638.505 188.017 639.656 188.783 640.402L189.48 639.686L190.178 638.969C190.004 638.8 189.775 638.343 189.775 637.273L188.775 637.273ZM189.48 639.686L188.793 640.412C189.496 641.078 190.419 641.354 191.429 641.354L191.429 640.354L191.429 639.354C190.781 639.354 190.405 639.184 190.168 638.96L189.48 639.686ZM191.429 640.354L191.429 641.354C192.379 641.354 193.246 641.058 193.993 640.473L193.377 639.686L192.761 638.898C192.369 639.204 191.938 639.354 191.429 639.354L191.429 640.354ZM193.377 639.686L193.993 640.473C194.689 639.928 195.227 639.245 195.602 638.436L194.694 638.016L193.787 637.596C193.543 638.122 193.202 638.552 192.761 638.898L193.377 639.686ZM194.694 638.016L195.694 638.016L195.694 626.104L194.694 626.104L193.694 626.104L193.694 638.016L194.694 638.016ZM194.694 626.104L194.694 627.104L200.65 627.104L200.65 626.104L200.65 625.104L194.694 625.104L194.694 626.104ZM200.65 626.104L199.65 626.104L199.65 644.343L200.65 644.343L201.65 644.343L201.65 626.104L200.65 626.104ZM200.65 644.343L200.65 643.343L194.88 643.343L194.88 644.343L194.88 645.343L200.65 645.343L200.65 644.343ZM194.88 644.343L195.879 644.311L195.805 642.01L194.806 642.042L193.806 642.074L193.88 644.375L194.88 644.343ZM194.806 642.042L194.806 641.042L194.75 641.042L194.75 642.042L194.75 643.042L194.806 643.042L194.806 642.042ZM194.75 642.042L193.903 641.511C193.491 642.168 192.888 642.712 192.053 643.135L192.505 644.027L192.957 644.92C194.076 644.353 194.97 643.574 195.597 642.573L194.75 642.042ZM192.505 644.027L192.049 643.138C191.253 643.546 190.272 643.77 189.072 643.77L189.072 644.77L189.072 645.77C190.52 645.77 191.827 645.499 192.961 644.917L192.505 644.027ZM189.072 644.77L189.072 643.77C187.426 643.77 186.176 643.293 185.228 642.407L184.545 643.137L183.861 643.867C185.24 645.157 187.008 645.77 189.072 645.77L189.072 644.77ZM184.545 643.137L185.232 642.411C184.359 641.583 183.801 640.103 183.801 637.7L182.801 637.7L181.801 637.7C181.801 640.344 182.405 642.488 183.857 643.863L184.545 643.137ZM202.691 630.408L201.691 630.408L201.691 631.408L202.691 631.408L202.691 630.408ZM202.691 626.104L202.691 625.104L201.691 625.104L201.691 626.104L202.691 626.104ZM215.03 626.104L216.03 626.104L216.03 625.104L215.03 625.104L215.03 626.104ZM215.03 630.408L215.03 631.408L216.03 631.408L216.03 630.408L215.03 630.408ZM205.475 627.532L204.517 627.245L204.475 627.385L204.475 627.532L205.475 627.532ZM205.586 627.161L206.544 627.448L206.586 627.308L206.586 627.161L205.586 627.161ZM205.586 620.927L205.586 619.927L204.586 619.927L204.586 620.927L205.586 620.927ZM211.356 620.927L212.356 620.927L212.356 619.927L211.356 619.927L211.356 620.927ZM211.839 639.982L211.106 640.663L211.839 639.982ZM214.177 640.428L214.348 641.413L214.369 641.409L214.389 641.405L214.177 640.428ZM215.012 640.168L216.012 640.168L216.012 638.678L214.633 639.242L215.012 640.168ZM215.012 644.287L215.371 645.22L216.012 644.974L216.012 644.287L215.012 644.287ZM207.015 643.378L206.33 644.107L206.339 644.115L207.015 643.378ZM202.691 630.408L203.691 630.408L203.691 626.104L202.691 626.104L201.691 626.104L201.691 630.408L202.691 630.408ZM202.691 626.104L202.691 627.104L215.03 627.104L215.03 626.104L215.03 625.104L202.691 625.104L202.691 626.104ZM215.03 626.104L214.03 626.104L214.03 630.408L215.03 630.408L216.03 630.408L216.03 626.104L215.03 626.104ZM215.03 630.408L215.03 629.408L202.691 629.408L202.691 630.408L202.691 631.408L215.03 631.408L215.03 630.408ZM205.475 638.758L206.475 638.758L206.475 627.532L205.475 627.532L204.475 627.532L204.475 638.758L205.475 638.758ZM205.475 627.532L206.432 627.82L206.544 627.448L205.586 627.161L204.628 626.874L204.517 627.245L205.475 627.532ZM205.586 627.161L206.586 627.161L206.586 620.927L205.586 620.927L204.586 620.927L204.586 627.161L205.586 627.161ZM205.586 620.927L205.586 621.927L211.356 621.927L211.356 620.927L211.356 619.927L205.586 619.927L205.586 620.927ZM211.356 620.927L210.356 620.927L210.356 637.867L211.356 637.867L212.356 637.867L212.356 620.927L211.356 620.927ZM211.356 637.867L210.356 637.867C210.356 638.442 210.399 638.965 210.502 639.416C210.603 639.857 210.779 640.31 211.106 640.663L211.839 639.982L212.572 639.302C212.578 639.308 212.512 639.236 212.452 638.971C212.394 638.717 212.356 638.356 212.356 637.867L211.356 637.867ZM211.839 639.982L211.106 640.663C211.678 641.278 212.469 641.502 213.286 641.502L213.286 640.502L213.286 639.502C212.817 639.502 212.643 639.379 212.572 639.302L211.839 639.982ZM213.286 640.502L213.286 641.502C213.649 641.502 214.003 641.473 214.348 641.413L214.177 640.428L214.005 639.443C213.781 639.481 213.542 639.502 213.286 639.502L213.286 640.502ZM214.177 640.428L214.389 641.405C214.731 641.331 215.065 641.227 215.39 641.094L215.012 640.168L214.633 639.242C214.414 639.332 214.191 639.401 213.964 639.451L214.177 640.428ZM215.012 640.168L214.012 640.168L214.012 644.287L215.012 644.287L216.012 644.287L216.012 640.168L215.012 640.168ZM215.012 644.287L214.653 643.354C214.422 643.443 214.021 643.547 213.409 643.655L213.583 644.64L213.757 645.624C214.407 645.51 214.958 645.379 215.371 645.22L215.012 644.287ZM213.583 644.64L213.409 643.655C212.852 643.753 212.164 643.807 211.338 643.807L211.338 644.807L211.338 645.807C212.243 645.807 213.053 645.749 213.757 645.624L213.583 644.64ZM211.338 644.807L211.338 643.807C209.666 643.807 208.494 643.377 207.69 642.641L207.015 643.378L206.339 644.115C207.613 645.283 209.324 645.807 211.338 645.807L211.338 644.807ZM207.015 643.378L207.699 642.649C206.956 641.951 206.475 640.735 206.475 638.758L205.475 638.758L204.475 638.758C204.475 641.011 205.02 642.875 206.33 644.107L207.015 643.378ZM226.979 644.343L225.979 644.343L225.979 645.343L226.979 645.343L226.979 644.343ZM226.979 617.327L226.979 616.327L225.979 616.327L225.979 617.327L226.979 617.327ZM244.588 619.758L243.867 620.451L243.87 620.454L244.588 619.758ZM244.606 632.95L243.88 632.263L243.88 632.263L244.606 632.95ZM233.14 635.381L233.14 634.381L232.14 634.381L232.14 635.381L233.14 635.381ZM233.14 644.343L233.14 645.343L234.14 645.343L234.14 644.343L233.14 644.343ZM233.14 631.039L232.14 631.039L232.14 632.039L233.14 632.039L233.14 631.039ZM239.894 629.759L240.714 630.33L240.718 630.324L239.894 629.759ZM239.894 623.135L239.073 623.706L239.077 623.711L239.894 623.135ZM233.14 621.854L233.14 620.854L232.14 620.854L232.14 621.854L233.14 621.854ZM226.979 644.343L227.979 644.343L227.979 617.327L226.979 617.327L225.979 617.327L225.979 644.343L226.979 644.343ZM226.979 617.327L226.979 618.327L237.853 618.327L237.853 617.327L237.853 616.327L226.979 616.327L226.979 617.327ZM237.853 617.327L237.853 618.327C240.599 618.327 242.55 619.081 243.867 620.451L244.588 619.758L245.309 619.065C243.509 617.193 240.97 616.327 237.853 616.327L237.853 617.327ZM244.588 619.758L243.87 620.454C245.206 621.832 245.926 623.755 245.926 626.345L246.926 626.345L247.926 626.345C247.926 623.368 247.087 620.899 245.306 619.062L244.588 619.758ZM246.926 626.345L245.926 626.345C245.926 628.922 245.212 630.856 243.88 632.263L244.606 632.95L245.333 633.638C247.093 631.778 247.926 629.309 247.926 626.345L246.926 626.345ZM244.606 632.95L243.88 632.263C242.595 633.621 240.622 634.381 237.778 634.381L237.778 635.381L237.778 636.381C240.971 636.381 243.551 635.52 245.333 633.638L244.606 632.95ZM237.778 635.381L237.778 634.381L233.14 634.381L233.14 635.381L233.14 636.381L237.778 636.381L237.778 635.381ZM233.14 635.381L232.14 635.381L232.14 644.343L233.14 644.343L234.14 644.343L234.14 635.381L233.14 635.381ZM233.14 644.343L233.14 643.343L226.979 643.343L226.979 644.343L226.979 645.343L233.14 645.343L233.14 644.343ZM233.14 631.039L233.14 632.039L236.721 632.039L236.721 631.039L236.721 630.039L233.14 630.039L233.14 631.039ZM236.721 631.039L236.721 632.039C238.409 632.039 239.858 631.562 240.714 630.33L239.894 629.759L239.073 629.188C238.742 629.663 238.076 630.039 236.721 630.039L236.721 631.039ZM239.894 629.759L240.718 630.324C241.456 629.249 241.784 627.922 241.784 626.419L240.784 626.419L239.784 626.419C239.784 627.637 239.519 628.537 239.069 629.193L239.894 629.759ZM240.784 626.419L241.784 626.419C241.784 624.928 241.455 623.613 240.711 622.558L239.894 623.135L239.077 623.711C239.519 624.339 239.784 625.214 239.784 626.419L240.784 626.419ZM239.894 623.135L240.714 622.564C239.858 621.332 238.409 620.854 236.721 620.854L236.721 621.854L236.721 622.854C238.076 622.854 238.742 623.231 239.073 623.706L239.894 623.135ZM236.721 621.854L236.721 620.854L233.14 620.854L233.14 621.854L233.14 622.854L236.721 622.854L236.721 621.854ZM233.14 621.854L232.14 621.854L232.14 631.039L233.14 631.039L234.14 631.039L234.14 621.854L233.14 621.854ZM249.635 644.343L248.635 644.343L248.635 645.343L249.635 645.343L249.635 644.343ZM249.635 626.104L249.635 625.104L248.635 625.104L248.635 626.104L249.635 626.104ZM255.665 626.104L256.665 626.104L256.665 625.104L255.665 625.104L255.665 626.104ZM255.665 644.343L255.665 645.343L256.665 645.343L256.665 644.343L255.665 644.343ZM250.136 618.181L250.843 618.888L250.85 618.88L250.136 618.181ZM255.183 618.162L255.897 617.462L255.183 618.162ZM249.635 644.343L250.635 644.343L250.635 626.104L249.635 626.104L248.635 626.104L248.635 644.343L249.635 644.343ZM249.635 626.104L249.635 627.104L255.665 627.104L255.665 626.104L255.665 625.104L249.635 625.104L249.635 626.104ZM255.665 626.104L254.665 626.104L254.665 644.343L255.665 644.343L256.665 644.343L256.665 626.104L255.665 626.104ZM255.665 644.343L255.665 643.343L249.635 643.343L249.635 644.343L249.635 645.343L255.665 645.343L255.665 644.343ZM249.245 620.37L250.245 620.37C250.245 619.76 250.443 619.288 250.843 618.888L250.136 618.181L249.429 617.474C248.641 618.261 248.245 619.248 248.245 620.37L249.245 620.37ZM250.136 618.181L250.85 618.88C251.204 618.519 251.762 618.271 252.678 618.271L252.678 617.271L252.678 616.271C251.392 616.271 250.255 616.63 249.421 617.481L250.136 618.181ZM252.678 617.271L252.678 618.271C253.584 618.271 254.128 618.514 254.468 618.862L255.183 618.162L255.897 617.462C255.074 616.622 253.948 616.271 252.678 616.271L252.678 617.271ZM255.183 618.162L254.468 618.862C254.855 619.257 255.055 619.737 255.055 620.37L256.055 620.37L257.055 620.37C257.055 619.247 256.673 618.255 255.897 617.462L255.183 618.162ZM256.055 620.37L255.055 620.37C255.055 620.98 254.856 621.463 254.45 621.878L255.164 622.578L255.878 623.278C256.659 622.481 257.055 621.492 257.055 620.37L256.055 620.37ZM255.164 622.578L254.45 621.878C254.093 622.242 253.54 622.487 252.641 622.487L252.641 623.487L252.641 624.487C253.918 624.487 255.047 624.126 255.878 623.278L255.164 622.578ZM252.641 623.487L252.641 622.487C251.724 622.487 251.178 622.24 250.839 621.886L250.117 622.578L249.396 623.27C250.219 624.129 251.356 624.487 252.641 624.487L252.641 623.487ZM250.117 622.578L250.839 621.886C250.442 621.472 250.245 620.987 250.245 620.37L249.245 620.37L248.245 620.37C248.245 621.485 248.629 622.472 249.396 623.27L250.117 622.578ZM261.436 628.107L262.117 628.839L262.12 628.836L261.436 628.107ZM275.778 628.107L275.091 628.834L275.097 628.839L275.778 628.107ZM275.778 642.302L276.463 643.031L276.463 643.031L275.778 642.302ZM261.417 642.302L260.73 643.029L260.735 643.033L261.417 642.302ZM265.74 639.277L264.947 639.887L264.952 639.893L264.957 639.899L265.74 639.277ZM271.455 639.277L270.668 638.661L270.666 638.663L271.455 639.277ZM271.455 631.15L270.672 631.772L270.676 631.778L271.455 631.15ZM265.759 631.15L266.537 631.778L266.542 631.772L265.759 631.15ZM258.708 635.492L259.708 635.492L259.708 634.898L258.708 634.898L257.708 634.898L257.708 635.492L258.708 635.492ZM258.708 634.898L259.708 634.898C259.708 632.301 260.531 630.317 262.117 628.839L261.436 628.107L260.754 627.376C258.703 629.287 257.708 631.831 257.708 634.898L258.708 634.898ZM261.436 628.107L262.12 628.836C263.719 627.336 265.85 626.547 268.616 626.547L268.616 625.547L268.616 624.547C265.445 624.547 262.789 625.465 260.751 627.378L261.436 628.107ZM268.616 625.547L268.616 626.547C271.382 626.547 273.506 627.336 275.091 628.834L275.778 628.107L276.465 627.381C274.438 625.465 271.788 624.547 268.616 624.547L268.616 625.547ZM275.778 628.107L275.097 628.839C276.683 630.317 277.506 632.301 277.506 634.898L278.506 634.898L279.506 634.898C279.506 631.831 278.511 629.287 276.46 627.376L275.778 628.107ZM278.506 634.898L277.506 634.898L277.506 635.492L278.506 635.492L279.506 635.492L279.506 634.898L278.506 634.898ZM278.506 635.492L277.506 635.492C277.506 638.09 276.683 640.081 275.094 641.573L275.778 642.302L276.463 643.031C278.511 641.108 279.506 638.56 279.506 635.492L278.506 635.492ZM275.778 642.302L275.094 641.573C273.509 643.06 271.384 643.844 268.616 643.844L268.616 644.844L268.616 645.844C271.786 645.844 274.436 644.933 276.463 643.031L275.778 642.302ZM268.616 644.844L268.616 643.844C265.835 643.844 263.696 643.059 262.099 641.57L261.417 642.302L260.735 643.033C262.774 644.934 265.435 645.844 268.616 645.844L268.616 644.844ZM261.417 642.302L262.104 641.575C260.526 640.084 259.708 638.092 259.708 635.492L258.708 635.492L257.708 635.492C257.708 638.558 258.696 641.105 260.73 643.029L261.417 642.302ZM264.757 634.639L263.757 634.639L263.757 635.733L264.757 635.733L265.757 635.733L265.757 634.639L264.757 634.639ZM264.757 635.733L263.757 635.733C263.757 637.376 264.113 638.8 264.947 639.887L265.74 639.277L266.533 638.668C266.057 638.048 265.757 637.109 265.757 635.733L264.757 635.733ZM265.74 639.277L264.957 639.899C265.845 641.017 267.108 641.539 268.598 641.539L268.598 640.539L268.598 639.539C267.614 639.539 266.971 639.22 266.523 638.655L265.74 639.277ZM268.598 640.539L268.598 641.539C270.096 641.539 271.365 641.02 272.244 639.892L271.455 639.277L270.666 638.663C270.234 639.217 269.598 639.539 268.598 639.539L268.598 640.539ZM271.455 639.277L272.243 639.894C273.093 638.807 273.457 637.38 273.457 635.733L272.457 635.733L271.457 635.733C271.457 637.105 271.153 638.041 270.668 638.661L271.455 639.277ZM272.457 635.733L273.457 635.733L273.457 634.639L272.457 634.639L271.457 634.639L271.457 635.733L272.457 635.733ZM272.457 634.639L273.457 634.639C273.457 633.005 273.093 631.589 272.234 630.523L271.455 631.15L270.676 631.778C271.153 632.369 271.457 633.279 271.457 634.639L272.457 634.639ZM271.455 631.15L272.238 630.529C271.35 629.41 270.088 628.889 268.598 628.889L268.598 629.889L268.598 630.889C269.582 630.889 270.224 631.208 270.672 631.772L271.455 631.15ZM268.598 629.889L268.598 628.889C267.116 628.889 265.861 629.413 264.976 630.529L265.759 631.15L266.542 631.772C266.992 631.205 267.63 630.889 268.598 630.889L268.598 629.889ZM265.759 631.15L264.98 630.523C264.121 631.589 263.757 633.005 263.757 634.639L264.757 634.639L265.757 634.639C265.757 633.279 266.061 632.369 266.537 631.778L265.759 631.15ZM281.493 644.343L280.493 644.343L280.493 645.343L281.493 645.343L281.493 644.343ZM281.493 626.104L281.493 625.104L280.493 625.104L280.493 626.104L281.493 626.104ZM287.282 626.104L288.282 626.079L288.258 625.104L287.282 625.104L287.282 626.104ZM287.338 628.386L286.338 628.41L286.362 629.386L287.338 629.386L287.338 628.386ZM287.412 628.386L287.412 629.386L287.986 629.386L288.275 628.89L287.412 628.386ZM289.564 626.438L290.021 627.327L290.025 627.325L289.564 626.438ZM297.58 627.254L298.247 626.509L297.58 627.254ZM299.343 644.343L299.343 645.343L300.343 645.343L300.343 644.343L299.343 644.343ZM293.387 644.343L292.387 644.343L292.387 645.343L293.387 645.343L293.387 644.343ZM292.682 630.835L291.975 631.542L291.984 631.552L291.994 631.561L292.682 630.835ZM288.785 630.779L288.199 629.969L288.785 630.779ZM287.449 632.468L286.533 632.066L286.449 632.258L286.449 632.468L287.449 632.468ZM287.449 644.343L287.449 645.343L288.449 645.343L288.449 644.343L287.449 644.343ZM281.493 644.343L282.493 644.343L282.493 626.104L281.493 626.104L280.493 626.104L280.493 644.343L281.493 644.343ZM281.493 626.104L281.493 627.104L287.282 627.104L287.282 626.104L287.282 625.104L281.493 625.104L281.493 626.104ZM287.282 626.104L286.283 626.128L286.338 628.41L287.338 628.386L288.338 628.361L288.282 626.079L287.282 626.104ZM287.338 628.386L287.338 629.386L287.412 629.386L287.412 628.386L287.412 627.386L287.338 627.386L287.338 628.386ZM287.412 628.386L288.275 628.89C288.634 628.276 289.197 627.75 290.021 627.327L289.564 626.438L289.108 625.548C288.002 626.115 287.13 626.887 286.549 627.881L287.412 628.386ZM289.564 626.438L290.025 627.325C290.835 626.905 291.816 626.677 292.997 626.677L292.997 625.677L292.997 624.677C291.556 624.677 290.248 624.956 289.104 625.55L289.564 626.438ZM292.997 625.677L292.997 626.677C294.681 626.677 295.956 627.142 296.913 627.999L297.58 627.254L298.247 626.509C296.854 625.263 295.073 624.677 292.997 624.677L292.997 625.677ZM297.58 627.254L296.913 627.999C297.777 628.772 298.343 630.21 298.343 632.616L299.343 632.616L300.343 632.616C300.343 629.976 299.733 627.838 298.247 626.509L297.58 627.254ZM299.343 632.616L298.343 632.616L298.343 644.343L299.343 644.343L300.343 644.343L300.343 632.616L299.343 632.616ZM299.343 644.343L299.343 643.343L293.387 643.343L293.387 644.343L293.387 645.343L299.343 645.343L299.343 644.343ZM293.387 644.343L294.387 644.343L294.387 633.136L293.387 633.136L292.387 633.136L292.387 644.343L293.387 644.343ZM293.387 633.136L294.387 633.136C294.387 631.95 294.139 630.838 293.369 630.109L292.682 630.835L291.994 631.561C292.165 631.723 292.387 632.144 292.387 633.136L293.387 633.136ZM292.682 630.835L293.389 630.128C292.692 629.431 291.757 629.148 290.733 629.148L290.733 630.148L290.733 631.148C291.392 631.148 291.756 631.323 291.975 631.542L292.682 630.835ZM290.733 630.148L290.733 629.148C289.805 629.148 288.951 629.425 288.199 629.969L288.785 630.779L289.371 631.59C289.782 631.292 290.226 631.148 290.733 631.148L290.733 630.148ZM288.785 630.779L288.199 629.969C287.463 630.502 286.909 631.21 286.533 632.066L287.449 632.468L288.365 632.869C288.608 632.315 288.945 631.898 289.371 631.59L288.785 630.779ZM287.449 632.468L286.449 632.468L286.449 644.343L287.449 644.343L288.449 644.343L288.449 632.468L287.449 632.468ZM287.449 644.343L287.449 643.343L281.493 643.343L281.493 644.343L281.493 645.343L287.449 645.343L287.449 644.343ZM304.816 628.107L305.508 628.83L304.816 628.107ZM320.792 636.457L320.792 637.457L321.792 637.457L321.792 636.457L320.792 636.457ZM305.707 636.457L304.707 636.457L304.707 637.457L305.707 637.457L305.707 636.457ZM305.707 633.191L305.707 632.191L304.707 632.191L304.707 633.191L305.707 633.191ZM314.984 633.191L314.984 634.191L315.984 634.191L315.984 633.191L314.984 633.191ZM309.01 631.039L308.201 630.45L308.196 630.458L309.01 631.039ZM309.084 639.296L308.288 639.901L308.293 639.908L309.084 639.296ZM315.912 638.442L316.293 637.518L315.516 637.198L315.067 637.908L315.912 638.442ZM320.551 640.354L321.47 640.746L321.868 639.815L320.932 639.429L320.551 640.354ZM317.545 643.619L317.047 642.752L317.044 642.754L317.545 643.619ZM304.779 642.32L304.082 643.038L304.088 643.043L304.779 642.32ZM302.163 635.474L303.163 635.474L303.163 634.88L302.163 634.88L301.163 634.88L301.163 635.474L302.163 635.474ZM302.163 634.88L303.163 634.88C303.163 632.287 303.967 630.307 305.508 628.83L304.816 628.107L304.125 627.385C302.129 629.298 301.163 631.832 301.163 634.88L302.163 634.88ZM304.816 628.107L305.508 628.83C307.059 627.343 309.115 626.565 311.774 626.565L311.774 625.565L311.774 624.565C308.694 624.565 306.111 625.482 304.125 627.385L304.816 628.107ZM311.774 625.565L311.774 626.565C314.425 626.565 316.355 627.309 317.704 628.679L318.417 627.978L319.13 627.276C317.312 625.43 314.814 624.565 311.774 624.565L311.774 625.565ZM318.417 627.978L317.704 628.679C319.059 630.055 319.792 631.998 319.792 634.639L320.792 634.639L321.792 634.639C321.792 631.614 320.941 629.116 319.13 627.276L318.417 627.978ZM320.792 634.639L319.792 634.639L319.792 636.457L320.792 636.457L321.792 636.457L321.792 634.639L320.792 634.639ZM320.792 636.457L320.792 635.457L305.707 635.457L305.707 636.457L305.707 637.457L320.792 637.457L320.792 636.457ZM305.707 636.457L306.707 636.457L306.707 633.191L305.707 633.191L304.707 633.191L304.707 636.457L305.707 636.457ZM305.707 633.191L305.707 634.191L314.984 634.191L314.984 633.191L314.984 632.191L305.707 632.191L305.707 633.191ZM314.984 633.191L315.984 633.191L315.984 632.932L314.984 632.932L313.984 632.932L313.984 633.191L314.984 633.191ZM314.984 632.932L315.984 632.932C315.984 631.802 315.642 630.794 314.912 629.981L314.168 630.649L313.424 631.318C313.783 631.717 313.984 632.23 313.984 632.932L314.984 632.932ZM314.168 630.649L314.912 629.981C314.122 629.102 313.001 628.74 311.737 628.74L311.737 629.74L311.737 630.74C312.626 630.74 313.125 630.985 313.424 631.318L314.168 630.649ZM311.737 629.74L311.737 628.74C310.27 628.74 309.043 629.295 308.202 630.45L309.01 631.039L309.818 631.628C310.238 631.051 310.829 630.74 311.737 630.74L311.737 629.74ZM309.01 631.039L308.196 630.458C307.425 631.537 307.082 632.876 307.082 634.397L308.082 634.397L309.082 634.397C309.082 633.172 309.357 632.273 309.824 631.62L309.01 631.039ZM308.082 634.397L307.082 634.397L307.082 635.641L308.082 635.641L309.082 635.641L309.082 634.397L308.082 634.397ZM308.082 635.641L307.082 635.641C307.082 637.33 307.443 638.79 308.288 639.901L309.084 639.296L309.88 638.691C309.389 638.045 309.082 637.068 309.082 635.641L308.082 635.641ZM309.084 639.296L308.293 639.908C309.195 641.072 310.494 641.613 312.034 641.613L312.034 640.613L312.034 639.613C311.002 639.613 310.334 639.277 309.875 638.684L309.084 639.296ZM312.034 640.613L312.034 641.613C313.106 641.613 314.084 641.365 314.919 640.819L314.372 639.982L313.825 639.145C313.373 639.441 312.793 639.613 312.034 639.613L312.034 640.613ZM314.372 639.982L314.919 640.819C315.674 640.326 316.292 639.713 316.757 638.977L315.912 638.442L315.067 637.908C314.765 638.384 314.357 638.798 313.825 639.145L314.372 639.982ZM315.912 638.442L315.531 639.367L320.17 641.278L320.551 640.354L320.932 639.429L316.293 637.518L315.912 638.442ZM320.551 640.354L319.631 639.961C319.144 641.1 318.303 642.031 317.047 642.752L317.545 643.619L318.043 644.486C319.632 643.574 320.794 642.329 321.47 640.746L320.551 640.354ZM317.545 643.619L317.044 642.754C315.831 643.456 314.207 643.844 312.108 643.844L312.108 644.844L312.108 645.844C314.438 645.844 316.438 645.415 318.046 644.485L317.545 643.619ZM312.108 644.844L312.108 643.844C309.16 643.844 306.992 643.055 305.471 641.598L304.779 642.32L304.088 643.043C306.079 644.95 308.798 645.844 312.108 645.844L312.108 644.844ZM304.779 642.32L305.476 641.603C303.961 640.13 303.163 638.126 303.163 635.474L302.163 635.474L301.163 635.474C301.163 638.561 302.11 641.121 304.082 643.038L304.779 642.32ZM325.338 628.107L326.03 628.83L325.338 628.107ZM341.313 636.457L341.313 637.457L342.313 637.457L342.313 636.457L341.313 636.457ZM326.229 636.457L325.229 636.457L325.229 637.457L326.229 637.457L326.229 636.457ZM326.229 633.191L326.229 632.191L325.229 632.191L325.229 633.191L326.229 633.191ZM335.506 633.191L335.506 634.191L336.506 634.191L336.506 633.191L335.506 633.191ZM329.531 631.039L328.723 630.45L328.718 630.458L329.531 631.039ZM329.605 639.296L328.809 639.901L328.815 639.908L329.605 639.296ZM336.434 638.442L336.815 637.518L336.038 637.198L335.589 637.908L336.434 638.442ZM341.072 640.354L341.992 640.746L342.39 639.815L341.453 639.429L341.072 640.354ZM338.066 643.619L337.569 642.752L337.565 642.754L338.066 643.619ZM325.301 642.32L324.604 643.038L324.609 643.043L325.301 642.32ZM322.685 635.474L323.685 635.474L323.685 634.88L322.685 634.88L321.685 634.88L321.685 635.474L322.685 635.474ZM322.685 634.88L323.685 634.88C323.685 632.287 324.488 630.307 326.03 628.83L325.338 628.107L324.646 627.385C322.65 629.298 321.685 631.832 321.685 634.88L322.685 634.88ZM325.338 628.107L326.03 628.83C327.581 627.343 329.637 626.565 332.296 626.565L332.296 625.565L332.296 624.565C329.216 624.565 326.633 625.482 324.646 627.385L325.338 628.107ZM332.296 625.565L332.296 626.565C334.947 626.565 336.877 627.309 338.226 628.679L338.938 627.978L339.651 627.276C337.834 625.43 335.335 624.565 332.296 624.565L332.296 625.565ZM338.938 627.978L338.226 628.679C339.581 630.055 340.313 631.998 340.313 634.639L341.313 634.639L342.313 634.639C342.313 631.614 341.463 629.116 339.651 627.276L338.938 627.978ZM341.313 634.639L340.313 634.639L340.313 636.457L341.313 636.457L342.313 636.457L342.313 634.639L341.313 634.639ZM341.313 636.457L341.313 635.457L326.229 635.457L326.229 636.457L326.229 637.457L341.313 637.457L341.313 636.457ZM326.229 636.457L327.229 636.457L327.229 633.191L326.229 633.191L325.229 633.191L325.229 636.457L326.229 636.457ZM326.229 633.191L326.229 634.191L335.506 634.191L335.506 633.191L335.506 632.191L326.229 632.191L326.229 633.191ZM335.506 633.191L336.506 633.191L336.506 632.932L335.506 632.932L334.506 632.932L334.506 633.191L335.506 633.191ZM335.506 632.932L336.506 632.932C336.506 631.802 336.163 630.794 335.434 629.981L334.689 630.649L333.945 631.318C334.304 631.717 334.506 632.23 334.506 632.932L335.506 632.932ZM334.689 630.649L335.434 629.981C334.644 629.102 333.523 628.74 332.259 628.74L332.259 629.74L332.259 630.74C333.147 630.74 333.647 630.985 333.945 631.318L334.689 630.649ZM332.259 629.74L332.259 628.74C330.792 628.74 329.565 629.295 328.723 630.45L329.531 631.039L330.339 631.628C330.76 631.051 331.351 630.74 332.259 630.74L332.259 629.74ZM329.531 631.039L328.718 630.458C327.947 631.537 327.604 632.876 327.604 634.397L328.604 634.397L329.604 634.397C329.604 633.172 329.879 632.273 330.345 631.62L329.531 631.039ZM328.604 634.397L327.604 634.397L327.604 635.641L328.604 635.641L329.604 635.641L329.604 634.397L328.604 634.397ZM328.604 635.641L327.604 635.641C327.604 637.33 327.964 638.79 328.81 639.901L329.605 639.296L330.401 638.691C329.911 638.045 329.604 637.068 329.604 635.641L328.604 635.641ZM329.605 639.296L328.815 639.908C329.716 641.072 331.015 641.613 332.556 641.613L332.556 640.613L332.556 639.613C331.523 639.613 330.856 639.277 330.396 638.684L329.605 639.296ZM332.556 640.613L332.556 641.613C333.628 641.613 334.606 641.365 335.441 640.819L334.894 639.982L334.346 639.145C333.895 639.441 333.314 639.613 332.556 639.613L332.556 640.613ZM334.894 639.982L335.441 640.819C336.195 640.326 336.813 639.713 337.279 638.977L336.434 638.442L335.589 637.908C335.287 638.384 334.878 638.798 334.346 639.145L334.894 639.982ZM336.434 638.442L336.053 639.367L340.691 641.278L341.072 640.354L341.453 639.429L336.815 637.518L336.434 638.442ZM341.072 640.354L340.153 639.961C339.666 641.1 338.824 642.031 337.569 642.752L338.066 643.619L338.564 644.486C340.154 643.574 341.316 642.329 341.992 640.746L341.072 640.354ZM338.066 643.619L337.565 642.754C336.353 643.456 334.729 643.844 332.63 643.844L332.63 644.844L332.63 645.844C334.959 645.844 336.96 645.415 338.567 644.485L338.066 643.619ZM332.63 644.844L332.63 643.844C329.681 643.844 327.514 643.055 325.992 641.598L325.301 642.32L324.609 643.043C326.601 644.95 329.319 645.844 332.63 645.844L332.63 644.844ZM325.301 642.32L325.998 641.603C324.482 640.13 323.685 638.126 323.685 635.474L322.685 635.474L321.685 635.474C321.685 638.561 322.631 641.121 324.604 643.038L325.301 642.32ZM344.134 644.343L343.134 644.343L343.134 645.343L344.134 645.343L344.134 644.343ZM344.134 626.104L344.134 625.104L343.134 625.104L343.134 626.104L344.134 626.104ZM349.997 626.104L350.997 626.071L350.965 625.104L349.997 625.104L349.997 626.104ZM350.071 628.367L349.072 628.4L349.104 629.367L350.071 629.367L350.071 628.367ZM350.127 628.367L350.127 629.367L350.711 629.367L350.998 628.859L350.127 628.367ZM355.953 625.918L356.953 625.918L356.953 625.241L356.325 624.99L355.953 625.918ZM355.953 630.612L355.637 631.561L356.953 632L356.953 630.612L355.953 630.612ZM355.174 630.445L355.044 631.437L355.05 631.438L355.174 630.445ZM351.871 631.15L351.3 630.329L351.871 631.15ZM350.183 633.136L349.283 632.699L349.183 632.906L349.183 633.136L350.183 633.136ZM350.183 644.343L350.183 645.343L351.183 645.343L351.183 644.343L350.183 644.343ZM344.134 644.343L345.134 644.343L345.134 626.104L344.134 626.104L343.134 626.104L343.134 644.343L344.134 644.343ZM344.134 626.104L344.134 627.104L349.997 627.104L349.997 626.104L349.997 625.104L344.134 625.104L344.134 626.104ZM349.997 626.104L348.998 626.136L349.072 628.4L350.071 628.367L351.071 628.334L350.997 626.071L349.997 626.104ZM350.071 628.367L350.071 629.367L350.127 629.367L350.127 628.367L350.127 627.367L350.071 627.367L350.071 628.367ZM350.127 628.367L350.998 628.859C351.354 628.228 351.835 627.704 352.454 627.282L351.89 626.456L351.325 625.63C350.46 626.222 349.766 626.972 349.256 627.876L350.127 628.367ZM351.89 626.456L352.454 627.282C353.024 626.892 353.661 626.695 354.395 626.695L354.395 625.695L354.395 624.695C353.272 624.695 352.239 625.006 351.325 625.63L351.89 626.456ZM354.395 625.695L354.395 626.695C354.665 626.695 354.919 626.716 355.158 626.756L355.322 625.77L355.487 624.783C355.132 624.724 354.767 624.695 354.395 624.695L354.395 625.695ZM355.322 625.77L355.158 626.756C355.292 626.778 355.396 626.799 355.474 626.817C355.556 626.837 355.586 626.848 355.582 626.846L355.953 625.918L356.325 624.99C356.092 624.897 355.789 624.833 355.487 624.783L355.322 625.77ZM355.953 625.918L354.953 625.918L354.953 630.612L355.953 630.612L356.953 630.612L356.953 625.918L355.953 625.918ZM355.953 630.612L356.269 629.664C355.97 629.564 355.643 629.496 355.298 629.453L355.174 630.445L355.05 631.438C355.298 631.469 355.491 631.512 355.637 631.561L355.953 630.612ZM355.174 630.445L355.303 629.454C354.967 629.41 354.601 629.39 354.209 629.39L354.209 630.39L354.209 631.39C354.535 631.39 354.812 631.407 355.044 631.437L355.174 630.445ZM354.209 630.39L354.209 629.39C353.161 629.39 352.185 629.715 351.3 630.329L351.871 631.15L352.442 631.972C353.017 631.572 353.599 631.39 354.209 631.39L354.209 630.39ZM351.871 631.15L351.3 630.329C350.427 630.936 349.752 631.732 349.283 632.699L350.183 633.136L351.082 633.572C351.405 632.907 351.856 632.379 352.442 631.972L351.871 631.15ZM350.183 633.136L349.183 633.136L349.183 644.343L350.183 644.343L351.183 644.343L351.183 633.136L350.183 633.136ZM350.183 644.343L350.183 643.343L344.134 643.343L344.134 644.343L344.134 645.343L350.183 645.343L350.183 644.343Z" fill="black" mask="url(#path-7-outside-2_17007_6863)"/> +<mask id="path-9-outside-3_17007_6863" maskUnits="userSpaceOnUse" x="575.669" y="608.883" width="88" height="31" fill="black"> +<rect fill="white" x="575.669" y="608.883" width="88" height="31"/> +<path d="M577.094 610.867L583.532 610.867L589.247 628.624C589.358 628.909 589.445 629.193 589.507 629.478C589.581 629.762 589.655 630.059 589.729 630.368L589.841 630.368C589.915 630.059 589.989 629.756 590.063 629.459C590.15 629.162 590.237 628.884 590.323 628.624L596.094 610.867L602.031 610.867L592.939 637.994L586.186 637.994L577.094 610.867ZM601.753 632.576C601.753 630.647 602.507 629.156 604.017 628.105C605.538 627.053 607.505 626.521 609.917 626.509L613.999 626.509L613.999 625.414C613.999 624.598 613.795 623.955 613.387 623.485C612.979 623.015 612.286 622.78 611.309 622.78C610.331 622.78 609.614 622.977 609.156 623.373C608.699 623.769 608.47 624.295 608.47 624.95L608.47 625.284L602.848 625.266L602.848 624.895C602.848 623.2 603.646 621.821 605.241 620.757C606.849 619.681 608.989 619.143 611.661 619.143C614.358 619.143 616.411 619.656 617.821 620.683C619.244 621.71 619.955 623.342 619.955 625.581L619.955 633.745C619.955 634.488 620.017 635.199 620.141 635.879C620.277 636.547 620.468 637.122 620.716 637.605L620.716 637.883L614.853 637.883C614.692 637.586 614.549 637.221 614.426 636.788C614.314 636.355 614.24 635.916 614.203 635.471C613.795 636.164 613.065 636.788 612.014 637.345C610.975 637.902 609.663 638.18 608.08 638.18C606.2 638.18 604.672 637.71 603.497 636.77C602.334 635.83 601.753 634.432 601.753 632.576ZM607.672 632.113C607.672 632.892 607.895 633.504 608.34 633.949C608.785 634.382 609.465 634.599 610.381 634.599C611.37 634.599 612.218 634.271 612.923 633.615C613.64 632.948 613.999 632.174 613.999 631.296L613.999 629.738L611.364 629.738C610.103 629.738 609.169 629.929 608.562 630.313C607.969 630.696 607.672 631.296 607.672 632.113ZM623.944 637.883L623.944 610.181L629.937 610.181L629.937 637.883L623.944 637.883ZM633.927 637.883L633.927 619.644L639.957 619.644L639.957 637.883L633.927 637.883ZM633.537 613.91C633.537 613.045 633.834 612.315 634.428 611.721C635.021 611.115 635.869 610.812 636.97 610.812C638.058 610.812 638.893 611.109 639.475 611.702C640.056 612.296 640.347 613.032 640.347 613.91C640.347 614.776 640.05 615.512 639.456 616.118C638.862 616.725 638.021 617.028 636.933 617.028C635.832 617.028 634.991 616.725 634.409 616.118C633.828 615.512 633.537 614.776 633.537 613.91ZM643 629.051L643 628.457C643 625.761 643.724 623.559 645.171 621.852C646.618 620.132 648.511 619.273 650.849 619.273C652.123 619.273 653.211 619.489 654.114 619.922C655.017 620.343 655.722 620.906 656.229 621.611L656.229 610.181L662.074 610.181L662.074 637.883L656.396 637.883L656.322 635.527L656.285 635.527C655.815 636.294 655.11 636.943 654.17 637.475C653.23 637.994 652.123 638.254 650.849 638.254C648.424 638.254 646.507 637.394 645.097 635.675C643.699 633.943 643 631.735 643 629.051ZM649.049 629.144C649.049 630.591 649.352 631.766 649.958 632.669C650.564 633.572 651.479 634.024 652.704 634.024C653.545 634.024 654.263 633.789 654.856 633.319C655.45 632.849 655.877 632.292 656.137 631.649L656.137 625.804C655.877 625.161 655.456 624.616 654.875 624.171C654.306 623.726 653.589 623.503 652.723 623.503C651.486 623.503 650.564 623.961 649.958 624.876C649.352 625.779 649.049 626.948 649.049 628.383L649.049 629.144Z"/> +</mask> +<path d="M577.094 610.867L583.532 610.867L589.247 628.624C589.358 628.909 589.445 629.193 589.507 629.478C589.581 629.762 589.655 630.059 589.729 630.368L589.841 630.368C589.915 630.059 589.989 629.756 590.063 629.459C590.15 629.162 590.237 628.884 590.323 628.624L596.094 610.867L602.031 610.867L592.939 637.994L586.186 637.994L577.094 610.867ZM601.753 632.576C601.753 630.647 602.507 629.156 604.017 628.105C605.538 627.053 607.505 626.521 609.917 626.509L613.999 626.509L613.999 625.414C613.999 624.598 613.795 623.955 613.387 623.485C612.979 623.015 612.286 622.78 611.309 622.78C610.331 622.78 609.614 622.977 609.156 623.373C608.699 623.769 608.47 624.295 608.47 624.95L608.47 625.284L602.848 625.266L602.848 624.895C602.848 623.2 603.646 621.821 605.241 620.757C606.849 619.681 608.989 619.143 611.661 619.143C614.358 619.143 616.411 619.656 617.821 620.683C619.244 621.71 619.955 623.342 619.955 625.581L619.955 633.745C619.955 634.488 620.017 635.199 620.141 635.879C620.277 636.547 620.468 637.122 620.716 637.605L620.716 637.883L614.853 637.883C614.692 637.586 614.549 637.221 614.426 636.788C614.314 636.355 614.24 635.916 614.203 635.471C613.795 636.164 613.065 636.788 612.014 637.345C610.975 637.902 609.663 638.18 608.08 638.18C606.2 638.18 604.672 637.71 603.497 636.77C602.334 635.83 601.753 634.432 601.753 632.576ZM607.672 632.113C607.672 632.892 607.895 633.504 608.34 633.949C608.785 634.382 609.465 634.599 610.381 634.599C611.37 634.599 612.218 634.271 612.923 633.615C613.64 632.948 613.999 632.174 613.999 631.296L613.999 629.738L611.364 629.738C610.103 629.738 609.169 629.929 608.562 630.313C607.969 630.696 607.672 631.296 607.672 632.113ZM623.944 637.883L623.944 610.181L629.937 610.181L629.937 637.883L623.944 637.883ZM633.927 637.883L633.927 619.644L639.957 619.644L639.957 637.883L633.927 637.883ZM633.537 613.91C633.537 613.045 633.834 612.315 634.428 611.721C635.021 611.115 635.869 610.812 636.97 610.812C638.058 610.812 638.893 611.109 639.475 611.702C640.056 612.296 640.347 613.032 640.347 613.91C640.347 614.776 640.05 615.512 639.456 616.118C638.862 616.725 638.021 617.028 636.933 617.028C635.832 617.028 634.991 616.725 634.409 616.118C633.828 615.512 633.537 614.776 633.537 613.91ZM643 629.051L643 628.457C643 625.761 643.724 623.559 645.171 621.852C646.618 620.132 648.511 619.273 650.849 619.273C652.123 619.273 653.211 619.489 654.114 619.922C655.017 620.343 655.722 620.906 656.229 621.611L656.229 610.181L662.074 610.181L662.074 637.883L656.396 637.883L656.322 635.527L656.285 635.527C655.815 636.294 655.11 636.943 654.17 637.475C653.23 637.994 652.123 638.254 650.849 638.254C648.424 638.254 646.507 637.394 645.097 635.675C643.699 633.943 643 631.735 643 629.051ZM649.049 629.144C649.049 630.591 649.352 631.766 649.958 632.669C650.564 633.572 651.479 634.024 652.704 634.024C653.545 634.024 654.263 633.789 654.856 633.319C655.45 632.849 655.877 632.292 656.137 631.649L656.137 625.804C655.877 625.161 655.456 624.616 654.875 624.171C654.306 623.726 653.589 623.503 652.723 623.503C651.486 623.503 650.564 623.961 649.958 624.876C649.352 625.779 649.049 626.948 649.049 628.383L649.049 629.144Z" fill="white"/> +<path d="M577.094 610.867L577.094 609.867L575.704 609.867L576.146 611.185L577.094 610.867ZM583.532 610.867L584.484 610.561L584.261 609.867L583.532 609.867L583.532 610.867ZM589.247 628.624L588.295 628.931L588.305 628.96L588.316 628.989L589.247 628.624ZM589.507 629.478L588.53 629.69L588.534 629.71L588.539 629.73L589.507 629.478ZM589.729 630.368L588.757 630.602L588.941 631.368L589.729 631.368L589.729 630.368ZM589.841 630.368L589.841 631.368L590.629 631.368L590.813 630.602L589.841 630.368ZM590.063 629.459L589.103 629.179L589.098 629.198L589.093 629.217L590.063 629.459ZM590.323 628.624L591.272 628.941L591.274 628.933L590.323 628.624ZM596.094 610.867L596.094 609.867L595.367 609.867L595.143 610.558L596.094 610.867ZM602.031 610.867L602.979 611.185L603.421 609.867L602.031 609.867L602.031 610.867ZM592.939 637.994L592.939 638.994L593.659 638.994L593.888 638.312L592.939 637.994ZM586.186 637.994L585.237 638.312L585.466 638.994L586.186 638.994L586.186 637.994ZM577.094 610.867L577.094 611.867L583.532 611.867L583.532 610.867L583.532 609.867L577.094 609.867L577.094 610.867ZM583.532 610.867L582.58 611.174L588.295 628.931L589.247 628.624L590.199 628.318L584.484 610.561L583.532 610.867ZM589.247 628.624L588.316 628.989C588.409 629.226 588.48 629.46 588.53 629.69L589.507 629.478L590.484 629.265C590.41 628.927 590.308 628.591 590.178 628.26L589.247 628.624ZM589.507 629.478L588.539 629.73C588.612 630.008 588.684 630.298 588.757 630.602L589.729 630.368L590.702 630.135C590.626 629.82 590.55 629.517 590.474 629.225L589.507 629.478ZM589.729 630.368L589.729 631.368L589.841 631.368L589.841 630.368L589.841 629.368L589.729 629.368L589.729 630.368ZM589.841 630.368L590.813 630.602C590.887 630.295 590.96 629.995 591.034 629.702L590.063 629.459L589.093 629.217C589.018 629.517 588.943 629.823 588.868 630.135L589.841 630.368ZM590.063 629.459L591.023 629.739C591.107 629.453 591.19 629.187 591.272 628.94L590.323 628.624L589.375 628.308C589.283 628.581 589.193 628.872 589.103 629.179L590.063 629.459ZM590.323 628.624L591.274 628.933L597.045 611.176L596.094 610.867L595.143 610.558L589.372 628.315L590.323 628.624ZM596.094 610.867L596.094 611.867L602.031 611.867L602.031 610.867L602.031 609.867L596.094 609.867L596.094 610.867ZM602.031 610.867L601.083 610.55L591.991 637.677L592.939 637.994L593.888 638.312L602.979 611.185L602.031 610.867ZM592.939 637.994L592.939 636.994L586.186 636.994L586.186 637.994L586.186 638.994L592.939 638.994L592.939 637.994ZM586.186 637.994L587.134 637.677L578.042 610.55L577.094 610.867L576.146 611.185L585.237 638.312L586.186 637.994ZM604.017 628.105L603.448 627.282L603.445 627.284L604.017 628.105ZM609.917 626.509L609.917 625.509L609.912 625.509L609.917 626.509ZM613.999 626.509L613.999 627.509L614.999 627.509L614.999 626.509L613.999 626.509ZM608.47 625.284L608.466 626.284L609.47 626.288L609.47 625.284L608.47 625.284ZM602.848 625.266L601.848 625.266L601.848 626.263L602.844 626.266L602.848 625.266ZM605.241 620.757L605.796 621.589L605.797 621.588L605.241 620.757ZM617.821 620.683L617.233 621.491L617.236 621.494L617.821 620.683ZM620.141 635.879L619.157 636.058L619.159 636.068L619.161 636.079L620.141 635.879ZM620.716 637.605L621.716 637.605L621.716 637.363L621.606 637.148L620.716 637.605ZM620.716 637.883L620.716 638.883L621.716 638.883L621.716 637.883L620.716 637.883ZM614.853 637.883L613.973 638.359L614.257 638.883L614.853 638.883L614.853 637.883ZM614.426 636.788L613.457 637.037L613.461 637.05L613.464 637.063L614.426 636.788ZM614.203 635.471L615.2 635.388L614.938 632.253L613.342 634.963L614.203 635.471ZM612.014 637.345L611.546 636.461L611.541 636.463L612.014 637.345ZM603.497 636.77L602.868 637.547L602.872 637.551L603.497 636.77ZM608.34 633.949L607.633 634.657L607.643 634.666L608.34 633.949ZM612.923 633.615L613.604 634.348L613.604 634.347L612.923 633.615ZM613.999 629.738L614.999 629.738L614.999 628.738L613.999 628.738L613.999 629.738ZM608.562 630.313L608.028 629.468L608.02 629.473L608.562 630.313ZM601.753 632.576L602.753 632.576C602.753 630.955 603.363 629.779 604.588 628.925L604.017 628.105L603.445 627.284C601.652 628.533 600.753 630.339 600.753 632.576L601.753 632.576ZM604.017 628.105L604.585 628.927C605.897 628.021 607.651 627.521 609.922 627.509L609.917 626.509L609.912 625.509C607.359 625.522 605.179 626.086 603.448 627.282L604.017 628.105ZM609.917 626.509L609.917 627.509L613.999 627.509L613.999 626.509L613.999 625.509L609.917 625.509L609.917 626.509ZM613.999 626.509L614.999 626.509L614.999 625.414L613.999 625.414L612.999 625.414L612.999 626.509L613.999 626.509ZM613.999 625.414L614.999 625.414C614.999 624.433 614.752 623.531 614.142 622.829L613.387 623.485L612.632 624.14C612.838 624.378 612.999 624.762 612.999 625.414L613.999 625.414ZM613.387 623.485L614.142 622.829C613.458 622.041 612.412 621.78 611.309 621.78L611.309 622.78L611.309 623.78C612.16 623.78 612.499 623.988 612.632 624.14L613.387 623.485ZM611.309 622.78L611.309 621.78C610.23 621.78 609.224 621.992 608.502 622.617L609.156 623.373L609.81 624.13C610.004 623.963 610.433 623.78 611.309 623.78L611.309 622.78ZM609.156 623.373L608.502 622.617C607.805 623.22 607.47 624.032 607.47 624.95L608.47 624.95L609.47 624.95C609.47 624.558 609.592 624.318 609.81 624.13L609.156 623.373ZM608.47 624.95L607.47 624.95L607.47 625.284L608.47 625.284L609.47 625.284L609.47 624.95L608.47 624.95ZM608.47 625.284L608.473 624.284L602.851 624.266L602.848 625.266L602.844 626.266L608.466 626.284L608.47 625.284ZM602.848 625.266L603.848 625.266L603.848 624.895L602.848 624.895L601.848 624.895L601.848 625.266L602.848 625.266ZM602.848 624.895L603.848 624.895C603.848 623.583 604.436 622.496 605.796 621.589L605.241 620.757L604.687 619.925C602.855 621.146 601.848 622.817 601.848 624.895L602.848 624.895ZM605.241 620.757L605.797 621.588C607.189 620.657 609.114 620.143 611.661 620.143L611.661 619.143L611.661 618.143C608.864 618.143 606.509 618.705 604.685 619.926L605.241 620.757ZM611.661 619.143L611.661 620.143C614.254 620.143 616.064 620.64 617.233 621.491L617.821 620.683L618.41 619.874C616.758 618.672 614.461 618.143 611.661 618.143L611.661 619.143ZM617.821 620.683L617.236 621.494C618.327 622.281 618.955 623.565 618.955 625.581L619.955 625.581L620.955 625.581C620.955 623.12 620.16 621.138 618.407 619.872L617.821 620.683ZM619.955 625.581L618.955 625.581L618.955 633.745L619.955 633.745L620.955 633.745L620.955 625.581L619.955 625.581ZM619.955 633.745L618.955 633.745C618.955 634.543 619.022 635.315 619.157 636.058L620.141 635.879L621.124 635.7C621.012 635.083 620.955 634.432 620.955 633.745L619.955 633.745ZM620.141 635.879L619.161 636.079C619.311 636.814 619.528 637.48 619.826 638.061L620.716 637.605L621.606 637.148C621.409 636.765 621.243 636.28 621.121 635.68L620.141 635.879ZM620.716 637.605L619.716 637.605L619.716 637.883L620.716 637.883L621.716 637.883L621.716 637.605L620.716 637.605ZM620.716 637.883L620.716 636.883L614.853 636.883L614.853 637.883L614.853 638.883L620.716 638.883L620.716 637.883ZM614.853 637.883L615.732 637.407C615.615 637.191 615.497 636.898 615.387 636.514L614.426 636.788L613.464 637.063C613.602 637.544 613.768 637.981 613.973 638.359L614.853 637.883ZM614.426 636.788L615.394 636.539C615.297 636.161 615.232 635.777 615.2 635.388L614.203 635.471L613.207 635.554C613.248 636.055 613.332 636.55 613.457 637.037L614.426 636.788ZM614.203 635.471L613.342 634.963C613.062 635.438 612.507 635.952 611.546 636.461L612.014 637.345L612.482 638.229C613.623 637.624 614.528 636.89 615.065 635.979L614.203 635.471ZM612.014 637.345L611.541 636.463C610.689 636.92 609.553 637.18 608.08 637.18L608.08 638.18L608.08 639.18C609.774 639.18 611.26 638.883 612.486 638.226L612.014 637.345ZM608.08 638.18L608.08 637.18C606.369 637.18 605.079 636.755 604.122 635.989L603.497 636.77L602.872 637.551C604.265 638.665 606.031 639.18 608.08 639.18L608.08 638.18ZM603.497 636.77L604.126 635.992C603.254 635.287 602.753 634.21 602.753 632.576L601.753 632.576L600.753 632.576C600.753 634.654 601.415 636.372 602.868 637.547L603.497 636.77ZM607.672 632.113L606.672 632.113C606.672 633.09 606.957 633.981 607.633 634.657L608.34 633.949L609.047 633.242C608.832 633.027 608.672 632.693 608.672 632.113L607.672 632.113ZM608.34 633.949L607.643 634.666C608.347 635.351 609.327 635.599 610.381 635.599L610.381 634.599L610.381 633.599C609.604 633.599 609.223 633.414 609.037 633.232L608.34 633.949ZM610.381 634.599L610.381 635.599C611.615 635.599 612.708 635.181 613.604 634.348L612.923 633.615L612.242 632.883C611.727 633.361 611.126 633.599 610.381 633.599L610.381 634.599ZM612.923 633.615L613.604 634.347C614.499 633.515 614.999 632.486 614.999 631.296L613.999 631.296L612.999 631.296C612.999 631.863 612.782 632.38 612.241 632.884L612.923 633.615ZM613.999 631.296L614.999 631.296L614.999 629.738L613.999 629.738L612.999 629.738L612.999 631.296L613.999 631.296ZM613.999 629.738L613.999 628.738L611.364 628.738L611.364 629.738L611.364 630.738L613.999 630.738L613.999 629.738ZM611.364 629.738L611.364 628.738C610.039 628.738 608.874 628.932 608.028 629.468L608.562 630.313L609.097 631.158C609.463 630.926 610.166 630.738 611.364 630.738L611.364 629.738ZM608.562 630.313L608.02 629.473C607.093 630.071 606.672 631.018 606.672 632.113L607.672 632.113L608.672 632.113C608.672 631.574 608.845 631.321 609.105 631.153L608.562 630.313ZM623.944 637.883L622.944 637.883L622.944 638.883L623.944 638.883L623.944 637.883ZM623.944 610.181L623.944 609.181L622.944 609.181L622.944 610.181L623.944 610.181ZM629.937 610.181L630.937 610.181L630.937 609.181L629.937 609.181L629.937 610.181ZM629.937 637.883L629.937 638.883L630.937 638.883L630.937 637.883L629.937 637.883ZM623.944 637.883L624.944 637.883L624.944 610.181L623.944 610.181L622.944 610.181L622.944 637.883L623.944 637.883ZM623.944 610.181L623.944 611.181L629.937 611.181L629.937 610.181L629.937 609.181L623.944 609.181L623.944 610.181ZM629.937 610.181L628.937 610.181L628.937 637.883L629.937 637.883L630.937 637.883L630.937 610.181L629.937 610.181ZM629.937 637.883L629.937 636.883L623.944 636.883L623.944 637.883L623.944 638.883L629.937 638.883L629.937 637.883ZM633.927 637.883L632.927 637.883L632.927 638.883L633.927 638.883L633.927 637.883ZM633.927 619.644L633.927 618.644L632.927 618.644L632.927 619.644L633.927 619.644ZM639.957 619.644L640.957 619.644L640.957 618.644L639.957 618.644L639.957 619.644ZM639.957 637.883L639.957 638.883L640.957 638.883L640.957 637.883L639.957 637.883ZM634.428 611.721L635.135 612.428L635.142 612.421L634.428 611.721ZM639.475 611.702L640.189 611.003L639.475 611.702ZM633.927 637.883L634.927 637.883L634.927 619.644L633.927 619.644L632.927 619.644L632.927 637.883L633.927 637.883ZM633.927 619.644L633.927 620.644L639.957 620.644L639.957 619.644L639.957 618.644L633.927 618.644L633.927 619.644ZM639.957 619.644L638.957 619.644L638.957 637.883L639.957 637.883L640.957 637.883L640.957 619.644L639.957 619.644ZM639.957 637.883L639.957 636.883L633.927 636.883L633.927 637.883L633.927 638.883L639.957 638.883L639.957 637.883ZM633.537 613.91L634.537 613.91C634.537 613.3 634.735 612.828 635.135 612.428L634.428 611.721L633.721 611.014C632.933 611.802 632.537 612.789 632.537 613.91L633.537 613.91ZM634.428 611.721L635.142 612.421C635.496 612.059 636.054 611.812 636.97 611.812L636.97 610.812L636.97 609.812C635.684 609.812 634.547 610.171 633.713 611.021L634.428 611.721ZM636.97 610.812L636.97 611.812C637.876 611.812 638.42 612.055 638.76 612.402L639.475 611.702L640.189 611.003C639.366 610.163 638.24 609.812 636.97 609.812L636.97 610.812ZM639.475 611.702L638.76 612.402C639.147 612.797 639.347 613.277 639.347 613.91L640.347 613.91L641.347 613.91C641.347 612.787 640.965 611.795 640.189 611.003L639.475 611.702ZM640.347 613.91L639.347 613.91C639.347 614.521 639.148 615.004 638.742 615.419L639.456 616.118L640.17 616.818C640.951 616.021 641.347 615.032 641.347 613.91L640.347 613.91ZM639.456 616.118L638.742 615.419C638.385 615.782 637.832 616.028 636.933 616.028L636.933 617.028L636.933 618.028C638.21 618.028 639.339 617.667 640.17 616.818L639.456 616.118ZM636.933 617.028L636.933 616.028C636.016 616.028 635.47 615.78 635.131 615.426L634.409 616.118L633.687 616.811C634.511 617.669 635.648 618.028 636.933 618.028L636.933 617.028ZM634.409 616.118L635.131 615.426C634.734 615.013 634.537 614.527 634.537 613.91L633.537 613.91L632.537 613.91C632.537 615.025 632.921 616.012 633.687 616.811L634.409 616.118ZM645.171 621.852L645.934 622.498L645.936 622.496L645.171 621.852ZM654.114 619.922L653.682 620.824L653.692 620.829L654.114 619.922ZM656.229 621.611L655.418 622.195L657.229 624.713L657.229 621.611L656.229 621.611ZM656.229 610.181L656.229 609.181L655.229 609.181L655.229 610.181L656.229 610.181ZM662.074 610.181L663.074 610.181L663.074 609.181L662.074 609.181L662.074 610.181ZM662.074 637.883L662.074 638.883L663.074 638.883L663.074 637.883L662.074 637.883ZM656.396 637.883L655.397 637.915L655.427 638.883L656.396 638.883L656.396 637.883ZM656.322 635.527L657.322 635.495L657.291 634.527L656.322 634.527L656.322 635.527ZM656.285 635.527L656.285 634.527L655.725 634.527L655.433 635.004L656.285 635.527ZM654.17 637.475L654.654 638.35L654.662 638.345L654.17 637.475ZM645.097 635.675L644.319 636.303L644.323 636.309L645.097 635.675ZM649.958 632.669L649.128 633.227L649.958 632.669ZM654.856 633.319L654.236 632.535L654.856 633.319ZM656.137 631.649L657.064 632.023L657.137 631.843L657.137 631.649L656.137 631.649ZM656.137 625.804L657.137 625.804L657.137 625.61L657.064 625.429L656.137 625.804ZM654.875 624.171L654.259 624.959L654.267 624.965L654.875 624.171ZM649.958 624.876L650.788 625.434L650.792 625.428L649.958 624.876ZM643 629.051L644 629.051L644 628.457L643 628.457L642 628.457L642 629.051L643 629.051ZM643 628.457L644 628.457C644 625.947 644.669 623.99 645.934 622.498L645.171 621.852L644.408 621.205C642.778 623.128 642 625.574 642 628.457L643 628.457ZM645.171 621.852L645.936 622.496C647.185 621.012 648.792 620.273 650.849 620.273L650.849 619.273L650.849 618.273C648.229 618.273 646.052 619.252 644.406 621.208L645.171 621.852ZM650.849 619.273L650.849 620.273C652.013 620.273 652.945 620.471 653.682 620.824L654.114 619.922L654.547 619.02C653.477 618.508 652.233 618.273 650.849 618.273L650.849 619.273ZM654.114 619.922L653.692 620.829C654.463 621.188 655.025 621.648 655.418 622.195L656.229 621.611L657.041 621.027C656.42 620.163 655.572 619.498 654.536 619.016L654.114 619.922ZM656.229 621.611L657.229 621.611L657.229 610.181L656.229 610.181L655.229 610.181L655.229 621.611L656.229 621.611ZM656.229 610.181L656.229 611.181L662.074 611.181L662.074 610.181L662.074 609.181L656.229 609.181L656.229 610.181ZM662.074 610.181L661.074 610.181L661.074 637.883L662.074 637.883L663.074 637.883L663.074 610.181L662.074 610.181ZM662.074 637.883L662.074 636.883L656.396 636.883L656.396 637.883L656.396 638.883L662.074 638.883L662.074 637.883ZM656.396 637.883L657.396 637.852L657.322 635.495L656.322 635.527L655.323 635.558L655.397 637.915L656.396 637.883ZM656.322 635.527L656.322 634.527L656.285 634.527L656.285 635.527L656.285 636.527L656.322 636.527L656.322 635.527ZM656.285 635.527L655.433 635.004C655.067 635.6 654.5 636.139 653.677 636.605L654.17 637.475L654.662 638.345C655.721 637.747 656.563 636.987 657.138 636.049L656.285 635.527ZM654.17 637.475L653.686 636.6C652.92 637.023 651.985 637.254 650.849 637.254L650.849 638.254L650.849 639.254C652.26 639.254 653.54 638.965 654.654 638.35L654.17 637.475ZM650.849 638.254L650.849 637.254C648.693 637.254 647.071 636.506 645.87 635.041L645.097 635.675L644.323 636.309C645.942 638.283 648.155 639.254 650.849 639.254L650.849 638.254ZM645.097 635.675L645.875 635.047C644.649 633.528 644 631.556 644 629.051L643 629.051L642 629.051C642 631.915 642.749 634.359 644.319 636.303L645.097 635.675ZM649.049 629.144L648.049 629.144C648.049 630.725 648.38 632.112 649.128 633.227L649.958 632.669L650.788 632.112C650.324 631.42 650.049 630.457 650.049 629.144L649.049 629.144ZM649.958 632.669L649.128 633.227C649.945 634.445 651.195 635.024 652.704 635.024L652.704 634.024L652.704 633.024C651.764 633.024 651.183 632.7 650.788 632.112L649.958 632.669ZM652.704 634.024L652.704 635.024C653.744 635.024 654.687 634.728 655.477 634.103L654.856 633.319L654.236 632.535C653.838 632.849 653.346 633.024 652.704 633.024L652.704 634.024ZM654.856 633.319L655.477 634.103C656.194 633.535 656.733 632.842 657.064 632.023L656.137 631.649L655.209 631.274C655.021 631.742 654.706 632.162 654.236 632.535L654.856 633.319ZM656.137 631.649L657.137 631.649L657.137 625.804L656.137 625.804L655.137 625.804L655.137 631.649L656.137 631.649ZM656.137 625.804L657.064 625.429C656.733 624.611 656.198 623.925 655.483 623.377L654.875 624.171L654.267 624.965C654.715 625.308 655.02 625.71 655.209 626.178L656.137 625.804ZM654.875 624.171L655.491 623.384C654.713 622.775 653.766 622.503 652.723 622.503L652.723 623.503L652.723 624.503C653.411 624.503 653.899 624.677 654.259 624.959L654.875 624.171ZM652.723 623.503L652.723 622.503C651.2 622.503 649.941 623.09 649.124 624.324L649.958 624.876L650.792 625.428C651.187 624.832 651.771 624.503 652.723 624.503L652.723 623.503ZM649.958 624.876L649.128 624.319C648.381 625.432 648.049 626.812 648.049 628.383L649.049 628.383L650.049 628.383C650.049 627.084 650.323 626.127 650.788 625.434L649.958 624.876ZM649.049 628.383L648.049 628.383L648.049 629.144L649.049 629.144L650.049 629.144L650.049 628.383L649.049 628.383Z" fill="black" mask="url(#path-9-outside-3_17007_6863)"/> +<mask id="path-11-outside-4_17007_6863" maskUnits="userSpaceOnUse" x="577.339" y="669.25" width="110" height="37" fill="black"> +<rect fill="white" x="577.339" y="669.25" width="110" height="37"/> +<path d="M578.601 691.651L578.601 682.231C578.601 678.782 579.533 676.07 581.397 674.093C583.262 672.116 585.876 671.128 589.241 671.128C592.605 671.128 595.227 672.109 597.105 674.072C598.984 676.02 599.923 678.74 599.923 682.231L599.923 691.651C599.923 695.184 598.956 697.925 597.021 699.874C595.087 701.808 592.493 702.768 589.241 702.754C585.862 702.754 583.241 701.787 581.376 699.853C579.526 697.904 578.601 695.17 578.601 691.651ZM585.666 692.787C585.666 694.343 585.953 695.57 586.528 696.467C587.117 697.35 588.028 697.792 589.262 697.792C590.496 697.792 591.4 697.35 591.975 696.467C592.563 695.57 592.858 694.343 592.858 692.787L592.858 681.2C592.858 679.616 592.563 678.383 591.975 677.499C591.4 676.602 590.496 676.154 589.262 676.154C588.028 676.154 587.117 676.602 586.528 677.499C585.953 678.383 585.666 679.616 585.666 681.2L585.666 692.787ZM602.194 689.591L602.194 688.35C602.194 683.079 603.694 678.915 606.694 675.859C609.694 672.789 613.998 671.254 619.606 671.254L620.888 671.254L620.888 676.784L619.774 676.784C616.325 676.784 613.655 677.717 611.762 679.581C609.884 681.432 608.944 684.67 608.944 689.296L609.134 689.969C609.134 693.081 609.519 695.177 610.29 696.257C611.075 697.322 612.106 697.855 613.381 697.855C614.629 697.855 615.582 697.427 616.241 696.572C616.914 695.703 617.251 694.189 617.251 692.03C617.251 690.306 616.928 688.988 616.283 688.077C615.638 687.151 614.664 686.689 613.36 686.689C612.169 686.689 611.159 687.144 610.332 688.056C609.519 688.953 609.113 690.144 609.113 691.63L607.536 691.63C607.536 688.827 608.3 686.577 609.828 684.88C611.356 683.17 613.304 682.315 615.673 682.315C618.323 682.315 620.419 683.184 621.961 684.922C623.503 686.647 624.274 689.044 624.274 692.114C624.274 695.366 623.272 697.953 621.267 699.874C619.262 701.794 616.627 702.754 613.36 702.754C610.01 702.754 607.311 701.71 605.264 699.621C603.218 697.532 602.194 694.189 602.194 689.591ZM622.907 704.878L634.767 671.633L640.634 671.633L628.753 704.878L622.907 704.878ZM639.877 689.591L639.877 688.35C639.877 683.079 641.377 678.915 644.377 675.859C647.377 672.789 651.681 671.254 657.288 671.254L658.571 671.254L658.571 676.784L657.457 676.784C654.008 676.784 651.337 677.717 649.445 679.581C647.566 681.432 646.627 684.67 646.627 689.296L646.816 689.969C646.816 693.081 647.202 695.177 647.973 696.257C648.758 697.322 649.788 697.855 651.064 697.855C652.312 697.855 653.265 697.427 653.924 696.572C654.597 695.703 654.933 694.189 654.933 692.03C654.933 690.306 654.611 688.988 653.966 688.077C653.321 687.151 652.347 686.689 651.043 686.689C649.851 686.689 648.842 687.144 648.015 688.056C647.202 688.953 646.795 690.144 646.795 691.63L645.218 691.63C645.218 688.827 645.982 686.577 647.51 684.88C649.038 683.17 650.987 682.315 653.356 682.315C656.006 682.315 658.102 683.184 659.644 684.922C661.186 686.647 661.957 689.044 661.957 692.114C661.957 695.366 660.954 697.953 658.95 699.874C656.945 701.794 654.309 702.754 651.043 702.754C647.693 702.754 644.994 701.71 642.947 699.621C640.9 697.532 639.877 694.189 639.877 689.591ZM663.513 681.726C663.513 678.488 664.515 675.915 666.52 674.009C668.539 672.088 671.181 671.128 674.448 671.128C677.784 671.128 680.476 672.172 682.522 674.261C684.583 676.35 685.614 679.693 685.614 684.292L685.614 685.532C685.614 690.719 684.114 694.834 681.114 697.876C678.113 700.904 673.81 702.439 668.202 702.481L666.898 702.481L666.898 697.035L668.034 697.035C671.469 697.035 674.118 696.109 675.983 694.259C677.861 692.409 678.8 689.212 678.8 684.67L678.674 683.913C678.674 680.927 678.296 678.88 677.539 677.773C676.782 676.665 675.73 676.112 674.384 676.112C673.151 676.112 672.198 676.539 671.525 677.394C670.866 678.235 670.536 679.707 670.536 681.81C670.536 683.605 670.859 684.943 671.504 685.827C672.148 686.71 673.116 687.151 674.405 687.151C675.625 687.151 676.642 686.717 677.455 685.848C678.282 684.964 678.695 683.78 678.695 682.294L680.167 682.294C680.167 685 679.431 687.215 677.959 688.939C676.501 690.663 674.56 691.525 672.134 691.525C669.485 691.525 667.382 690.656 665.826 688.918C664.284 687.179 663.513 684.782 663.513 681.726Z"/> +</mask> +<path d="M578.601 691.651L578.601 682.231C578.601 678.782 579.533 676.07 581.397 674.093C583.262 672.116 585.876 671.128 589.241 671.128C592.605 671.128 595.227 672.109 597.105 674.072C598.984 676.02 599.923 678.74 599.923 682.231L599.923 691.651C599.923 695.184 598.956 697.925 597.021 699.874C595.087 701.808 592.493 702.768 589.241 702.754C585.862 702.754 583.241 701.787 581.376 699.853C579.526 697.904 578.601 695.17 578.601 691.651ZM585.666 692.787C585.666 694.343 585.953 695.57 586.528 696.467C587.117 697.35 588.028 697.792 589.262 697.792C590.496 697.792 591.4 697.35 591.975 696.467C592.563 695.57 592.858 694.343 592.858 692.787L592.858 681.2C592.858 679.616 592.563 678.383 591.975 677.499C591.4 676.602 590.496 676.154 589.262 676.154C588.028 676.154 587.117 676.602 586.528 677.499C585.953 678.383 585.666 679.616 585.666 681.2L585.666 692.787ZM602.194 689.591L602.194 688.35C602.194 683.079 603.694 678.915 606.694 675.859C609.694 672.789 613.998 671.254 619.606 671.254L620.888 671.254L620.888 676.784L619.774 676.784C616.325 676.784 613.655 677.717 611.762 679.581C609.884 681.432 608.944 684.67 608.944 689.296L609.134 689.969C609.134 693.081 609.519 695.177 610.29 696.257C611.075 697.322 612.106 697.855 613.381 697.855C614.629 697.855 615.582 697.427 616.241 696.572C616.914 695.703 617.251 694.189 617.251 692.03C617.251 690.306 616.928 688.988 616.283 688.077C615.638 687.151 614.664 686.689 613.36 686.689C612.169 686.689 611.159 687.144 610.332 688.056C609.519 688.953 609.113 690.144 609.113 691.63L607.536 691.63C607.536 688.827 608.3 686.577 609.828 684.88C611.356 683.17 613.304 682.315 615.673 682.315C618.323 682.315 620.419 683.184 621.961 684.922C623.503 686.647 624.274 689.044 624.274 692.114C624.274 695.366 623.272 697.953 621.267 699.874C619.262 701.794 616.627 702.754 613.36 702.754C610.01 702.754 607.311 701.71 605.264 699.621C603.218 697.532 602.194 694.189 602.194 689.591ZM622.907 704.878L634.767 671.633L640.634 671.633L628.753 704.878L622.907 704.878ZM639.877 689.591L639.877 688.35C639.877 683.079 641.377 678.915 644.377 675.859C647.377 672.789 651.681 671.254 657.288 671.254L658.571 671.254L658.571 676.784L657.457 676.784C654.008 676.784 651.337 677.717 649.445 679.581C647.566 681.432 646.627 684.67 646.627 689.296L646.816 689.969C646.816 693.081 647.202 695.177 647.973 696.257C648.758 697.322 649.788 697.855 651.064 697.855C652.312 697.855 653.265 697.427 653.924 696.572C654.597 695.703 654.933 694.189 654.933 692.03C654.933 690.306 654.611 688.988 653.966 688.077C653.321 687.151 652.347 686.689 651.043 686.689C649.851 686.689 648.842 687.144 648.015 688.056C647.202 688.953 646.795 690.144 646.795 691.63L645.218 691.63C645.218 688.827 645.982 686.577 647.51 684.88C649.038 683.17 650.987 682.315 653.356 682.315C656.006 682.315 658.102 683.184 659.644 684.922C661.186 686.647 661.957 689.044 661.957 692.114C661.957 695.366 660.954 697.953 658.95 699.874C656.945 701.794 654.309 702.754 651.043 702.754C647.693 702.754 644.994 701.71 642.947 699.621C640.9 697.532 639.877 694.189 639.877 689.591ZM663.513 681.726C663.513 678.488 664.515 675.915 666.52 674.009C668.539 672.088 671.181 671.128 674.448 671.128C677.784 671.128 680.476 672.172 682.522 674.261C684.583 676.35 685.614 679.693 685.614 684.292L685.614 685.532C685.614 690.719 684.114 694.834 681.114 697.876C678.113 700.904 673.81 702.439 668.202 702.481L666.898 702.481L666.898 697.035L668.034 697.035C671.469 697.035 674.118 696.109 675.983 694.259C677.861 692.409 678.8 689.212 678.8 684.67L678.674 683.913C678.674 680.927 678.296 678.88 677.539 677.773C676.782 676.665 675.73 676.112 674.384 676.112C673.151 676.112 672.198 676.539 671.525 677.394C670.866 678.235 670.536 679.707 670.536 681.81C670.536 683.605 670.859 684.943 671.504 685.827C672.148 686.71 673.116 687.151 674.405 687.151C675.625 687.151 676.642 686.717 677.455 685.848C678.282 684.964 678.695 683.78 678.695 682.294L680.167 682.294C680.167 685 679.431 687.215 677.959 688.939C676.501 690.663 674.56 691.525 672.134 691.525C669.485 691.525 667.382 690.656 665.826 688.918C664.284 687.179 663.513 684.782 663.513 681.726Z" fill="white"/> +<path d="M597.105 674.072L596.383 674.763L596.386 674.766L597.105 674.072ZM597.021 699.874L597.728 700.581L597.731 700.578L597.021 699.874ZM589.241 702.754L589.245 701.754L589.241 701.754L589.241 702.754ZM581.376 699.853L580.651 700.541L580.656 700.546L581.376 699.853ZM586.528 696.467L585.686 697.006L585.691 697.014L585.696 697.022L586.528 696.467ZM591.975 696.467L591.139 695.918L591.136 695.922L591.975 696.467ZM591.975 677.499L591.133 678.039L591.137 678.047L591.143 678.054L591.975 677.499ZM586.528 677.499L585.692 676.951L585.69 676.954L586.528 677.499ZM578.601 691.651L579.601 691.651L579.601 682.231L578.601 682.231L577.601 682.231L577.601 691.651L578.601 691.651ZM578.601 682.231L579.601 682.231C579.601 678.966 580.479 676.524 582.125 674.779L581.397 674.093L580.67 673.407C578.587 675.615 577.601 678.599 577.601 682.231L578.601 682.231ZM581.397 674.093L582.125 674.779C583.757 673.049 586.082 672.128 589.241 672.128L589.241 671.128L589.241 670.128C585.671 670.128 582.767 671.184 580.67 673.407L581.397 674.093ZM589.241 671.128L589.241 672.128C592.402 672.128 594.736 673.043 596.383 674.763L597.105 674.072L597.828 673.38C595.718 671.176 592.809 670.128 589.241 670.128L589.241 671.128ZM597.105 674.072L596.386 674.766C598.037 676.479 598.923 678.921 598.923 682.231L599.923 682.231L600.923 682.231C600.923 678.559 599.931 675.562 597.825 673.378L597.105 674.072ZM599.923 682.231L598.923 682.231L598.923 691.651L599.923 691.651L600.923 691.651L600.923 682.231L599.923 682.231ZM599.923 691.651L598.923 691.651C598.923 694.999 598.011 697.457 596.312 699.169L597.021 699.874L597.731 700.578C599.901 698.393 600.923 695.369 600.923 691.651L599.923 691.651ZM597.021 699.874L596.314 699.166C594.603 700.877 592.285 701.768 589.245 701.754L589.241 702.754L589.237 703.754C592.702 703.769 595.57 702.739 597.728 700.581L597.021 699.874ZM589.241 702.754L589.241 701.754C586.06 701.754 583.726 700.85 582.096 699.159L581.376 699.853L580.656 700.546C582.755 702.724 585.665 703.754 589.241 703.754L589.241 702.754ZM581.376 699.853L582.101 699.164C580.477 697.453 579.601 694.996 579.601 691.651L578.601 691.651L577.601 691.651C577.601 695.345 578.575 698.355 580.651 700.541L581.376 699.853ZM585.666 692.787L584.666 692.787C584.666 694.451 584.971 695.89 585.686 697.006L586.528 696.467L587.37 695.928C586.936 695.249 586.666 694.235 586.666 692.787L585.666 692.787ZM586.528 696.467L585.696 697.022C586.503 698.232 587.757 698.792 589.262 698.792L589.262 697.792L589.262 696.792C588.3 696.792 587.731 696.469 587.36 695.912L586.528 696.467ZM589.262 697.792L589.262 698.792C590.767 698.792 592.02 698.231 592.813 697.012L591.975 696.467L591.136 695.922C590.78 696.469 590.224 696.792 589.262 696.792L589.262 697.792ZM591.975 696.467L592.811 697.016C593.544 695.898 593.858 694.455 593.858 692.787L592.858 692.787L591.858 692.787C591.858 694.231 591.582 695.242 591.139 695.918L591.975 696.467ZM592.858 692.787L593.858 692.787L593.858 681.2L592.858 681.2L591.858 681.2L591.858 692.787L592.858 692.787ZM592.858 681.2L593.858 681.2C593.858 679.51 593.547 678.055 592.807 676.945L591.975 677.499L591.143 678.054C591.58 678.711 591.858 679.722 591.858 681.2L592.858 681.2ZM591.975 677.499L592.817 676.96C592.026 675.727 590.773 675.154 589.262 675.154L589.262 676.154L589.262 677.154C590.218 677.154 590.773 677.478 591.133 678.039L591.975 677.499ZM589.262 676.154L589.262 675.154C587.75 675.154 586.496 675.726 585.692 676.951L586.528 677.499L587.364 678.048C587.738 677.478 588.306 677.154 589.262 677.154L589.262 676.154ZM586.528 677.499L585.69 676.954C584.969 678.062 584.666 679.514 584.666 681.2L585.666 681.2L586.666 681.2C586.666 679.719 586.938 678.703 587.366 678.045L586.528 677.499ZM585.666 681.2L584.666 681.2L584.666 692.787L585.666 692.787L586.666 692.787L586.666 681.2L585.666 681.2ZM606.694 675.859L607.408 676.56L607.41 676.558L606.694 675.859ZM620.888 671.254L621.888 671.254L621.888 670.254L620.888 670.254L620.888 671.254ZM620.888 676.784L620.888 677.784L621.888 677.784L621.888 676.784L620.888 676.784ZM611.762 679.581L612.464 680.294L612.464 680.294L611.762 679.581ZM608.944 689.296L607.944 689.296L607.944 689.434L607.982 689.567L608.944 689.296ZM609.134 689.969L610.134 689.969L610.134 689.831L610.096 689.698L609.134 689.969ZM610.29 696.257L609.476 696.838L609.481 696.844L609.485 696.85L610.29 696.257ZM616.241 696.572L615.45 695.96L615.449 695.962L616.241 696.572ZM616.283 688.077L615.463 688.648L615.467 688.654L616.283 688.077ZM610.332 688.056L609.592 687.384L609.591 687.384L610.332 688.056ZM609.113 691.63L609.113 692.63L610.113 692.63L610.113 691.63L609.113 691.63ZM607.536 691.63L606.536 691.63L606.536 692.63L607.536 692.63L607.536 691.63ZM609.828 684.88L610.571 685.55L610.573 685.547L609.828 684.88ZM621.961 684.922L621.213 685.586L621.216 685.589L621.961 684.922ZM602.194 689.591L603.194 689.591L603.194 688.35L602.194 688.35L601.194 688.35L601.194 689.591L602.194 689.591ZM602.194 688.35L603.194 688.35C603.194 683.277 604.632 679.388 607.408 676.56L606.694 675.859L605.981 675.159C602.757 678.443 601.194 682.881 601.194 688.35L602.194 688.35ZM606.694 675.859L607.41 676.558C610.169 673.734 614.181 672.254 619.606 672.254L619.606 671.254L619.606 670.254C613.815 670.254 609.22 671.844 605.979 675.16L606.694 675.859ZM619.606 671.254L619.606 672.254L620.888 672.254L620.888 671.254L620.888 670.254L619.606 670.254L619.606 671.254ZM620.888 671.254L619.888 671.254L619.888 676.784L620.888 676.784L621.888 676.784L621.888 671.254L620.888 671.254ZM620.888 676.784L620.888 675.784L619.774 675.784L619.774 676.784L619.774 677.784L620.888 677.784L620.888 676.784ZM619.774 676.784L619.774 675.784C616.144 675.784 613.191 676.77 611.06 678.869L611.762 679.581L612.464 680.294C614.118 678.664 616.507 677.784 619.774 677.784L619.774 676.784ZM611.762 679.581L611.06 678.869C608.89 681.007 607.944 684.589 607.944 689.296L608.944 689.296L609.944 689.296C609.944 684.751 610.878 681.856 612.464 680.294L611.762 679.581ZM608.944 689.296L607.982 689.567L608.171 690.24L609.134 689.969L610.096 689.698L609.907 689.026L608.944 689.296ZM609.134 689.969L608.134 689.969C608.134 691.561 608.232 692.928 608.439 694.056C608.644 695.171 608.969 696.128 609.476 696.838L610.29 696.257L611.104 695.675C610.84 695.306 610.587 694.676 610.406 693.694C610.228 692.726 610.134 691.49 610.134 689.969L609.134 689.969ZM610.29 696.257L609.485 696.85C610.45 698.16 611.774 698.855 613.381 698.855L613.381 697.855L613.381 696.855C612.437 696.855 611.7 696.484 611.095 695.663L610.29 696.257ZM613.381 697.855L613.381 698.855C614.885 698.855 616.154 698.324 617.033 697.182L616.241 696.572L615.449 695.962C615.011 696.531 614.374 696.855 613.381 696.855L613.381 697.855ZM616.241 696.572L617.032 697.184C617.92 696.037 618.251 694.23 618.251 692.03L617.251 692.03L616.251 692.03C616.251 694.148 615.908 695.369 615.45 695.96L616.241 696.572ZM617.251 692.03L618.251 692.03C618.251 690.204 617.913 688.648 617.1 687.499L616.283 688.077L615.467 688.654C615.943 689.327 616.251 690.407 616.251 692.03L617.251 692.03ZM616.283 688.077L617.104 687.505C616.241 686.266 614.932 685.689 613.36 685.689L613.36 686.689L613.36 687.689C614.396 687.689 615.036 688.036 615.463 688.648L616.283 688.077ZM613.36 686.689L613.36 685.689C611.876 685.689 610.601 686.271 609.592 687.384L610.332 688.056L611.073 688.728C611.717 688.018 612.461 687.689 613.36 687.689L613.36 686.689ZM610.332 688.056L609.591 687.384C608.576 688.505 608.113 689.955 608.113 691.63L609.113 691.63L610.113 691.63C610.113 690.334 610.463 689.401 611.073 688.727L610.332 688.056ZM609.113 691.63L609.113 690.63L607.536 690.63L607.536 691.63L607.536 692.63L609.113 692.63L609.113 691.63ZM607.536 691.63L608.536 691.63C608.536 689.015 609.244 687.023 610.571 685.55L609.828 684.88L609.085 684.211C607.355 686.131 606.536 688.638 606.536 691.63L607.536 691.63ZM609.828 684.88L610.573 685.547C611.905 684.057 613.578 683.315 615.673 683.315L615.673 682.315L615.673 681.315C613.03 681.315 610.807 682.284 609.082 684.214L609.828 684.88ZM615.673 682.315L615.673 683.315C618.081 683.315 619.888 684.093 621.213 685.586L621.961 684.922L622.709 684.259C620.95 682.275 618.565 681.315 615.673 681.315L615.673 682.315ZM621.961 684.922L621.216 685.589C622.546 687.077 623.274 689.208 623.274 692.114L624.274 692.114L625.274 692.114C625.274 688.88 624.46 686.217 622.706 684.256L621.961 684.922ZM624.274 692.114L623.274 692.114C623.274 695.145 622.349 697.452 620.575 699.151L621.267 699.874L621.959 700.596C624.194 698.454 625.274 695.588 625.274 692.114L624.274 692.114ZM621.267 699.874L620.575 699.151C618.789 700.863 616.418 701.754 613.36 701.754L613.36 702.754L613.36 703.754C616.836 703.754 619.736 702.726 621.959 700.596L621.267 699.874ZM613.36 702.754L613.36 701.754C610.236 701.754 607.809 700.79 605.979 698.921L605.264 699.621L604.55 700.321C606.813 702.63 609.784 703.754 613.36 703.754L613.36 702.754ZM605.264 699.621L605.979 698.921C604.196 697.102 603.194 694.072 603.194 689.591L602.194 689.591L601.194 689.591C601.194 694.306 602.239 697.963 604.55 700.321L605.264 699.621ZM622.907 704.878L621.965 704.542L621.489 705.878L622.907 705.878L622.907 704.878ZM634.767 671.633L634.767 670.633L634.062 670.633L633.825 671.297L634.767 671.633ZM640.634 671.633L641.576 671.969L642.053 670.633L640.634 670.633L640.634 671.633ZM628.753 704.878L628.753 705.878L629.458 705.878L629.695 705.215L628.753 704.878ZM622.907 704.878L623.849 705.214L635.709 671.969L634.767 671.633L633.825 671.297L621.965 704.542L622.907 704.878ZM634.767 671.633L634.767 672.633L640.634 672.633L640.634 671.633L640.634 670.633L634.767 670.633L634.767 671.633ZM640.634 671.633L639.692 671.296L627.811 704.542L628.753 704.878L629.695 705.215L641.576 671.969L640.634 671.633ZM628.753 704.878L628.753 703.878L622.907 703.878L622.907 704.878L622.907 705.878L628.753 705.878L628.753 704.878ZM644.377 675.859L645.091 676.56L645.092 676.558L644.377 675.859ZM658.571 671.254L659.571 671.254L659.571 670.254L658.571 670.254L658.571 671.254ZM658.571 676.784L658.571 677.784L659.571 677.784L659.571 676.784L658.571 676.784ZM649.445 679.581L650.147 680.294L650.147 680.294L649.445 679.581ZM646.627 689.296L645.627 689.296L645.627 689.434L645.664 689.567L646.627 689.296ZM646.816 689.969L647.816 689.969L647.816 689.831L647.779 689.698L646.816 689.969ZM647.973 696.257L647.159 696.838L647.163 696.844L647.168 696.85L647.973 696.257ZM653.924 696.572L653.133 695.96L653.132 695.962L653.924 696.572ZM653.966 688.077L653.146 688.648L653.15 688.654L653.966 688.077ZM648.015 688.056L647.275 687.384L647.274 687.384L648.015 688.056ZM646.795 691.63L646.795 692.63L647.795 692.63L647.795 691.63L646.795 691.63ZM645.218 691.63L644.218 691.63L644.218 692.63L645.218 692.63L645.218 691.63ZM647.51 684.88L648.253 685.55L648.256 685.547L647.51 684.88ZM659.644 684.922L658.896 685.586L658.898 685.589L659.644 684.922ZM639.877 689.591L640.877 689.591L640.877 688.35L639.877 688.35L638.877 688.35L638.877 689.591L639.877 689.591ZM639.877 688.35L640.877 688.35C640.877 683.277 642.315 679.388 645.091 676.56L644.377 675.859L643.663 675.159C640.439 678.443 638.877 682.881 638.877 688.35L639.877 688.35ZM644.377 675.859L645.092 676.558C647.851 673.734 651.864 672.254 657.288 672.254L657.288 671.254L657.288 670.254C651.498 670.254 646.903 671.844 643.662 675.16L644.377 675.859ZM657.288 671.254L657.288 672.254L658.571 672.254L658.571 671.254L658.571 670.254L657.288 670.254L657.288 671.254ZM658.571 671.254L657.571 671.254L657.571 676.784L658.571 676.784L659.571 676.784L659.571 671.254L658.571 671.254ZM658.571 676.784L658.571 675.784L657.457 675.784L657.457 676.784L657.457 677.784L658.571 677.784L658.571 676.784ZM657.457 676.784L657.457 675.784C653.827 675.784 650.874 676.77 648.743 678.869L649.445 679.581L650.147 680.294C651.801 678.664 654.189 677.784 657.457 677.784L657.457 676.784ZM649.445 679.581L648.743 678.869C646.573 681.007 645.627 684.589 645.627 689.296L646.627 689.296L647.627 689.296C647.627 684.751 648.56 681.856 650.147 680.294L649.445 679.581ZM646.627 689.296L645.664 689.567L645.854 690.24L646.816 689.969L647.779 689.698L647.59 689.026L646.627 689.296ZM646.816 689.969L645.816 689.969C645.816 691.561 645.915 692.928 646.122 694.056C646.327 695.171 646.652 696.128 647.159 696.838L647.973 696.257L648.787 695.675C648.523 695.306 648.269 694.676 648.089 693.694C647.911 692.726 647.816 691.49 647.816 689.969L646.816 689.969ZM647.973 696.257L647.168 696.85C648.133 698.16 649.457 698.855 651.064 698.855L651.064 697.855L651.064 696.855C650.12 696.855 649.383 696.484 648.778 695.663L647.973 696.257ZM651.064 697.855L651.064 698.855C652.567 698.855 653.837 698.324 654.716 697.182L653.924 696.572L653.132 695.962C652.693 696.531 652.056 696.855 651.064 696.855L651.064 697.855ZM653.924 696.572L654.715 697.184C655.603 696.037 655.933 694.23 655.933 692.03L654.933 692.03L653.933 692.03C653.933 694.148 653.591 695.369 653.133 695.96L653.924 696.572ZM654.933 692.03L655.933 692.03C655.933 690.204 655.596 688.648 654.782 687.499L653.966 688.077L653.15 688.654C653.626 689.327 653.933 690.407 653.933 692.03L654.933 692.03ZM653.966 688.077L654.786 687.505C653.923 686.266 652.615 685.689 651.043 685.689L651.043 686.689L651.043 687.689C652.079 687.689 652.719 688.036 653.146 688.648L653.966 688.077ZM651.043 686.689L651.043 685.689C649.559 685.689 648.284 686.271 647.275 687.384L648.015 688.056L648.755 688.728C649.4 688.018 650.144 687.689 651.043 687.689L651.043 686.689ZM648.015 688.056L647.274 687.384C646.258 688.505 645.795 689.955 645.795 691.63L646.795 691.63L647.795 691.63C647.795 690.334 648.145 689.401 648.756 688.727L648.015 688.056ZM646.795 691.63L646.795 690.63L645.218 690.63L645.218 691.63L645.218 692.63L646.795 692.63L646.795 691.63ZM645.218 691.63L646.218 691.63C646.218 689.015 646.926 687.023 648.253 685.55L647.51 684.88L646.767 684.211C645.038 686.131 644.218 688.638 644.218 691.63L645.218 691.63ZM647.51 684.88L648.256 685.547C649.587 684.057 651.261 683.315 653.356 683.315L653.356 682.315L653.356 681.315C650.713 681.315 648.489 682.284 646.765 684.214L647.51 684.88ZM653.356 682.315L653.356 683.315C655.764 683.315 657.571 684.093 658.896 685.586L659.644 684.922L660.392 684.259C658.632 682.275 656.247 681.315 653.356 681.315L653.356 682.315ZM659.644 684.922L658.898 685.589C660.229 687.077 660.957 689.208 660.957 692.114L661.957 692.114L662.957 692.114C662.957 688.88 662.142 686.217 660.389 684.256L659.644 684.922ZM661.957 692.114L660.957 692.114C660.957 695.145 660.032 697.452 658.258 699.151L658.95 699.874L659.641 700.596C661.877 698.454 662.957 695.588 662.957 692.114L661.957 692.114ZM658.95 699.874L658.258 699.151C656.472 700.863 654.1 701.754 651.043 701.754L651.043 702.754L651.043 703.754C654.519 703.754 657.418 702.726 659.641 700.596L658.95 699.874ZM651.043 702.754L651.043 701.754C647.919 701.754 645.492 700.79 643.661 698.921L642.947 699.621L642.233 700.321C644.496 702.63 647.466 703.754 651.043 703.754L651.043 702.754ZM642.947 699.621L643.661 698.921C641.879 697.102 640.877 694.072 640.877 689.591L639.877 689.591L638.877 689.591C638.877 694.306 639.922 697.963 642.233 700.321L642.947 699.621ZM666.52 674.009L667.209 674.733L667.209 674.733L666.52 674.009ZM682.522 674.261L681.808 674.961L681.811 674.963L682.522 674.261ZM681.114 697.876L681.824 698.58L681.826 698.578L681.114 697.876ZM668.202 702.481L668.202 703.481L668.21 703.481L668.202 702.481ZM666.898 702.481L665.898 702.481L665.898 703.481L666.898 703.481L666.898 702.481ZM666.898 697.035L666.898 696.035L665.898 696.035L665.898 697.035L666.898 697.035ZM675.983 694.259L675.281 693.547L675.278 693.549L675.983 694.259ZM678.8 684.67L679.8 684.67L679.8 684.587L679.787 684.506L678.8 684.67ZM678.674 683.913L677.674 683.913L677.674 683.996L677.688 684.077L678.674 683.913ZM671.525 677.394L670.739 676.776L670.737 676.778L671.525 677.394ZM677.455 685.848L676.725 685.164L676.724 685.165L677.455 685.848ZM678.695 682.294L678.695 681.294L677.695 681.294L677.695 682.294L678.695 682.294ZM680.167 682.294L681.167 682.294L681.167 681.294L680.167 681.294L680.167 682.294ZM677.959 688.939L677.199 688.29L677.196 688.293L677.959 688.939ZM665.826 688.918L665.078 689.581L665.081 689.585L665.826 688.918ZM663.513 681.726L664.513 681.726C664.513 678.711 665.437 676.419 667.209 674.733L666.52 674.009L665.831 673.284C663.594 675.412 662.513 678.265 662.513 681.726L663.513 681.726ZM666.52 674.009L667.209 674.733C669.01 673.02 671.39 672.128 674.448 672.128L674.448 671.128L674.448 670.128C670.972 670.128 668.067 671.157 665.831 673.284L666.52 674.009ZM674.448 671.128L674.448 672.128C677.557 672.128 679.977 673.092 681.808 674.961L682.522 674.261L683.237 673.561C680.975 671.253 678.011 670.128 674.448 670.128L674.448 671.128ZM682.522 674.261L681.811 674.963C683.605 676.783 684.614 679.812 684.614 684.292L685.614 684.292L686.614 684.292C686.614 679.575 685.561 675.917 683.234 673.559L682.522 674.261ZM685.614 684.292L684.614 684.292L684.614 685.532L685.614 685.532L686.614 685.532L686.614 684.292L685.614 684.292ZM685.614 685.532L684.614 685.532C684.614 690.516 683.179 694.357 680.402 697.174L681.114 697.876L681.826 698.578C685.048 695.31 686.614 690.922 686.614 685.532L685.614 685.532ZM681.114 697.876L680.403 697.172C677.642 699.959 673.624 701.44 668.195 701.481L668.202 702.481L668.21 703.481C673.995 703.438 678.585 701.849 681.824 698.58L681.114 697.876ZM668.202 702.481L668.202 701.481L666.898 701.481L666.898 702.481L666.898 703.481L668.202 703.481L668.202 702.481ZM666.898 702.481L667.898 702.481L667.898 697.035L666.898 697.035L665.898 697.035L665.898 702.481L666.898 702.481ZM666.898 697.035L666.898 698.035L668.034 698.035L668.034 697.035L668.034 696.035L666.898 696.035L666.898 697.035ZM668.034 697.035L668.034 698.035C671.648 698.035 674.583 697.057 676.687 694.969L675.983 694.259L675.278 693.549C673.653 695.162 671.289 696.035 668.034 696.035L668.034 697.035ZM675.983 694.259L676.684 694.971C678.852 692.836 679.8 689.299 679.8 684.67L678.8 684.67L677.8 684.67C677.8 689.125 676.87 691.981 675.281 693.547L675.983 694.259ZM678.8 684.67L679.787 684.506L679.661 683.749L678.674 683.913L677.688 684.077L677.814 684.835L678.8 684.67ZM678.674 683.913L679.674 683.913C679.674 682.383 679.578 681.06 679.374 679.957C679.172 678.864 678.853 677.923 678.364 677.209L677.539 677.773L676.713 678.337C676.982 678.73 677.231 679.366 677.407 680.32C677.582 681.264 677.674 682.457 677.674 683.913L678.674 683.913ZM677.539 677.773L678.364 677.209C677.42 675.827 676.059 675.112 674.384 675.112L674.384 676.112L674.384 677.112C675.401 677.112 676.143 677.503 676.713 678.337L677.539 677.773ZM674.384 676.112L674.384 675.112C672.891 675.112 671.628 675.645 670.739 676.776L671.525 677.394L672.31 678.013C672.767 677.433 673.411 677.112 674.384 677.112L674.384 676.112ZM671.525 677.394L670.737 676.778C669.859 677.899 669.536 679.667 669.536 681.81L670.536 681.81L671.536 681.81C671.536 679.748 671.872 678.572 672.312 678.011L671.525 677.394ZM670.536 681.81L669.536 681.81C669.536 683.693 669.869 685.283 670.696 686.416L671.504 685.827L672.311 685.237C671.849 684.604 671.536 683.517 671.536 681.81L670.536 681.81ZM671.504 685.827L670.696 686.416C671.564 687.606 672.862 688.151 674.405 688.151L674.405 687.151L674.405 686.151C673.37 686.151 672.732 685.814 672.311 685.237L671.504 685.827ZM674.405 687.151L674.405 688.151C675.894 688.151 677.177 687.608 678.185 686.531L677.455 685.848L676.724 685.165C676.106 685.826 675.356 686.151 674.405 686.151L674.405 687.151ZM677.455 685.848L678.184 686.531C679.223 685.423 679.695 683.973 679.695 682.294L678.695 682.294L677.695 682.294C677.695 683.587 677.341 684.506 676.725 685.164L677.455 685.848ZM678.695 682.294L678.695 683.294L680.167 683.294L680.167 682.294L680.167 681.294L678.695 681.294L678.695 682.294ZM680.167 682.294L679.167 682.294C679.167 684.81 678.487 686.78 677.199 688.29L677.959 688.939L678.72 689.588C680.375 687.649 681.167 685.189 681.167 682.294L680.167 682.294ZM677.959 688.939L677.196 688.293C675.943 689.775 674.29 690.525 672.134 690.525L672.134 691.525L672.134 692.525C674.829 692.525 677.059 691.552 678.723 689.585L677.959 688.939ZM672.134 691.525L672.134 690.525C669.727 690.525 667.911 689.747 666.571 688.251L665.826 688.918L665.081 689.585C666.853 691.565 669.243 692.525 672.134 692.525L672.134 691.525ZM665.826 688.918L666.574 688.254C665.24 686.75 664.513 684.616 664.513 681.726L663.513 681.726L662.513 681.726C662.513 684.948 663.328 687.609 665.078 689.581L665.826 688.918Z" fill="black" mask="url(#path-11-outside-4_17007_6863)"/> +<mask id="path-13-outside-5_17007_6863" maskUnits="userSpaceOnUse" x="93" y="497" width="836" height="67" fill="black"> +<rect fill="white" x="93" y="497" width="836" height="67"/> +<path d="M96.6781 536.108L96.6781 533.111C96.6781 523.149 99.4881 515.318 105.108 509.618C110.728 503.892 118.599 501.028 128.721 501.028L132.077 501.028L132.077 512.175L129.2 512.175C123.154 512.175 118.519 513.933 115.297 517.449C112.074 520.939 110.462 527.198 110.462 536.228L110.502 537.106C110.502 542.807 111.168 546.602 112.5 548.493C113.858 550.384 115.616 551.33 117.774 551.33C119.798 551.33 121.423 550.598 122.648 549.133C123.873 547.641 124.486 544.671 124.486 540.223C124.486 537 123.913 534.603 122.768 533.031C121.649 531.433 119.998 530.634 117.814 530.634C115.789 530.634 114.071 531.406 112.66 532.951C111.248 534.47 110.542 536.547 110.542 539.184L108.145 539.184C108.145 533.99 109.623 529.955 112.58 527.078C115.536 524.175 119.052 522.723 123.127 522.723C127.789 522.723 131.504 524.268 134.275 527.358C137.045 530.421 138.43 534.842 138.43 540.622C138.43 546.935 136.459 551.889 132.517 555.485C128.574 559.054 123.62 560.839 117.654 560.839C111.155 560.839 106.027 558.855 102.272 554.886C98.5426 550.891 96.6781 544.631 96.6781 536.108ZM144.5 521.205C144.5 514.919 146.471 509.991 150.413 506.422C154.355 502.826 159.322 501.028 165.315 501.028C171.788 501.028 176.889 503.013 180.618 506.981C184.373 510.95 186.251 517.21 186.251 525.76L186.251 528.716C186.251 538.651 183.441 546.469 177.821 552.169C172.227 557.869 164.357 560.732 154.208 560.759L150.852 560.759L150.852 549.812L153.729 549.812C159.775 549.838 164.41 548.107 167.633 544.618C170.856 541.129 172.467 534.882 172.467 525.879L172.427 524.761C172.427 519.194 171.761 515.465 170.43 513.574C169.098 511.656 167.34 510.697 165.156 510.697C163.131 510.697 161.507 511.443 160.281 512.934C159.056 514.399 158.443 517.289 158.443 521.604C158.443 524.987 159.003 527.464 160.121 529.036C161.267 530.581 162.932 531.353 165.116 531.353C167.14 531.353 168.858 530.607 170.27 529.116C171.708 527.597 172.427 525.52 172.427 522.883L174.745 522.883C174.745 528.05 173.28 532.072 170.35 534.949C167.42 537.799 163.904 539.224 159.802 539.224C155.141 539.224 151.425 537.666 148.655 534.549C145.885 531.433 144.5 526.985 144.5 521.205ZM192.721 536.108L192.721 533.111C192.721 523.149 195.531 515.318 201.151 509.618C206.771 503.892 214.642 501.028 224.763 501.028L228.12 501.028L228.12 512.175L225.243 512.175C219.197 512.175 214.562 513.933 211.339 517.449C208.116 520.939 206.505 527.198 206.505 536.228L206.545 537.106C206.545 542.807 207.21 546.602 208.542 548.493C209.901 550.384 211.659 551.33 213.816 551.33C215.84 551.33 217.465 550.598 218.69 549.133C219.916 547.641 220.528 544.671 220.528 540.223C220.528 537 219.956 534.603 218.81 533.031C217.692 531.433 216.04 530.634 213.856 530.634C211.832 530.634 210.114 531.406 208.702 532.951C207.29 534.47 206.584 536.547 206.584 539.184L204.187 539.184C204.187 533.99 205.666 529.955 208.622 527.078C211.579 524.175 215.095 522.723 219.17 522.723C223.831 522.723 227.547 524.268 230.317 527.358C233.087 530.421 234.472 534.842 234.472 540.622C234.472 546.935 232.501 551.889 228.559 555.485C224.617 559.054 219.663 560.839 213.696 560.839C207.197 560.839 202.07 558.855 198.314 554.886C194.585 550.891 192.721 544.631 192.721 536.108ZM240.542 521.205C240.542 514.919 242.513 509.991 246.455 506.422C250.397 502.826 255.365 501.028 261.358 501.028C267.83 501.028 272.931 503.013 276.66 506.981C280.416 510.95 282.294 517.21 282.294 525.76L282.294 528.716C282.294 538.651 279.484 546.469 273.863 552.169C268.27 557.869 260.399 560.732 250.251 560.759L246.895 560.759L246.895 549.812L249.771 549.812C255.818 549.838 260.452 548.107 263.675 544.618C266.898 541.129 268.51 534.882 268.51 525.879L268.47 524.761C268.47 519.194 267.804 515.465 266.472 513.574C265.14 511.656 263.382 510.697 261.198 510.697C259.174 510.697 257.549 511.443 256.324 512.934C255.099 514.399 254.486 517.289 254.486 521.604C254.486 524.987 255.045 527.464 256.164 529.036C257.309 530.581 258.974 531.353 261.158 531.353C263.182 531.353 264.9 530.607 266.312 529.116C267.751 527.597 268.47 525.52 268.47 522.883L270.787 522.883C270.787 528.05 269.322 532.072 266.392 534.949C263.462 537.799 259.946 539.224 255.844 539.224C251.183 539.224 247.467 537.666 244.697 534.549C241.927 531.433 240.542 526.985 240.542 521.205ZM311.733 539.863L311.733 521.964C311.733 515.278 313.531 510.111 317.127 506.462C320.723 502.813 325.664 500.988 331.95 500.988C338.236 500.988 343.177 502.786 346.773 506.382C350.395 509.951 352.206 515.145 352.206 521.964L352.206 539.863C352.206 546.789 350.315 552.023 346.533 555.565C342.777 559.108 337.916 560.866 331.95 560.839C325.611 560.812 320.656 559.041 317.087 555.525C313.518 551.983 311.733 546.762 311.733 539.863ZM325.637 542.7C325.637 545.47 326.157 547.601 327.195 549.093C328.261 550.584 329.846 551.33 331.95 551.33C334.054 551.33 335.639 550.584 336.704 549.093C337.77 547.601 338.302 545.47 338.302 542.7L338.302 519.407C338.302 516.584 337.77 514.426 336.704 512.934C335.639 511.443 334.054 510.697 331.95 510.697C329.846 510.697 328.261 511.443 327.195 512.934C326.157 514.426 325.637 516.584 325.637 519.407L325.637 542.7ZM381.969 560L381.969 545.297L382.408 544.618L382.408 519.487L382.089 519.487L371.021 538.105L387.402 538.105L388.601 537.746L401.426 537.746L401.426 548.533L358.156 548.533L358.156 538.625L383.487 501.827L394.754 501.827L394.754 560L381.969 560ZM407.136 560L407.136 551.33L428.152 529.515C429.75 527.651 431.122 525.746 432.267 523.802C433.413 521.857 433.985 519.846 433.985 517.769C433.985 515.238 433.413 513.427 432.267 512.335C431.122 511.243 429.617 510.697 427.753 510.697C425.808 510.697 424.237 511.336 423.038 512.615C421.839 513.867 421.24 516.331 421.24 520.006L421.24 521.644L407.136 521.644L407.136 518.208C407.136 513.227 409.054 509.112 412.89 505.863C416.725 502.613 421.76 500.988 427.992 500.988C434.518 500.988 439.472 502.44 442.855 505.343C446.238 508.22 447.943 512.135 447.969 517.09C447.969 520.765 447.183 524.055 445.612 526.958C444.067 529.862 441.856 532.818 438.98 535.828L427.952 548.853L449.328 548.853L449.328 560L407.136 560ZM455.797 539.863L455.797 521.964C455.797 515.278 457.595 510.111 461.191 506.462C464.787 502.813 469.728 500.988 476.014 500.988C482.3 500.988 487.241 502.786 490.836 506.382C494.459 509.951 496.27 515.145 496.27 521.964L496.27 539.863C496.27 546.789 494.379 552.023 490.597 555.565C486.841 559.108 481.98 560.866 476.014 560.839C469.674 560.812 464.72 559.041 461.151 555.525C457.582 551.983 455.797 546.762 455.797 539.863ZM469.701 542.7C469.701 545.47 470.22 547.601 471.259 549.093C472.325 550.584 473.909 551.33 476.014 551.33C478.118 551.33 479.703 550.584 480.768 549.093C481.834 547.601 482.366 545.47 482.366 542.7L482.366 519.407C482.366 516.584 481.834 514.426 480.768 512.934C479.703 511.443 478.118 510.697 476.014 510.697C473.909 510.697 472.325 511.443 471.259 512.934C470.22 514.426 469.701 516.584 469.701 519.407L469.701 542.7ZM525.39 544.178C525.39 540.369 526.402 537.2 528.427 534.669C530.477 532.139 532.675 530.527 535.019 529.835L535.019 529.675C532.648 528.61 530.717 526.998 529.226 524.841C527.761 522.657 527.028 519.913 527.028 516.61C527.028 511.842 528.733 508.047 532.142 505.223C535.578 502.4 540.359 500.988 546.486 500.988C552.612 500.988 557.366 502.44 560.749 505.343C564.159 508.22 565.863 511.976 565.863 516.61C565.863 520.02 565.091 522.83 563.546 525.04C562.028 527.225 560.097 528.756 557.753 529.635L557.753 529.795C560.176 530.461 562.401 532.072 564.425 534.629C566.476 537.16 567.501 540.343 567.501 544.178C567.501 549.319 565.557 553.381 561.668 556.364C557.806 559.347 552.745 560.839 546.486 560.839C540.2 560.839 535.112 559.347 531.223 556.364C527.334 553.381 525.39 549.319 525.39 544.178ZM539.414 542.66C539.414 545.776 540.026 548.041 541.252 549.452C542.504 550.837 544.235 551.53 546.446 551.53C548.63 551.53 550.335 550.824 551.56 549.412C552.785 548.001 553.398 545.75 553.398 542.66C553.398 539.437 552.745 537.173 551.44 535.868C550.161 534.536 548.497 533.87 546.446 533.87C544.395 533.87 542.703 534.536 541.372 535.868C540.066 537.173 539.414 539.437 539.414 542.66ZM540.333 518.448C540.333 521.138 540.905 523.189 542.051 524.601C543.196 525.986 544.661 526.679 546.446 526.679C548.204 526.679 549.655 525.986 550.801 524.601C551.973 523.189 552.559 521.138 552.559 518.448C552.559 515.731 552.039 513.734 551 512.455C549.988 511.15 548.47 510.497 546.446 510.497C544.421 510.497 542.89 511.123 541.851 512.375C540.839 513.627 540.333 515.651 540.333 518.448ZM573.411 544.178C573.411 540.369 574.423 537.2 576.448 534.669C578.499 532.139 580.696 530.527 583.04 529.835L583.04 529.675C580.67 528.61 578.738 526.998 577.247 524.841C575.782 522.657 575.049 519.913 575.049 516.61C575.049 511.842 576.754 508.047 580.163 505.223C583.599 502.4 588.381 500.988 594.507 500.988C600.633 500.988 605.388 502.44 608.77 505.343C612.18 508.22 613.884 511.976 613.884 516.61C613.884 520.02 613.112 522.83 611.567 525.04C610.049 527.225 608.118 528.756 605.774 529.635L605.774 529.795C608.198 530.461 610.422 532.072 612.446 534.629C614.497 537.16 615.523 540.343 615.523 544.178C615.523 549.319 613.578 553.381 609.689 556.364C605.827 559.347 600.766 560.839 594.507 560.839C588.221 560.839 583.133 559.347 579.245 556.364C575.356 553.381 573.411 549.319 573.411 544.178ZM587.435 542.66C587.435 545.776 588.048 548.041 589.273 549.452C590.525 550.837 592.256 551.53 594.467 551.53C596.651 551.53 598.356 550.824 599.581 549.412C600.806 548.001 601.419 545.75 601.419 542.66C601.419 539.437 600.766 537.173 599.461 535.868C598.183 534.536 596.518 533.87 594.467 533.87C592.416 533.87 590.725 534.536 589.393 535.868C588.088 537.173 587.435 539.437 587.435 542.66ZM588.354 518.448C588.354 521.138 588.927 523.189 590.072 524.601C591.217 525.986 592.682 526.679 594.467 526.679C596.225 526.679 597.677 525.986 598.822 524.601C599.994 523.189 600.58 521.138 600.58 518.448C600.58 515.731 600.06 513.734 599.022 512.455C598.009 511.15 596.491 510.497 594.467 510.497C592.443 510.497 590.911 511.123 589.872 512.375C588.86 513.627 588.354 515.651 588.354 518.448ZM621.433 544.178C621.433 540.369 622.445 537.2 624.469 534.669C626.52 532.139 628.717 530.527 631.061 529.835L631.061 529.675C628.691 528.61 626.76 526.998 625.268 524.841C623.803 522.657 623.071 519.913 623.071 516.61C623.071 511.842 624.775 508.047 628.185 505.223C631.621 502.4 636.402 500.988 642.528 500.988C648.654 500.988 653.409 502.44 656.792 505.343C660.201 508.22 661.906 511.976 661.906 516.61C661.906 520.02 661.133 522.83 659.588 525.04C658.07 527.225 656.139 528.756 653.795 529.635L653.795 529.795C656.219 530.461 658.443 532.072 660.467 534.629C662.518 537.16 663.544 540.343 663.544 544.178C663.544 549.319 661.599 553.381 657.711 556.364C653.848 559.347 648.788 560.839 642.528 560.839C636.242 560.839 631.155 559.347 627.266 556.364C623.377 553.381 621.433 549.319 621.433 544.178ZM635.456 542.66C635.456 545.776 636.069 548.041 637.294 549.452C638.546 550.837 640.277 551.53 642.488 551.53C644.672 551.53 646.377 550.824 647.602 549.412C648.827 548.001 649.44 545.75 649.44 542.66C649.44 539.437 648.788 537.173 647.482 535.868C646.204 534.536 644.539 533.87 642.488 533.87C640.437 533.87 638.746 534.536 637.414 535.868C636.109 537.173 635.456 539.437 635.456 542.66ZM636.375 518.448C636.375 521.138 636.948 523.189 638.093 524.601C639.239 525.986 640.704 526.679 642.488 526.679C644.246 526.679 645.698 525.986 646.843 524.601C648.015 523.189 648.601 521.138 648.601 518.448C648.601 515.731 648.082 513.734 647.043 512.455C646.031 511.15 644.512 510.497 642.488 510.497C640.464 510.497 638.932 511.123 637.893 512.375C636.881 513.627 636.375 515.651 636.375 518.448ZM670.413 539.863L670.413 521.964C670.413 515.278 672.211 510.111 675.806 506.462C679.402 502.813 684.343 500.988 690.629 500.988C696.915 500.988 701.856 502.786 705.452 506.382C709.075 509.951 710.886 515.145 710.886 521.964L710.886 539.863C710.886 546.789 708.995 552.023 705.212 555.565C701.457 559.108 696.596 560.866 690.629 560.839C684.29 560.812 679.336 559.041 675.766 555.525C672.197 551.983 670.413 546.762 670.413 539.863ZM684.317 542.7C684.317 545.47 684.836 547.601 685.875 549.093C686.94 550.584 688.525 551.33 690.629 551.33C692.733 551.33 694.318 550.584 695.384 549.093C696.449 547.601 696.982 545.47 696.982 542.7L696.982 519.407C696.982 516.584 696.449 514.426 695.384 512.934C694.318 511.443 692.733 510.697 690.629 510.697C688.525 510.697 686.94 511.443 685.875 512.934C684.836 514.426 684.317 516.584 684.317 519.407L684.317 542.7ZM740.965 539.863L740.965 521.964C740.965 515.278 742.763 510.111 746.358 506.462C749.954 502.813 754.895 500.988 761.181 500.988C767.467 500.988 772.408 502.786 776.004 506.382C779.627 509.951 781.438 515.145 781.438 521.964L781.438 539.863C781.438 546.789 779.547 552.023 775.764 555.565C772.009 559.108 767.148 560.866 761.181 560.839C754.842 560.812 749.888 559.041 746.318 555.525C742.749 551.983 740.965 546.762 740.965 539.863ZM754.869 542.7C754.869 545.47 755.388 547.601 756.427 549.093C757.492 550.584 759.077 551.33 761.181 551.33C763.285 551.33 764.87 550.584 765.936 549.093C767.001 547.601 767.534 545.47 767.534 542.7L767.534 519.407C767.534 516.584 767.001 514.426 765.936 512.934C764.87 511.443 763.285 510.697 761.181 510.697C759.077 510.697 757.492 511.443 756.427 512.934C755.388 514.426 754.869 516.584 754.869 519.407L754.869 542.7ZM811.2 560L811.2 545.297L811.64 544.618L811.64 519.487L811.32 519.487L800.253 538.105L816.634 538.105L817.832 537.746L830.658 537.746L830.658 548.533L787.388 548.533L787.388 538.625L812.718 501.827L823.985 501.827L823.985 560L811.2 560ZM836.368 560L836.368 551.33L857.383 529.515C858.982 527.651 860.353 525.746 861.499 523.802C862.644 521.857 863.217 519.846 863.217 517.769C863.217 515.238 862.644 513.427 861.499 512.335C860.353 511.243 858.848 510.697 856.984 510.697C855.04 510.697 853.468 511.336 852.269 512.615C851.071 513.867 850.471 516.331 850.471 520.006L850.471 521.644L836.368 521.644L836.368 518.208C836.368 513.227 838.286 509.112 842.121 505.863C845.957 502.613 850.991 500.988 857.224 500.988C863.749 500.988 868.704 502.44 872.086 505.343C875.469 508.22 877.174 512.135 877.201 517.09C877.201 520.765 876.415 524.055 874.843 526.958C873.298 529.862 871.088 532.818 868.211 535.828L857.184 548.853L878.559 548.853L878.559 560L836.368 560ZM885.028 539.863L885.028 521.964C885.028 515.278 886.826 510.111 890.422 506.462C894.018 502.813 898.959 500.988 905.245 500.988C911.531 500.988 916.472 502.786 920.068 506.382C923.69 509.951 925.501 515.145 925.501 521.964L925.501 539.863C925.501 546.789 923.61 552.023 919.828 555.565C916.072 559.108 911.211 560.866 905.245 560.839C898.906 560.812 893.951 559.041 890.382 555.525C886.813 551.983 885.028 546.762 885.028 539.863ZM898.932 542.7C898.932 545.47 899.452 547.601 900.49 549.093C901.556 550.584 903.141 551.33 905.245 551.33C907.349 551.33 908.934 550.584 909.999 549.093C911.065 547.601 911.598 545.47 911.598 542.7L911.598 519.407C911.598 516.584 911.065 514.426 909.999 512.934C908.934 511.443 907.349 510.697 905.245 510.697C903.141 510.697 901.556 511.443 900.49 512.934C899.452 514.426 898.932 516.584 898.932 519.407L898.932 542.7Z"/> +</mask> +<path d="M96.6781 536.108L96.6781 533.111C96.6781 523.149 99.4881 515.318 105.108 509.618C110.728 503.892 118.599 501.028 128.721 501.028L132.077 501.028L132.077 512.175L129.2 512.175C123.154 512.175 118.519 513.933 115.297 517.449C112.074 520.939 110.462 527.198 110.462 536.228L110.502 537.106C110.502 542.807 111.168 546.602 112.5 548.493C113.858 550.384 115.616 551.33 117.774 551.33C119.798 551.33 121.423 550.598 122.648 549.133C123.873 547.641 124.486 544.671 124.486 540.223C124.486 537 123.913 534.603 122.768 533.031C121.649 531.433 119.998 530.634 117.814 530.634C115.789 530.634 114.071 531.406 112.66 532.951C111.248 534.47 110.542 536.547 110.542 539.184L108.145 539.184C108.145 533.99 109.623 529.955 112.58 527.078C115.536 524.175 119.052 522.723 123.127 522.723C127.789 522.723 131.504 524.268 134.275 527.358C137.045 530.421 138.43 534.842 138.43 540.622C138.43 546.935 136.459 551.889 132.517 555.485C128.574 559.054 123.62 560.839 117.654 560.839C111.155 560.839 106.027 558.855 102.272 554.886C98.5426 550.891 96.6781 544.631 96.6781 536.108ZM144.5 521.205C144.5 514.919 146.471 509.991 150.413 506.422C154.355 502.826 159.322 501.028 165.315 501.028C171.788 501.028 176.889 503.013 180.618 506.981C184.373 510.95 186.251 517.21 186.251 525.76L186.251 528.716C186.251 538.651 183.441 546.469 177.821 552.169C172.227 557.869 164.357 560.732 154.208 560.759L150.852 560.759L150.852 549.812L153.729 549.812C159.775 549.838 164.41 548.107 167.633 544.618C170.856 541.129 172.467 534.882 172.467 525.879L172.427 524.761C172.427 519.194 171.761 515.465 170.43 513.574C169.098 511.656 167.34 510.697 165.156 510.697C163.131 510.697 161.507 511.443 160.281 512.934C159.056 514.399 158.443 517.289 158.443 521.604C158.443 524.987 159.003 527.464 160.121 529.036C161.267 530.581 162.932 531.353 165.116 531.353C167.14 531.353 168.858 530.607 170.27 529.116C171.708 527.597 172.427 525.52 172.427 522.883L174.745 522.883C174.745 528.05 173.28 532.072 170.35 534.949C167.42 537.799 163.904 539.224 159.802 539.224C155.141 539.224 151.425 537.666 148.655 534.549C145.885 531.433 144.5 526.985 144.5 521.205ZM192.721 536.108L192.721 533.111C192.721 523.149 195.531 515.318 201.151 509.618C206.771 503.892 214.642 501.028 224.763 501.028L228.12 501.028L228.12 512.175L225.243 512.175C219.197 512.175 214.562 513.933 211.339 517.449C208.116 520.939 206.505 527.198 206.505 536.228L206.545 537.106C206.545 542.807 207.21 546.602 208.542 548.493C209.901 550.384 211.659 551.33 213.816 551.33C215.84 551.33 217.465 550.598 218.69 549.133C219.916 547.641 220.528 544.671 220.528 540.223C220.528 537 219.956 534.603 218.81 533.031C217.692 531.433 216.04 530.634 213.856 530.634C211.832 530.634 210.114 531.406 208.702 532.951C207.29 534.47 206.584 536.547 206.584 539.184L204.187 539.184C204.187 533.99 205.666 529.955 208.622 527.078C211.579 524.175 215.095 522.723 219.17 522.723C223.831 522.723 227.547 524.268 230.317 527.358C233.087 530.421 234.472 534.842 234.472 540.622C234.472 546.935 232.501 551.889 228.559 555.485C224.617 559.054 219.663 560.839 213.696 560.839C207.197 560.839 202.07 558.855 198.314 554.886C194.585 550.891 192.721 544.631 192.721 536.108ZM240.542 521.205C240.542 514.919 242.513 509.991 246.455 506.422C250.397 502.826 255.365 501.028 261.358 501.028C267.83 501.028 272.931 503.013 276.66 506.981C280.416 510.95 282.294 517.21 282.294 525.76L282.294 528.716C282.294 538.651 279.484 546.469 273.863 552.169C268.27 557.869 260.399 560.732 250.251 560.759L246.895 560.759L246.895 549.812L249.771 549.812C255.818 549.838 260.452 548.107 263.675 544.618C266.898 541.129 268.51 534.882 268.51 525.879L268.47 524.761C268.47 519.194 267.804 515.465 266.472 513.574C265.14 511.656 263.382 510.697 261.198 510.697C259.174 510.697 257.549 511.443 256.324 512.934C255.099 514.399 254.486 517.289 254.486 521.604C254.486 524.987 255.045 527.464 256.164 529.036C257.309 530.581 258.974 531.353 261.158 531.353C263.182 531.353 264.9 530.607 266.312 529.116C267.751 527.597 268.47 525.52 268.47 522.883L270.787 522.883C270.787 528.05 269.322 532.072 266.392 534.949C263.462 537.799 259.946 539.224 255.844 539.224C251.183 539.224 247.467 537.666 244.697 534.549C241.927 531.433 240.542 526.985 240.542 521.205ZM311.733 539.863L311.733 521.964C311.733 515.278 313.531 510.111 317.127 506.462C320.723 502.813 325.664 500.988 331.95 500.988C338.236 500.988 343.177 502.786 346.773 506.382C350.395 509.951 352.206 515.145 352.206 521.964L352.206 539.863C352.206 546.789 350.315 552.023 346.533 555.565C342.777 559.108 337.916 560.866 331.95 560.839C325.611 560.812 320.656 559.041 317.087 555.525C313.518 551.983 311.733 546.762 311.733 539.863ZM325.637 542.7C325.637 545.47 326.157 547.601 327.195 549.093C328.261 550.584 329.846 551.33 331.95 551.33C334.054 551.33 335.639 550.584 336.704 549.093C337.77 547.601 338.302 545.47 338.302 542.7L338.302 519.407C338.302 516.584 337.77 514.426 336.704 512.934C335.639 511.443 334.054 510.697 331.95 510.697C329.846 510.697 328.261 511.443 327.195 512.934C326.157 514.426 325.637 516.584 325.637 519.407L325.637 542.7ZM381.969 560L381.969 545.297L382.408 544.618L382.408 519.487L382.089 519.487L371.021 538.105L387.402 538.105L388.601 537.746L401.426 537.746L401.426 548.533L358.156 548.533L358.156 538.625L383.487 501.827L394.754 501.827L394.754 560L381.969 560ZM407.136 560L407.136 551.33L428.152 529.515C429.75 527.651 431.122 525.746 432.267 523.802C433.413 521.857 433.985 519.846 433.985 517.769C433.985 515.238 433.413 513.427 432.267 512.335C431.122 511.243 429.617 510.697 427.753 510.697C425.808 510.697 424.237 511.336 423.038 512.615C421.839 513.867 421.24 516.331 421.24 520.006L421.24 521.644L407.136 521.644L407.136 518.208C407.136 513.227 409.054 509.112 412.89 505.863C416.725 502.613 421.76 500.988 427.992 500.988C434.518 500.988 439.472 502.44 442.855 505.343C446.238 508.22 447.943 512.135 447.969 517.09C447.969 520.765 447.183 524.055 445.612 526.958C444.067 529.862 441.856 532.818 438.98 535.828L427.952 548.853L449.328 548.853L449.328 560L407.136 560ZM455.797 539.863L455.797 521.964C455.797 515.278 457.595 510.111 461.191 506.462C464.787 502.813 469.728 500.988 476.014 500.988C482.3 500.988 487.241 502.786 490.836 506.382C494.459 509.951 496.27 515.145 496.27 521.964L496.27 539.863C496.27 546.789 494.379 552.023 490.597 555.565C486.841 559.108 481.98 560.866 476.014 560.839C469.674 560.812 464.72 559.041 461.151 555.525C457.582 551.983 455.797 546.762 455.797 539.863ZM469.701 542.7C469.701 545.47 470.22 547.601 471.259 549.093C472.325 550.584 473.909 551.33 476.014 551.33C478.118 551.33 479.703 550.584 480.768 549.093C481.834 547.601 482.366 545.47 482.366 542.7L482.366 519.407C482.366 516.584 481.834 514.426 480.768 512.934C479.703 511.443 478.118 510.697 476.014 510.697C473.909 510.697 472.325 511.443 471.259 512.934C470.22 514.426 469.701 516.584 469.701 519.407L469.701 542.7ZM525.39 544.178C525.39 540.369 526.402 537.2 528.427 534.669C530.477 532.139 532.675 530.527 535.019 529.835L535.019 529.675C532.648 528.61 530.717 526.998 529.226 524.841C527.761 522.657 527.028 519.913 527.028 516.61C527.028 511.842 528.733 508.047 532.142 505.223C535.578 502.4 540.359 500.988 546.486 500.988C552.612 500.988 557.366 502.44 560.749 505.343C564.159 508.22 565.863 511.976 565.863 516.61C565.863 520.02 565.091 522.83 563.546 525.04C562.028 527.225 560.097 528.756 557.753 529.635L557.753 529.795C560.176 530.461 562.401 532.072 564.425 534.629C566.476 537.16 567.501 540.343 567.501 544.178C567.501 549.319 565.557 553.381 561.668 556.364C557.806 559.347 552.745 560.839 546.486 560.839C540.2 560.839 535.112 559.347 531.223 556.364C527.334 553.381 525.39 549.319 525.39 544.178ZM539.414 542.66C539.414 545.776 540.026 548.041 541.252 549.452C542.504 550.837 544.235 551.53 546.446 551.53C548.63 551.53 550.335 550.824 551.56 549.412C552.785 548.001 553.398 545.75 553.398 542.66C553.398 539.437 552.745 537.173 551.44 535.868C550.161 534.536 548.497 533.87 546.446 533.87C544.395 533.87 542.703 534.536 541.372 535.868C540.066 537.173 539.414 539.437 539.414 542.66ZM540.333 518.448C540.333 521.138 540.905 523.189 542.051 524.601C543.196 525.986 544.661 526.679 546.446 526.679C548.204 526.679 549.655 525.986 550.801 524.601C551.973 523.189 552.559 521.138 552.559 518.448C552.559 515.731 552.039 513.734 551 512.455C549.988 511.15 548.47 510.497 546.446 510.497C544.421 510.497 542.89 511.123 541.851 512.375C540.839 513.627 540.333 515.651 540.333 518.448ZM573.411 544.178C573.411 540.369 574.423 537.2 576.448 534.669C578.499 532.139 580.696 530.527 583.04 529.835L583.04 529.675C580.67 528.61 578.738 526.998 577.247 524.841C575.782 522.657 575.049 519.913 575.049 516.61C575.049 511.842 576.754 508.047 580.163 505.223C583.599 502.4 588.381 500.988 594.507 500.988C600.633 500.988 605.388 502.44 608.77 505.343C612.18 508.22 613.884 511.976 613.884 516.61C613.884 520.02 613.112 522.83 611.567 525.04C610.049 527.225 608.118 528.756 605.774 529.635L605.774 529.795C608.198 530.461 610.422 532.072 612.446 534.629C614.497 537.16 615.523 540.343 615.523 544.178C615.523 549.319 613.578 553.381 609.689 556.364C605.827 559.347 600.766 560.839 594.507 560.839C588.221 560.839 583.133 559.347 579.245 556.364C575.356 553.381 573.411 549.319 573.411 544.178ZM587.435 542.66C587.435 545.776 588.048 548.041 589.273 549.452C590.525 550.837 592.256 551.53 594.467 551.53C596.651 551.53 598.356 550.824 599.581 549.412C600.806 548.001 601.419 545.75 601.419 542.66C601.419 539.437 600.766 537.173 599.461 535.868C598.183 534.536 596.518 533.87 594.467 533.87C592.416 533.87 590.725 534.536 589.393 535.868C588.088 537.173 587.435 539.437 587.435 542.66ZM588.354 518.448C588.354 521.138 588.927 523.189 590.072 524.601C591.217 525.986 592.682 526.679 594.467 526.679C596.225 526.679 597.677 525.986 598.822 524.601C599.994 523.189 600.58 521.138 600.58 518.448C600.58 515.731 600.06 513.734 599.022 512.455C598.009 511.15 596.491 510.497 594.467 510.497C592.443 510.497 590.911 511.123 589.872 512.375C588.86 513.627 588.354 515.651 588.354 518.448ZM621.433 544.178C621.433 540.369 622.445 537.2 624.469 534.669C626.52 532.139 628.717 530.527 631.061 529.835L631.061 529.675C628.691 528.61 626.76 526.998 625.268 524.841C623.803 522.657 623.071 519.913 623.071 516.61C623.071 511.842 624.775 508.047 628.185 505.223C631.621 502.4 636.402 500.988 642.528 500.988C648.654 500.988 653.409 502.44 656.792 505.343C660.201 508.22 661.906 511.976 661.906 516.61C661.906 520.02 661.133 522.83 659.588 525.04C658.07 527.225 656.139 528.756 653.795 529.635L653.795 529.795C656.219 530.461 658.443 532.072 660.467 534.629C662.518 537.16 663.544 540.343 663.544 544.178C663.544 549.319 661.599 553.381 657.711 556.364C653.848 559.347 648.788 560.839 642.528 560.839C636.242 560.839 631.155 559.347 627.266 556.364C623.377 553.381 621.433 549.319 621.433 544.178ZM635.456 542.66C635.456 545.776 636.069 548.041 637.294 549.452C638.546 550.837 640.277 551.53 642.488 551.53C644.672 551.53 646.377 550.824 647.602 549.412C648.827 548.001 649.44 545.75 649.44 542.66C649.44 539.437 648.788 537.173 647.482 535.868C646.204 534.536 644.539 533.87 642.488 533.87C640.437 533.87 638.746 534.536 637.414 535.868C636.109 537.173 635.456 539.437 635.456 542.66ZM636.375 518.448C636.375 521.138 636.948 523.189 638.093 524.601C639.239 525.986 640.704 526.679 642.488 526.679C644.246 526.679 645.698 525.986 646.843 524.601C648.015 523.189 648.601 521.138 648.601 518.448C648.601 515.731 648.082 513.734 647.043 512.455C646.031 511.15 644.512 510.497 642.488 510.497C640.464 510.497 638.932 511.123 637.893 512.375C636.881 513.627 636.375 515.651 636.375 518.448ZM670.413 539.863L670.413 521.964C670.413 515.278 672.211 510.111 675.806 506.462C679.402 502.813 684.343 500.988 690.629 500.988C696.915 500.988 701.856 502.786 705.452 506.382C709.075 509.951 710.886 515.145 710.886 521.964L710.886 539.863C710.886 546.789 708.995 552.023 705.212 555.565C701.457 559.108 696.596 560.866 690.629 560.839C684.29 560.812 679.336 559.041 675.766 555.525C672.197 551.983 670.413 546.762 670.413 539.863ZM684.317 542.7C684.317 545.47 684.836 547.601 685.875 549.093C686.94 550.584 688.525 551.33 690.629 551.33C692.733 551.33 694.318 550.584 695.384 549.093C696.449 547.601 696.982 545.47 696.982 542.7L696.982 519.407C696.982 516.584 696.449 514.426 695.384 512.934C694.318 511.443 692.733 510.697 690.629 510.697C688.525 510.697 686.94 511.443 685.875 512.934C684.836 514.426 684.317 516.584 684.317 519.407L684.317 542.7ZM740.965 539.863L740.965 521.964C740.965 515.278 742.763 510.111 746.358 506.462C749.954 502.813 754.895 500.988 761.181 500.988C767.467 500.988 772.408 502.786 776.004 506.382C779.627 509.951 781.438 515.145 781.438 521.964L781.438 539.863C781.438 546.789 779.547 552.023 775.764 555.565C772.009 559.108 767.148 560.866 761.181 560.839C754.842 560.812 749.888 559.041 746.318 555.525C742.749 551.983 740.965 546.762 740.965 539.863ZM754.869 542.7C754.869 545.47 755.388 547.601 756.427 549.093C757.492 550.584 759.077 551.33 761.181 551.33C763.285 551.33 764.87 550.584 765.936 549.093C767.001 547.601 767.534 545.47 767.534 542.7L767.534 519.407C767.534 516.584 767.001 514.426 765.936 512.934C764.87 511.443 763.285 510.697 761.181 510.697C759.077 510.697 757.492 511.443 756.427 512.934C755.388 514.426 754.869 516.584 754.869 519.407L754.869 542.7ZM811.2 560L811.2 545.297L811.64 544.618L811.64 519.487L811.32 519.487L800.253 538.105L816.634 538.105L817.832 537.746L830.658 537.746L830.658 548.533L787.388 548.533L787.388 538.625L812.718 501.827L823.985 501.827L823.985 560L811.2 560ZM836.368 560L836.368 551.33L857.383 529.515C858.982 527.651 860.353 525.746 861.499 523.802C862.644 521.857 863.217 519.846 863.217 517.769C863.217 515.238 862.644 513.427 861.499 512.335C860.353 511.243 858.848 510.697 856.984 510.697C855.04 510.697 853.468 511.336 852.269 512.615C851.071 513.867 850.471 516.331 850.471 520.006L850.471 521.644L836.368 521.644L836.368 518.208C836.368 513.227 838.286 509.112 842.121 505.863C845.957 502.613 850.991 500.988 857.224 500.988C863.749 500.988 868.704 502.44 872.086 505.343C875.469 508.22 877.174 512.135 877.201 517.09C877.201 520.765 876.415 524.055 874.843 526.958C873.298 529.862 871.088 532.818 868.211 535.828L857.184 548.853L878.559 548.853L878.559 560L836.368 560ZM885.028 539.863L885.028 521.964C885.028 515.278 886.826 510.111 890.422 506.462C894.018 502.813 898.959 500.988 905.245 500.988C911.531 500.988 916.472 502.786 920.068 506.382C923.69 509.951 925.501 515.145 925.501 521.964L925.501 539.863C925.501 546.789 923.61 552.023 919.828 555.565C916.072 559.108 911.211 560.866 905.245 560.839C898.906 560.812 893.951 559.041 890.382 555.525C886.813 551.983 885.028 546.762 885.028 539.863ZM898.932 542.7C898.932 545.47 899.452 547.601 900.49 549.093C901.556 550.584 903.141 551.33 905.245 551.33C907.349 551.33 908.934 550.584 909.999 549.093C911.065 547.601 911.598 545.47 911.598 542.7L911.598 519.407C911.598 516.584 911.065 514.426 909.999 512.934C908.934 511.443 907.349 510.697 905.245 510.697C903.141 510.697 901.556 511.443 900.49 512.934C899.452 514.426 898.932 516.584 898.932 519.407L898.932 542.7Z" fill="white"/> +<path d="M105.108 509.618L107.245 511.725L107.249 511.72L105.108 509.618ZM132.077 501.028L135.077 501.028L135.077 498.028L132.077 498.028L132.077 501.028ZM132.077 512.175L132.077 515.175L135.077 515.175L135.077 512.175L132.077 512.175ZM115.297 517.449L117.5 519.485L117.508 519.476L115.297 517.449ZM110.462 536.228L107.462 536.228L107.462 536.296L107.465 536.364L110.462 536.228ZM110.502 537.106L113.502 537.106L113.502 537.038L113.499 536.97L110.502 537.106ZM112.5 548.493L110.047 550.221L110.055 550.232L110.063 550.244L112.5 548.493ZM122.648 549.133L124.949 551.057L124.958 551.047L124.966 551.037L122.648 549.133ZM122.768 533.031L120.31 534.752L120.327 534.775L120.343 534.798L122.768 533.031ZM112.66 532.951L114.857 534.994L114.865 534.985L114.874 534.975L112.66 532.951ZM110.542 539.184L110.542 542.184L113.542 542.184L113.542 539.184L110.542 539.184ZM108.145 539.184L105.145 539.184L105.145 542.184L108.145 542.184L108.145 539.184ZM112.58 527.078L114.672 529.228L114.682 529.219L112.58 527.078ZM134.275 527.358L132.041 529.36L132.049 529.37L134.275 527.358ZM132.517 555.485L134.53 557.709L134.538 557.702L132.517 555.485ZM102.272 554.886L100.078 556.933L100.085 556.94L100.093 556.948L102.272 554.886ZM96.6781 536.108L99.6781 536.108L99.6781 533.111L96.6781 533.111L93.6781 533.111L93.6781 536.108L96.6781 536.108ZM96.6781 533.111L99.6781 533.111C99.6781 523.734 102.306 516.733 107.245 511.725L105.108 509.618L102.972 507.512C96.6703 513.903 93.6781 522.564 93.6781 533.111L96.6781 533.111ZM105.108 509.618L107.249 511.72C112.167 506.709 119.182 504.028 128.721 504.028L128.721 501.028L128.721 498.028C118.016 498.028 109.29 501.074 102.967 507.517L105.108 509.618ZM128.721 501.028L128.721 504.028L132.077 504.028L132.077 501.028L132.077 498.028L128.721 498.028L128.721 501.028ZM132.077 501.028L129.077 501.028L129.077 512.175L132.077 512.175L135.077 512.175L135.077 501.028L132.077 501.028ZM132.077 512.175L132.077 509.175L129.2 509.175L129.2 512.175L129.2 515.175L132.077 515.175L132.077 512.175ZM129.2 512.175L129.2 509.175C122.553 509.175 117.02 511.129 113.085 515.422L115.297 517.449L117.508 519.476C120.019 516.738 123.755 515.175 129.2 515.175L129.2 512.175ZM115.297 517.449L113.093 515.414C109.061 519.779 107.462 527.042 107.462 536.228L110.462 536.228L113.462 536.228C113.462 527.354 115.086 522.098 117.5 519.485L115.297 517.449ZM110.462 536.228L107.465 536.364L107.505 537.243L110.502 537.106L113.499 536.97L113.459 536.091L110.462 536.228ZM110.502 537.106L107.502 537.106C107.502 540.056 107.673 542.618 108.047 544.747C108.411 546.826 109.012 548.75 110.047 550.221L112.5 548.493L114.953 546.766C114.656 546.345 114.257 545.426 113.956 543.71C113.664 542.043 113.502 539.857 113.502 537.106L110.502 537.106ZM112.5 548.493L110.063 550.244C111.933 552.847 114.564 554.33 117.774 554.33L117.774 551.33L117.774 548.33C116.668 548.33 115.783 547.922 114.936 546.743L112.5 548.493ZM117.774 551.33L117.774 554.33C120.626 554.33 123.116 553.249 124.949 551.057L122.648 549.133L120.347 547.208C119.729 547.946 118.97 548.33 117.774 548.33L117.774 551.33ZM122.648 549.133L124.966 551.037C126.015 549.76 126.611 548.109 126.965 546.393C127.326 544.639 127.486 542.566 127.486 540.223L124.486 540.223L121.486 540.223C121.486 542.328 121.339 543.964 121.088 545.18C120.83 546.434 120.506 547.014 120.33 547.228L122.648 549.133ZM124.486 540.223L127.486 540.223C127.486 536.745 126.886 533.588 125.192 531.264L122.768 533.031L120.343 534.798C120.94 535.617 121.486 537.255 121.486 540.223L124.486 540.223ZM122.768 533.031L125.226 531.311C123.472 528.805 120.84 527.634 117.814 527.634L117.814 530.634L117.814 533.634C119.155 533.634 119.827 534.061 120.31 534.752L122.768 533.031ZM117.814 530.634L117.814 527.634C114.915 527.634 112.403 528.785 110.445 530.928L112.66 532.951L114.874 534.975C115.739 534.028 116.664 533.634 117.814 533.634L117.814 530.634ZM112.66 532.951L110.463 530.908C108.405 533.121 107.542 536.003 107.542 539.184L110.542 539.184L113.542 539.184C113.542 537.091 114.09 535.818 114.857 534.994L112.66 532.951ZM110.542 539.184L110.542 536.184L108.145 536.184L108.145 539.184L108.145 542.184L110.542 542.184L110.542 539.184ZM108.145 539.184L111.145 539.184C111.145 534.578 112.438 531.402 114.672 529.228L112.58 527.078L110.488 524.928C106.809 528.507 105.145 533.402 105.145 539.184L108.145 539.184ZM112.58 527.078L114.682 529.219C117.088 526.856 119.853 525.723 123.127 525.723L123.127 522.723L123.127 519.723C118.251 519.723 113.985 521.494 110.478 524.938L112.58 527.078ZM123.127 522.723L123.127 525.723C127.053 525.723 129.913 526.987 132.041 529.36L134.275 527.358L136.508 525.355C133.096 521.549 128.524 519.723 123.127 519.723L123.127 522.723ZM134.275 527.358L132.049 529.37C134.152 531.695 135.43 535.289 135.43 540.622L138.43 540.622L141.43 540.622C141.43 534.396 139.937 529.147 136.5 525.346L134.275 527.358ZM138.43 540.622L135.43 540.622C135.43 546.26 133.699 550.346 130.495 553.269L132.517 555.485L134.538 557.702C139.218 553.433 141.43 547.61 141.43 540.622L138.43 540.622ZM132.517 555.485L130.503 553.261C127.181 556.269 122.974 557.839 117.654 557.839L117.654 560.839L117.654 563.839C124.267 563.839 129.968 561.84 134.53 557.709L132.517 555.485ZM117.654 560.839L117.654 557.839C111.81 557.839 107.533 556.081 104.451 552.824L102.272 554.886L100.093 556.948C104.521 561.628 110.499 563.839 117.654 563.839L117.654 560.839ZM102.272 554.886L104.465 552.839C101.479 549.64 99.6781 544.281 99.6781 536.108L96.6781 536.108L93.6781 536.108C93.6781 544.982 95.6065 552.142 100.078 556.933L102.272 554.886ZM150.413 506.422L152.426 508.646L152.434 508.638L150.413 506.422ZM180.618 506.981L178.431 509.036L178.439 509.043L180.618 506.981ZM177.821 552.169L175.685 550.063L175.68 550.068L177.821 552.169ZM154.208 560.759L154.208 563.759L154.216 563.759L154.208 560.759ZM150.852 560.759L147.852 560.759L147.852 563.759L150.852 563.759L150.852 560.759ZM150.852 549.812L150.852 546.812L147.852 546.812L147.852 549.812L150.852 549.812ZM153.729 549.812L153.742 546.812L153.729 546.812L153.729 549.812ZM172.467 525.879L175.467 525.879L175.467 525.826L175.465 525.772L172.467 525.879ZM172.427 524.761L169.427 524.761L169.427 524.814L169.429 524.868L172.427 524.761ZM170.43 513.574L167.965 515.285L167.971 515.293L167.977 515.301L170.43 513.574ZM160.281 512.934L162.583 514.859L162.591 514.849L162.599 514.839L160.281 512.934ZM160.121 529.036L157.677 530.776L157.694 530.799L157.712 530.823L160.121 529.036ZM170.27 529.116L168.092 527.053L168.091 527.054L170.27 529.116ZM172.427 522.883L172.427 519.883L169.427 519.883L169.427 522.883L172.427 522.883ZM174.745 522.883L177.745 522.883L177.745 519.883L174.745 519.883L174.745 522.883ZM170.35 534.949L172.441 537.099L172.451 537.09L170.35 534.949ZM144.5 521.205L147.5 521.205C147.5 515.598 149.227 511.542 152.426 508.646L150.413 506.422L148.399 504.198C143.714 508.44 141.5 514.24 141.5 521.205L144.5 521.205ZM150.413 506.422L152.434 508.638C155.755 505.61 159.971 504.028 165.315 504.028L165.315 501.028L165.315 498.028C158.674 498.028 152.955 500.043 148.391 504.206L150.413 506.422ZM165.315 501.028L165.315 504.028C171.129 504.028 175.376 505.784 178.431 509.036L180.618 506.981L182.804 504.927C178.402 500.242 172.447 498.028 165.315 498.028L165.315 501.028ZM180.618 506.981L178.439 509.043C181.437 512.212 183.251 517.559 183.251 525.76L186.251 525.76L189.251 525.76C189.251 516.86 187.31 509.688 182.797 504.919L180.618 506.981ZM186.251 525.76L183.251 525.76L183.251 528.716L186.251 528.716L189.251 528.716L189.251 525.76L186.251 525.76ZM186.251 528.716L183.251 528.716C183.251 538.064 180.625 545.052 175.685 550.063L177.821 552.169L179.957 554.275C186.257 547.886 189.251 539.239 189.251 528.716L186.251 528.716ZM177.821 552.169L175.68 550.068C170.791 555.05 163.775 557.734 154.2 557.759L154.208 560.759L154.216 563.759C164.938 563.731 173.664 560.688 179.962 554.27L177.821 552.169ZM154.208 560.759L154.208 557.759L150.852 557.759L150.852 560.759L150.852 563.759L154.208 563.759L154.208 560.759ZM150.852 560.759L153.852 560.759L153.852 549.812L150.852 549.812L147.852 549.812L147.852 560.759L150.852 560.759ZM150.852 549.812L150.852 552.812L153.729 552.812L153.729 549.812L153.729 546.812L150.852 546.812L150.852 549.812ZM153.729 549.812L153.716 552.812C160.359 552.841 165.895 550.92 169.837 546.653L167.633 544.618L165.429 542.582C162.924 545.294 159.191 546.836 153.742 546.812L153.729 549.812ZM167.633 544.618L169.837 546.653C173.867 542.289 175.467 535.042 175.467 525.879L172.467 525.879L169.467 525.879C169.467 534.723 167.844 539.968 165.429 542.582L167.633 544.618ZM172.467 525.879L175.465 525.772L175.425 524.654L172.427 524.761L169.429 524.868L169.469 525.987L172.467 525.879ZM172.427 524.761L175.427 524.761C175.427 521.875 175.256 519.36 174.881 517.261C174.514 515.207 173.912 513.308 172.882 511.846L170.43 513.574L167.977 515.301C168.279 515.73 168.675 516.641 168.975 518.316C169.266 519.946 169.427 522.08 169.427 524.761L172.427 524.761ZM170.43 513.574L172.894 511.863C171.047 509.203 168.4 507.697 165.156 507.697L165.156 510.697L165.156 513.697C166.279 513.697 167.149 514.109 167.965 515.285L170.43 513.574ZM165.156 510.697L165.156 507.697C162.284 507.697 159.789 508.807 157.963 511.03L160.281 512.934L162.599 514.839C163.224 514.079 163.979 513.697 165.156 513.697L165.156 510.697ZM160.281 512.934L157.98 511.01C156.927 512.269 156.326 513.892 155.968 515.579C155.604 517.298 155.443 519.324 155.443 521.604L158.443 521.604L161.443 521.604C161.443 519.57 161.59 517.993 161.838 516.823C162.093 515.619 162.41 515.065 162.583 514.859L160.281 512.934ZM158.443 521.604L155.443 521.604C155.443 525.195 156.014 528.439 157.677 530.776L160.121 529.036L162.565 527.296C161.992 526.49 161.443 524.779 161.443 521.604L158.443 521.604ZM160.121 529.036L157.712 530.823C159.505 533.242 162.129 534.353 165.116 534.353L165.116 531.353L165.116 528.353C163.734 528.353 163.028 527.919 162.531 527.249L160.121 529.036ZM165.116 531.353L165.116 534.353C167.978 534.353 170.48 533.258 172.449 531.178L170.27 529.116L168.091 527.054C167.236 527.956 166.302 528.353 165.116 528.353L165.116 531.353ZM170.27 529.116L172.448 531.179C174.542 528.968 175.427 526.078 175.427 522.883L172.427 522.883L169.427 522.883C169.427 524.961 168.874 526.227 168.092 527.053L170.27 529.116ZM172.427 522.883L172.427 525.883L174.745 525.883L174.745 522.883L174.745 519.883L172.427 519.883L172.427 522.883ZM174.745 522.883L171.745 522.883C171.745 527.465 170.463 530.633 168.248 532.808L170.35 534.949L172.451 537.09C176.096 533.511 177.745 528.636 177.745 522.883L174.745 522.883ZM170.35 534.949L168.258 532.799C165.89 535.102 163.126 536.224 159.802 536.224L159.802 539.224L159.802 542.224C164.682 542.224 168.949 540.496 172.441 537.099L170.35 534.949ZM159.802 539.224L159.802 536.224C155.885 536.224 153.027 534.953 150.897 532.556L148.655 534.549L146.412 536.543C149.823 540.379 154.396 542.224 159.802 542.224L159.802 539.224ZM148.655 534.549L150.897 532.556C148.775 530.17 147.5 526.534 147.5 521.205L144.5 521.205L141.5 521.205C141.5 527.436 142.994 532.696 146.412 536.543L148.655 534.549ZM201.151 509.618L203.287 511.725L203.292 511.72L201.151 509.618ZM228.12 501.028L231.12 501.028L231.12 498.028L228.12 498.028L228.12 501.028ZM228.12 512.175L228.12 515.175L231.12 515.175L231.12 512.175L228.12 512.175ZM211.339 517.449L213.543 519.485L213.55 519.476L211.339 517.449ZM206.505 536.228L203.505 536.228L203.505 536.296L203.508 536.364L206.505 536.228ZM206.545 537.106L209.545 537.106L209.545 537.038L209.541 536.97L206.545 537.106ZM208.542 548.493L206.089 550.221L206.097 550.232L206.106 550.244L208.542 548.493ZM218.69 549.133L220.992 551.057L221 551.047L221.009 551.037L218.69 549.133ZM218.81 533.031L216.353 534.752L216.369 534.775L216.386 534.798L218.81 533.031ZM208.702 532.951L210.899 534.994L210.908 534.985L210.917 534.975L208.702 532.951ZM206.584 539.184L206.584 542.184L209.584 542.184L209.584 539.184L206.584 539.184ZM204.187 539.184L201.187 539.184L201.187 542.184L204.187 542.184L204.187 539.184ZM208.622 527.078L210.714 529.228L210.724 529.219L208.622 527.078ZM230.317 527.358L228.083 529.36L228.092 529.37L230.317 527.358ZM228.559 555.485L230.573 557.709L230.581 557.702L228.559 555.485ZM198.314 554.886L196.121 556.933L196.128 556.94L196.135 556.948L198.314 554.886ZM192.721 536.108L195.721 536.108L195.721 533.111L192.721 533.111L189.721 533.111L189.721 536.108L192.721 536.108ZM192.721 533.111L195.721 533.111C195.721 523.734 198.348 516.733 203.287 511.725L201.151 509.618L199.015 507.512C192.713 513.903 189.721 522.564 189.721 533.111L192.721 533.111ZM201.151 509.618L203.292 511.72C208.209 506.709 215.225 504.028 224.763 504.028L224.763 501.028L224.763 498.028C214.059 498.028 205.333 501.074 199.01 507.517L201.151 509.618ZM224.763 501.028L224.763 504.028L228.12 504.028L228.12 501.028L228.12 498.028L224.763 498.028L224.763 501.028ZM228.12 501.028L225.12 501.028L225.12 512.175L228.12 512.175L231.12 512.175L231.12 501.028L228.12 501.028ZM228.12 512.175L228.12 509.175L225.243 509.175L225.243 512.175L225.243 515.175L228.12 515.175L228.12 512.175ZM225.243 512.175L225.243 509.175C218.596 509.175 213.063 511.129 209.128 515.422L211.339 517.449L213.55 519.476C216.061 516.738 219.798 515.175 225.243 515.175L225.243 512.175ZM211.339 517.449L209.135 515.414C205.103 519.779 203.505 527.042 203.505 536.228L206.505 536.228L209.505 536.228C209.505 527.354 211.129 522.098 213.543 519.485L211.339 517.449ZM206.505 536.228L203.508 536.364L203.548 537.243L206.545 537.106L209.541 536.97L209.501 536.091L206.505 536.228ZM206.545 537.106L203.545 537.106C203.545 540.056 203.716 542.618 204.089 544.747C204.454 546.826 205.054 548.75 206.089 550.221L208.542 548.493L210.995 546.766C210.699 546.345 210.3 545.426 209.999 543.71C209.706 542.043 209.545 539.857 209.545 537.106L206.545 537.106ZM208.542 548.493L206.106 550.244C207.975 552.847 210.606 554.33 213.816 554.33L213.816 551.33L213.816 548.33C212.711 548.33 211.826 547.922 210.979 546.743L208.542 548.493ZM213.816 551.33L213.816 554.33C216.668 554.33 219.159 553.249 220.992 551.057L218.69 549.133L216.389 547.208C215.772 547.946 215.013 548.33 213.816 548.33L213.816 551.33ZM218.69 549.133L221.009 551.037C222.058 549.76 222.653 548.109 223.007 546.393C223.369 544.639 223.528 542.566 223.528 540.223L220.528 540.223L217.528 540.223C217.528 542.328 217.382 543.964 217.131 545.18C216.872 546.434 216.549 547.014 216.372 547.228L218.69 549.133ZM220.528 540.223L223.528 540.223C223.528 536.745 222.929 533.588 221.235 531.264L218.81 533.031L216.386 534.798C216.983 535.617 217.528 537.255 217.528 540.223L220.528 540.223ZM218.81 533.031L221.268 531.311C219.514 528.805 216.883 527.634 213.856 527.634L213.856 530.634L213.856 533.634C215.197 533.634 215.869 534.061 216.353 534.752L218.81 533.031ZM213.856 530.634L213.856 527.634C210.957 527.634 208.446 528.785 206.487 530.928L208.702 532.951L210.917 534.975C211.782 534.028 212.706 533.634 213.856 533.634L213.856 530.634ZM208.702 532.951L206.505 530.908C204.448 533.121 203.584 536.003 203.584 539.184L206.584 539.184L209.584 539.184C209.584 537.091 210.133 535.818 210.899 534.994L208.702 532.951ZM206.584 539.184L206.584 536.184L204.187 536.184L204.187 539.184L204.187 542.184L206.584 542.184L206.584 539.184ZM204.187 539.184L207.187 539.184C207.187 534.578 208.48 531.402 210.714 529.228L208.622 527.078L206.53 524.928C202.851 528.507 201.187 533.402 201.187 539.184L204.187 539.184ZM208.622 527.078L210.724 529.219C213.13 526.856 215.896 525.723 219.17 525.723L219.17 522.723L219.17 519.723C214.294 519.723 210.027 521.494 206.52 524.938L208.622 527.078ZM219.17 522.723L219.17 525.723C223.096 525.723 225.956 526.987 228.083 529.36L230.317 527.358L232.551 525.355C229.138 521.549 224.567 519.723 219.17 519.723L219.17 522.723ZM230.317 527.358L228.092 529.37C230.195 531.695 231.472 535.289 231.472 540.622L234.472 540.622L237.472 540.622C237.472 534.396 235.98 529.147 232.542 525.346L230.317 527.358ZM234.472 540.622L231.472 540.622C231.472 546.26 229.742 550.346 226.537 553.269L228.559 555.485L230.581 557.702C235.261 553.433 237.472 547.61 237.472 540.622L234.472 540.622ZM228.559 555.485L226.546 553.261C223.223 556.269 219.016 557.839 213.696 557.839L213.696 560.839L213.696 563.839C220.309 563.839 226.01 561.84 230.573 557.709L228.559 555.485ZM213.696 560.839L213.696 557.839C207.852 557.839 203.576 556.081 200.493 552.824L198.314 554.886L196.135 556.948C200.564 561.628 206.542 563.839 213.696 563.839L213.696 560.839ZM198.314 554.886L200.507 552.839C197.521 549.64 195.721 544.281 195.721 536.108L192.721 536.108L189.721 536.108C189.721 544.982 191.649 552.142 196.121 556.933L198.314 554.886ZM246.455 506.422L248.469 508.646L248.477 508.638L246.455 506.422ZM276.66 506.981L274.474 509.036L274.481 509.043L276.66 506.981ZM273.863 552.169L271.727 550.063L271.722 550.068L273.863 552.169ZM250.251 560.759L250.251 563.759L250.259 563.759L250.251 560.759ZM246.895 560.759L243.895 560.759L243.895 563.759L246.895 563.759L246.895 560.759ZM246.895 549.812L246.895 546.812L243.895 546.812L243.895 549.812L246.895 549.812ZM249.771 549.812L249.785 546.812L249.771 546.812L249.771 549.812ZM268.51 525.879L271.51 525.879L271.51 525.826L271.508 525.772L268.51 525.879ZM268.47 524.761L265.47 524.761L265.47 524.814L265.472 524.868L268.47 524.761ZM266.472 513.574L264.008 515.285L264.014 515.293L264.019 515.301L266.472 513.574ZM256.324 512.934L258.625 514.859L258.633 514.849L258.642 514.839L256.324 512.934ZM256.164 529.036L253.72 530.776L253.737 530.799L253.754 530.823L256.164 529.036ZM266.312 529.116L264.134 527.053L264.133 527.054L266.312 529.116ZM268.47 522.883L268.47 519.883L265.47 519.883L265.47 522.883L268.47 522.883ZM270.787 522.883L273.787 522.883L273.787 519.883L270.787 519.883L270.787 522.883ZM266.392 534.949L268.484 537.099L268.494 537.09L266.392 534.949ZM240.542 521.205L243.542 521.205C243.542 515.598 245.27 511.542 248.469 508.646L246.455 506.422L244.442 504.198C239.756 508.44 237.542 514.24 237.542 521.205L240.542 521.205ZM246.455 506.422L248.477 508.638C251.797 505.61 256.014 504.028 261.358 504.028L261.358 501.028L261.358 498.028C254.716 498.028 248.997 500.043 244.433 504.206L246.455 506.422ZM261.358 501.028L261.358 504.028C267.172 504.028 271.418 505.784 274.474 509.036L276.66 506.981L278.847 504.927C274.444 500.242 268.489 498.028 261.358 498.028L261.358 501.028ZM276.66 506.981L274.481 509.043C277.48 512.212 279.294 517.559 279.294 525.76L282.294 525.76L285.294 525.76C285.294 516.86 283.352 509.688 278.839 504.919L276.66 506.981ZM282.294 525.76L279.294 525.76L279.294 528.716L282.294 528.716L285.294 528.716L285.294 525.76L282.294 525.76ZM282.294 528.716L279.294 528.716C279.294 538.064 276.667 545.052 271.727 550.063L273.863 552.169L276 554.275C282.3 547.886 285.294 539.239 285.294 528.716L282.294 528.716ZM273.863 552.169L271.722 550.068C266.833 555.05 259.817 557.734 250.243 557.759L250.251 560.759L250.259 563.759C260.981 563.731 269.707 560.688 276.005 554.27L273.863 552.169ZM250.251 560.759L250.251 557.759L246.895 557.759L246.895 560.759L246.895 563.759L250.251 563.759L250.251 560.759ZM246.895 560.759L249.895 560.759L249.895 549.812L246.895 549.812L243.895 549.812L243.895 560.759L246.895 560.759ZM246.895 549.812L246.895 552.812L249.771 552.812L249.771 549.812L249.771 546.812L246.895 546.812L246.895 549.812ZM249.771 549.812L249.758 552.812C256.401 552.841 261.938 550.92 265.879 546.653L263.675 544.618L261.471 542.582C258.967 545.294 255.234 546.836 249.785 546.812L249.771 549.812ZM263.675 544.618L265.879 546.653C269.91 542.289 271.51 535.042 271.51 525.879L268.51 525.879L265.51 525.879C265.51 534.723 263.886 539.968 261.471 542.582L263.675 544.618ZM268.51 525.879L271.508 525.772L271.468 524.654L268.47 524.761L265.472 524.868L265.512 525.987L268.51 525.879ZM268.47 524.761L271.47 524.761C271.47 521.875 271.298 519.36 270.924 517.261C270.557 515.207 269.954 513.308 268.925 511.846L266.472 513.574L264.019 515.301C264.321 515.73 264.718 516.641 265.017 518.316C265.308 519.946 265.47 522.08 265.47 524.761L268.47 524.761ZM266.472 513.574L268.936 511.863C267.089 509.203 264.443 507.697 261.198 507.697L261.198 510.697L261.198 513.697C262.322 513.697 263.191 514.109 264.008 515.285L266.472 513.574ZM261.198 510.697L261.198 507.697C258.326 507.697 255.832 508.807 254.006 511.03L256.324 512.934L258.642 514.839C259.266 514.079 260.021 513.697 261.198 513.697L261.198 510.697ZM256.324 512.934L254.023 511.01C252.97 512.269 252.368 513.892 252.011 515.579C251.646 517.298 251.486 519.324 251.486 521.604L254.486 521.604L257.486 521.604C257.486 519.57 257.632 517.993 257.88 516.823C258.135 515.619 258.453 515.065 258.625 514.859L256.324 512.934ZM254.486 521.604L251.486 521.604C251.486 525.195 252.056 528.439 253.72 530.776L256.164 529.036L258.608 527.296C258.034 526.49 257.486 524.779 257.486 521.604L254.486 521.604ZM256.164 529.036L253.754 530.823C255.548 533.242 258.172 534.353 261.158 534.353L261.158 531.353L261.158 528.353C259.776 528.353 259.071 527.919 258.574 527.249L256.164 529.036ZM261.158 531.353L261.158 534.353C264.02 534.353 266.522 533.258 268.491 531.178L266.312 529.116L264.133 527.054C263.279 527.956 262.345 528.353 261.158 528.353L261.158 531.353ZM266.312 529.116L268.49 531.179C270.584 528.968 271.47 526.078 271.47 522.883L268.47 522.883L265.47 522.883C265.47 524.961 264.917 526.227 264.134 527.053L266.312 529.116ZM268.47 522.883L268.47 525.883L270.787 525.883L270.787 522.883L270.787 519.883L268.47 519.883L268.47 522.883ZM270.787 522.883L267.787 522.883C267.787 527.465 266.506 530.633 264.29 532.808L266.392 534.949L268.494 537.09C272.138 533.511 273.787 528.636 273.787 522.883L270.787 522.883ZM266.392 534.949L264.3 532.799C261.933 535.102 259.168 536.224 255.844 536.224L255.844 539.224L255.844 542.224C260.724 542.224 264.992 540.496 268.484 537.099L266.392 534.949ZM255.844 539.224L255.844 536.224C251.927 536.224 249.069 534.953 246.939 532.556L244.697 534.549L242.455 536.543C245.865 540.379 250.439 542.224 255.844 542.224L255.844 539.224ZM244.697 534.549L246.939 532.556C244.818 530.17 243.542 526.534 243.542 521.205L240.542 521.205L237.542 521.205C237.542 527.436 239.036 532.696 242.455 536.543L244.697 534.549ZM346.773 506.382L344.651 508.503L344.659 508.511L344.667 508.519L346.773 506.382ZM346.533 555.565L344.482 553.376L344.474 553.383L346.533 555.565ZM331.95 560.839L331.963 557.839L331.962 557.839L331.95 560.839ZM317.087 555.525L314.974 557.654L314.982 557.662L317.087 555.525ZM327.195 549.093L324.734 550.807L324.744 550.822L324.754 550.836L327.195 549.093ZM327.195 512.934L324.754 511.191L324.744 511.205L324.734 511.22L327.195 512.934ZM311.733 539.863L314.733 539.863L314.733 521.964L311.733 521.964L308.733 521.964L308.733 539.863L311.733 539.863ZM311.733 521.964L314.733 521.964C314.733 515.817 316.375 511.5 319.264 508.568L317.127 506.462L314.99 504.356C310.688 508.722 308.733 514.74 308.733 521.964L311.733 521.964ZM317.127 506.462L319.264 508.568C322.173 505.616 326.273 503.988 331.95 503.988L331.95 500.988L331.95 497.988C325.055 497.988 319.273 500.01 314.99 504.356L317.127 506.462ZM331.95 500.988L331.95 503.988C337.639 503.988 341.745 505.597 344.651 508.503L346.773 506.382L348.894 504.261C344.609 499.976 338.832 497.988 331.95 497.988L331.95 500.988ZM346.773 506.382L344.667 508.519C347.543 511.353 349.206 515.666 349.206 521.964L352.206 521.964L355.206 521.964C355.206 514.625 353.247 508.55 348.878 504.245L346.773 506.382ZM352.206 521.964L349.206 521.964L349.206 539.863L352.206 539.863L355.206 539.863L355.206 521.964L352.206 521.964ZM352.206 539.863L349.206 539.863C349.206 546.25 347.475 550.572 344.482 553.376L346.533 555.565L348.584 557.755C353.156 553.473 355.206 547.327 355.206 539.863L352.206 539.863ZM346.533 555.565L344.474 553.383C341.366 556.315 337.289 557.863 331.963 557.839L331.95 560.839L331.936 563.839C338.544 563.869 344.189 561.901 348.591 557.747L346.533 555.565ZM331.95 560.839L331.962 557.839C326.189 557.815 322.065 556.218 319.192 553.388L317.087 555.525L314.982 557.662C319.247 561.864 325.032 563.81 331.937 563.839L331.95 560.839ZM317.087 555.525L319.2 553.396C316.383 550.6 314.733 546.267 314.733 539.863L311.733 539.863L308.733 539.863C308.733 547.257 310.652 553.365 314.974 557.654L317.087 555.525ZM325.637 542.7L322.637 542.7C322.637 545.782 323.205 548.612 324.734 550.807L327.195 549.093L329.657 547.378C329.108 546.59 328.637 545.158 328.637 542.7L325.637 542.7ZM327.195 549.093L324.754 550.836C326.472 553.242 329.042 554.33 331.95 554.33L331.95 551.33L331.95 548.33C330.65 548.33 330.049 547.927 329.637 547.349L327.195 549.093ZM331.95 551.33L331.95 554.33C334.858 554.33 337.428 553.242 339.146 550.836L336.704 549.093L334.263 547.349C333.85 547.927 333.25 548.33 331.95 548.33L331.95 551.33ZM336.704 549.093L339.146 550.836C340.717 548.636 341.303 545.794 341.303 542.7L338.303 542.7L335.303 542.7C335.303 545.146 334.822 546.566 334.263 547.349L336.704 549.093ZM338.303 542.7L341.303 542.7L341.303 519.407L338.303 519.407L335.303 519.407L335.303 542.7L338.303 542.7ZM338.303 519.407L341.303 519.407C341.303 516.274 340.723 513.399 339.146 511.191L336.704 512.934L334.263 514.678C334.817 515.453 335.303 516.893 335.303 519.407L338.303 519.407ZM336.704 512.934L339.146 511.191C337.428 508.786 334.858 507.697 331.95 507.697L331.95 510.697L331.95 513.697C333.25 513.697 333.85 514.1 334.263 514.678L336.704 512.934ZM331.95 510.697L331.95 507.697C329.042 507.697 326.472 508.786 324.754 511.191L327.195 512.934L329.637 514.678C330.049 514.1 330.65 513.697 331.95 513.697L331.95 510.697ZM327.195 512.934L324.734 511.22C323.199 513.423 322.637 516.286 322.637 519.407L325.637 519.407L328.637 519.407C328.637 516.881 329.114 515.429 329.657 514.649L327.195 512.934ZM325.637 519.407L322.637 519.407L322.637 542.7L325.637 542.7L328.637 542.7L328.637 519.407L325.637 519.407ZM381.969 560L378.969 560L378.969 563L381.969 563L381.969 560ZM381.969 545.297L379.45 543.667L378.969 544.411L378.969 545.297L381.969 545.297ZM382.408 544.618L384.927 546.248L385.408 545.504L385.408 544.618L382.408 544.618ZM382.408 519.487L385.408 519.487L385.408 516.487L382.408 516.487L382.408 519.487ZM382.089 519.487L382.089 516.487L380.382 516.487L379.51 517.954L382.089 519.487ZM371.021 538.105L368.443 536.572L365.748 541.105L371.021 541.105L371.021 538.105ZM387.402 538.105L387.402 541.105L387.843 541.105L388.265 540.979L387.402 538.105ZM388.601 537.746L388.601 534.746L388.161 534.746L387.739 534.872L388.601 537.746ZM401.426 537.746L404.426 537.746L404.426 534.746L401.426 534.746L401.426 537.746ZM401.426 548.533L401.426 551.533L404.426 551.533L404.426 548.533L401.426 548.533ZM358.156 548.533L355.156 548.533L355.156 551.533L358.156 551.533L358.156 548.533ZM358.156 538.625L355.685 536.924L355.156 537.692L355.156 538.625L358.156 538.625ZM383.487 501.827L383.487 498.827L381.91 498.827L381.016 500.126L383.487 501.827ZM394.754 501.827L397.754 501.827L397.754 498.827L394.754 498.827L394.754 501.827ZM394.754 560L394.754 563L397.754 563L397.754 560L394.754 560ZM381.969 560L384.969 560L384.969 545.297L381.969 545.297L378.969 545.297L378.969 560L381.969 560ZM381.969 545.297L384.487 546.927L384.927 546.248L382.408 544.618L379.89 542.988L379.45 543.667L381.969 545.297ZM382.408 544.618L385.408 544.618L385.408 519.487L382.408 519.487L379.408 519.487L379.408 544.618L382.408 544.618ZM382.408 519.487L382.408 516.487L382.089 516.487L382.089 519.487L382.089 522.487L382.408 522.487L382.408 519.487ZM382.089 519.487L379.51 517.954L368.443 536.572L371.021 538.105L373.6 539.638L384.667 521.02L382.089 519.487ZM371.021 538.105L371.021 541.105L387.402 541.105L387.402 538.105L387.402 535.105L371.021 535.105L371.021 538.105ZM387.402 538.105L388.265 540.979L389.463 540.619L388.601 537.746L387.739 534.872L386.54 535.232L387.402 538.105ZM388.601 537.746L388.601 540.746L401.426 540.746L401.426 537.746L401.426 534.746L388.601 534.746L388.601 537.746ZM401.426 537.746L398.426 537.746L398.426 548.533L401.426 548.533L404.426 548.533L404.426 537.746L401.426 537.746ZM401.426 548.533L401.426 545.533L358.156 545.533L358.156 548.533L358.156 551.533L401.426 551.533L401.426 548.533ZM358.156 548.533L361.156 548.533L361.156 538.625L358.156 538.625L355.156 538.625L355.156 548.533L358.156 548.533ZM358.156 538.625L360.627 540.326L385.958 503.528L383.487 501.827L381.016 500.126L355.685 536.924L358.156 538.625ZM383.487 501.827L383.487 504.827L394.754 504.827L394.754 501.827L394.754 498.827L383.487 498.827L383.487 501.827ZM394.754 501.827L391.754 501.827L391.754 560L394.754 560L397.754 560L397.754 501.827L394.754 501.827ZM394.754 560L394.754 557L381.969 557L381.969 560L381.969 563L394.754 563L394.754 560ZM407.136 560L404.136 560L404.136 563L407.136 563L407.136 560ZM407.136 551.33L404.976 549.249L404.136 550.12L404.136 551.33L407.136 551.33ZM428.152 529.515L430.313 531.597L430.373 531.534L430.43 531.468L428.152 529.515ZM423.038 512.615L425.205 514.69L425.216 514.678L425.227 514.667L423.038 512.615ZM421.24 521.644L421.24 524.644L424.24 524.644L424.24 521.644L421.24 521.644ZM407.136 521.644L404.136 521.644L404.136 524.644L407.136 524.644L407.136 521.644ZM442.855 505.343L440.901 507.62L440.912 507.629L442.855 505.343ZM447.969 517.09L450.969 517.09L450.969 517.082L450.969 517.074L447.969 517.09ZM445.612 526.958L442.974 525.53L442.969 525.54L442.964 525.549L445.612 526.958ZM438.98 535.828L436.811 533.755L436.748 533.821L436.69 533.89L438.98 535.828ZM427.952 548.853L425.663 546.914L421.482 551.853L427.952 551.853L427.952 548.853ZM449.328 548.853L452.328 548.853L452.328 545.853L449.328 545.853L449.328 548.853ZM449.328 560L449.328 563L452.328 563L452.328 560L449.328 560ZM407.136 560L410.136 560L410.136 551.33L407.136 551.33L404.136 551.33L404.136 560L407.136 560ZM407.136 551.33L409.297 553.411L430.313 531.597L428.152 529.515L425.992 527.434L404.976 549.249L407.136 551.33ZM428.152 529.515L430.43 531.468C432.133 529.481 433.61 527.434 434.852 525.325L432.267 523.802L429.682 522.279C428.634 524.059 427.368 525.821 425.874 527.563L428.152 529.515ZM432.267 523.802L434.852 525.325C436.245 522.96 436.985 520.428 436.985 517.769L433.985 517.769L430.985 517.769C430.985 519.265 430.58 520.755 429.682 522.279L432.267 523.802ZM433.985 517.769L436.985 517.769C436.985 514.895 436.35 512.083 434.338 510.164L432.267 512.335L430.197 514.506C430.475 514.771 430.985 515.582 430.985 517.769L433.985 517.769ZM432.267 512.335L434.338 510.164C432.536 508.447 430.241 507.697 427.753 507.697L427.753 510.697L427.753 513.697C428.993 513.697 429.708 514.04 430.197 514.506L432.267 512.335ZM427.753 510.697L427.753 507.697C425.08 507.697 422.681 508.61 420.849 510.563L423.038 512.615L425.227 514.667C425.793 514.063 426.537 513.697 427.753 513.697L427.753 510.697ZM423.038 512.615L420.871 510.54C419.776 511.684 419.145 513.17 418.775 514.693C418.399 516.235 418.24 518.026 418.24 520.006L421.24 520.006L424.24 520.006C424.24 518.311 424.38 517.032 424.605 516.111C424.833 515.17 425.102 514.797 425.205 514.69L423.038 512.615ZM421.24 520.006L418.24 520.006L418.24 521.644L421.24 521.644L424.24 521.644L424.24 520.006L421.24 520.006ZM421.24 521.644L421.24 518.644L407.136 518.644L407.136 521.644L407.136 524.644L421.24 524.644L421.24 521.644ZM407.136 521.644L410.136 521.644L410.136 518.208L407.136 518.208L404.136 518.208L404.136 521.644L407.136 521.644ZM407.136 518.208L410.136 518.208C410.136 514.119 411.659 510.837 414.829 508.152L412.89 505.863L410.951 503.574C406.449 507.387 404.136 512.336 404.136 518.208L407.136 518.208ZM412.89 505.863L414.829 508.152C418.002 505.463 422.294 503.988 427.992 503.988L427.992 500.988L427.992 497.988C421.225 497.988 415.449 499.763 410.951 503.574L412.89 505.863ZM427.992 500.988L427.992 503.988C434.126 503.988 438.266 505.358 440.901 507.62L442.855 505.343L444.809 503.067C440.678 499.522 434.91 497.988 427.992 497.988L427.992 500.988ZM442.855 505.343L440.912 507.629C443.547 509.869 444.947 512.912 444.969 517.106L447.969 517.09L450.969 517.074C450.938 511.359 448.929 506.57 444.799 503.058L442.855 505.343ZM447.969 517.09L444.969 517.09C444.969 520.324 444.282 523.113 442.974 525.53L445.612 526.958L448.25 528.386C450.085 524.996 450.969 521.207 450.969 517.09L447.969 517.09ZM445.612 526.958L442.964 525.549C441.576 528.156 439.546 530.894 436.811 533.755L438.98 535.828L441.148 537.901C444.167 534.743 446.558 531.567 448.26 528.367L445.612 526.958ZM438.98 535.828L436.69 533.89L425.663 546.914L427.952 548.853L430.242 550.791L441.269 537.766L438.98 535.828ZM427.952 548.853L427.952 551.853L449.328 551.853L449.328 548.853L449.328 545.853L427.952 545.853L427.952 548.853ZM449.328 548.853L446.328 548.853L446.328 560L449.328 560L452.328 560L452.328 548.853L449.328 548.853ZM449.328 560L449.328 557L407.136 557L407.136 560L407.136 563L449.328 563L449.328 560ZM490.836 506.382L488.715 508.503L488.723 508.511L488.731 508.519L490.836 506.382ZM490.597 555.565L488.546 553.376L488.538 553.383L490.597 555.565ZM476.014 560.839L476.027 557.839L476.026 557.839L476.014 560.839ZM461.151 555.525L459.037 557.654L459.045 557.662L461.151 555.525ZM471.259 549.093L468.797 550.807L468.807 550.822L468.818 550.836L471.259 549.093ZM471.259 512.934L468.818 511.191L468.807 511.205L468.797 511.22L471.259 512.934ZM455.797 539.863L458.797 539.863L458.797 521.964L455.797 521.964L452.797 521.964L452.797 539.863L455.797 539.863ZM455.797 521.964L458.797 521.964C458.797 515.817 460.438 511.5 463.328 508.568L461.191 506.462L459.054 504.356C454.751 508.722 452.797 514.74 452.797 521.964L455.797 521.964ZM461.191 506.462L463.328 508.568C466.236 505.616 470.337 503.988 476.014 503.988L476.014 500.988L476.014 497.988C469.118 497.988 463.337 500.01 459.054 504.356L461.191 506.462ZM476.014 500.988L476.014 503.988C481.703 503.988 485.809 505.597 488.715 508.503L490.836 506.382L492.958 504.261C488.673 499.976 482.896 497.988 476.014 497.988L476.014 500.988ZM490.836 506.382L488.731 508.519C491.607 511.353 493.27 515.666 493.27 521.964L496.27 521.964L499.27 521.964C499.27 514.625 497.311 508.55 492.942 504.245L490.836 506.382ZM496.27 521.964L493.27 521.964L493.27 539.863L496.27 539.863L499.27 539.863L499.27 521.964L496.27 521.964ZM496.27 539.863L493.27 539.863C493.27 546.25 491.539 550.572 488.546 553.376L490.597 555.565L492.647 557.755C497.219 553.473 499.27 547.327 499.27 539.863L496.27 539.863ZM490.597 555.565L488.538 553.383C485.43 556.315 481.352 557.863 476.027 557.839L476.014 560.839L476 563.839C482.608 563.869 488.252 561.901 492.655 557.747L490.597 555.565ZM476.014 560.839L476.026 557.839C470.252 557.815 466.129 556.218 463.256 553.388L461.151 555.525L459.045 557.662C463.311 561.864 469.096 563.81 476.001 563.839L476.014 560.839ZM461.151 555.525L463.264 553.396C460.447 550.6 458.797 546.267 458.797 539.863L455.797 539.863L452.797 539.863C452.797 547.257 454.716 553.365 459.037 557.654L461.151 555.525ZM469.701 542.7L466.701 542.7C466.701 545.782 467.268 548.612 468.797 550.807L471.259 549.093L473.721 547.378C473.172 546.59 472.701 545.158 472.701 542.7L469.701 542.7ZM471.259 549.093L468.818 550.836C470.536 553.242 473.105 554.33 476.014 554.33L476.014 551.33L476.014 548.33C474.713 548.33 474.113 547.927 473.7 547.349L471.259 549.093ZM476.014 551.33L476.014 554.33C478.922 554.33 481.491 553.242 483.209 550.836L480.768 549.093L478.327 547.349C477.914 547.927 477.314 548.33 476.014 548.33L476.014 551.33ZM480.768 549.093L483.209 550.836C484.781 548.636 485.366 545.794 485.366 542.7L482.366 542.7L479.366 542.7C479.366 545.146 478.886 546.566 478.327 547.349L480.768 549.093ZM482.366 542.7L485.366 542.7L485.366 519.407L482.366 519.407L479.366 519.407L479.366 542.7L482.366 542.7ZM482.366 519.407L485.366 519.407C485.366 516.274 484.787 513.399 483.209 511.191L480.768 512.934L478.327 514.678C478.88 515.453 479.366 516.893 479.366 519.407L482.366 519.407ZM480.768 512.934L483.209 511.191C481.491 508.786 478.922 507.697 476.014 507.697L476.014 510.697L476.014 513.697C477.314 513.697 477.914 514.1 478.327 514.678L480.768 512.934ZM476.014 510.697L476.014 507.697C473.105 507.697 470.536 508.786 468.818 511.191L471.259 512.934L473.7 514.678C474.113 514.1 474.713 513.697 476.014 513.697L476.014 510.697ZM471.259 512.934L468.797 511.22C467.263 513.423 466.701 516.286 466.701 519.407L469.701 519.407L472.701 519.407C472.701 516.881 473.177 515.429 473.721 514.649L471.259 512.934ZM469.701 519.407L466.701 519.407L466.701 542.7L469.701 542.7L472.701 542.7L472.701 519.407L469.701 519.407ZM528.427 534.669L526.096 532.78L526.09 532.788L526.084 532.795L528.427 534.669ZM535.019 529.835L535.869 532.712L538.019 532.077L538.019 529.835L535.019 529.835ZM535.019 529.675L538.019 529.675L538.019 527.734L536.249 526.939L535.019 529.675ZM529.226 524.841L526.734 526.512L526.746 526.529L526.758 526.547L529.226 524.841ZM532.142 505.223L530.238 502.906L530.229 502.913L532.142 505.223ZM560.749 505.343L558.795 507.62L558.805 507.628L558.815 507.636L560.749 505.343ZM563.546 525.04L561.087 523.322L561.083 523.328L563.546 525.04ZM557.753 529.635L556.699 526.826L554.753 527.556L554.753 529.635L557.753 529.635ZM557.753 529.795L554.753 529.795L554.753 532.082L556.958 532.688L557.753 529.795ZM564.425 534.629L562.073 536.491L562.083 536.505L562.094 536.518L564.425 534.629ZM561.668 556.364L559.842 553.984L559.834 553.99L561.668 556.364ZM531.223 556.364L529.397 558.745L531.223 556.364ZM541.252 549.452L538.986 551.419L539.006 551.441L539.026 551.464L541.252 549.452ZM551.44 535.868L549.276 537.946L549.297 537.968L549.319 537.989L551.44 535.868ZM542.051 524.601L539.721 526.491L539.73 526.502L539.739 526.513L542.051 524.601ZM550.801 524.601L548.492 522.685L548.489 522.689L550.801 524.601ZM551 512.455L548.63 514.293L548.651 514.32L548.672 514.347L551 512.455ZM541.851 512.375L539.542 510.459L539.53 510.474L539.518 510.489L541.851 512.375ZM525.39 544.178L528.39 544.178C528.39 540.926 529.242 538.452 530.769 536.543L528.427 534.669L526.084 532.795C523.562 535.947 522.39 539.813 522.39 544.178L525.39 544.178ZM528.427 534.669L530.757 536.558C532.551 534.345 534.272 533.184 535.869 532.712L535.019 529.835L534.169 526.958C531.078 527.871 528.404 529.933 526.096 532.78L528.427 534.669ZM535.019 529.835L538.019 529.835L538.019 529.675L535.019 529.675L532.019 529.675L532.019 529.835L535.019 529.835ZM535.019 529.675L536.249 526.939C534.382 526.1 532.877 524.847 531.693 523.135L529.226 524.841L526.758 526.547C528.558 529.15 530.915 531.12 533.789 532.411L535.019 529.675ZM529.226 524.841L531.717 523.17C530.659 521.593 530.028 519.47 530.028 516.61L527.028 516.61L524.028 516.61C524.028 520.356 524.862 523.72 526.734 526.512L529.226 524.841ZM527.028 516.61L530.028 516.61C530.028 512.657 531.393 509.739 534.056 507.534L532.142 505.223L530.229 502.913C526.073 506.354 524.028 511.027 524.028 516.61L527.028 516.61ZM532.142 505.223L534.047 507.541C536.775 505.3 540.794 503.988 546.486 503.988L546.486 500.988L546.486 497.988C539.925 497.988 534.382 499.5 530.238 502.906L532.142 505.223ZM546.486 500.988L546.486 503.988C552.163 503.988 556.13 505.332 558.795 507.62L560.749 505.343L562.703 503.067C558.603 499.547 553.061 497.988 546.486 497.988L546.486 500.988ZM560.749 505.343L558.815 507.636C561.519 509.918 562.863 512.82 562.863 516.61L565.863 516.61L568.863 516.61C568.863 511.131 566.798 506.522 562.684 503.05L560.749 505.343ZM565.863 516.61L562.863 516.61C562.863 519.568 562.197 521.734 561.087 523.322L563.546 525.04L566.005 526.759C567.985 523.925 568.863 520.471 568.863 516.61L565.863 516.61ZM563.546 525.04L561.083 523.328C559.889 525.045 558.436 526.175 556.699 526.826L557.753 529.635L558.806 532.444C561.757 531.338 564.166 529.404 566.009 526.753L563.546 525.04ZM557.753 529.635L554.753 529.635L554.753 529.795L557.753 529.795L560.753 529.795L560.753 529.635L557.753 529.635ZM557.753 529.795L556.958 532.688C558.605 533.14 560.327 534.286 562.073 536.491L564.425 534.629L566.777 532.767C564.474 529.859 561.748 527.781 558.547 526.902L557.753 529.795ZM564.425 534.629L562.094 536.518C563.638 538.423 564.501 540.903 564.501 544.178L567.501 544.178L570.501 544.178C570.501 539.783 569.314 535.896 566.755 532.74L564.425 534.629ZM567.501 544.178L564.501 544.178C564.501 548.439 562.95 551.6 559.842 553.984L561.668 556.364L563.494 558.745C568.164 555.162 570.501 550.199 570.501 544.178L567.501 544.178ZM561.668 556.364L559.834 553.99C556.63 556.465 552.271 557.839 546.486 557.839L546.486 560.839L546.486 563.839C553.219 563.839 558.982 562.23 563.502 558.738L561.668 556.364ZM546.486 560.839L546.486 557.839C540.672 557.839 536.282 556.464 533.049 553.984L531.223 556.364L529.397 558.745C533.942 562.231 539.728 563.839 546.486 563.839L546.486 560.839ZM531.223 556.364L533.049 553.984C529.942 551.6 528.39 548.439 528.39 544.178L525.39 544.178L522.39 544.178C522.39 550.199 524.727 555.162 529.397 558.745L531.223 556.364ZM539.414 542.66L536.414 542.66C536.414 546.052 537.059 549.199 538.986 551.419L541.252 549.452L543.517 547.486C542.993 546.882 542.414 545.501 542.414 542.66L539.414 542.66ZM541.252 549.452L539.026 551.464C540.952 553.595 543.557 554.53 546.446 554.53L546.446 551.53L546.446 548.53C544.913 548.53 544.055 548.08 543.477 547.441L541.252 549.452ZM546.446 551.53L546.446 554.53C549.337 554.53 551.932 553.56 553.825 551.379L551.56 549.412L549.294 547.446C548.737 548.088 547.922 548.53 546.446 548.53L546.446 551.53ZM551.56 549.412L553.825 551.379C555.749 549.162 556.398 546.034 556.398 542.66L553.398 542.66L550.398 542.66C550.398 545.466 549.821 546.839 549.294 547.446L551.56 549.412ZM553.398 542.66L556.398 542.66C556.398 539.191 555.725 535.91 553.561 533.747L551.44 535.868L549.319 537.989C549.765 538.436 550.398 539.683 550.398 542.66L553.398 542.66ZM551.44 535.868L553.604 533.79C551.694 531.801 549.214 530.87 546.446 530.87L546.446 533.87L546.446 536.87C547.78 536.87 548.629 537.271 549.276 537.946L551.44 535.868ZM546.446 533.87L546.446 530.87C543.677 530.87 541.197 531.799 539.25 533.747L541.372 535.868L543.493 537.989C544.209 537.273 545.112 536.87 546.446 536.87L546.446 533.87ZM541.372 535.868L539.25 533.747C537.086 535.91 536.414 539.191 536.414 542.66L539.414 542.66L542.414 542.66C542.414 539.683 543.046 538.436 543.493 537.989L541.372 535.868ZM540.333 518.448L537.333 518.448C537.333 521.508 537.977 524.341 539.721 526.491L542.051 524.601L544.38 522.711C543.834 522.037 543.333 520.769 543.333 518.448L540.333 518.448ZM542.051 524.601L539.739 526.513C541.449 528.581 543.759 529.679 546.446 529.679L546.446 526.679L546.446 523.679C545.563 523.679 544.943 523.391 544.363 522.689L542.051 524.601ZM546.446 526.679L546.446 529.679C549.121 529.679 551.412 528.569 553.113 526.513L550.801 524.601L548.489 522.689C547.899 523.403 547.286 523.679 546.446 523.679L546.446 526.679ZM550.801 524.601L553.109 526.517C554.895 524.365 555.559 521.521 555.559 518.448L552.559 518.448L549.559 518.448C549.559 520.755 549.05 522.013 548.492 522.685L550.801 524.601ZM552.559 518.448L555.559 518.448C555.559 515.455 555.006 512.627 553.329 510.563L551 512.455L548.672 514.347C549.073 514.84 549.559 516.007 549.559 518.448L552.559 518.448ZM551 512.455L553.371 510.617C551.662 508.413 549.165 507.497 546.446 507.497L546.446 510.497L546.446 513.497C547.775 513.497 548.314 513.887 548.63 514.293L551 512.455ZM546.446 510.497L546.446 507.497C543.767 507.497 541.287 508.356 539.542 510.459L541.851 512.375L544.16 514.291C544.492 513.89 545.076 513.497 546.446 513.497L546.446 510.497ZM541.851 512.375L539.518 510.489C537.855 512.546 537.333 515.421 537.333 518.448L540.333 518.448L543.333 518.448C543.333 515.881 543.822 514.708 544.184 514.261L541.851 512.375ZM576.448 534.669L574.117 532.78L574.111 532.788L574.105 532.795L576.448 534.669ZM583.04 529.835L583.89 532.712L586.04 532.077L586.04 529.835L583.04 529.835ZM583.04 529.675L586.04 529.675L586.04 527.734L584.27 526.939L583.04 529.675ZM577.247 524.841L574.755 526.512L574.767 526.529L574.779 526.547L577.247 524.841ZM580.163 505.223L578.259 502.906L578.25 502.913L580.163 505.223ZM608.77 505.343L606.817 507.62L606.826 507.628L606.836 507.636L608.77 505.343ZM611.567 525.04L609.108 523.322L609.104 523.328L611.567 525.04ZM605.774 529.635L604.72 526.826L602.774 527.556L602.774 529.635L605.774 529.635ZM605.774 529.795L602.774 529.795L602.774 532.082L604.979 532.688L605.774 529.795ZM612.446 534.629L610.094 536.491L610.105 536.505L610.116 536.518L612.446 534.629ZM609.689 556.364L607.863 553.984L607.855 553.99L609.689 556.364ZM579.245 556.364L577.419 558.745L579.245 556.364ZM589.273 549.452L587.007 551.419L587.027 551.441L587.047 551.464L589.273 549.452ZM599.461 535.868L597.297 537.946L597.318 537.968L597.34 537.989L599.461 535.868ZM590.072 524.601L587.742 526.491L587.751 526.502L587.76 526.513L590.072 524.601ZM598.822 524.601L596.514 522.685L596.51 522.689L598.822 524.601ZM599.022 512.455L596.651 514.294L596.672 514.32L596.693 514.347L599.022 512.455ZM589.872 512.375L587.564 510.459L587.551 510.474L587.539 510.489L589.872 512.375ZM573.411 544.178L576.411 544.178C576.411 540.926 577.263 538.452 578.79 536.543L576.448 534.669L574.105 532.795C571.583 535.947 570.411 539.813 570.411 544.178L573.411 544.178ZM576.448 534.669L578.778 536.558C580.572 534.345 582.293 533.184 583.89 532.712L583.04 529.835L582.19 526.958C579.099 527.871 576.425 529.933 574.117 532.78L576.448 534.669ZM583.04 529.835L586.04 529.835L586.04 529.675L583.04 529.675L580.04 529.675L580.04 529.835L583.04 529.835ZM583.04 529.675L584.27 526.939C582.403 526.1 580.898 524.847 579.715 523.135L577.247 524.841L574.779 526.547C576.579 529.15 578.936 531.12 581.81 532.411L583.04 529.675ZM577.247 524.841L579.738 523.17C578.681 521.593 578.049 519.47 578.049 516.61L575.049 516.61L572.049 516.61C572.049 520.356 572.883 523.72 574.755 526.512L577.247 524.841ZM575.049 516.61L578.049 516.61C578.049 512.657 579.414 509.739 582.077 507.534L580.163 505.223L578.25 502.913C574.094 506.354 572.049 511.027 572.049 516.61L575.049 516.61ZM580.163 505.223L582.068 507.541C584.796 505.3 588.815 503.988 594.507 503.988L594.507 500.988L594.507 497.988C587.946 497.988 582.403 499.5 578.259 502.906L580.163 505.223ZM594.507 500.988L594.507 503.988C600.184 503.988 604.151 505.332 606.817 507.62L608.77 505.343L610.724 503.067C606.624 499.547 601.082 497.988 594.507 497.988L594.507 500.988ZM608.77 505.343L606.836 507.636C609.54 509.918 610.884 512.82 610.884 516.61L613.884 516.61L616.884 516.61C616.884 511.131 614.82 506.522 610.705 503.05L608.77 505.343ZM613.884 516.61L610.884 516.61C610.884 519.568 610.218 521.734 609.108 523.322L611.567 525.04L614.026 526.759C616.006 523.925 616.884 520.471 616.884 516.61L613.884 516.61ZM611.567 525.04L609.104 523.328C607.91 525.045 606.457 526.175 604.72 526.826L605.774 529.635L606.827 532.444C609.778 531.338 612.187 529.404 614.03 526.753L611.567 525.04ZM605.774 529.635L602.774 529.635L602.774 529.795L605.774 529.795L608.774 529.795L608.774 529.635L605.774 529.635ZM605.774 529.795L604.979 532.688C606.627 533.14 608.348 534.286 610.094 536.491L612.446 534.629L614.798 532.767C612.496 529.859 609.769 527.781 606.569 526.902L605.774 529.795ZM612.446 534.629L610.116 536.518C611.659 538.423 612.523 540.903 612.523 544.178L615.523 544.178L618.523 544.178C618.523 539.783 617.335 535.896 614.777 532.74L612.446 534.629ZM615.523 544.178L612.523 544.178C612.523 548.439 610.971 551.6 607.863 553.984L609.689 556.364L611.515 558.745C616.185 555.162 618.523 550.199 618.523 544.178L615.523 544.178ZM609.689 556.364L607.855 553.99C604.651 556.465 600.292 557.839 594.507 557.839L594.507 560.839L594.507 563.839C601.241 563.839 607.003 562.23 611.523 558.738L609.689 556.364ZM594.507 560.839L594.507 557.839C588.693 557.839 584.303 556.464 581.071 553.984L579.245 556.364L577.419 558.745C581.963 562.231 587.749 563.839 594.507 563.839L594.507 560.839ZM579.245 556.364L581.071 553.984C577.963 551.6 576.411 548.439 576.411 544.178L573.411 544.178L570.411 544.178C570.411 550.199 572.748 555.162 577.419 558.745L579.245 556.364ZM587.435 542.66L584.435 542.66C584.435 546.052 585.081 549.199 587.007 551.419L589.273 549.452L591.539 547.486C591.015 546.882 590.435 545.501 590.435 542.66L587.435 542.66ZM589.273 549.452L587.047 551.464C588.973 553.595 591.579 554.53 594.467 554.53L594.467 551.53L594.467 548.53C592.934 548.53 592.076 548.08 591.499 547.441L589.273 549.452ZM594.467 551.53L594.467 554.53C597.359 554.53 599.954 553.56 601.847 551.379L599.581 549.412L597.315 547.446C596.758 548.088 595.944 548.53 594.467 548.53L594.467 551.53ZM599.581 549.412L601.847 551.379C603.77 549.162 604.419 546.034 604.419 542.66L601.419 542.66L598.419 542.66C598.419 545.466 597.842 546.839 597.315 547.446L599.581 549.412ZM601.419 542.66L604.419 542.66C604.419 539.191 603.746 535.91 601.582 533.747L599.461 535.868L597.34 537.989C597.786 538.436 598.419 539.683 598.419 542.66L601.419 542.66ZM599.461 535.868L601.625 533.79C599.715 531.801 597.235 530.87 594.467 530.87L594.467 533.87L594.467 536.87C595.801 536.87 596.65 537.271 597.297 537.946L599.461 535.868ZM594.467 533.87L594.467 530.87C591.698 530.87 589.219 531.799 587.271 533.747L589.393 535.868L591.514 537.989C592.23 537.273 593.134 536.87 594.467 536.87L594.467 533.87ZM589.393 535.868L587.271 533.747C585.108 535.91 584.435 539.191 584.435 542.66L587.435 542.66L590.435 542.66C590.435 539.683 591.068 538.436 591.514 537.989L589.393 535.868ZM588.354 518.448L585.354 518.448C585.354 521.508 585.998 524.341 587.742 526.491L590.072 524.601L592.402 522.711C591.855 522.037 591.354 520.769 591.354 518.448L588.354 518.448ZM590.072 524.601L587.76 526.513C589.471 528.581 591.781 529.679 594.467 529.679L594.467 526.679L594.467 523.679C593.584 523.679 592.964 523.391 592.384 522.689L590.072 524.601ZM594.467 526.679L594.467 529.679C597.142 529.679 599.433 528.569 601.134 526.513L598.822 524.601L596.51 522.689C595.92 523.403 595.308 523.679 594.467 523.679L594.467 526.679ZM598.822 524.601L601.13 526.517C602.917 524.365 603.58 521.521 603.58 518.448L600.58 518.448L597.58 518.448C597.58 520.755 597.071 522.013 596.514 522.685L598.822 524.601ZM600.58 518.448L603.58 518.448C603.58 515.455 603.027 512.627 601.35 510.563L599.022 512.455L596.693 514.347C597.094 514.84 597.58 516.007 597.58 518.448L600.58 518.448ZM599.022 512.455L601.392 510.617C599.683 508.413 597.186 507.497 594.467 507.497L594.467 510.497L594.467 513.497C595.796 513.497 596.336 513.887 596.651 514.294L599.022 512.455ZM594.467 510.497L594.467 507.497C591.788 507.497 589.309 508.356 587.564 510.459L589.872 512.375L592.181 514.291C592.513 513.89 593.097 513.497 594.467 513.497L594.467 510.497ZM589.872 512.375L587.539 510.489C585.877 512.546 585.354 515.421 585.354 518.448L588.354 518.448L591.354 518.448C591.354 515.881 591.844 514.708 592.205 514.261L589.872 512.375ZM624.469 534.669L622.138 532.78L622.132 532.788L622.126 532.795L624.469 534.669ZM631.061 529.835L631.911 532.712L634.061 532.077L634.061 529.835L631.061 529.835ZM631.061 529.675L634.061 529.675L634.061 527.734L632.291 526.939L631.061 529.675ZM625.268 524.841L622.777 526.512L622.788 526.529L622.8 526.547L625.268 524.841ZM628.185 505.223L626.28 502.906L626.271 502.913L628.185 505.223ZM656.792 505.343L654.838 507.62L654.847 507.628L654.857 507.636L656.792 505.343ZM659.588 525.04L657.129 523.322L657.125 523.328L659.588 525.04ZM653.795 529.635L652.742 526.826L650.795 527.556L650.795 529.635L653.795 529.635ZM653.795 529.795L650.795 529.795L650.795 532.082L653 532.688L653.795 529.795ZM660.467 534.629L658.115 536.491L658.126 536.505L658.137 536.518L660.467 534.629ZM657.711 556.364L655.885 553.984L655.877 553.99L657.711 556.364ZM627.266 556.364L625.44 558.745L627.266 556.364ZM637.294 549.452L635.029 551.419L635.048 551.441L635.069 551.464L637.294 549.452ZM647.482 535.868L645.318 537.946L645.339 537.968L645.361 537.989L647.482 535.868ZM638.093 524.601L635.764 526.491L635.772 526.502L635.781 526.513L638.093 524.601ZM646.843 524.601L644.535 522.685L644.531 522.689L646.843 524.601ZM647.043 512.455L644.672 514.294L644.693 514.32L644.715 514.347L647.043 512.455ZM637.893 512.375L635.585 510.459L635.573 510.474L635.561 510.489L637.893 512.375ZM621.432 544.178L624.432 544.178C624.432 540.926 625.285 538.452 626.812 536.543L624.469 534.669L622.126 532.795C619.605 535.947 618.432 539.813 618.432 544.178L621.432 544.178ZM624.469 534.669L626.8 536.558C628.593 534.345 630.315 533.184 631.911 532.712L631.061 529.835L630.211 526.958C627.12 527.871 624.447 529.933 622.138 532.78L624.469 534.669ZM631.061 529.835L634.061 529.835L634.061 529.675L631.061 529.675L628.061 529.675L628.061 529.835L631.061 529.835ZM631.061 529.675L632.291 526.939C630.424 526.1 628.919 524.847 627.736 523.135L625.268 524.841L622.8 526.547C624.6 529.15 626.957 531.12 629.832 532.411L631.061 529.675ZM625.268 524.841L627.76 523.17C626.702 521.593 626.071 519.47 626.071 516.61L623.071 516.61L620.071 516.61C620.071 520.356 620.904 523.72 622.777 526.512L625.268 524.841ZM623.071 516.61L626.071 516.61C626.071 512.657 627.435 509.739 630.098 507.534L628.185 505.223L626.271 502.913C622.115 506.354 620.071 511.027 620.071 516.61L623.071 516.61ZM628.185 505.223L630.089 507.541C632.817 505.3 636.836 503.988 642.528 503.988L642.528 500.988L642.528 497.988C635.968 497.988 630.424 499.5 626.28 502.906L628.185 505.223ZM642.528 500.988L642.528 503.988C648.206 503.988 652.173 505.332 654.838 507.62L656.792 505.343L658.745 503.067C654.645 499.547 649.103 497.988 642.528 497.988L642.528 500.988ZM656.792 505.343L654.857 507.636C657.561 509.918 658.906 512.82 658.906 516.61L661.906 516.61L664.906 516.61C664.906 511.131 662.841 506.522 658.726 503.05L656.792 505.343ZM661.906 516.61L658.906 516.61C658.906 519.568 658.239 521.734 657.129 523.322L659.588 525.04L662.047 526.759C664.027 523.925 664.906 520.471 664.906 516.61L661.906 516.61ZM659.588 525.04L657.125 523.328C655.932 525.045 654.479 526.175 652.742 526.826L653.795 529.635L654.848 532.444C657.799 531.338 660.209 529.404 662.052 526.753L659.588 525.04ZM653.795 529.635L650.795 529.635L650.795 529.795L653.795 529.795L656.795 529.795L656.795 529.635L653.795 529.635ZM653.795 529.795L653 532.688C654.648 533.14 656.369 534.286 658.115 536.491L660.467 534.629L662.82 532.767C660.517 529.859 657.79 527.781 654.59 526.902L653.795 529.795ZM660.467 534.629L658.137 536.518C659.681 538.423 660.544 540.903 660.544 544.178L663.544 544.178L666.544 544.178C666.544 539.783 665.356 535.896 662.798 532.74L660.467 534.629ZM663.544 544.178L660.544 544.178C660.544 548.439 658.992 551.6 655.885 553.984L657.711 556.364L659.536 558.745C664.207 555.162 666.544 550.199 666.544 544.178L663.544 544.178ZM657.711 556.364L655.877 553.99C652.672 556.465 648.313 557.839 642.528 557.839L642.528 560.839L642.528 563.839C649.262 563.839 655.025 562.23 659.544 558.738L657.711 556.364ZM642.528 560.839L642.528 557.839C636.714 557.839 632.325 556.464 629.092 553.984L627.266 556.364L625.44 558.745C629.984 562.231 635.77 563.839 642.528 563.839L642.528 560.839ZM627.266 556.364L629.092 553.984C625.984 551.6 624.432 548.439 624.432 544.178L621.432 544.178L618.432 544.178C618.432 550.199 620.77 555.162 625.44 558.745L627.266 556.364ZM635.456 542.66L632.456 542.66C632.456 546.052 633.102 549.199 635.029 551.419L637.294 549.452L639.56 547.486C639.036 546.882 638.456 545.501 638.456 542.66L635.456 542.66ZM637.294 549.452L635.069 551.464C636.994 553.595 639.6 554.53 642.488 554.53L642.488 551.53L642.488 548.53C640.955 548.53 640.098 548.08 639.52 547.441L637.294 549.452ZM642.488 551.53L642.488 554.53C645.38 554.53 647.975 553.56 649.868 551.379L647.602 549.412L645.337 547.446C644.779 548.088 643.965 548.53 642.488 548.53L642.488 551.53ZM647.602 549.412L649.868 551.379C651.791 549.162 652.44 546.034 652.44 542.66L649.44 542.66L646.44 542.66C646.44 545.466 645.864 546.839 645.337 547.446L647.602 549.412ZM649.44 542.66L652.44 542.66C652.44 539.191 651.767 535.91 649.604 533.747L647.482 535.868L645.361 537.989C645.808 538.436 646.44 539.683 646.44 542.66L649.44 542.66ZM647.482 535.868L649.647 533.79C647.737 531.801 645.256 530.87 642.488 530.87L642.488 533.87L642.488 536.87C643.822 536.87 644.671 537.271 645.318 537.946L647.482 535.868ZM642.488 533.87L642.488 530.87C639.72 530.87 637.24 531.799 635.293 533.747L637.414 535.868L639.535 537.989C640.252 537.273 641.155 536.87 642.488 536.87L642.488 533.87ZM637.414 535.868L635.293 533.747C633.129 535.91 632.456 539.191 632.456 542.66L635.456 542.66L638.456 542.66C638.456 539.683 639.089 538.436 639.535 537.989L637.414 535.868ZM636.375 518.448L633.375 518.448C633.375 521.508 634.019 524.341 635.764 526.491L638.093 524.601L640.423 522.711C639.877 522.037 639.375 520.769 639.375 518.448L636.375 518.448ZM638.093 524.601L635.781 526.513C637.492 528.581 639.802 529.679 642.488 529.679L642.488 526.679L642.488 523.679C641.605 523.679 640.985 523.391 640.405 522.689L638.093 524.601ZM642.488 526.679L642.488 529.679C645.163 529.679 647.455 528.569 649.155 526.513L646.843 524.601L644.531 522.689C643.941 523.403 643.329 523.679 642.488 523.679L642.488 526.679ZM646.843 524.601L649.151 526.517C650.938 524.365 651.601 521.521 651.601 518.448L648.601 518.448L645.601 518.448C645.601 520.755 645.092 522.013 644.535 522.685L646.843 524.601ZM648.601 518.448L651.601 518.448C651.601 515.455 651.048 512.627 649.371 510.563L647.043 512.455L644.715 514.347C645.115 514.84 645.601 516.007 645.601 518.448L648.601 518.448ZM647.043 512.455L649.414 510.617C647.705 508.413 645.208 507.497 642.488 507.497L642.488 510.497L642.488 513.497C643.817 513.497 644.357 513.887 644.672 514.294L647.043 512.455ZM642.488 510.497L642.488 507.497C639.809 507.497 637.33 508.356 635.585 510.459L637.893 512.375L640.202 514.291C640.535 513.89 641.118 513.497 642.488 513.497L642.488 510.497ZM637.893 512.375L635.561 510.489C633.898 512.546 633.375 515.421 633.375 518.448L636.375 518.448L639.375 518.448C639.375 515.881 639.865 514.708 640.226 514.261L637.893 512.375ZM705.452 506.382L703.331 508.503L703.339 508.511L703.347 508.519L705.452 506.382ZM705.212 555.565L703.162 553.376L703.154 553.383L705.212 555.565ZM690.629 560.839L690.643 557.839L690.642 557.839L690.629 560.839ZM675.766 555.525L673.653 557.654L673.661 557.662L675.766 555.525ZM685.875 549.093L683.413 550.807L683.423 550.822L683.434 550.836L685.875 549.093ZM685.875 512.934L683.434 511.191L683.423 511.205L683.413 511.22L685.875 512.934ZM670.413 539.863L673.413 539.863L673.413 521.964L670.413 521.964L667.413 521.964L667.413 539.863L670.413 539.863ZM670.413 521.964L673.413 521.964C673.413 515.817 675.054 511.5 677.943 508.568L675.806 506.462L673.67 504.356C669.367 508.722 667.413 514.74 667.413 521.964L670.413 521.964ZM675.806 506.462L677.943 508.568C680.852 505.616 684.952 503.988 690.629 503.988L690.629 500.988L690.629 497.988C683.734 497.988 677.952 500.01 673.67 504.356L675.806 506.462ZM690.629 500.988L690.629 503.988C696.319 503.988 700.424 505.597 703.331 508.503L705.452 506.382L707.573 504.261C703.288 499.976 697.512 497.988 690.629 497.988L690.629 500.988ZM705.452 506.382L703.347 508.519C706.223 511.353 707.886 515.666 707.886 521.964L710.886 521.964L713.886 521.964C713.886 514.625 711.927 508.55 707.558 504.245L705.452 506.382ZM710.886 521.964L707.886 521.964L707.886 539.863L710.886 539.863L713.886 539.863L713.886 521.964L710.886 521.964ZM710.886 539.863L707.886 539.863C707.886 546.25 706.154 550.572 703.162 553.376L705.212 555.565L707.263 557.755C711.835 553.473 713.886 547.327 713.886 539.863L710.886 539.863ZM705.212 555.565L703.154 553.383C700.046 556.315 695.968 557.863 690.643 557.839L690.629 560.839L690.616 563.839C697.223 563.869 702.868 561.901 707.271 557.747L705.212 555.565ZM690.629 560.839L690.642 557.839C684.868 557.815 680.745 556.218 677.872 553.388L675.766 555.525L673.661 557.662C677.927 561.864 683.712 563.81 690.617 563.839L690.629 560.839ZM675.766 555.525L677.88 553.396C675.063 550.6 673.413 546.267 673.413 539.863L670.413 539.863L667.413 539.863C667.413 547.257 669.332 553.365 673.653 557.654L675.766 555.525ZM684.317 542.7L681.317 542.7C681.317 545.782 681.884 548.612 683.413 550.807L685.875 549.093L688.337 547.378C687.788 546.59 687.317 545.158 687.317 542.7L684.317 542.7ZM685.875 549.093L683.434 550.836C685.152 553.242 687.721 554.33 690.629 554.33L690.629 551.33L690.629 548.33C689.329 548.33 688.729 547.927 688.316 547.349L685.875 549.093ZM690.629 551.33L690.629 554.33C693.538 554.33 696.107 553.242 697.825 550.836L695.384 549.093L692.943 547.349C692.53 547.927 691.93 548.33 690.629 548.33L690.629 551.33ZM695.384 549.093L697.825 550.836C699.397 548.636 699.982 545.794 699.982 542.7L696.982 542.7L693.982 542.7C693.982 545.146 693.502 546.566 692.943 547.349L695.384 549.093ZM696.982 542.7L699.982 542.7L699.982 519.407L696.982 519.407L693.982 519.407L693.982 542.7L696.982 542.7ZM696.982 519.407L699.982 519.407C699.982 516.274 699.402 513.399 697.825 511.191L695.384 512.934L692.943 514.678C693.496 515.453 693.982 516.893 693.982 519.407L696.982 519.407ZM695.384 512.934L697.825 511.191C696.107 508.786 693.538 507.697 690.629 507.697L690.629 510.697L690.629 513.697C691.93 513.697 692.53 514.1 692.943 514.678L695.384 512.934ZM690.629 510.697L690.629 507.697C687.721 507.697 685.152 508.786 683.434 511.191L685.875 512.934L688.316 514.678C688.729 514.1 689.329 513.697 690.629 513.697L690.629 510.697ZM685.875 512.934L683.413 511.22C681.879 513.423 681.317 516.286 681.317 519.407L684.317 519.407L687.317 519.407C687.317 516.881 687.793 515.429 688.337 514.649L685.875 512.934ZM684.317 519.407L681.317 519.407L681.317 542.7L684.317 542.7L687.317 542.7L687.317 519.407L684.317 519.407ZM776.004 506.382L773.883 508.503L773.891 508.511L773.898 508.519L776.004 506.382ZM775.764 555.565L773.713 553.376L773.706 553.383L775.764 555.565ZM761.181 560.839L761.195 557.839L761.194 557.839L761.181 560.839ZM746.318 555.525L744.205 557.654L744.213 557.662L746.318 555.525ZM756.427 549.093L753.965 550.807L753.975 550.822L753.986 550.836L756.427 549.093ZM756.427 512.934L753.986 511.191L753.975 511.205L753.965 511.22L756.427 512.934ZM740.965 539.863L743.965 539.863L743.965 521.964L740.965 521.964L737.965 521.964L737.965 539.863L740.965 539.863ZM740.965 521.964L743.965 521.964C743.965 515.817 745.606 511.5 748.495 508.568L746.358 506.462L744.221 504.356C739.919 508.722 737.965 514.74 737.965 521.964L740.965 521.964ZM746.358 506.462L748.495 508.568C751.404 505.616 755.504 503.988 761.181 503.988L761.181 500.988L761.181 497.988C754.286 497.988 748.504 500.01 744.221 504.356L746.358 506.462ZM761.181 500.988L761.181 503.988C766.871 503.988 770.976 505.597 773.883 508.503L776.004 506.382L778.125 504.261C773.84 499.976 768.064 497.988 761.181 497.988L761.181 500.988ZM776.004 506.382L773.898 508.519C776.774 511.353 778.438 515.666 778.438 521.964L781.438 521.964L784.438 521.964C784.438 514.625 782.479 508.55 778.11 504.245L776.004 506.382ZM781.438 521.964L778.438 521.964L778.438 539.863L781.438 539.863L784.438 539.863L784.438 521.964L781.438 521.964ZM781.438 539.863L778.438 539.863C778.438 546.25 776.706 550.573 773.714 553.376L775.764 555.565L777.815 557.755C782.387 553.473 784.438 547.327 784.438 539.863L781.438 539.863ZM775.764 555.565L773.706 553.383C770.597 556.315 766.52 557.863 761.195 557.839L761.181 560.839L761.168 563.839C767.775 563.869 773.42 561.901 777.823 557.747L775.764 555.565ZM761.181 560.839L761.194 557.839C755.42 557.815 751.297 556.218 748.424 553.388L746.318 555.525L744.213 557.662C748.479 561.864 754.264 563.81 761.169 563.839L761.181 560.839ZM746.318 555.525L748.432 553.396C745.615 550.6 743.965 546.267 743.965 539.863L740.965 539.863L737.965 539.863C737.965 547.257 739.884 553.365 744.205 557.654L746.318 555.525ZM754.869 542.7L751.869 542.7C751.869 545.782 752.436 548.612 753.965 550.807L756.427 549.093L758.889 547.378C758.34 546.59 757.869 545.158 757.869 542.7L754.869 542.7ZM756.427 549.093L753.986 550.836C755.703 553.242 758.273 554.33 761.181 554.33L761.181 551.33L761.181 548.33C759.881 548.33 759.281 547.927 758.868 547.349L756.427 549.093ZM761.181 551.33L761.181 554.33C764.089 554.33 766.659 553.242 768.377 550.836L765.936 549.093L763.495 547.349C763.082 547.927 762.481 548.33 761.181 548.33L761.181 551.33ZM765.936 549.093L768.377 550.836C769.949 548.636 770.534 545.794 770.534 542.7L767.534 542.7L764.534 542.7C764.534 545.146 764.054 546.566 763.495 547.349L765.936 549.093ZM767.534 542.7L770.534 542.7L770.534 519.407L767.534 519.407L764.534 519.407L764.534 542.7L767.534 542.7ZM767.534 519.407L770.534 519.407C770.534 516.274 769.954 513.399 768.377 511.191L765.936 512.934L763.495 514.678C764.048 515.453 764.534 516.893 764.534 519.407L767.534 519.407ZM765.936 512.934L768.377 511.191C766.659 508.786 764.089 507.697 761.181 507.697L761.181 510.697L761.181 513.697C762.481 513.697 763.082 514.1 763.495 514.678L765.936 512.934ZM761.181 510.697L761.181 507.697C758.273 507.697 755.703 508.786 753.986 511.191L756.427 512.934L758.868 514.678C759.281 514.1 759.881 513.697 761.181 513.697L761.181 510.697ZM756.427 512.934L753.965 511.22C752.431 513.423 751.869 516.286 751.869 519.407L754.869 519.407L757.869 519.407C757.869 516.881 758.345 515.429 758.889 514.649L756.427 512.934ZM754.869 519.407L751.869 519.407L751.869 542.7L754.869 542.7L757.869 542.7L757.869 519.407L754.869 519.407ZM811.2 560L808.2 560L808.2 563L811.2 563L811.2 560ZM811.2 545.297L808.681 543.667L808.2 544.411L808.2 545.297L811.2 545.297ZM811.64 544.618L814.158 546.248L814.64 545.504L814.64 544.618L811.64 544.618ZM811.64 519.487L814.64 519.487L814.64 516.487L811.64 516.487L811.64 519.487ZM811.32 519.487L811.32 516.487L809.613 516.487L808.741 517.954L811.32 519.487ZM800.253 538.105L797.674 536.572L794.98 541.105L800.253 541.105L800.253 538.105ZM816.634 538.105L816.634 541.105L817.074 541.105L817.496 540.979L816.634 538.105ZM817.832 537.746L817.832 534.746L817.392 534.746L816.97 534.872L817.832 537.746ZM830.658 537.746L833.658 537.746L833.658 534.746L830.658 534.746L830.658 537.746ZM830.658 548.533L830.658 551.533L833.658 551.533L833.658 548.533L830.658 548.533ZM787.388 548.533L784.388 548.533L784.388 551.533L787.388 551.533L787.388 548.533ZM787.388 538.625L784.917 536.924L784.388 537.692L784.388 538.625L787.388 538.625ZM812.718 501.827L812.718 498.827L811.141 498.827L810.247 500.126L812.718 501.827ZM823.985 501.827L826.985 501.827L826.985 498.827L823.985 498.827L823.985 501.827ZM823.985 560L823.985 563L826.985 563L826.985 560L823.985 560ZM811.2 560L814.2 560L814.2 545.297L811.2 545.297L808.2 545.297L808.2 560L811.2 560ZM811.2 545.297L813.719 546.927L814.158 546.248L811.64 544.618L809.121 542.988L808.681 543.667L811.2 545.297ZM811.64 544.618L814.64 544.618L814.64 519.487L811.64 519.487L808.64 519.487L808.64 544.618L811.64 544.618ZM811.64 519.487L811.64 516.487L811.32 516.487L811.32 519.487L811.32 522.487L811.64 522.487L811.64 519.487ZM811.32 519.487L808.741 517.954L797.674 536.572L800.253 538.105L802.832 539.638L813.899 521.02L811.32 519.487ZM800.253 538.105L800.253 541.105L816.634 541.105L816.634 538.105L816.634 535.105L800.253 535.105L800.253 538.105ZM816.634 538.105L817.496 540.979L818.695 540.619L817.832 537.746L816.97 534.872L815.772 535.232L816.634 538.105ZM817.832 537.746L817.832 540.746L830.658 540.746L830.658 537.746L830.658 534.746L817.832 534.746L817.832 537.746ZM830.658 537.746L827.658 537.746L827.658 548.533L830.658 548.533L833.658 548.533L833.658 537.746L830.658 537.746ZM830.658 548.533L830.658 545.533L787.388 545.533L787.388 548.533L787.388 551.533L830.658 551.533L830.658 548.533ZM787.388 548.533L790.388 548.533L790.388 538.625L787.388 538.625L784.388 538.625L784.388 548.533L787.388 548.533ZM787.388 538.625L789.859 540.326L815.189 503.528L812.718 501.827L810.247 500.126L784.917 536.924L787.388 538.625ZM812.718 501.827L812.718 504.827L823.985 504.827L823.985 501.827L823.985 498.827L812.718 498.827L812.718 501.827ZM823.985 501.827L820.985 501.827L820.985 560L823.985 560L826.985 560L826.985 501.827L823.985 501.827ZM823.985 560L823.985 557L811.2 557L811.2 560L811.2 563L823.985 563L823.985 560ZM836.368 560L833.368 560L833.368 563L836.368 563L836.368 560ZM836.368 551.33L834.207 549.249L833.368 550.12L833.368 551.33L836.368 551.33ZM857.383 529.515L859.544 531.597L859.604 531.534L859.661 531.468L857.383 529.515ZM852.269 512.615L854.436 514.69L854.447 514.678L854.458 514.667L852.269 512.615ZM850.471 521.644L850.471 524.644L853.471 524.644L853.471 521.644L850.471 521.644ZM836.368 521.644L833.368 521.644L833.368 524.644L836.368 524.644L836.368 521.644ZM872.086 505.343L870.133 507.62L870.143 507.629L872.086 505.343ZM877.201 517.09L880.201 517.09L880.201 517.082L880.2 517.074L877.201 517.09ZM874.843 526.958L872.205 525.53L872.2 525.54L872.195 525.549L874.843 526.958ZM868.211 535.828L866.042 533.755L865.98 533.821L865.921 533.89L868.211 535.828ZM857.184 548.853L854.894 546.914L850.713 551.853L857.184 551.853L857.184 548.853ZM878.559 548.853L881.559 548.853L881.559 545.853L878.559 545.853L878.559 548.853ZM878.559 560L878.559 563L881.559 563L881.559 560L878.559 560ZM836.368 560L839.368 560L839.368 551.33L836.368 551.33L833.368 551.33L833.368 560L836.368 560ZM836.368 551.33L838.528 553.411L859.544 531.597L857.383 529.515L855.223 527.434L834.207 549.249L836.368 551.33ZM857.383 529.515L859.661 531.468C861.364 529.481 862.841 527.434 864.084 525.325L861.499 523.802L858.914 522.279C857.865 524.059 856.599 525.821 855.106 527.563L857.383 529.515ZM861.499 523.802L864.084 525.325C865.477 522.96 866.217 520.428 866.217 517.769L863.217 517.769L860.217 517.769C860.217 519.265 859.812 520.755 858.914 522.279L861.499 523.802ZM863.217 517.769L866.217 517.769C866.217 514.895 865.582 512.083 863.569 510.164L861.499 512.335L859.429 514.506C859.706 514.771 860.217 515.582 860.217 517.769L863.217 517.769ZM861.499 512.335L863.569 510.164C861.768 508.447 859.473 507.697 856.984 507.697L856.984 510.697L856.984 513.697C858.224 513.697 858.939 514.04 859.429 514.506L861.499 512.335ZM856.984 510.697L856.984 507.697C854.311 507.697 851.912 508.61 850.081 510.563L852.269 512.615L854.458 514.667C855.024 514.063 855.768 513.697 856.984 513.697L856.984 510.697ZM852.269 512.615L850.102 510.54C849.007 511.684 848.376 513.17 848.006 514.693C847.631 516.235 847.471 518.026 847.471 520.006L850.471 520.006L853.471 520.006C853.471 518.311 853.612 517.032 853.836 516.111C854.065 515.17 854.333 514.797 854.436 514.69L852.269 512.615ZM850.471 520.006L847.471 520.006L847.471 521.644L850.471 521.644L853.471 521.644L853.471 520.006L850.471 520.006ZM850.471 521.644L850.471 518.644L836.368 518.644L836.368 521.644L836.368 524.644L850.471 524.644L850.471 521.644ZM836.368 521.644L839.368 521.644L839.368 518.208L836.368 518.208L833.368 518.208L833.368 521.644L836.368 521.644ZM836.368 518.208L839.368 518.208C839.368 514.119 840.89 510.837 844.06 508.152L842.121 505.863L840.182 503.574C835.681 507.387 833.368 512.336 833.368 518.208L836.368 518.208ZM842.121 505.863L844.06 508.152C847.233 505.463 851.525 503.988 857.224 503.988L857.224 500.988L857.224 497.988C850.457 497.988 844.68 499.763 840.182 503.574L842.121 505.863ZM857.224 500.988L857.224 503.988C863.357 503.988 867.498 505.358 870.133 507.62L872.086 505.343L874.04 503.067C869.91 499.522 864.142 497.988 857.224 497.988L857.224 500.988ZM872.086 505.343L870.143 507.629C872.778 509.869 874.178 512.912 874.201 517.106L877.201 517.09L880.2 517.074C880.17 511.359 878.161 506.571 874.03 503.058L872.086 505.343ZM877.201 517.09L874.201 517.09C874.201 520.324 873.513 523.113 872.205 525.53L874.843 526.958L877.482 528.386C879.316 524.996 880.201 521.207 880.201 517.09L877.201 517.09ZM874.843 526.958L872.195 525.549C870.808 528.156 868.777 530.894 866.042 533.755L868.211 535.828L870.38 537.901C873.398 534.743 875.789 531.567 877.492 528.367L874.843 526.958ZM868.211 535.828L865.921 533.89L854.894 546.914L857.184 548.853L859.473 550.791L870.501 537.766L868.211 535.828ZM857.184 548.853L857.184 551.853L878.559 551.853L878.559 548.853L878.559 545.853L857.184 545.853L857.184 548.853ZM878.559 548.853L875.559 548.853L875.559 560L878.559 560L881.559 560L881.559 548.853L878.559 548.853ZM878.559 560L878.559 557L836.368 557L836.368 560L836.368 563L878.559 563L878.559 560ZM920.068 506.382L917.946 508.503L917.954 508.511L917.962 508.519L920.068 506.382ZM919.828 555.565L917.777 553.376L917.77 553.383L919.828 555.565ZM905.245 560.839L905.258 557.839L905.258 557.839L905.245 560.839ZM890.382 555.525L888.269 557.654L888.277 557.662L890.382 555.525ZM900.49 549.093L898.029 550.807L898.039 550.822L898.049 550.836L900.49 549.093ZM900.49 512.934L898.049 511.191L898.039 511.205L898.029 511.22L900.49 512.934ZM885.028 539.863L888.028 539.863L888.028 521.964L885.028 521.964L882.028 521.964L882.028 539.863L885.028 539.863ZM885.028 521.964L888.028 521.964C888.028 515.817 889.67 511.5 892.559 508.568L890.422 506.462L888.285 504.356C883.983 508.722 882.028 514.74 882.028 521.964L885.028 521.964ZM890.422 506.462L892.559 508.568C895.468 505.616 899.568 503.988 905.245 503.988L905.245 500.988L905.245 497.988C898.35 497.988 892.568 500.01 888.285 504.356L890.422 506.462ZM905.245 500.988L905.245 503.988C910.935 503.988 915.04 505.597 917.946 508.503L920.068 506.382L922.189 504.261C917.904 499.976 912.127 497.988 905.245 497.988L905.245 500.988ZM920.068 506.382L917.962 508.519C920.838 511.353 922.501 515.666 922.501 521.964L925.501 521.964L928.501 521.964C928.501 514.625 926.542 508.55 922.173 504.245L920.068 506.382ZM925.501 521.964L922.501 521.964L922.501 539.863L925.501 539.863L928.501 539.863L928.501 521.964L925.501 521.964ZM925.501 539.863L922.501 539.863C922.501 546.25 920.77 550.573 917.777 553.376L919.828 555.565L921.879 557.755C926.451 553.473 928.501 547.327 928.501 539.863L925.501 539.863ZM919.828 555.565L917.77 553.383C914.661 556.315 910.584 557.863 905.258 557.839L905.245 560.839L905.232 563.839C911.839 563.869 917.484 561.901 921.887 557.747L919.828 555.565ZM905.245 560.839L905.258 557.839C899.484 557.815 895.36 556.218 892.487 553.388L890.382 555.525L888.277 557.662C892.542 561.864 898.327 563.81 905.232 563.839L905.245 560.839ZM890.382 555.525L892.495 553.396C889.678 550.6 888.028 546.267 888.028 539.863L885.028 539.863L882.028 539.863C882.028 547.257 883.947 553.365 888.269 557.654L890.382 555.525ZM898.932 542.7L895.932 542.7C895.932 545.782 896.5 548.612 898.029 550.807L900.49 549.093L902.952 547.378C902.403 546.59 901.932 545.158 901.932 542.7L898.932 542.7ZM900.49 549.093L898.049 550.836C899.767 553.242 902.337 554.33 905.245 554.33L905.245 551.33L905.245 548.33C903.945 548.33 903.344 547.927 902.932 547.349L900.49 549.093ZM905.245 551.33L905.245 554.33C908.153 554.33 910.723 553.242 912.441 550.836L909.999 549.093L907.558 547.349C907.145 547.927 906.545 548.33 905.245 548.33L905.245 551.33ZM909.999 549.093L912.441 550.836C914.012 548.636 914.598 545.794 914.598 542.7L911.598 542.7L908.598 542.7C908.598 545.146 908.117 546.566 907.558 547.349L909.999 549.093ZM911.598 542.7L914.598 542.7L914.598 519.407L911.598 519.407L908.598 519.407L908.598 542.7L911.598 542.7ZM911.598 519.407L914.598 519.407C914.598 516.274 914.018 513.399 912.441 511.191L909.999 512.934L907.558 514.678C908.112 515.453 908.598 516.893 908.598 519.407L911.598 519.407ZM909.999 512.934L912.441 511.191C910.723 508.786 908.153 507.697 905.245 507.697L905.245 510.697L905.245 513.697C906.545 513.697 907.145 514.1 907.558 514.678L909.999 512.934ZM905.245 510.697L905.245 507.697C902.337 507.697 899.767 508.786 898.049 511.191L900.49 512.934L902.932 514.678C903.344 514.1 903.945 513.697 905.245 513.697L905.245 510.697ZM900.49 512.934L898.029 511.22C896.494 513.423 895.932 516.286 895.932 519.407L898.932 519.407L901.932 519.407C901.932 516.881 902.409 515.429 902.952 514.649L900.49 512.934ZM898.932 519.407L895.932 519.407L895.932 542.7L898.932 542.7L901.932 542.7L901.932 519.407L898.932 519.407Z" fill="black" mask="url(#path-13-outside-5_17007_6863)"/> +</g> +<path d="M1007.71 128.486L1015.98 79.744H1029.2L1020.93 128.486H1007.71ZM1068.64 80.8133C1064.84 79.4323 1060.84 78.7393 1056.8 78.7666C1043.75 78.7666 1034.56 85.3692 1034.48 94.8341C1034.41 101.83 1041.05 105.731 1046.05 108.059C1051.2 110.446 1052.92 111.968 1052.9 114.099C1052.87 117.362 1048.79 118.852 1045 118.852C1039.71 118.852 1036.91 118.106 1032.57 116.298L1030.87 115.524L1029.01 126.422C1032.1 127.78 1037.8 128.958 1043.72 129.018C1057.6 129.018 1066.61 122.492 1066.72 112.386C1066.77 106.848 1063.25 102.633 1055.63 99.1586C1051.01 96.9204 1048.19 95.4035 1048.22 93.1231C1048.22 91.1013 1050.61 88.9378 1055.78 88.9378C1059.17 88.8617 1062.53 89.4969 1065.66 90.803L1066.85 91.3649L1068.64 80.8133ZM1102.6 79.744H1092.43C1089.28 79.744 1086.92 80.6095 1085.54 83.7677L1065.99 128.237H1079.9C1079.9 128.237 1082.13 122.323 1082.64 121.025L1099.32 121.045C1099.71 122.726 1100.9 128.237 1100.9 128.237H1113.26L1102.6 79.744ZM1086.43 111.078C1087.52 108.273 1091.69 97.47 1091.69 97.47C1091.61 97.5993 1092.78 94.65 1093.44 92.8222L1094.33 97.02C1094.33 97.02 1096.86 108.641 1097.39 111.078H1086.43ZM996.495 79.744L983.596 112.866L982.223 106.134C979.822 98.3753 972.341 89.9699 963.976 85.7622L975.771 128.237L989.709 128.222L1010.45 79.744H996.431" fill="white"/> +<path d="M970.977 79.7436H949.775L949.604 80.7557C966.171 84.7868 977.132 94.5253 981.684 106.223L977.053 83.8419C976.254 80.7607 973.937 79.8406 971.069 79.7336" fill="white"/> +<path d="M130.128 161.702C130.328 161.588 130.534 161.458 130.74 161.314C130.883 161.213 131.026 161.099 131.173 160.985C131.226 160.945 131.276 160.905 131.329 160.865C133.927 158.712 136.845 154.22 138.923 148.774C138.933 148.747 138.942 148.72 138.952 148.693C139.101 148.303 139.243 147.909 139.386 147.508C142.46 138.633 143.415 127.306 138.236 118.047C134.979 112.22 130.334 107.339 124.943 103.92C120.321 100.94 117.507 95.9054 117.39 90.4091C117.303 84.0188 115.575 77.507 112.318 71.6803C107.186 62.5109 96.9335 57.3933 87.7015 55.3544C84.4707 54.6407 81.1106 54.201 77.7989 54.3115C75.5044 54.3887 72.9201 54.577 70.8725 55.7241C63.8472 59.6519 53.507 82.8217 62.7646 99.3794C66.0216 105.206 70.6664 110.088 76.0571 113.506C80.6792 116.487 83.4934 121.521 83.6107 127.017C83.6975 133.408 85.4257 139.919 88.6826 145.746C97.9402 162.304 123.099 165.627 130.124 161.699L130.128 161.702Z" fill="#FFC900"/> +<path d="M130.128 161.702C130.328 161.588 130.534 161.458 130.74 161.314C130.883 161.213 131.026 161.099 131.173 160.985C131.226 160.945 131.276 160.905 131.329 160.865C133.927 158.712 136.845 154.22 138.923 148.774C138.933 148.747 138.942 148.72 138.952 148.693C139.101 148.303 139.243 147.909 139.386 147.508C142.46 138.633 143.415 127.306 138.236 118.047C134.979 112.22 130.334 107.339 124.943 103.92C120.321 100.94 117.507 95.9054 117.39 90.4091C117.303 84.0188 115.575 77.507 112.318 71.6803C107.186 62.5109 96.9335 57.3933 87.7015 55.3544C84.4707 54.6407 81.1106 54.201 77.7989 54.3115C75.5044 54.3887 72.9201 54.577 70.8725 55.7241C63.8472 59.6519 53.507 82.8217 62.7646 99.3794C66.0216 105.206 70.6664 110.088 76.0571 113.506C80.6792 116.487 83.4934 121.521 83.6107 127.017C83.6975 133.408 85.4257 139.919 88.6826 145.746C97.9402 162.304 123.099 165.627 130.124 161.699L130.128 161.702ZM92.132 143.821C89.1702 138.52 87.6778 132.745 87.6199 127.038C87.4349 120.185 83.8828 113.832 78.0782 110.291C73.249 107.251 69.0359 102.828 66.1446 97.6577C57.9973 83.0844 67.4378 62.3322 72.7384 59.3704C78.342 56.2376 100.825 59.3156 108.896 73.7557C111.857 79.0562 113.35 84.8317 113.408 90.5383C113.456 97.4657 116.938 103.692 122.813 107.362C127.642 110.402 131.785 114.695 134.746 119.996C142.894 134.569 133.48 155.305 128.066 158.333C122.765 161.295 100.202 158.261 92.132 143.824L92.132 143.821Z" fill="black" stroke="black" stroke-width="0.291534"/> +<path d="M87.495 98.0243L89.5357 94.6391" stroke="black" stroke-width="3.66887" stroke-miterlimit="10" stroke-linecap="round"/> +<path d="M80.1515 91.9765C84.7362 91.9621 88.4412 88.2337 88.4268 83.6489C88.4124 79.0642 84.6841 75.3592 80.0993 75.3736C75.5145 75.388 71.8095 79.1163 71.8239 83.7011C71.8383 88.2859 75.5667 91.9909 80.1515 91.9765Z" fill="white" stroke="black" stroke-width="3.20687" stroke-miterlimit="10"/> +<path d="M94.6993 84.0963C99.2841 84.0819 102.989 80.3536 102.975 75.7688C102.96 71.1841 99.2319 67.479 94.6472 67.4935C90.0624 67.5079 86.3574 71.2362 86.3718 75.821C86.3862 80.4057 90.1145 84.1108 94.6993 84.0963Z" fill="white" stroke="black" stroke-width="3.20687" stroke-miterlimit="10"/> +<path d="M93.908 67.8425C91.9051 70.5039 91.7935 74.2666 93.877 77.0819C95.6557 79.4845 98.5643 80.5594 101.328 80.1105C103.331 77.4491 103.443 73.6864 101.359 70.8711C99.5803 68.4685 96.6717 67.3936 93.908 67.8425Z" fill="black"/> +<path d="M79.8006 75.7013C77.8743 78.3357 77.7891 82.0184 79.8325 84.7804C81.5173 87.0566 84.2224 88.1287 86.8465 87.837C88.7728 85.2026 88.858 81.52 86.8147 78.7579C85.1298 76.4818 82.4247 75.4096 79.8006 75.7013Z" fill="black"/> +<path d="M90.0197 96.739C91.9126 97.2468 94.1103 97.1398 95.9361 96.487C97.7752 95.8274 100.054 93.9891 101.056 92.2849" stroke="black" stroke-width="3.66887" stroke-miterlimit="10" stroke-linecap="round"/> +<path d="M107.899 145.319C107.271 146.008 107.262 147.192 107.947 147.821C110.7 150.327 113.762 152.492 116.673 154.074C117.214 154.442 117.804 154.284 118.317 153.999C118.573 153.854 118.756 153.58 118.945 153.31C119.432 152.364 119.052 151.391 118.307 150.967C115.597 149.444 112.806 147.468 110.327 145.141C109.638 144.52 108.521 144.637 107.899 145.319Z" fill="black" stroke="black" stroke-width="0.583068" stroke-miterlimit="10"/> +<path d="M103.019 141.786L103.149 141.712C103.974 141.079 104.131 140.148 103.628 139.249C102.921 138.294 102.348 137.265 101.774 136.24C100.697 134.312 99.7504 132.314 98.8707 130.445C98.4974 129.472 97.4959 129.192 96.5197 129.565C95.5469 129.939 95.2666 130.94 95.6399 131.916C96.4602 133.985 97.6108 136.043 98.758 138.097C99.402 139.252 99.9789 140.281 100.756 141.366C101.309 142.058 102.24 142.215 103.012 141.786L103.019 141.786Z" fill="black" stroke="black" stroke-width="0.583068" stroke-miterlimit="10"/> +<path d="M94.256 123.439L94.6422 123.224C95.2848 122.865 95.639 121.994 95.5365 121.21C94.8987 118.867 93.9374 116.539 92.7165 114.355C92.1429 113.326 91.5659 112.297 90.8625 111.345C90.2295 110.52 89.1719 110.433 88.4732 110.996C87.648 111.629 87.5613 112.686 88.1238 113.385C88.7568 114.21 89.26 115.109 89.7631 116.012C90.8399 117.939 91.6635 120.008 92.2803 122.021C92.3972 123.135 93.4164 123.745 94.2526 123.439L94.256 123.439Z" fill="black" stroke="black" stroke-width="0.583068" stroke-miterlimit="10"/> +<path d="M128.552 148.619C128.953 148.731 129.206 148.591 129.462 148.446C129.975 148.161 130.347 147.616 130.388 147.086C130.565 143.787 130.326 140.039 129.631 136.379C129.455 135.462 128.565 134.781 127.525 135.028C126.609 135.204 125.928 136.094 126.175 137.133C126.855 140.46 127.08 143.878 126.959 146.983C126.932 147.841 127.565 148.666 128.552 148.623L128.552 148.619Z" fill="black" stroke="black" stroke-width="0.583068" stroke-miterlimit="10"/> +<path d="M108.614 99.8158C107.641 100.189 107.361 101.191 107.66 102.034C108.104 103.136 108.681 104.165 109.251 105.187C110.472 107.371 111.95 109.408 113.616 111.177C114.105 111.746 115.033 111.9 115.802 111.471L116.188 111.256C116.816 110.567 116.897 109.509 116.337 108.814C114.822 107.304 113.612 105.45 112.535 103.523C112.032 102.624 111.532 101.725 111.155 100.748C110.522 99.9232 109.58 99.4358 108.611 99.8125L108.614 99.8158Z" fill="black" stroke="black" stroke-width="0.583068" stroke-miterlimit="10"/> +<path d="M120.914 116.521C120.089 117.154 120.002 118.211 120.435 118.984C121.694 120.637 122.771 122.565 123.851 124.49C124.425 125.519 125.001 126.548 125.442 127.643C125.815 128.616 126.817 128.897 127.793 128.523L127.923 128.45C128.695 128.017 128.979 127.015 128.673 126.172C128.229 125.07 127.582 123.918 126.934 122.759C125.784 120.701 124.507 118.721 123.303 116.867C122.747 116.168 121.616 115.958 120.917 116.521L120.914 116.521Z" fill="black" stroke="black" stroke-width="0.583068" stroke-miterlimit="10"/> +<path d="M109.403 124.925C110.302 124.422 110.585 123.42 110.082 122.525L104.622 112.76C104.119 111.861 103.117 111.577 102.222 112.08C101.326 112.583 101.039 113.585 101.542 114.48L107.003 124.246C107.499 125.148 108.5 125.428 109.403 124.925Z" fill="black" stroke="black" stroke-width="0.583068" stroke-miterlimit="10"/> +<path d="M120.325 144.453C121.224 143.95 121.507 142.948 121.004 142.052L115.544 132.287C115.04 131.388 114.039 131.105 113.143 131.608C112.248 132.111 111.961 133.112 112.464 134.008L117.924 143.773C118.421 144.675 119.422 144.956 120.325 144.453Z" fill="black" stroke="black" stroke-width="0.583068" stroke-miterlimit="10"/> +<defs> +<linearGradient id="paint0_linear_17007_6863" x1="5.71025e-06" y1="330.901" x2="1208" y2="382.21" gradientUnits="userSpaceOnUse"> +<stop stop-color="white" stop-opacity="0.29"/> +<stop offset="1" stop-color="white" stop-opacity="0.12"/> +</linearGradient> +</defs> +</svg> diff --git a/src/assets/cards/DEPRECATED_Cart Gradient 5.svg b/src/assets/cards/DEPRECATED_Cart Gradient 5.svg new file mode 100644 index 000000000..9133d2123 --- /dev/null +++ b/src/assets/cards/DEPRECATED_Cart Gradient 5.svg @@ -0,0 +1,625 @@ +<svg width="1211" height="768" viewBox="0 0 1211 768" fill="none" xmlns="http://www.w3.org/2000/svg"> +<rect x="5.1533" y="5.1533" width="1203.69" height="760.114" rx="62.4456" fill="#FF90E8" stroke="url(#paint0_linear_17007_2405)" stroke-width="4.3066"/> +<mask id="mask0_17007_2405" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="0" y="0" width="1208" height="765"> +<rect width="1208" height="764.421" rx="64.5989" fill="#FF90E8"/> +</mask> +<g mask="url(#mask0_17007_2405)"> +<path d="M415.562 272.075C412 271.892 398.967 272.4 396.449 271.738C395.914 270.784 395.944 264.607 396.385 263.4C397.639 262.775 421.529 263.042 424.847 263.033C424.565 265.354 424.643 269.853 424.765 272.22C427.73 272.356 431.472 272.268 434.511 272.293C434.549 275.414 434.513 278.604 434.511 281.729C431.296 281.697 428.081 281.701 424.866 281.743C424.728 283.895 424.184 289.48 425.217 290.987C426.617 291.985 432.311 291.457 434.51 291.42C434.772 288.475 434.619 284.799 434.57 281.773L458.946 281.766C462.784 281.766 468.834 281.607 472.454 281.992C472.594 284.778 472.421 288.648 472.36 291.478C474.397 291.413 480.486 291.763 481.86 291.201C482.482 289.224 482.243 275.276 482.236 272.234C486.654 272.081 497.126 272.616 500.876 272.104C500.883 275.066 500.984 278.811 500.717 281.69C497.758 281.814 494.232 281.743 491.24 281.745C491.074 284.914 491.166 288.263 491.208 291.443C494.441 291.48 507.815 290.959 509.797 292.047C510.846 294.089 510.141 297.968 510.613 300.471C501.59 300.113 491.975 300.427 482.932 300.558C480.929 300.588 482.826 307.77 481.6 309.57C480.044 310.213 474.308 309.899 472.348 309.864L472.352 319.314C474.559 319.507 478.152 319.39 480.45 319.385C483.946 319.378 487.871 319.434 491.335 319.231C491.413 322.114 491.15 326.767 491.431 329.298C485.81 329.632 478.262 329.427 472.504 329.415C472.317 332.361 472.389 335.702 472.393 338.687C474.75 338.906 479.468 338.724 481.978 338.687C482.07 341.791 482.065 344.898 481.964 348.005C479.304 348.231 475.372 348.072 472.453 348.191C472.221 350.798 472.33 355.251 472.317 357.991C477.974 357.975 485.916 357.719 491.388 358.06C491.664 367.44 492.681 367.108 482.904 366.611C482.591 367.5 481.051 373.956 481.097 374.654C481.295 377.685 489.408 375.352 491.03 376.611C491.759 378.251 491.312 384.193 491.429 386.634L500.883 386.613C501.27 391.868 500.652 399.786 500.689 405.537C503.863 405.562 507.138 405.497 510.323 405.477C510.68 402.743 510.53 396.092 510.503 393.137C510.45 387.705 510.632 381.828 510.452 376.442C507.405 376.387 504.199 376.477 501.102 376.442C501.019 367.067 501.014 357.694 501.088 348.318C504.234 348.261 507.382 348.261 510.53 348.321C510.712 352.614 510.182 355.838 509.585 359.978C509.383 361.37 509.472 365.518 509.477 367.088C516.145 367.302 522.766 366.735 529.581 367.424C529.768 364.393 529.698 361.063 529.694 358C535.695 357.814 542.185 357.924 548.2 357.968C548.295 367.509 548.293 377.053 548.189 386.597C557.286 386.825 567.311 386.604 576.488 386.62C576.756 390.208 576.613 401.838 576.414 405.253C573.305 405.486 570.183 405.449 567.067 405.415C567.21 402.363 567.2 398.922 567.145 395.869C564.488 395.686 560.542 395.76 557.848 395.802C557.717 398.874 557.627 402.43 557.797 405.474C554.939 405.26 551.425 405.502 548.327 405.35C548.376 402.172 548.383 398.996 548.355 395.818C545.933 395.569 541.312 395.786 538.707 395.841C538.627 399.086 538.763 402.209 538.41 405.442C535.262 405.461 532.406 405.922 529.284 406.371C529.214 403.456 529.583 400.844 529.65 397.993C529.735 394.357 529.692 390.598 529.685 386.952C532.183 386.733 536.345 386.846 538.97 386.848C539.221 382.992 538.8 379.92 538.548 376.085C534.985 376.064 532.877 376.14 529.316 375.659C526.997 375.864 521.706 374.735 519.959 375.712C519.154 378.06 519.364 404.619 520.413 405.885C522.455 406.71 526.97 406.468 529.284 406.371C529.261 408.825 529.159 411.877 529.249 414.276C524.098 414.267 514.84 414.009 510.051 414.458C509.917 417.68 509.917 420.727 509.926 423.953C513.116 423.935 516.389 423.877 519.567 424.002C519.735 428.166 519.32 432.209 519.36 436.362C519.433 444.29 519.175 452.204 518.933 460.126C518.818 463.926 518.977 467.839 518.864 471.658L510.367 471.628C509.758 463.087 510.865 452.267 510.549 443.29C507.997 443.299 503.354 443.17 500.966 443.373C500.874 446.256 501.026 450.536 500.673 453.186L491.189 453.2C491.097 449.879 491.217 446.431 491.104 443.209C488.484 443.232 474.183 443.062 472.773 443.638C472.036 445.251 472.357 450.616 472.311 452.734C469.521 452.485 465.946 452.555 463.15 452.721L463.069 465.219C463.061 466.726 462.948 470.25 463.087 471.633C456.823 471.471 450.505 471.748 444.219 471.566C444.151 469.45 443.638 464.666 444.694 463.163C446.07 462.186 451.584 462.615 453.795 462.608C454.047 456.53 453.882 449.448 453.877 443.297C450.714 443.251 447.394 443.313 444.219 443.324C444.433 440.273 444.411 436.897 444.448 433.811C438.264 433.815 431.005 434.002 424.92 433.684C424.669 436.537 424.69 440.644 424.723 443.527L444.163 443.5C444.156 446.546 444.091 449.591 443.97 452.633C442.05 452.651 436.694 452.324 435.283 452.87C434.02 454.182 434.582 459.731 434.35 462.405C431.257 462.435 428.164 462.437 425.072 462.416C425.011 459.238 425.058 455.975 425.013 452.769C422.805 452.449 417.781 452.651 415.446 452.725C415.633 449.814 415.584 446.182 415.524 443.264C410.831 443.186 406.101 443.34 401.403 443.269C399.827 443.246 398.201 443.221 396.639 443.426C395.95 444.677 396.298 450.999 396.171 453.142C394.645 453.209 390.819 453.451 389.504 453.158C385.591 452.287 383.377 451.914 379.376 451.955C378.644 452.624 378.277 453.103 377.645 453.878C377.563 455.91 377.029 460.596 377.913 462.041C379.077 462.953 384.947 462.603 387.035 462.704C387.262 464.995 387.323 478.83 386.65 480.517C385.03 481.183 352.72 480.845 348.49 480.812C348.729 475.191 348.562 468.397 348.566 462.691C351.816 462.522 355.073 462.518 358.324 462.681C358.515 465.523 358.352 469.01 358.499 472.068C361.318 472.179 365.07 472.168 367.869 472.05C368.131 469.04 367.984 464.802 367.973 461.67C367.934 455.622 367.934 449.572 367.972 443.525C369.914 443.536 375.181 443.707 376.692 443.41C378.634 443.027 376.683 436.258 377.776 434.251C379.394 433.543 384.841 433.877 387.085 433.866C387.31 431.428 387.745 426.074 387.729 423.907C391.641 423.967 391.967 425.295 396.498 425.422C399.614 423.799 402.24 424.154 405.744 424.145C405.804 427.367 405.753 430.582 405.822 433.813C408.534 434.016 412.554 433.93 415.367 433.949C415.639 430.884 415.537 426.744 415.516 423.656L405.967 423.721C405.788 417.738 405.999 411.646 405.742 405.686L396.521 405.705C396.446 402.656 396.491 399.425 396.485 396.362C393.338 396.184 390.585 396.532 387.133 396.223C386.92 405.096 387.079 414.649 387.085 423.585C384.603 423.58 383.902 423.543 381.599 424.424C378.599 423.375 373.294 423.578 370.227 423.96C369.723 424.023 368.985 423.808 368.703 423.396C367.595 421.778 367.927 416.477 367.93 414.424C365.412 414.262 360.937 414.223 358.447 414.421C358.502 411.158 358.513 407.894 358.481 404.633C355.564 404.654 351.355 404.808 348.539 404.633L348.555 396.078L358.261 395.998C358.257 398.766 358.197 401.718 358.25 404.47C364.456 404.334 371.365 404.578 377.368 404.329C377.401 401.568 377.449 398.846 377.368 396.083C371.025 396.03 364.756 395.686 358.437 395.795C358.462 392.81 358.56 389.381 358.43 386.438L339.12 386.38L339.301 377.625C343.86 377.638 347.88 377.638 352.444 377.201C354.183 377.035 356.572 377.24 358.401 377.074C358.737 367.489 358.464 356.693 358.511 346.986C355.639 347.198 351.283 347.244 348.42 347.023L348.551 338.855C351.381 338.572 355.056 338.662 357.962 338.703C358.098 335.739 358.124 332.775 358.04 329.812C354.863 329.888 351.685 329.906 348.508 329.871C348.537 323.4 348.305 315.988 348.567 309.648C351.427 309.579 355.575 309.408 358.295 309.934L358.208 329.629C360.21 329.646 366.229 329.89 367.664 329.242C368.616 327.449 367.001 319.952 368.604 319.802C374.284 319.27 380.648 319.482 386.365 319.666C387.543 319.706 386.899 328.473 386.922 329.632C385.507 329.523 383.928 329.537 382.508 329.593C377.684 329.777 372.745 329.417 367.938 329.535C367.851 336.698 367.847 343.863 367.928 351.029C367.959 352.948 367.871 356.203 368.016 357.993L385.912 358.051C385.913 355.285 385.782 351.181 385.947 348.523C388.76 348.196 393.44 348.332 396.397 348.364C396.403 351.57 396.365 354.776 396.283 357.982C402.098 357.991 409.742 357.756 415.371 358.042C415.438 361.312 415.783 373.889 414.992 376.205C414.211 376.94 410.846 377.083 409.626 377.362C408.409 377.641 407.165 378.122 405.965 378.288C405.946 380.989 405.995 383.704 405.668 386.385C402.885 386.396 399.137 386.304 396.434 386.468C396.502 383.227 396.523 379.985 396.496 376.742C406.69 376.594 406.407 378.436 405.832 367.378C405.824 367.212 405.813 367.048 405.798 366.882C402.977 366.906 399.267 367.018 396.498 366.869C396.498 364.333 396.589 360.736 396.366 358.318C393.131 358.302 389.913 358.429 386.68 358.457L386.597 366.813C380.447 366.873 374.079 366.972 367.936 366.855C367.929 370.017 367.823 373.79 367.949 376.901C372.897 377.265 381.537 376.924 386.87 376.933C386.88 379.482 386.766 384.244 386.986 386.666C389.696 386.76 393.545 386.7 396.311 386.611L396.299 395.998C403.39 396.15 410.506 395.968 417.599 396.034C419.556 396.053 422.841 395.852 424.626 396.422C425.074 397.846 424.909 402.624 424.756 404.214C424.577 406.078 417.18 405.35 415.564 405.527C415.216 410.796 415.448 418.003 415.401 423.469C418.211 423.359 421.023 423.29 423.835 423.262C424.427 423.681 425.176 424.251 425.774 424.624C427.82 424.613 433.913 425.306 435.209 424.871C438.665 423.709 440.903 424.46 444.191 423.974C444.037 427.613 444.096 430.434 444.885 433.995C447.347 434.013 451.489 434.147 453.829 433.894C454.085 431.596 453.897 426.327 453.854 423.944C450.896 423.801 447.172 423.926 444.191 423.974C444.047 414.689 444.455 405.057 444.195 395.832C441.297 395.682 437.612 395.767 434.656 395.753C434.472 393.188 434.577 389.3 434.573 386.631C440.928 386.597 447.283 386.597 453.637 386.629C453.823 389.167 453.697 393.315 453.731 396.034C459.905 396.083 466.08 396.078 472.254 396.025C472.457 392.635 472.729 380.063 472.124 377.071C469.424 376.788 466.446 377.311 463.7 377.12C457.168 376.67 450.759 376.567 444.226 376.424C443.975 371.024 444.201 363.439 444.201 357.86C448.906 358.138 453.687 357.719 458.393 358.127C459.817 358.249 461.159 358.327 462.59 358.281C462.651 360.39 462.01 365.808 463.227 367.23C464.165 368.328 470.906 368.157 471.962 367.604C472.618 367.26 472.445 358.984 472.446 358.028C470.394 357.88 464.671 357.767 462.749 357.979C462.801 354.013 462.761 350.581 463.356 346.659C463.604 345.025 463.673 340.362 463.196 338.825C462.09 338.281 454.983 338.332 454.149 338.599C453.5 339.853 453.671 346.189 453.631 348.097C450.663 348.097 447.114 348.019 444.204 348.24C444.144 350.916 443.937 355.172 444.118 357.717C440.938 357.588 437.842 357.721 434.581 357.553C434.487 354.513 434.533 351.194 434.514 348.129C431.488 348.03 428.124 348.076 425.075 348.053C425.036 345.013 425.069 341.907 425.069 338.86C428.06 338.786 442.061 339.162 443.82 338.454C444.51 336.852 444.215 331.328 444.189 329.323C440.87 329.272 437.936 329.394 434.548 329.219C434.366 326.502 434.402 322.344 434.49 319.62C436.408 319.454 438.871 319.625 440.855 319.517C445.171 319.281 449.354 319.235 453.677 319.275C453.69 322.453 453.653 325.818 453.801 328.975C456.999 328.945 460.03 328.774 463.317 328.774C463.558 323.04 463.365 315.76 463.368 309.931C466.169 309.793 469.501 309.844 472.326 309.828C471.842 306.836 472.096 295.299 472.119 291.641C467.82 291.593 463.526 291.787 459.223 291.71C455.253 291.641 448.227 290.636 444.472 291.473C443.74 292.911 444.006 298.516 444.018 300.404C440.898 300.397 437.743 300.353 434.628 300.473C434.421 303.01 434.517 307.242 434.498 309.908C431.188 309.975 428.391 309.987 425.088 309.844L425.05 300.429C418.825 300.183 412.274 300.586 405.951 300.383C405.864 297.472 405.894 294.368 405.873 291.441C407.669 291.448 414.388 291.761 415.34 291.038C415.841 288.846 415.612 275.071 415.562 272.075ZM463.644 433.354C468.954 433.366 474.421 433.456 479.691 432.831C483.204 432.416 486.366 432.449 489.89 432.476L490.745 432.372C491.819 430.95 490.878 416.274 491.235 413.442C491.36 412.435 491.229 406.929 491.093 405.917C490.622 405.412 489.101 405.345 488.375 405.343C480.014 405.311 471.6 405.433 463.24 405.32C462.635 406.952 462.906 409.137 462.751 410.856C462.208 416.878 462.337 422.64 463.234 428.63C463.464 430.162 463.359 431.778 463.644 433.354ZM500.779 433.919C503.851 433.926 506.921 433.912 509.993 433.873C510.235 431.105 510.072 426.88 510.021 424.004C507.02 423.926 504.02 423.896 501.021 423.912C500.756 426.235 500.708 431.474 500.779 433.919Z" fill="#9E2184"/> +<path d="M472.281 414.223L481.893 414.159C481.982 416.212 481.989 420.646 481.655 422.545L472.143 422.769C472.106 420.821 471.944 415.933 472.281 414.223Z" fill="#9E2184"/> +<path d="M643.087 224.994C644.469 214.075 641.957 215.113 652.847 214.718C652.49 217.366 652.478 222.028 652.312 224.958C655.836 225.123 660.524 225.137 664.036 225.036C672.531 224.793 671.526 224.66 671.448 232.867L671.393 243.43C668.316 243.307 665.447 243.54 662.259 243.288C662.165 241.216 662.522 235.823 661.99 234.309C661.093 233.685 653.598 233.594 652.766 234.144C652.056 235.802 652.375 243.517 652.596 245.713C653.061 250.355 652.073 258.56 652.971 262.754C654.403 263.964 668.185 262.114 670.724 263.713C671.596 265.045 671.248 270.12 671.227 272.061C668.233 272.079 665.237 272.065 662.241 272.024C662.024 274.547 662.054 279.36 662.135 281.959C664.599 282.107 668.447 281.978 671.017 281.971C670.759 284.428 670.819 286.407 670.492 289.498C670.061 293.561 664.824 290.45 663.555 292.211C662.137 294.176 662.333 308.353 662.354 310.024C665.343 310.116 668.521 310.06 671.526 310.051C671.464 314.195 671.441 318.339 671.46 322.485C671.457 324.518 671.358 327.742 671.483 329.659L643.107 329.682C643.165 327.597 642.743 321.298 643.575 320.109C644.976 319.18 650.213 319.533 652.384 319.514C652.593 316.659 652.501 312.782 652.506 309.844L643.094 309.867C640.1 309.869 636.661 309.802 633.709 310.005C633.349 315.244 633.619 324.354 633.601 329.8C636.59 329.606 640.008 329.786 643.107 329.682C642.794 335.115 643.029 342.46 642.898 348.24C640.724 348.072 636.382 348.323 633.764 348.251C633.559 345.546 633.665 341.342 633.656 338.521C631.107 338.431 626.673 338.438 624.181 338.562L624.17 329.473C622.934 329.429 615.184 329.832 614.769 328.933C613.907 327.064 615.267 321.344 614.124 319.643C612.526 319.037 598.924 319.493 595.603 319.251L595.571 309.977C592.632 309.816 589.074 309.894 586.085 309.892C586.039 306.813 585.951 303.746 586.103 300.671L605.013 300.683C605.135 297.998 605.128 294.236 604.965 291.577C602.904 291.362 598.041 291.528 595.61 291.478L595.575 262.835L585.983 262.844C585.739 268.366 586.327 276.585 585.688 281.731C582.658 281.75 579.629 281.733 576.601 281.683C576.889 276.622 576.82 271.325 576.594 266.262C576.44 262.789 576.059 259.323 576.228 255.84C576.258 255.253 576.26 254.407 576.7 253.964C577.991 252.667 592.625 253.358 595.61 253.215C595.698 250.046 595.629 246.552 595.631 243.359C592.402 243.365 589.362 243.46 586.135 243.225C586.048 240.203 586.066 237.022 586.027 233.982C583.504 233.749 579.136 233.867 576.571 233.968C576.804 231.554 576.61 227.502 576.548 225.001C582.881 224.991 589.217 225.02 595.55 225.089C595.725 227.827 595.656 231.453 595.665 234.226C598.537 234.344 601.969 234.261 604.884 234.263C604.843 237.44 604.868 240.677 604.863 243.861C607.917 243.99 611.388 243.888 614.479 243.858C614.513 246.619 614.61 251.003 614.225 253.646C611.517 253.667 608.938 253.678 606.23 253.84C606.302 257.078 606.527 260.27 606.594 263.533C609.178 263.566 611.759 263.637 614.338 263.743C614.594 266.345 614.444 269.618 614.4 272.28L624.142 272.261C624.373 266.287 624.218 259.399 624.218 253.356L632.234 253.393C632.296 250.254 632.179 247.587 631.992 244.455C629.286 244.441 626.583 244.402 623.877 244.338C623.713 241.91 623.63 227.203 624.19 225.398C625.739 224.699 640.146 225.035 643.087 224.994ZM623.854 308.749C623.833 306.631 623.421 301.773 624.458 300.314C625.891 299.36 631.704 299.818 633.923 299.793L633.932 299.355C633.969 297.82 634.08 296.659 634.393 295.22C634.949 292.658 634.834 283.688 633.589 281.828C632.13 280.95 626.232 281.275 624.091 281.284C622.58 285.732 626.06 291.916 620.685 291.775C618.749 291.724 616.781 291.791 614.84 291.775C614.336 294.515 614.518 306.905 614.548 310.305C616.564 310.353 622.116 310.754 623.552 309.89C623.849 309.337 623.891 309.364 623.854 308.749ZM643.006 291.411C645.078 291.441 650.692 291.625 652.591 291.415C653.216 288.242 653.057 275.575 652.861 272.051C649.623 272.022 646.385 272.04 643.149 272.104C642.833 273.828 642.826 289.36 643.006 291.411Z" fill="#9E2184"/> +<path d="M519.682 24.151C525.645 23.9874 532.626 24.0218 538.636 24.1053C538.643 26.9675 538.546 30.8496 538.745 33.6259C541.9 33.7552 545.145 33.7179 548.311 33.7187C548.042 36.1395 548.235 40.152 548.18 42.7784C545.039 42.7537 541.865 42.692 538.728 42.8095C538.692 45.7339 538.574 49.2815 538.689 52.188C537.164 52.1502 530.632 51.887 529.62 52.5364C528.901 54.527 529.362 67.849 529.205 71.2344C527.968 71.36 520.756 71.189 520.39 71.7296C519.341 73.2798 519.712 87.9277 519.883 90.6228C522.987 90.6753 526.09 90.6788 529.192 90.6334C529.254 93.8752 529.284 97.1176 529.277 100.36C527.689 100.096 519.046 100.107 516.912 100.118C512.563 100.14 505.366 99.6177 501.333 100.071C500.657 101.239 500.699 108.478 500.897 110.016C498.973 110.056 493.266 109.682 492.017 110.382C491.095 111.516 491.455 117.353 491.406 119.514C488.362 119.679 485.163 119.583 482.105 119.548C481.941 122.47 482.026 126.36 481.969 129.4C477.91 129.603 467.279 129.63 463.518 129.365C463.06 124.705 463.415 114.949 463.353 109.768L454.183 109.842C454.043 106.825 454.109 103.215 454.087 100.152C450.91 100.222 447.481 100.394 444.335 100.203C444.123 97.6594 444.227 93.4191 444.215 90.7447C455.771 91.8224 453.983 91.1837 453.853 81.033C450.9 80.8534 447.215 80.9737 444.198 81.003C444.276 77.9021 444.457 74.4895 444.133 71.442C440.942 71.4019 437.966 71.6043 434.717 71.4201C434.448 68.5784 434.568 65.1574 434.589 62.2668C436.557 62.2677 442.013 62.5985 443.482 61.9744C444.644 60.8269 444.069 54.8614 444.217 52.4553C447.329 52.2396 450.82 52.5429 453.849 52.2207L453.785 62.2947C456.714 62.4459 460.191 62.3387 463.139 62.3037C463.433 59.7298 463.344 55.011 463.216 52.3576C465.782 52.3795 470.021 52.4807 472.445 52.2417C472.43 55.7303 472.469 59.2189 472.563 62.7063C478.541 62.9469 485.041 62.4132 491.173 62.3788C491.277 59.9691 490.858 54.432 491.542 52.6102C493.266 51.8015 506.963 52.3186 510.102 52.1864C510.093 54.9077 509.98 59.7918 510.431 62.3164C512.957 62.3542 517.24 62.5966 519.572 62.4067C519.977 60.3671 519.795 54.5196 519.752 52.2841C517.032 52.0845 512.93 52.1924 510.102 52.1864L510.141 43.2317C513.31 42.9932 516.829 43.2458 519.563 42.9946C519.943 36.8346 519.295 29.9342 519.682 24.151ZM463.592 100.345L491.388 100.387C491.881 99.4251 491.886 74.9892 491.678 71.6748C485.458 71.5656 479.152 71.7697 472.933 71.7331C470.24 71.7172 465.873 71.9246 463.354 71.4932C462.029 73.3146 463.146 82.6675 463.296 85.4905C463.562 90.4847 463.532 95.3612 463.592 100.345ZM472.498 119.567C475.529 119.645 478.714 119.474 481.69 119.668C482.068 119.368 482.275 119.342 482.224 118.624C482.056 116.31 482.722 112.038 481.692 110.154C481.39 109.91 480.961 109.57 480.565 109.579C477.908 109.641 475.253 109.801 472.587 109.79C472.39 112.078 472.253 117.318 472.498 119.567ZM500.69 90.9334L510.259 90.8908C510.646 89.0676 510.484 82.9788 510.362 80.9196C507.23 80.971 504.098 80.9839 500.966 80.9583C500.567 82.9489 500.685 88.6514 500.69 90.9334Z" fill="#9E2184"/> +<path d="M472.532 81.2385C475.686 81.1961 478.838 81.1908 481.991 81.2224C482.049 83.4485 482.309 88.7083 481.719 90.6308C479.016 90.7663 475.006 90.7239 472.317 90.6099C472.172 88.9205 472.074 82.773 472.532 81.2385Z" fill="#9E2184"/> +<path d="M690.854 376.537C693.606 376.747 697.355 376.518 700.473 376.691C700.582 379.814 700.485 383.439 700.478 386.599L709.397 386.611C709.542 388.95 709.556 393.527 709.217 395.795L700.499 395.811C700.414 398.978 700.469 402.34 700.471 405.523C702.209 405.569 707.895 405.189 709.012 405.811C709.865 407.825 709.489 420.978 709.169 423.887C704.062 424.126 695.998 424.085 690.865 423.894C690.798 420.685 690.909 417.549 690.789 414.297C686.931 414.092 675.101 414.131 671.469 414.407C671.391 417.576 671.444 420.953 671.441 424.136L681.11 424.2C681.319 430.453 681.137 437.194 681.176 443.511C684.389 443.548 687.604 443.534 690.819 443.47L690.826 433.91C693.871 433.783 697.348 433.861 700.427 433.871C700.483 436.986 700.266 440.089 700.381 443.26C697.194 443.315 694.004 443.336 690.817 443.322C690.685 446.212 690.796 449.81 690.815 452.751C689.068 452.453 682.582 452.28 681.188 453.483C679.966 454.537 675.037 454.076 673.105 454.02C672.866 456.825 672.85 459.812 672.868 462.635C678.911 462.642 684.788 462.4 690.803 462.391C690.621 464.032 690.52 470.103 690.815 471.582C688.657 471.236 684.97 471.331 682.762 471.306C679.358 471.266 682.372 478.263 680.605 480.607C679.093 481.158 673.762 480.861 671.9 480.817C671.28 475.267 672.725 468.109 672.594 462.43C669.144 462.375 665.691 462.377 662.241 462.439C662.077 466.415 662.587 477.226 661.914 480.527C661.033 481.262 654.518 480.905 652.981 480.877C653.112 472.038 652.955 462.99 652.907 454.133L649.593 454.085C647.304 452.483 646.14 452.757 643.322 452.783C643.345 449.618 643.34 446.456 643.306 443.294C640.713 443.17 637.371 443.246 634.732 443.241L633.774 441.149C631.817 441.49 626.848 441.577 624.493 441.746C624.237 436.945 625.419 417.696 623.774 414.679C621.821 413.907 608.468 414.347 605.043 414.235C605.027 411.342 605.057 408.452 605.131 405.562C609.807 405.292 619.662 405.968 623.704 405.352C624.518 404.214 624.207 397.807 624.191 396.051H652.301C652.412 393.905 652.119 388.634 652.79 387.012C654.179 386.445 669.939 386.332 671.172 387.035C671.948 388.627 671.469 402.548 671.501 405.498C673.767 405.652 676.936 405.548 679.296 405.555C683.041 405.569 687.046 405.693 690.768 405.564C690.909 402.52 690.828 398.927 690.828 395.839C687.791 395.728 684.408 395.774 681.352 395.756C681.31 392.753 681.299 389.75 681.322 386.747C683.737 386.514 688.148 386.62 690.75 386.581C690.911 383.522 690.831 379.657 690.854 376.537ZM662.269 405.456C656.698 405.313 651.128 405.285 645.557 405.371C643.398 405.394 634.984 405.138 633.681 405.827C632.34 408.544 634.069 428.957 634.126 433.813L650.137 433.857L662.225 433.891C662.384 425.645 662.672 413.617 662.269 405.456ZM652.794 453.67C655.836 453.612 658.878 453.594 661.921 453.617C662.467 452.739 662.257 444.986 662.248 443.297C659.478 443.29 655.979 443.37 653.299 443.119C652.142 444.497 652.663 451.536 652.794 453.67ZM633.866 441.054C633.87 440.178 633.983 438.369 633.679 437.648L633.299 437.367C633.287 438.494 633.186 439.655 633.497 440.72L633.866 441.054Z" fill="#9E2184"/> +<path d="M643.244 414.732C646.063 414.613 649.63 414.571 652.412 414.707C652.426 416.576 652.672 422.525 651.986 423.96C648.932 424.096 646.146 424.209 643.106 423.868C643.039 421.762 642.781 416.532 643.244 414.732Z" fill="#9E2184"/> +<path d="M633.299 437.367L633.68 437.648C633.984 438.369 633.871 440.178 633.866 441.054L633.497 440.72C633.186 439.655 633.288 438.494 633.299 437.367Z" fill="#9E2184"/> +<path d="M405.211 100.624C402.919 100.501 398.509 100.898 396.811 100.119C395.614 98.7212 395.111 56.0986 396.571 52.7554C398.045 51.9949 404.149 52.1737 406.052 52.2848C406.153 55.2876 405.533 69.6877 406.237 71.1118C407.398 71.6525 414.595 72.0876 415.351 70.9205C416.47 69.1913 415.794 64.6001 415.833 62.3365C418.103 62.2318 423.145 62.3848 424.869 62.1696C424.869 65.2362 425.162 89.3983 424.425 90.3976C422.881 90.9093 419.903 90.6986 418.214 90.6565L415.681 90.6945C415.5 92.6691 415.151 98.9061 415.879 100.55C417.849 101.74 424.164 99.7724 424.616 101.928C425.061 104.049 424.594 107.686 424.883 110.184C430.838 110.256 436.793 110.279 442.748 110.253C446.218 110.256 450.751 110.383 454.15 110.215C454.099 112.616 453.653 114.481 453.471 116.863C453.219 120.145 453.963 126.515 452.527 129.448C451.149 129.878 445.965 129.643 444.22 129.611C444.205 127.869 444.435 120.706 443.766 119.765C442.397 119.328 434.469 118.709 434.451 121.168C434.432 123.807 434.56 126.707 434.47 129.409C431.496 129.451 428.456 129.394 425.51 129.457C425.422 132.903 426.276 135.699 426.486 139.108C429.339 138.832 431.656 138.825 434.521 139.032C434.527 144.846 434.308 152.513 434.567 158.203C437.711 158.304 440.949 158.248 444.104 158.231C444 160.612 443.892 165.456 444.063 167.743C446.694 167.86 451.175 167.917 453.775 167.701C453.949 164.548 453.891 161.311 453.881 158.147C456.967 158.212 460.054 158.229 463.14 158.196C463.187 164.562 463.195 170.929 463.164 177.295C463.158 179.961 463.019 184.174 463.176 186.733C465.991 186.745 469.827 186.66 472.556 186.857C472.465 190.088 472.319 193.491 472.37 196.708C474.303 196.755 480.221 197.266 481.372 196.099C482.724 194.726 482.925 188.786 482.941 186.771C485.628 186.756 488.371 186.701 491.054 186.828C490.894 193.16 491.593 198.795 491.185 205.411C488.05 205.675 485.041 205.306 482.109 205.543C482.024 207.181 482.192 213.796 481.57 214.64C480.378 215.082 473.662 215.076 472.48 214.51C471.953 212.896 472.303 199.332 472.337 196.793C466.353 196.708 461.016 196.646 454.999 196.251C451.724 196.037 447.637 196.332 444.222 196.191C444.197 193.035 444.193 189.878 444.209 186.722C446.382 186.756 452.048 187.258 453.439 186.209C454.399 184.711 453.893 179.436 453.85 177.192C442.722 176.95 444.125 175.37 443.986 186.476C442.529 186.377 436.144 186.195 435.195 186.912C434.386 188.87 434.897 195.63 433.691 195.738C429.008 196.16 420.014 195.945 415.411 195.958C415.43 201.722 415.633 208.984 415.341 214.62C412.64 214.959 408.697 214.877 405.91 214.862C405.921 212.031 406.044 208.209 405.893 205.459C402.806 205.451 399.529 205.499 396.457 205.424C396.351 202.628 396.499 198.782 396.269 196.22C393.209 196.179 390.148 196.192 387.088 196.26C387.181 193.298 387.255 189.687 387.148 186.726C390.986 186.711 399.372 186.474 402.917 186.79C403.051 189.752 402.981 192.631 402.933 195.592C406.961 195.819 411.36 195.766 415.421 195.79C415.441 190.041 415.717 182.242 415.479 176.631C419.156 176.648 422.945 176.629 426.613 176.767C429.39 176.872 431.927 177.411 434.774 177.295C434.765 174.235 434.855 170.478 434.704 167.473C428.313 167.384 421.922 167.375 415.531 167.445C415.516 165.783 415.157 159.132 415.858 158.314C418.233 157.314 423.171 158.749 424.653 157.601C425.388 155.466 425.041 151.209 425.079 148.737C420.055 148.764 410.626 149.079 405.84 148.692C405.674 145.612 405.825 141.982 405.887 138.854C404.038 138.861 397.26 139.18 396.238 138.339C395.784 136.495 395.183 129.179 398.315 129.446C400.77 129.655 403.386 129.66 405.866 129.637C405.788 131.914 405.677 136.809 405.847 138.971C407.957 138.979 413.918 139.413 415.276 138.539C416.312 137.07 415.864 131.79 415.842 129.619C418.863 129.611 422.071 129.651 425.074 129.546C425.085 127.468 425.321 121.216 424.634 119.682C423.67 119.303 417.065 119.376 416.048 119.609C414.824 120.826 415.7 127.525 415.717 129.586C413.05 129.313 408.705 129.427 405.895 129.427C405.876 126.262 406.166 123.985 406.406 120.869C406.537 119.168 406.226 116.489 406.255 114.679C406.332 109.97 405.163 105.232 405.211 100.624Z" fill="#9E2184"/> +<path d="M339.109 62.2917C344.502 62.2717 353.064 62.513 358.286 62.1493C358.259 64.1751 357.84 69.4091 358.783 70.7767C360.001 71.6554 365.788 71.2482 367.902 71.339C367.969 73.5527 367.555 79.5416 368.469 80.788C369.879 81.6815 375.363 81.2847 377.311 81.1314C377.391 77.9442 377.417 74.7559 377.39 71.5681C379.649 71.5231 384.713 71.2019 386.661 71.8979C387.831 73.3443 386.974 94.6569 387.145 98.2923C387.344 102.515 378.07 98.0969 377.56 101.218C377.328 102.641 377.177 108.922 377.682 109.893C378.638 110.456 385.126 110.149 387.029 110.312C387.262 112.5 387.113 127.755 386.378 129.027C383.823 130.354 371.939 128.633 368.609 129.614C367.542 129.929 367.907 137.722 367.962 138.809C365.848 138.819 360.396 138.54 358.692 139.034C357.617 140.438 358.612 145.833 358.135 147.586C357.46 150.066 351.369 147.607 348.878 149.01C348.169 150.171 348.351 157.566 348.325 159.519C347.028 159.48 343.628 159.818 342.747 159.266C342.66 158.959 342.473 158.186 342.254 158.144C339.591 157.627 332.218 157.977 329.688 157.854C329.52 151.686 329.683 145.066 329.629 138.826C326.416 138.793 323.28 138.75 320.068 138.853C319.83 141.537 320.052 145.487 319.904 148.491C316.742 148.7 313.63 148.441 310.503 148.705C310.566 145.431 310.594 142.157 310.587 138.883C307.711 138.719 304.034 138.825 301.094 138.84C301.115 135.761 301.104 132.682 301.061 129.603C309.94 129.794 320.746 129.771 329.621 129.553C329.693 126.219 329.699 122.885 329.64 119.552C326.9 119.372 323.163 119.517 320.213 119.422C320.139 117.244 320.601 111.767 319.708 110.402C318.395 109.459 312.769 110.016 310.57 110.051L310.601 109.767C312.128 94.5848 308.485 102.29 301.694 99.5816C300.404 99.0669 301.105 92.9699 301.117 91.8678C301.112 91.4804 301.137 91.1985 301.419 91.0367C303.776 89.6852 319.359 91.992 320.064 89.7097C320.803 87.3174 319.245 73.41 320.807 71.6218C322.587 71.0802 327.692 71.2106 329.633 71.4001C329.792 80.6043 329.239 91.7115 329.689 100.566C331.306 100.576 337.215 100.225 338.195 100.958C339.532 103.537 338.708 115.682 338.892 119.481C342.873 119.543 346.855 119.554 350.837 119.516C352.749 119.51 356.166 119.61 357.894 119.329C359.896 116.925 356.513 110.97 359.968 110.645C361.806 110.471 365.899 111.159 367.68 110.311C368.409 108.362 368.422 92.9872 367.705 91.1713C364.418 89.6311 349.536 92.4209 348.375 89.7984C347.654 88.1674 349.391 83.9984 347.608 83.0279C345.785 82.0357 340.594 83.998 339.485 81.9028C338.621 80.2722 339.1 65.2795 339.109 62.2917ZM348.164 138.935C348.55 137.22 348.885 130.983 348.152 129.655C346.653 129.167 341.061 129.342 339.238 129.351C338.868 130.74 338.645 137.637 339.117 138.703C340.509 139.201 346.467 139.05 348.164 138.935Z" fill="#9E2184"/> +<path d="M282.421 291.404C284.503 291.409 289.778 291.017 291.108 291.982C292.065 293.446 291.55 298.456 291.604 300.653L302.873 300.639C304.917 300.639 308.656 300.544 310.544 300.908C310.546 303.729 310.626 306.951 310.41 309.733C304.793 310.067 297.42 309.881 291.663 309.869L291.608 329.473L300.984 329.408C301.015 332.6 301.045 335.329 300.827 338.507C297.792 338.385 294.611 338.47 291.636 338.293C291.522 344.474 291.339 351.881 291.532 357.996L302.684 357.975C305.117 357.979 308.119 358.065 310.506 357.899C310.725 355.089 310.591 351.245 310.559 348.339C319.704 348.3 329.907 348.06 338.973 348.35C339.037 351.356 338.915 354.55 338.847 357.572C332.607 357.661 326.385 357.565 320.151 357.615C319.887 360.227 319.981 364.223 319.978 366.963C315.77 366.634 305.62 366.889 301.085 366.995C301.039 370.381 301.035 373.767 301.072 377.152L310.524 377.173C310.549 380.3 310.534 383.43 310.48 386.558C308.369 386.253 303.395 386.389 301.087 386.419C300.836 389.005 301.017 393.285 301.063 396.018C304.214 396.078 307.365 396.081 310.516 396.028C310.621 392.889 310.586 389.759 310.573 386.62C313.666 386.615 316.915 386.664 319.994 386.599C319.991 389.332 319.878 393.343 320.166 395.998C323.333 396.104 326.485 396.06 329.655 396.037C329.652 398.869 329.736 402.499 329.546 405.256C331.813 405.511 336.499 405.454 338.906 405.396C338.917 408.187 339.015 411.506 338.917 414.253C333.403 414.324 325.609 414.566 320.234 414.251C320.196 411.248 320.194 408.245 320.228 405.239C315.606 405.219 312.656 405.338 308.093 406.009C304.977 406.465 301.301 406.223 298.075 407.035C296.615 407.242 294.214 407.083 292.681 407.042C292.953 399.565 291.825 392.379 291.399 384.983C291.074 379.325 291.631 372.709 291.308 366.917C286.105 366.82 277.841 366.719 272.74 366.993C272.772 364.043 272.845 360.614 272.682 357.673C270.169 357.602 266.253 357.595 263.755 357.756C263.751 354.661 263.794 351.411 263.706 348.33C269.273 348.33 276.743 348.565 282.149 348.304C282.172 344.027 282.47 342.619 283.058 338.466C283.269 336.979 283.146 331.443 283.142 329.62L272.726 329.669C272.707 332.704 272.754 335.615 272.462 338.636C269.964 338.636 265.898 338.509 263.527 338.671C263.49 341.865 263.484 345.059 263.509 348.254C260.566 347.956 256.861 348.238 253.727 348.076C254.234 341.519 253.728 335.573 254.145 329.77C260.239 329.491 266.801 330.003 272.685 329.724C272.646 326.26 272.456 321.289 272.702 317.945C274.464 317.892 281.143 317.873 282.247 317.26C282.604 315.573 282.558 308.279 282.515 306.142C282.425 301.662 282.746 295.764 282.421 291.404Z" fill="#9E2184"/> +<path d="M387.286 215.107C391.92 214.57 400.715 215.048 405.911 214.862C405.558 220.333 405.76 228.694 405.728 234.315C408.697 234.359 411.88 234.281 414.866 234.264C415.037 231.56 414.947 227.906 414.952 225.132C418.453 224.863 441.901 224.592 443.703 225.482C444.323 225.789 444.432 226.323 444.583 226.953C445.413 230.433 444.85 236.62 444.87 240.306C444.888 243.529 445.192 246.933 444.891 250.129C444.815 250.938 444.719 251.588 444.272 252.273C442.757 253.065 436.927 252.653 434.589 252.819C434.337 256.018 434.651 259.33 434.322 262.771C431.214 262.84 428.009 262.817 424.893 262.833C425.322 258.219 425.066 248.511 425.071 243.508C428.241 243.522 431.405 243.563 434.573 243.44C434.742 241.905 435.057 234.885 434.281 234.098C432.619 233.725 426.886 233.584 425.282 234.435C425.054 234.702 424.679 235.139 424.674 235.494C424.636 238.068 424.832 240.819 424.876 243.392C420.455 243.196 410.138 243.141 405.964 243.461L405.943 234.451C403.923 234.41 397.635 234.729 396.028 236.168C395.093 237.005 395.83 241.671 395.91 243.506C398.194 243.674 403.599 243.692 405.853 243.457C405.698 246.46 405.842 249.581 405.678 252.727C399.604 252.883 393.046 252.568 387.068 252.84C387.016 247.013 387.244 240.607 387.239 234.649L386.971 234.075C385.811 233.481 379.113 233.843 377.502 233.957C377.288 238.339 377.557 245.195 377.585 249.763C380.237 249.576 382.991 249.648 385.651 249.708C385.571 252.953 386.196 253.886 386.373 256.907C386.443 258.106 385.524 260.821 385.542 262.34C385.573 264.889 386.316 267.467 386.321 269.938C386.338 277.115 386.062 284.186 386.378 291.369C382.752 290.961 372.183 291.259 367.981 291.226C368.16 288.908 367.975 284.241 367.95 281.75C370.966 281.842 374.274 281.768 377.313 281.757C377.462 278.802 377.455 275.004 377.332 272.063C374.483 271.945 370.979 272.049 368.08 272.061C368.146 269.067 368.078 265.831 368.069 262.817C365.297 262.662 361.268 262.775 358.422 262.764C358.385 259.71 358.395 256.654 358.453 253.598C360.337 253.626 366.322 253.835 367.797 253.526C368.404 251.952 368.303 236.099 367.978 233.924C366.794 233.228 360.834 233.586 358.788 233.419L358.485 233.392C358.061 228.896 358.309 219.628 358.356 214.876C361.408 215.131 364.844 215.068 367.942 215.077C367.926 218.398 367.935 221.719 367.969 225.04L387.2 225.029C387.412 222.442 387.282 217.822 387.286 215.107Z" fill="#9E2184"/> +<path d="M614.723 158.19C623.863 158.432 633.64 158.128 642.897 158.231C643.144 160.893 642.946 164.71 642.863 167.439C640.906 167.548 635.366 167.275 634.163 167.972C633.236 169.112 633.575 175.167 633.534 177.265C639.768 177.369 646.159 176.83 652.427 177.336L652.411 186.736L662.197 186.812C662.344 192.994 662.162 199.659 662.215 205.928L681.314 205.7L681.33 214.735C672.45 214.332 661.976 214.626 652.962 214.638C652.997 211.834 653.033 199.063 652.437 196.716C651.593 195.929 644.84 196.216 643.167 196.219C643.128 192.977 643.22 189.773 643.13 186.521C640.185 186.355 636.742 186.496 633.656 186.386C633.58 183.424 633.649 180.206 633.658 177.224L614.672 177.303C614.709 180.32 614.601 183.366 614.527 186.384C612.478 186.397 607.428 186.283 605.691 186.789C604.64 187.88 605.483 191.607 605.276 193.019C604.76 196.559 605.366 202.168 604.736 205.517L603.51 205.508C597.668 205.583 591.826 205.547 585.986 205.399C585.773 208.416 585.854 211.801 585.684 214.951C582.711 214.909 579.454 214.865 576.513 215.176C576.46 217.494 576.214 222.953 576.483 224.987C574.063 224.756 568.894 224.932 566.276 224.95C566.17 221.927 566.292 218.345 566.329 215.28C564.34 215.339 559.491 215.037 558.145 215.929C557.195 217.245 557.58 222.581 557.548 224.775C554.485 224.861 551.452 224.805 548.368 224.943C548.373 222.072 547.914 208.485 548.58 206.812C549.537 204.419 573.13 207.484 576.227 205.635C576.921 203.308 576.85 189.506 576.428 186.88C575.571 186.098 568.924 186.351 567.172 186.339C567.018 183.711 567.076 180.332 567.053 177.649C569.744 177.801 584.204 177.044 585.366 178.044C585.833 178.448 585.967 179.173 586.006 179.758C586.158 182.008 585.695 184.476 585.571 186.738C585.386 190.113 585.444 193.53 585.527 196.908C588.191 197.064 592.66 196.928 595.37 196.8C595.882 191.818 595.545 182.829 595.644 177.403C601.604 177.11 608.638 177.31 614.727 177.249C614.766 170.896 614.766 164.543 614.723 158.19Z" fill="#9E2184"/> +<path d="M605.062 71.3865C606.444 71.5381 613.909 71.0654 614.26 72.1316C615.345 75.4524 613.702 87.9247 614.889 90.2778C616.306 90.8648 622.294 90.7675 623.872 90.4974C623.644 92.2856 623.884 97.2985 623.531 99.2584C623.372 99.4117 623.213 99.5647 623.054 99.718C621.24 100.358 616.804 100.022 614.608 100.132C614.543 102.893 614.679 106.963 614.446 109.53C609.443 109.902 558.548 109.405 558.145 109.926C557.255 111.075 557.576 117.76 557.749 119.416C563.697 119.493 570.526 119.543 576.453 119.349C576.622 122.683 576.288 126.478 576.553 129.559C574.995 129.286 569.046 129.368 567.115 129.365C566.951 130.852 567.023 132.707 566.79 134.112C565.619 141.174 567.087 148.262 567.009 155.363C566.926 162.682 566.744 170.034 566.753 177.382C561.759 177.268 557.179 177.371 552.261 178.185C551.298 178.344 549.198 178.232 548.184 178.209C547.643 166.73 544.824 168.153 557.364 167.811C557.509 162.766 557.246 157.241 557.417 152.126C557.592 146.861 558.924 134.545 557.942 129.78C556.559 129.132 550.302 129.41 548.382 129.434C548.394 127.369 548.889 122.008 548.03 120.754C546.665 119.801 541.413 120.226 539.288 120.229C539.493 118.205 539.454 112.794 539.297 110.745C541.017 110.676 546.138 110.903 547.366 110.611C549.449 110.114 547.569 103.53 548.611 100.879C550.579 99.4177 572.913 101.192 576.099 100.054C576.894 98.9339 576.573 92.4986 576.566 90.7021L585.953 90.658C585.806 93.5435 585.907 97.4896 585.986 100.411C588.041 100.644 593.285 100.415 595.529 100.369C595.711 97.4534 595.617 93.5795 595.624 90.5935C598.302 90.7583 602.266 90.6571 604.999 90.6124C605.393 86.183 605.078 76.286 605.062 71.3865Z" fill="#9E2184"/> +<path d="M538.717 319.39C541.155 319.576 545.834 319.36 548.373 319.286C547.965 324.336 548.23 333.658 548.164 339.116C550.773 339.132 555.306 339.298 557.765 339.118C557.823 335.979 557.839 332.842 557.811 329.703C561.416 329.676 565.105 329.609 568.703 329.703C568.77 332.732 568.606 337.074 568.823 339.865C573.492 340.031 578.168 339.941 582.828 339.597C584.935 339.436 587.088 339.106 589.171 338.98C591.155 338.86 593.338 339.014 595.348 338.913C595.318 341.837 595.242 345.168 595.348 348.083C592.262 348.06 589.03 348.085 585.956 347.996C585.908 351.337 585.898 354.679 585.928 358.019C589.153 358.194 592.554 358.085 595.797 358.037C595.811 354.741 595.281 351.31 595.364 348.334C597.307 348.32 602.808 348.141 604.451 348.613C605.142 349.413 604.88 352.119 604.866 353.246C604.847 354.884 603.746 357.184 603.064 358.726L596.44 358.715C596.375 362.126 596.018 364.746 595.783 368.085C595.599 370.674 595.643 374.197 595.61 376.848C592.497 376.901 589.222 376.995 586.117 376.823C585.903 373.476 586.097 370.261 585.984 366.97C583.271 366.958 579.374 367.037 576.737 366.772C576.737 364.329 576.822 361.109 576.673 358.731C574.937 358.731 573.135 358.754 571.411 358.576C569.636 358.394 567.329 357.694 565.601 357.638C559.908 357.452 554.015 357.588 548.332 357.774L548.364 348.526C544.398 348.592 542.107 348.325 538.136 348.023C535.681 347.839 532.231 347.975 529.692 347.892C529.696 344.981 529.756 341.796 529.65 338.91C523.861 339.016 516.308 339.199 510.579 339.005C510.369 335.96 510.471 332.709 510.498 329.643L500.929 329.648C500.908 326.228 501.035 322.729 500.95 319.323C504.087 319.298 507.223 319.314 510.358 319.369C510.514 322.42 510.381 326.421 510.413 329.602C519.051 329.929 529.844 329.673 538.622 329.62C538.846 326.714 538.747 322.363 538.717 319.39Z" fill="#9E2184"/> +<path d="M538.771 129.637L548.368 129.57C548.44 133.817 548.603 154.323 547.446 157.633C546.474 158.285 540.396 158.003 538.564 158.013C538.322 161.181 538.647 164.388 538.269 167.616C535.266 167.718 532.258 167.639 529.265 167.378C529.115 170.244 529.228 174.167 529.225 177.113C531.152 177.135 536.817 176.818 538.294 177.464C539.092 179.515 538.88 193.503 537.889 196.039C537.061 196.713 521.906 196.49 519.631 196.506C519.709 194.379 519.875 178.524 519.419 177.632L518.698 177.57C516.017 177.685 513.337 177.759 510.654 177.792C510.606 175.548 511.21 169.364 510.332 168.094C509.027 167.14 502.899 167.606 500.878 167.633C500.919 164.453 500.919 161.273 500.88 158.094C497.912 158.052 494.379 158.538 491.502 157.994C490.345 157.776 490.546 150.656 491.189 149.631C492.98 149.029 507.495 148.723 509.682 149.118C510.431 150.303 510.133 156.384 510.131 158.298C516.232 158.385 522.689 158.245 528.845 158.267C528.9 156.097 528.49 149.23 529.331 148.093C530.8 147.172 535.941 147.644 538.255 147.467L538.58 147.441C539.062 144.406 538.714 133.492 538.771 129.637Z" fill="#9E2184"/> +<path d="M558.016 405.689L566.848 405.691C566.822 411.981 567.249 417.913 567.175 424.145C563.172 424.08 551.535 423.511 548.293 423.864C548 429.586 548.182 437.169 548.154 443.011C550.786 443.013 554.024 442.93 556.613 443.039C556.742 446.263 556.935 449.803 556.905 453.009C563.464 452.969 570.024 452.976 576.583 453.029C576.546 449.888 576.576 446.747 576.675 443.608C579.71 443.525 582.745 443.495 585.781 443.518C586.085 445.583 585.949 451.082 585.677 453.11C582.619 453.163 579.558 453.161 576.5 453.103L576.52 462.88C574.036 462.267 561.102 462.398 557.843 462.398C557.615 465.542 557.624 468.501 557.61 471.651C554.824 471.695 552.038 471.688 549.251 471.633C549.323 468.303 549.346 465.887 549.069 462.536C548.8 459.303 548.323 456.062 548.336 452.845C544.937 453.011 541.74 452.822 538.346 452.727C535.32 452.644 532.347 452.778 529.327 452.495C529.21 446.323 529.355 439.971 529.429 433.785C531.367 433.778 537.154 434.062 538.419 433.393C539 432.149 539.438 423.778 537.647 423.373C535.661 422.921 531.657 423.297 529.353 423.244C529.302 420.254 529.267 417.265 529.249 414.276C533.16 414.246 537.288 414.225 541.16 414.288C544.764 414.345 554.769 415.518 557.659 414.56C558.272 413.064 557.97 407.682 558.016 405.689Z" fill="#9E2184"/> +<path d="M681.377 348.374C684.539 348.268 687.517 348.307 690.683 348.353C690.849 351.395 690.778 354.893 690.778 357.977C692.981 357.959 708.155 357.521 709.084 358.369C709.729 359.846 709.612 365.152 709.135 366.537C708.328 367.159 700.425 366.917 698.81 366.908C696.148 366.947 693.486 366.929 690.824 366.848C690.78 370.04 690.759 373.232 690.757 376.426C687.623 376.484 684.486 376.486 681.349 376.428V366.859C679.206 366.788 674.182 366.693 672.243 367.048C670.457 367.373 672.296 373.656 671.103 376.004C669.872 376.954 646.756 376.456 643.112 376.518C642.861 379.561 643.036 383.061 642.822 386.329C639.775 386.394 636.724 386.399 633.674 386.339C633.55 379.987 633.642 373.402 633.658 367.035C636.016 367.256 640.632 367.134 643.091 367.127C643.391 361.704 643.133 353.99 643.114 348.369C645.836 348.346 660.238 348.014 661.865 348.735C662.531 350.395 662.193 355.67 662.147 357.698C658.959 357.599 655.788 357.645 652.603 357.671C652.28 359.849 652.315 364.88 652.43 367.166C655.687 367.205 658.941 367.198 662.197 367.15C662.301 364.186 662.227 360.883 662.218 357.892C664.405 358.032 679.266 358.102 680.916 357.68C681.649 356.541 681.365 350.328 681.377 348.374Z" fill="#9E2184"/> +<path d="M529.482 205.984C531.844 205.874 535.937 205.807 538.302 205.99C538.703 211.977 538.21 219.006 538.364 225.135C541.63 224.994 544.9 225.041 548.168 225.054C548.178 228.012 548.118 231.272 548.208 234.204C551.229 234.23 554.919 234.159 557.885 234.31C557.88 236.865 557.754 241.117 557.963 243.536L567.067 243.538C566.991 249.567 567.118 256.682 566.788 262.612C563.794 262.706 560.798 262.757 557.8 262.759C557.816 259.436 557.885 255.969 557.839 252.66L548.318 252.545C548.318 249.565 548.373 246.375 548.295 243.413C541.886 243.496 534.82 243.881 528.551 243.685C528.498 245.711 528.258 250.798 528.489 252.653C523.688 252.713 515.525 252.462 511.095 252.805C511.068 249.871 510.987 246.649 511.15 243.734C516.944 243.651 522.741 243.632 528.535 243.676C528.406 241.146 527.786 233.428 529.074 231.602C529.823 230.543 529.464 226.858 529.519 225.435C529.482 219.962 529.166 211.314 529.482 205.984Z" fill="#9E2184"/> +<path d="M425.078 24.105L434.57 24.0826L434.522 42.6728L434.494 62.0891C431.468 62.0032 428.121 62.0728 425.07 62.0746L425.097 52.2472L415.692 52.1612C415.688 50.9172 416.28 43.2709 415.062 42.987C410.486 41.9206 390.706 43.9005 387.731 42.2278C387.031 40.73 387.369 26.7233 387.396 24.1272C390.461 24.0274 393.871 24.0925 396.962 24.0863C396.947 25.7203 396.652 32.4675 397.39 33.476C398.729 33.8685 404.392 34.1427 405.589 33.0337C406.575 32.1209 405.989 29.3788 405.978 28.0332C405.968 26.7665 406.017 25.4029 406.081 24.0907L415.612 24.0916L415.649 33.4705C426.816 34.9397 425.148 33.751 425.078 24.105Z" fill="#9E2184"/> +<path d="M339.097 243.28C345.507 243.247 351.917 243.388 358.319 243.702C358.348 246.958 358.357 250.215 358.345 253.471C355.87 253.059 351.175 252.953 348.551 253.171C348.496 256.087 348.364 260.106 348.568 263.001C351.729 263.003 355.115 263.04 358.266 262.84L358.243 272.091C354.969 272.045 351.826 272.008 348.554 272.095C348.527 273.96 348.306 280.226 348.485 281.747C345.956 281.69 341.37 281.6 338.922 281.793L338.894 300.408C334.34 300.425 324.335 300.703 320.232 300.319C320.179 298.265 319.694 293.287 320.784 291.89C322.13 291.028 327.673 291.494 329.85 291.427C330.038 285.852 329.987 280.272 330.082 274.697C330.124 272.243 328.98 264.974 330.489 263.268C332.913 262.217 337.08 264.554 339 262.459C339.242 261.736 339.197 261.298 339.205 260.544L339.097 243.28Z" fill="#9E2184"/> +<path d="M586.106 119.481C589.291 119.352 592.437 119.443 595.624 119.501C595.633 128.67 595.327 139.682 595.642 148.699C597.809 148.729 603.128 149.192 604.578 148.155C605.513 146.731 605.039 141.151 605.124 138.894C608.86 138.812 620.533 138.612 623.764 139.099L623.723 148.409C621.828 148.996 615.145 148.177 614.808 149.378C614.184 151.59 614.486 155.534 614.516 157.975C611.872 157.972 607.694 157.858 605.228 158.135C605.122 160.322 605.426 165.971 604.49 167.28C603.02 168.252 598.03 167.695 595.645 167.868C595.612 164.665 595.67 161.152 595.564 157.986C592.545 157.93 589.023 158.049 586.11 157.908C586.143 151.724 586.272 145 586.103 138.837C583.531 138.815 579.072 138.933 576.689 138.694C576.673 135.787 576.726 132.422 576.553 129.559C579.272 129.629 583.255 129.722 585.944 129.553C585.967 126.889 585.854 121.955 586.106 119.481Z" fill="#9E2184"/> +<path d="M253.881 252.713C257.04 252.664 260.257 252.685 263.421 252.674L263.556 262.95C266.003 263.1 269.914 263.029 272.347 262.918C272.11 268.38 272.74 275.9 272.814 281.775C274.871 281.83 280.048 281.487 281.574 282.015C282.995 283.361 282.08 288.871 282.342 291.187C279.481 291.197 265.462 290.932 263.704 291.653C263.465 292.752 264.089 298.189 264.155 299.908C266.687 300.282 270.508 299.726 272.718 300.445C272.76 303.589 272.752 306.732 272.693 309.876C266.618 309.876 260.117 310.035 254.089 309.835L254.107 281.934C257.082 281.641 260.523 281.927 263.663 281.796C263.838 278.924 263.719 275.006 263.707 272.049C260.501 272.042 257.315 272.056 254.111 271.913C254.04 268.673 254.087 265.363 254.027 262.114C253.981 259.675 253.032 254.812 253.881 252.713Z" fill="#9E2184"/> +<path d="M348.536 186.751C351.628 186.839 355.06 186.737 358.227 186.78C358.399 189.452 358.272 193.658 358.286 196.458C361.49 196.535 364.655 196.446 367.915 196.555C367.962 199.517 367.959 202.48 367.906 205.442C364.699 205.538 361.49 205.513 358.284 205.367C358.127 208.142 358.24 211.891 358.249 214.741C355.263 214.549 351.345 214.583 348.542 214.213C348.531 216.859 348.497 231.908 347.986 233.563C346.867 234.356 340.669 234.094 338.885 234.09C338.875 236.566 338.749 240.858 339.025 243.178C337.264 243.251 330.65 243.012 329.698 243.54C329.677 246.866 329.581 250.187 329.41 253.506C326.816 253.755 322.864 253.639 320.25 253.561C320.113 247.223 320.217 240.594 320.237 234.232C325.926 234.344 332.855 234.336 338.496 234.199C338.775 230.615 339.079 227.238 339.616 223.646C339.905 221.713 338.424 214.52 339.422 213.109C340.664 212.41 346.921 212.783 348.476 213.08C348.834 204.967 348.474 195.105 348.536 186.751Z" fill="#9E2184"/> +<path d="M652.149 119.46C653.269 119.515 661.552 119.827 661.854 119.084C663.071 116.108 661.299 102.468 662.799 100.575C664.145 100.116 669.695 100.042 670.946 100.664C672.755 101.565 670.568 116.507 671.594 119.205C671.727 119.555 672.02 119.552 672.34 119.68C674.417 119.664 679.314 119.115 680.762 120.162C681.651 121.466 681.163 127.315 681.154 129.541C674.15 129.287 666.217 129.536 659.125 129.427C655.489 129.371 646.339 129.225 643.057 129.602C643.05 125.845 643.022 122.019 643.082 118.268C643.133 115.271 643.37 112.761 643.264 109.738C640.363 109.475 636.809 109.722 633.665 109.54C633.624 107.747 633.306 101.612 634.007 100.39C639.561 100.168 646.931 100.249 652.527 100.401C652.854 103.731 652.31 106.898 652.163 110.215C652.027 113.288 652.071 116.386 652.149 119.46Z" fill="#9E2184"/> +<path d="M348.543 414.507C351.853 414.472 355.135 414.55 358.448 414.421C358.305 420.195 358.046 428.132 358.363 433.818C361.55 433.877 364.737 433.903 367.925 433.896C368.053 436.768 367.947 440.354 367.936 443.278C361.741 443.375 354.781 443.414 348.611 443.246C348.47 440.423 348.569 436.705 348.56 433.813C345.413 433.774 342.16 433.822 339.005 433.827C338.632 438.381 338.897 447.235 338.867 452.167C338.682 452.578 338.643 452.919 338.198 452.919C336.188 452.912 332.263 453.244 330.516 452.601C330.087 451.465 330.318 446.304 330.324 444.825C330.337 441.1 329.779 437.712 329.589 433.967C328.15 433.85 321.296 434.58 321.211 432.647C321.126 430.729 320.687 426.883 321.502 425.2C323.582 423.619 338.386 423.732 341.826 423.525C343.356 423.435 346.624 423.663 348.084 423.264C348.836 421.911 348.555 416.332 348.543 414.507Z" fill="#9E2184"/> +<path d="M681.38 214.923C684.457 214.954 687.568 214.814 690.619 215.13C690.896 220.009 690.714 224.93 690.64 229.814C690.622 231.156 690.58 232.392 690.94 233.699C692.608 235.138 705.814 233.454 708.854 234.548C709.963 235.816 709.317 250.21 709.227 252.823C706.176 252.989 703.12 252.941 700.078 252.678C691.219 252.761 680.37 253.019 671.603 252.681C671.394 249.59 671.626 246.695 671.477 243.678C674.701 243.669 678.128 243.713 681.331 243.568C681.488 234.371 681.587 224.096 681.38 214.923Z" fill="#9E2184"/> +<path d="M548.387 43.0875C550.392 42.9231 556.089 42.9105 558.037 43.1354C558.223 49.5104 557.917 56.0299 558.094 62.3261C559.648 62.3307 565.836 61.8296 566.566 62.6761C567.981 64.3125 567.103 70.2277 566.253 72.1915C564.34 72.2102 560.016 71.9078 558.777 72.9272C558.193 73.9753 558.484 79.9643 558.41 82.0424C558.408 91.7749 558.73 91.4887 548.359 90.4857C548.371 87.7624 548.511 83.4967 548.322 80.9009C545.1 80.9726 541.89 81.0735 538.668 80.9991C538.668 78.3955 538.532 74.1546 538.7 71.6833C541.104 71.5656 546.737 72.1417 548.014 70.9852C548.843 69.4213 548.345 64.2387 548.274 62.1606C545.17 62.0908 541.752 62.1956 538.728 62.0571C538.62 58.7579 538.663 55.4881 538.689 52.188C540.892 52.5012 545.921 52.3871 548.32 52.3657C548.435 49.3099 548.392 46.1538 548.387 43.0875Z" fill="#9E2184"/> +<path d="M662.264 52.1181C662.204 50.4074 661.724 44.3938 662.734 43.2958C664.663 42.7802 679.24 42.8298 681.001 43.3255C681.432 46.0554 680.959 49.5994 681.236 52.3537C684.22 52.3717 698.371 52.0336 700.028 52.7395C700.715 53.9278 700.8 61.693 699.982 61.8515C697.35 62.3616 693.607 62.0283 690.837 62.0905C690.738 65.5005 691.13 78.4964 690.408 80.6336C689.141 81.3462 683.181 81.0104 681.365 81.0159C681.363 78.083 681.466 74.4061 681.333 71.5349C679.41 71.5031 673.1 71.7661 671.876 71.0302C670.579 68.6895 672.231 56.427 671.402 53.1875C670.975 51.5215 664.029 52.238 662.264 52.1181Z" fill="#9E2184"/> +<path d="M557.8 262.759C557.717 264.188 557.71 265.737 557.712 267.175C557.731 275.225 557.489 283.388 557.724 291.429C560.775 291.521 574.124 291.07 576.104 291.865C576.89 293.499 576.507 307.133 576.468 309.89C573.568 309.802 570.321 310.024 567.251 309.966C567.263 306.82 567.256 303.672 567.226 300.526C562.84 300.111 553.451 300.422 548.597 300.374C548.634 294.091 548.288 288.058 548.33 281.724C545.412 281.597 541.759 281.729 538.719 281.687C538.546 278.79 538.664 275.154 538.708 272.245C541.715 272.16 545.004 272.236 548.035 272.252C548.235 269.242 548.159 265.889 548.15 262.842C551.077 262.895 554.93 262.953 557.8 262.759Z" fill="#9E2184"/> +<path d="M348.554 24.12C358.49 23.9694 368.735 24.0851 378.696 24.097C378.763 27.3361 378.815 31.0246 378.554 34.2314C369.274 34.0368 357.382 34.5879 348.406 33.9669C348.26 39.9531 348.481 45.9596 348.264 52.0193C345.797 52.3074 342.512 52.2117 339.97 52.2101C339.743 52.2198 339.487 52.3129 339.255 52.377C338.632 53.6243 338.883 60.4409 339.03 62.1014C333.14 62.1221 326.024 62.318 320.238 62.0389C320.13 60.3807 319.834 54.0384 320.574 52.81C322.656 52.014 335.637 52.4231 339.085 52.2899C339.255 46.1527 338.982 39.8494 339.229 33.7106C342.229 33.6544 345.369 33.7374 348.381 33.7788C348.392 30.8204 348.267 26.9697 348.554 24.12Z" fill="#9E2184"/> +<path d="M463.254 252.738C468.071 252.717 473.81 252.441 478.54 252.736C489.33 253.411 500.012 253.208 510.826 253.19C510.914 257.062 510.616 259.804 510.181 263.662C509.93 265.891 510.393 269.512 509.593 271.602C507.966 272.333 503.336 272.061 501.349 272.04C500.844 271.69 501.086 264.63 501.093 263.508C496.532 263.185 487.095 263.515 482.236 263.533C482.082 266.29 482.066 269.281 482.004 272.058L472.427 272.072C472.27 269.173 472.322 265.661 472.293 262.713C469.273 262.505 466.394 262.955 463.089 262.563C463.003 260.837 462.767 254.063 463.254 252.738Z" fill="#9E2184"/> +<path d="M624.094 24.0927L633.658 24.1033C633.727 27.5903 633.923 50.2938 633.264 51.8427C631.722 52.4745 625.924 52.1426 624.002 52.1016C623.72 55.3818 624.018 58.6365 623.686 62.0643C621.162 62.2102 616.553 62.2544 614.066 62.0096C613.875 55.7729 614.124 49.1158 613.995 42.7899C611.104 42.6742 608.062 42.7574 605.161 42.7862C605.246 41.6968 604.734 34.2336 605.599 33.8794C608.869 32.5371 620.964 34.6863 623.672 33.2273C624.416 31.8523 624.114 26.1142 624.094 24.0927Z" fill="#9E2184"/> +<path d="M529.276 100.36C531.466 100.661 536.898 99.8254 538.182 101.05C538.841 103.136 538.935 115.141 538.832 118.06C538.716 121.32 537.746 125.598 538.645 129.406L519.772 129.433L519.765 119.943C518.297 119.374 503.876 119.826 500.97 119.671C500.901 116.412 500.975 113.492 501.005 110.257C510.468 110.264 520.276 110.412 529.712 110.285C529.733 106.5 529.668 104.161 529.276 100.36Z" fill="#9E2184"/> +<path d="M387.609 158.043C390.459 158.017 393.393 158.113 396.249 158.172C396.259 161.204 396.2 164.632 396.407 167.622C399.383 167.758 403.018 167.648 406.07 167.704C408.57 167.75 413.049 167.895 415.379 167.631C415.404 170.533 415.371 173.474 415.364 176.379C411.078 176.533 406.844 176.688 402.556 176.531C399.03 176.402 390.905 175.415 387.601 176.02C387.114 176.678 387.162 176.711 387.056 177.498C386.881 179.911 386.735 184.033 386.957 186.454C381.09 186.072 374.364 186.729 368.06 186.296C367.905 184.201 367.347 179.238 368.524 177.694C369.907 176.794 375.039 177.134 377.234 177.092C377.597 174.74 377.537 170.876 377.558 168.372C380.028 168.252 383.151 168.377 385.52 168.312C389.241 168.209 385.558 160.503 387.609 158.043Z" fill="#9E2184"/> +<path d="M604.977 386.597C605.426 380.95 604.972 374.82 605.057 369.136C605.069 368.51 605.315 368.079 605.67 367.602C606.166 367.281 606.629 367.046 607.235 367.035C612.79 366.942 618.397 367.191 623.949 367.005C623.94 372.976 623.9 380.383 623.679 386.325C621.605 386.433 616.403 386.046 615.087 386.839C614.216 387.91 614.548 393.725 614.49 395.767C609.114 395.991 601.033 395.85 595.65 395.746C595.541 392.727 595.597 389.745 595.631 386.724C598.268 386.505 602.276 386.599 604.977 386.597Z" fill="#9E2184"/> +<path d="M265.08 33.3913L281.106 33.3325C283.132 33.3234 288.288 33.1667 290.085 33.5606C291.264 34.7065 291.383 50.439 290.709 51.6784C290.062 52.129 289.444 52.0292 288.629 52.0428C280.554 52.146 270.765 52.4279 262.799 52.0776C262.921 46.3668 262.441 39.5145 262.396 33.5114L265.08 33.3913Z" fill="#9E2184"/> +<path d="M272.553 62.3238C281.901 62.1166 291.339 62.3892 300.696 62.2818C303.948 62.2447 307.27 62.2546 310.516 62.3657C310.545 64.4985 310.966 69.4312 309.965 70.8951C308.644 71.799 302.485 71.351 300.287 71.3561C298.176 71.3927 293.547 71.0447 291.945 71.6465C290.657 72.9608 291.214 78.4022 291.086 80.9106C286.83 81.2402 276.68 81.1346 272.307 80.9698C272.173 78.3496 271.862 63.9818 272.553 62.3238Z" fill="#9E2184"/> +<path d="M652.503 80.768C653.054 76.2837 653.268 72.684 652.902 68.1961C652.831 67.3222 652.748 63.0945 653.236 62.5692C654.695 62.15 660.572 62.0873 661.846 62.7287C662.513 63.9712 662.162 78.5236 662.141 81.1123C664.879 81.3238 669.062 81.1842 671.897 81.2024C674.414 81.2187 679.051 81.3222 681.365 81.0159C681.245 83.3706 681.685 88.1215 680.929 90.0139C679.749 90.5202 646.281 90.6585 643.522 90.2766C642.902 89.1088 642.851 83.2181 643.296 82.0305C643.987 80.1856 650.77 82.1485 652.503 80.768Z" fill="#9E2184"/> +<path d="M329.879 167.733C332.523 167.587 336.163 167.688 338.882 167.685L338.921 177.059C341.787 177.124 345.47 176.923 348.367 176.828C348.336 180.03 348.346 183.232 348.399 186.434C345.532 186.336 341.801 186.362 338.927 186.456C338.67 191.57 339.316 200.74 338.603 205.346C337.111 205.75 331.435 205.642 329.655 205.638C329.553 199.27 329.781 192.855 329.589 186.485C326.82 186.247 323.247 186.342 320.403 186.346C320.543 183.419 320.62 180.585 320.483 177.656C321.784 177.622 324.147 177.461 325.388 177.696C332.418 179.026 328.537 171.888 329.879 167.733Z" fill="#9E2184"/> +<path d="M701.282 281.846C703.255 281.786 707.505 281.443 709.153 282.153C709.865 283.478 709.381 315.495 709.19 319.54C705.283 319.606 703.386 319.47 699.616 319.086C696.684 319.097 693.755 319.083 690.824 319.049C690.803 313.059 690.708 306.852 690.828 300.883C693.691 300.646 697.242 300.791 700.227 300.708C700.519 295.769 699.886 287.398 700.519 282.353C700.554 282.07 700.946 281.994 701.282 281.846Z" fill="#9E2184"/> +<path d="M311.156 443.606C312.514 443.449 318.769 443.403 319.865 443.619C320.776 445.057 319.965 459.847 319.426 462.048C318.666 462.675 312.241 462.421 310.582 462.437C310.379 468.277 310.85 475.058 310.411 480.755C308.704 481.008 303.867 480.875 301.987 480.859C302.039 474.776 299.947 447.219 301.611 444.567C303.258 443.601 308.258 444.06 310.826 443.659L311.156 443.606Z" fill="#9E2184"/> +<path d="M259.705 405.594C261.006 405.553 262.307 405.539 263.609 405.553C263.375 410.715 263.905 419.164 263.226 423.907C261.398 423.967 255.481 423.661 254.302 424.253C253.62 426.295 253.895 440.206 253.818 443.58L249.222 443.506C247.61 442.877 246.878 442.677 245.175 442.308L245.335 424.539C245.339 421.61 244.998 408.132 245.839 406.067C247.399 405.428 257.217 405.67 259.705 405.594Z" fill="#9E2184"/> +<path d="M652.732 148.736C655.843 148.693 658.957 148.691 662.071 148.732C662.28 151.654 661.995 155.079 662.124 158.196C664.246 158.223 669.625 157.846 670.962 158.776C671.815 160.099 671.43 165.495 671.448 167.656C673.838 167.735 676.221 167.575 678.605 167.615C682.055 167.672 681.483 170.408 681.329 172.849C681.236 174.318 681.213 175.719 680.967 177.181C676.821 177.605 666.735 177.299 662.267 177.283L662.216 167.664C659.144 167.564 655.666 167.633 652.566 167.627C652.419 165.044 652.177 150.661 652.732 148.736Z" fill="#9E2184"/> +<path d="M693.861 177.198C696.147 177.199 708.093 176.826 709.144 177.566C709.833 179.386 709.452 184.31 709.174 186.318C695.488 187.105 702.264 184.916 699.828 195.427C699.713 195.925 692.465 195.674 691.575 195.966C691.126 196.114 688.553 196.448 687.809 196.461C682.409 196.5 677.012 196.474 671.612 196.384C671.377 193.774 671.464 189.453 671.522 186.779C677.689 186.575 684.606 186.702 690.764 186.8C690.821 183.652 690.847 180.504 690.84 177.357C691.766 177.268 692.914 177.245 693.861 177.198Z" fill="#9E2184"/> +<path d="M254.247 376.947C257.021 376.848 260.948 377.27 263.456 376.896L263.447 386.583C267.215 386.809 278.938 386.17 281.603 387C281.786 387.217 282.006 387.505 282.039 387.8C283.239 398.63 281.151 396.198 272.922 396.387C272.972 399.162 272.794 402.591 272.722 405.412C270.781 405.232 266.038 405.415 263.725 405.368C263.737 402.193 263.729 399.017 263.702 395.841C260.614 395.617 257.391 395.859 254.107 395.62C254.051 393.347 253.896 378.457 254.247 376.947Z" fill="#9E2184"/> +<path d="M576.884 24.1766C582.826 23.9435 589.618 24.0919 595.626 24.0991C595.64 27.08 595.73 30.3117 595.497 33.2654C592.531 33.3937 589.067 33.2741 586.006 33.3281C585.852 36.205 585.935 39.8453 585.93 42.7819C583.872 42.7459 578.329 42.5579 576.585 43.0179C576.354 45.6321 576.541 49.2666 576.368 52.185C573.365 52.2505 570.362 52.2468 567.359 52.1737L567.322 51.7042C567.182 49.6849 566.935 34.8042 567.733 33.8947C569.514 33.219 574.335 33.5774 576.43 33.6414C576.686 31.2205 576.241 25.91 576.884 24.1766Z" fill="#9E2184"/> +<path d="M272.8 443.52C275.874 443.615 279.101 443.548 282.189 443.527C282.16 446.668 282.167 449.81 282.208 452.949L291.588 453.022C291.528 458.192 291.507 463.359 291.524 468.528C291.56 471.329 291.883 478.257 291.431 480.743C289.614 481.029 284.764 481.121 283.065 480.446C282.342 479.252 282.794 473.696 282.618 471.992C282.29 468.835 281.869 465.638 281.931 462.462C279.85 462.322 274.581 462.815 273.212 462.052C272.389 460.052 272.754 446.443 272.8 443.52Z" fill="#9E2184"/> +<path d="M614.626 462.504C620.04 462.223 628.507 462.946 633.462 462.432C633.504 465.44 633.451 468.547 633.437 471.564C631.298 471.522 625.608 470.946 624.368 471.866C623.451 473.262 623.789 477.991 623.794 479.987L623.642 480.52C622.526 481.133 607.633 480.845 605.108 480.812C605.091 474.97 604.978 468.687 605.163 462.882C608.366 462.638 611.337 463.089 614.626 462.504Z" fill="#9E2184"/> +<path d="M520.162 291.464C523.2 291.397 526.237 291.448 529.27 291.616C529.409 297.663 529.289 304.027 529.254 310.093L538.482 310.102C538.655 313.144 538.374 316.223 538.604 319.194C536.074 319.113 531.195 319.47 529.137 318.666C528.54 318.392 521.683 318.323 520.427 318.231C520.397 315.465 520.416 312.697 520.478 309.931C517.579 309.756 513.686 309.908 510.593 309.825L510.565 300.63C513.578 300.724 516.661 300.669 519.68 300.653C519.796 298.625 519.409 292.775 520.162 291.464Z" fill="#9E2184"/> +<path d="M587.104 462.972C588.643 462.834 594.101 462.744 595.447 463.228C596.083 464.76 595.643 478.259 595.615 480.826C589.515 480.941 583.112 480.842 576.989 480.84C567.537 478.962 568.129 482.11 568.588 471.186C570.353 471.17 574.88 471.566 576.087 470.983C577.138 469.872 576.733 465.085 576.721 463.198C579.784 463.17 584.168 463.288 587.104 462.972Z" fill="#9E2184"/> +<path d="M291.41 110.261C295.498 110.136 299.64 110.276 303.73 110.242C305.85 110.224 308.503 110.35 310.57 110.051C310.541 112.539 310.601 117.093 310.353 119.451C308.193 119.528 302.722 119.277 301.427 120.209C300.6 121.484 300.953 127.776 301.061 129.603C299.259 129.238 284.505 129.388 282.258 129.556C282.27 127.397 281.974 121.896 282.575 120.194C283.071 118.79 288.655 120.301 290.92 119.357C291.757 118.211 291.402 112.278 291.41 110.261Z" fill="#9E2184"/> +<path d="M263.695 90.6641C266.217 90.6569 280.929 90.2324 282.054 91.2094C282.576 93.2999 282.232 97.627 282.134 99.9351C279.644 100.049 275.469 99.6805 273.339 100.281C271.661 102.394 274.104 108.924 271.866 109.641C265.916 109.839 260.041 109.683 254.094 109.515C254.101 99.2426 251.706 97.9075 263.359 99.9446C263.49 97.4447 262.991 92.6235 263.695 90.6641Z" fill="#9E2184"/> +<path d="M576.511 415.027C578.205 414.444 592.794 414.615 595.576 414.744C595.772 417.71 595.686 421.174 595.673 424.188C597.74 424.198 603.216 423.845 604.539 424.776C605.447 426.104 604.988 431.667 605.08 433.838C599.15 433.834 591.964 434.043 586.161 433.76C586.05 430.476 586.016 427.187 586.057 423.9L576.597 423.967C576.5 420.987 576.47 418.007 576.511 415.027Z" fill="#9E2184"/> +<path d="M462.762 23.0588L462.978 23.0221C463.629 23.8924 463.122 48.6563 463.277 52.1884C460.169 52.2036 457.06 52.1963 453.952 52.1661C454.089 49.6498 454.005 46.3412 454.004 43.7669L453.758 43.1444C452.455 42.4889 446.318 42.8254 444.208 42.712C444.159 39.7164 444.156 36.7201 444.198 33.7241C447.019 33.4445 449.591 33.748 452.424 33.596C454.376 33.7694 454.065 31.0288 453.879 29.6922C452.827 22.1226 456.329 23.5895 462.762 23.0588Z" fill="#9E2184"/> +<path d="M367.962 138.809C373.041 138.919 382.492 138.497 386.982 139C387.024 141.115 387.367 146.485 386.635 148.208C385.06 149.303 379.424 147.823 377.866 148.98C377.107 149.543 377.384 156.368 377.308 157.471C376.408 157.461 373.07 157.39 372.407 157.595C369.961 158.353 370.857 158.661 368.078 158.679C367.965 160.794 368.255 165.608 367.423 167.038C366.008 168.23 360.428 167.637 358.231 167.589C358.167 164.622 358.848 164.098 358.768 161.582C358.734 160.529 358.447 160.542 358.845 159.414C359.859 159.166 366.461 158.632 367.916 158.529C368.35 152.852 367.944 144.748 367.962 138.809Z" fill="#9E2184"/> +<path d="M605.08 433.838C607.903 433.847 611.805 433.746 614.541 433.912C614.536 437.065 614.483 440.344 614.536 443.488L623.808 443.534C623.829 447.217 625.287 454.576 620.406 453.785C618.502 453.479 616.17 453.735 614.207 453.43L612.199 452.045C606.239 451.884 601.473 452.824 595.615 452.73C595.608 449.814 595.52 446.445 595.631 443.566C606.617 443.481 605.414 445.203 605.08 433.838Z" fill="#9E2184"/> +<path d="M681.559 148.79C684.264 148.762 698.132 149.076 699.996 150.056C700.704 151.444 700.261 156.554 700.469 158.6C705.357 158.706 709.913 156.772 709.406 163.113C709.286 164.612 710.038 165.712 709.418 167.488C707.263 167.626 692.409 167.83 691.158 167.276C690.104 165.473 691.381 161.146 690.632 158.836C687.244 155.989 680.261 162.152 681.268 153.131C681.427 151.712 681.042 150.262 681.559 148.79Z" fill="#9E2184"/> +<path d="M614.974 186.527C617.281 186.905 622.356 186.137 623.467 187.046C623.838 189.585 623.672 195.455 623.64 198.201C623.578 203.687 623.67 209.414 623.52 214.88C620.699 215.013 617.055 214.918 614.17 214.924C611.135 214.937 608.12 214.981 605.087 214.829C604.939 212.285 605.073 208.549 605.094 205.92L614.177 205.905C614.338 204.749 614.486 203.456 614.46 202.288C614.34 196.955 615.082 191.86 614.974 186.527Z" fill="#9E2184"/> +<path d="M300.157 23.1212C303.602 23.4958 307.294 23.9351 310.734 24.1496C310.603 27.6865 310.827 51.6397 310.246 52.476C307.625 52.8086 302.8 53.3949 300.358 53.5641C300.413 43.5846 300.202 33.1362 300.157 23.1212Z" fill="#9E2184"/> +<path d="M320.2 308.279C322.724 308.26 325.248 308.256 327.772 308.27L329.386 309.593C332.185 309.576 336.241 309.659 338.923 309.401C338.92 314.317 339.059 323.99 338.704 329.205C338.59 329.334 338.476 329.466 338.362 329.595C324.752 329.832 331.246 329.166 329.381 320.231C329.18 319.265 323 321.183 320.711 320.434C319.726 319.293 320.175 310.517 320.2 308.279Z" fill="#9E2184"/> +<path d="M380.114 51.6081C381.367 51.5577 385.678 51.2795 386.434 51.704C387.714 52.4242 387.019 60.4994 386.546 61.7105C385.589 62.5098 368.045 62.1394 365.667 62.1403L358.428 62.1108C358.386 58.7282 358.4 55.345 358.468 51.9626C365.183 52.047 373.179 51.6466 380.114 51.6081Z" fill="#9E2184"/> +<path d="M331.211 366.901C333.701 366.878 336.442 366.795 338.913 366.832C338.947 370.363 338.942 373.896 338.899 377.426L338.43 377.383C335.667 377.111 332.416 375.7 330.488 376.12C329.515 376.91 329.44 377.657 329.525 378.897C329.697 381.423 329.541 384.075 329.663 386.578C328.104 386.327 321.702 386.313 320.141 386.495L320.224 367.067C323.811 367.175 327.635 367.18 331.211 366.901Z" fill="#9E2184"/> +<path d="M491.457 129.599C500.136 129.778 511.031 129.772 519.685 129.582C519.468 132.756 519.719 136.153 519.491 139.477C515.776 139.555 511.646 139.243 507.869 139.132L491.194 138.806C491.102 136.624 490.888 131.48 491.457 129.599Z" fill="#9E2184"/> +<path d="M683.152 264.093L690.619 263.893C690.653 270.252 690.907 276.26 690.773 282.644C686.5 282.764 683.315 282.121 679.119 282.109C676.475 282.132 673.829 282.081 671.19 281.964C671.285 278.744 671.269 275.389 671.299 272.157C673.336 272.22 679.688 272.505 681.273 271.872C682.956 269.936 680.084 265.306 683.152 264.093Z" fill="#9E2184"/> +<path d="M595.138 42.9934C597.848 43.0015 602.54 43.1582 605.092 42.9524C605.08 45.957 605.126 49.1617 605.046 52.1493C601.916 52.2108 598.786 52.2348 595.656 52.2216C595.571 55.3851 595.435 58.9585 595.493 62.1002C592.9 61.7882 588.802 61.9666 586 61.8861C586.016 55.8292 586.163 48.9582 585.977 42.9729L595.138 42.9934Z" fill="#9E2184"/> +<path d="M348.485 281.747C351.782 281.803 355.079 281.8 358.376 281.734C358.138 284.559 358.246 288.486 358.312 291.363C360.503 291.671 365.507 291.459 367.912 291.411C367.905 293.766 367.996 298.203 367.762 300.385L355.453 300.42C353.601 300.427 350.207 300.367 348.457 300.581C348.743 295.827 348.581 286.619 348.485 281.747Z" fill="#9E2184"/> +<path d="M463.087 471.633C469.257 471.681 475.428 471.686 481.598 471.651C484.124 471.649 488.878 471.527 491.213 471.819C491.261 473.61 491.531 479.388 491.038 480.838C490.621 480.985 490.798 480.992 490.512 480.939C485.44 481.149 479.664 480.895 474.502 480.969C471.852 481.006 465.574 481.147 463.151 480.921C463.221 477.913 463.126 474.661 463.087 471.633Z" fill="#9E2184"/> +<path d="M581.568 62.1975C583.091 62.2261 584.354 62.2221 585.873 62.1537L585.921 80.9701L576.511 80.992L576.44 90.4347L571.955 90.4617C570.399 90.4691 568.846 90.4488 567.292 90.4009C566.211 78.8145 567.062 81.7968 576.313 81.0648C576.267 79.8733 576.255 78.7288 576.366 77.5391C576.838 72.4893 576.737 67.4464 576.735 62.3756C578.247 62.2627 580.033 62.2473 581.568 62.1975Z" fill="#9E2184"/> +<path d="M386.402 291.482C389.672 291.503 393.005 291.452 396.281 291.436L396.313 306.444C396.315 308.56 396.43 313.485 396.02 315.377C394.069 315.426 389.731 315.654 388.081 315.304C387.643 314.773 387.496 314.405 387.514 313.66C387.635 308.514 387.441 303.289 386.854 298.177C386.575 295.741 386.28 293.928 386.402 291.482Z" fill="#9E2184"/> +<path d="M528.564 252.784L548.161 252.704V262.759C541.701 262.628 535.02 262.93 528.576 262.611C528.597 259.337 528.592 256.062 528.564 252.784Z" fill="#9E2184"/> +<path d="M614.702 119.722C620.775 119.546 627.558 119.596 633.64 119.689C633.649 121.216 633.794 128.753 633.391 129.427C627.187 129.224 620.51 129.716 614.32 129.352C614.253 127.316 613.773 121.053 614.702 119.722Z" fill="#9E2184"/> +<path d="M501.14 215.121C503.924 215.14 517.824 214.507 519.099 215.705C519.661 217.592 519.578 223.113 519.075 224.948C514.413 225.485 506.467 224.908 501.689 224.793C500.368 224.762 500.654 216.452 501.14 215.121Z" fill="#9E2184"/> +<path d="M301.094 138.84C301.001 142.054 301.053 145.388 300.972 148.655C294.933 148.42 288.596 148.774 282.357 148.52C282.13 146.081 282.292 141.56 282.28 138.914C288.142 138.786 295.451 139.17 301.094 138.84Z" fill="#9E2184"/> +<path d="M491.674 167.937C494.591 167.836 497.763 167.885 500.699 167.879L500.685 178.197L510.549 178.026C510.574 180.076 510.837 184.555 510.074 186.437C509.959 186.721 509.521 186.752 509.132 186.867C505.043 186.884 504.734 188.05 499.913 187.384C500.259 185.339 500.362 180.539 500.468 178.247C498.226 178.253 495.004 178.636 492.99 177.898C492.598 176.869 492.294 174.81 492.169 173.66C491.98 171.916 490.876 169.466 491.674 167.937Z" fill="#9E2184"/> +<path d="M405.942 453.011C408.901 452.884 412.411 452.967 415.412 452.965C415.435 456.424 415.701 468.899 415.261 471.642L405.953 471.681C405.9 468.625 405.275 455.371 405.942 453.011Z" fill="#9E2184"/> +<path d="M633.723 129.574C636.166 129.733 640.321 129.595 642.893 129.591C643.02 135.85 643.004 142.11 642.847 148.367C640.95 149.089 635.832 148.784 633.693 148.685C633.442 143.739 633.594 134.573 633.723 129.574Z" fill="#9E2184"/> +<path d="M643.97 24.1378C649.008 23.9449 655.823 24.0488 660.939 24.177C661.209 24.254 661.856 24.3423 661.912 24.6792C662.177 26.2644 662.986 32.6635 661.356 33.3271C657.775 33.5213 646.33 33.5973 643.124 33.2459C643.055 30.7187 642.9 27.8315 643.098 25.3117C643.156 24.5609 643.481 24.4571 643.97 24.1378Z" fill="#9E2184"/> +<path d="M681.319 129.616C684.447 129.763 698.876 129.068 700.319 130.177C700.932 132.024 700.547 136.502 700.457 138.613C698.867 139.189 684.073 138.842 681.342 138.812L681.319 129.616Z" fill="#9E2184"/> +<path d="M491.44 329.415C493.932 329.782 498.299 329.655 500.929 329.648C500.705 334.974 500.806 342.725 500.866 348.122C497.852 348.141 494.386 348.233 491.417 348.053C491.203 342.326 491.424 335.221 491.44 329.415Z" fill="#9E2184"/> +<path d="M454.316 214.936C455.592 214.916 462.855 214.532 463.001 215.545C463.428 218.523 463.143 231.252 462.276 233.756C460.743 234.268 456 234.547 455.083 233.902C453.102 232.508 453.642 216.112 454.316 214.936Z" fill="#9E2184"/> +<path d="M303.713 414.585C306.052 414.555 308.185 414.523 310.529 414.654C310.576 417.415 310.842 431.467 310.17 433.218C309.372 433.852 309.818 433.633 308.741 433.811C306.987 433.845 303.309 434.089 301.875 433.419C301.522 432.287 301.326 415.461 301.538 415.009C302.185 414.509 302.859 414.61 303.713 414.585Z" fill="#9E2184"/> +<path d="M671.482 329.659C675.244 329.701 679.005 329.71 682.768 329.687C685.082 329.682 688.399 329.588 690.616 329.895C690.731 332.748 690.634 335.753 690.593 338.618C685.375 338.187 677.313 338.638 671.6 338.456L671.482 329.659Z" fill="#9E2184"/> +<path d="M529.383 462.658C532.278 462.476 535.585 462.575 538.482 462.651C538.586 464.995 538.448 479.07 537.959 480.835C537.696 480.87 537.431 480.9 537.166 480.925C535.733 481.061 530.333 481.469 529.927 480.607C528.743 478.09 529.19 465.104 529.383 462.658Z" fill="#9E2184"/> +<path d="M501.033 196.688L519.553 196.68C519.542 198.488 519.772 204.352 519.051 205.477C513.787 205.567 506.062 205.79 500.909 205.442C500.849 203.315 500.653 198.567 501.033 196.688Z" fill="#9E2184"/> +<path d="M623.951 355.502C625.67 355.477 631.035 355.318 632.37 355.689C632.48 355.947 632.589 356.101 632.598 356.352C634.059 361.612 633.345 361.87 633.515 366.988C630.408 366.887 627.074 366.972 623.948 367.005C623.946 363.216 623.886 359.277 623.951 355.502Z" fill="#9E2184"/> +<path d="M671.602 300.321C674.442 300.097 678.203 300.136 681.102 300.194C681.437 302.552 681.201 307.362 681.118 309.897C677.922 309.998 674.723 310.049 671.526 310.051C671.672 306.716 671.487 303.563 671.602 300.321Z" fill="#9E2184"/> +<path d="M473.279 167.762C475.951 167.613 479.357 167.745 482.031 167.859C482.238 170.272 482.1 173.396 482.056 175.854C482.042 176.732 481.989 176.864 481.5 177.308C478.431 177.36 475.358 177.353 472.29 177.284C472.257 174.851 472.002 170.551 472.477 168.184C472.537 167.885 472.875 167.888 473.279 167.762Z" fill="#9E2184"/> +<path d="M519.728 348.129C522.976 348.088 526.223 348.072 529.47 348.079C529.491 351.148 529.558 354.617 529.369 357.65C526.331 357.406 523.188 357.892 519.786 357.544C519.678 354.518 519.597 351.139 519.728 348.129Z" fill="#9E2184"/> +<path d="M472.638 24.0825L482.022 24.0941C482.054 26.2823 482.25 32.0676 481.75 33.9572L481.459 33.995C470.971 35.292 472.552 33.3459 472.638 24.0825Z" fill="#9E2184"/> +<path d="M406.16 319.558C409.239 319.528 412.319 319.523 415.398 319.544C415.43 321.57 415.724 327.659 415.004 329.208C411.957 329.247 408.924 329.321 405.88 329.173C405.697 327.274 405.577 321.187 406.16 319.558Z" fill="#9E2184"/> +<path d="M697.523 90.2859C698.367 90.1211 699.482 90.0386 700.275 90.3986C700.83 91.6189 700.501 98.1372 700.459 99.9552C698.3 100.011 695.917 99.957 693.739 99.9545C692.776 99.9499 691.785 99.9114 690.819 99.8865C690.738 96.821 690.74 93.754 690.823 90.6885C693.234 90.5341 695.048 90.78 697.523 90.2859Z" fill="#9E2184"/> +<path d="M472.459 225.057C475.649 224.974 478.843 224.978 482.033 225.066C482.328 227.148 482.307 232.16 482.024 234.258C478.79 234.296 475.555 234.29 472.32 234.239C472.262 232.172 472.044 226.878 472.459 225.057Z" fill="#9E2184"/> +<path d="M692.689 110.124C695.431 110.089 697.941 110.167 700.679 110.267C700.746 112.459 701.029 116.65 700.506 118.815C700.377 119.344 699.794 119.368 699.386 119.438C697.303 119.433 693.06 119.716 691.264 119.244C690.483 117.527 690.492 112.692 691.045 110.767C691.686 110.067 691.486 110.29 692.689 110.124Z" fill="#9E2184"/> +<path d="M519.827 272.273C522.948 272.151 526.112 272.236 529.24 272.28C529.279 274.704 529.422 279.468 529.136 281.74C525.986 281.773 522.833 281.766 519.68 281.717C519.615 279.256 519.445 274.575 519.827 272.273Z" fill="#9E2184"/> +<path d="M301.181 319.53C304.298 319.466 307.416 319.477 310.533 319.567C310.536 322.635 310.612 326.145 310.429 329.164C307.396 329.261 304.133 329.208 301.082 329.208C301.09 326.458 300.942 322.123 301.181 319.53Z" fill="#9E2184"/> +<path d="M425.094 376.65L434.481 376.592C434.539 379.886 434.327 383.154 434.427 386.442C431.864 386.263 427.722 386.378 425.073 386.378C425.027 383.578 424.841 379.325 425.094 376.65Z" fill="#9E2184"/> +<path d="M616.896 338.756C619.242 338.671 621.59 338.8 623.973 338.719C623.978 340.69 624.114 346.228 623.819 347.843C623.164 348.327 623.155 348.159 622.155 348.198C619.599 348.219 616.845 348.129 614.275 348.085C614.25 346.15 614.036 340.768 614.526 339.136C615.128 338.733 616.121 338.791 616.896 338.756Z" fill="#9E2184"/> +<path d="M443.916 81.1298C444.406 81.5633 444.065 89.1816 444.181 90.6294L435.041 90.6509C433.993 89.7958 434.244 82.9046 435.183 81.5653C436.557 80.6831 441.861 81.1911 443.916 81.1298Z" fill="#9E2184"/> +<path d="M358.423 272.167C361.549 272.282 364.821 272.243 367.961 272.25C367.924 275.414 367.905 278.578 367.906 281.743L358.375 281.734L358.423 272.167Z" fill="#9E2184"/> +<path d="M623.942 81.2247L633.607 81.2342C634.015 92.8242 634.81 90.1496 623.872 90.4974C623.882 87.7901 623.727 83.7845 623.942 81.2247Z" fill="#9E2184"/> +<path d="M453.937 138.888C456.991 138.832 460.045 138.831 463.098 138.884C463.261 141.989 463.154 145.428 463.114 148.566L453.853 148.536C453.924 145.57 453.732 141.647 453.937 138.888Z" fill="#9E2184"/> +<path d="M282.582 414.557C285.598 414.516 288.543 414.454 291.559 414.583C291.677 416.383 291.905 422.718 291.124 423.949C288.551 424.189 284.839 424.122 282.17 424.136C282.195 422.428 281.839 415.541 282.582 414.557Z" fill="#9E2184"/> +<path d="M548.438 309.892C551.132 309.874 555.391 309.731 557.982 310.074C557.943 312.759 558.111 316.737 557.855 319.238C554.963 319.24 551.197 319.136 548.374 319.286C548.362 316.152 548.328 313.024 548.438 309.892Z" fill="#9E2184"/> +<path d="M585.99 81.0662C589.247 81.2282 592.416 81.1662 595.649 81.2533L595.624 90.5935C593.732 90.3156 588.189 90.4409 586.018 90.4465C586.009 87.3522 586.046 84.1501 585.99 81.0662Z" fill="#9E2184"/> +<path d="M453.852 148.536C453.554 149.968 453.709 156.382 453.838 158.026C450.671 158 447.542 157.944 444.377 158.088C443.879 157.435 444.165 150.044 444.211 148.776C446.59 148.646 451.93 148.876 453.852 148.536Z" fill="#9E2184"/> +<path d="M406.315 338.751L415.371 338.692C415.415 340.844 415.576 345.38 415.314 347.641C415.174 347.793 415.034 347.947 414.894 348.099C412.941 348.088 407.695 348.754 406.344 347.684C405.473 346.258 405.29 339.888 406.315 338.751Z" fill="#9E2184"/> +<path d="M700.487 443.442C702.942 443.594 706.867 443.46 709.427 443.451C709.482 446.131 709.664 450.755 709.155 453.239C707.572 453.755 702.19 453.49 700.379 453.066L700.487 443.442Z" fill="#9E2184"/> +<path d="M681.861 24.1371C684.837 24.0848 687.812 24.0539 690.79 24.0447C690.833 26.6415 690.988 29.9815 690.688 32.5799C690.619 33.1574 690.382 33.1897 689.983 33.4412C687.081 33.5337 684.175 33.5469 681.271 33.4809C681.177 31.6226 680.866 25.2424 681.861 24.1371Z" fill="#9E2184"/> +<path d="M282.202 433.827C285.343 433.824 288.484 433.848 291.624 433.898C291.644 436.998 291.694 440.086 291.567 443.184C289.673 443.502 284.308 443.364 282.216 443.352C282.271 440.178 282.266 437.003 282.202 433.827Z" fill="#9E2184"/> +<path d="M567.29 424.186C570.104 424.29 573.614 424.177 576.481 424.165C576.521 426.853 576.647 431.109 576.359 433.67C574.884 433.979 569.072 433.834 567.35 433.815C567.191 430.639 567.265 427.374 567.29 424.186Z" fill="#9E2184"/> +<path d="M397.109 281.84C399.752 281.731 403.196 281.706 405.803 281.888C405.763 283.72 406.034 289.961 405.524 291.22L404.846 291.229C402.075 291.243 399.23 291.213 396.468 291.358C396.453 288.599 396.241 285.734 396.341 282.978C396.367 282.271 396.67 282.148 397.109 281.84Z" fill="#9E2184"/> +<path d="M272.91 424.38C275.908 424.034 278.966 424.255 281.995 424.152C282.101 427.369 282.145 430.589 282.126 433.806L272.882 433.836C272.96 430.655 272.845 427.523 272.91 424.38Z" fill="#9E2184"/> +<path d="M472.396 452.949C475.596 452.873 478.797 452.875 481.996 452.956C482.04 455.611 482.148 459.533 481.888 462.112C479.108 462.23 475.313 462.184 472.542 462.066C472.291 459.701 472.39 455.463 472.396 452.949Z" fill="#9E2184"/> +<path d="M548.385 24.1128C551.499 24.0522 554.753 24.0995 557.88 24.0995C557.924 27.0029 558.025 30.4661 557.797 33.3151C554.73 33.4974 551.432 33.486 548.339 33.5244L548.385 24.1128Z" fill="#9E2184"/> +<path d="M633.878 453.011C636.95 452.926 640.024 452.949 643.096 453.082C643.096 455.689 643.212 459.918 642.806 462.322C640.098 462.485 636.413 462.393 633.629 462.4C633.608 460.425 633.438 454.663 633.878 453.011Z" fill="#9E2184"/> +<path d="M263.7 433.88C266.761 433.85 269.821 433.834 272.882 433.836C272.653 435.394 272.756 441.531 272.751 443.419C269.733 443.479 266.714 443.513 263.696 443.52C263.623 440.319 263.49 437.072 263.7 433.88Z" fill="#9E2184"/> +<path d="M448.934 262.699C450.322 262.607 452.256 262.653 453.687 262.646C453.683 265.67 453.746 269.014 453.532 271.996C452.184 272.068 450.366 272.019 448.982 272.022L444.183 271.996C444.107 269.042 444.171 265.817 444.172 262.842L448.934 262.699Z" fill="#9E2184"/> +<path d="M301.975 281.849C304.626 281.724 307.774 281.793 310.471 281.796C310.484 283.409 310.824 290.422 309.828 291.194C306.919 291.27 304.009 291.247 301.102 291.13C300.998 288.88 300.842 284.605 301.218 282.337C301.272 282.012 301.56 282.012 301.975 281.849Z" fill="#9E2184"/> +<path d="M301.076 338.666L310.517 338.668C310.565 341.782 310.519 344.896 310.38 348.007C309.314 348.173 302.537 348.277 301.437 347.813C300.841 346.657 301.064 340.399 301.076 338.666Z" fill="#9E2184"/> +<path d="M690.814 471.582C693.829 471.619 697.415 471.573 700.386 471.72C700.351 474.723 700.271 477.839 700.287 480.835C697.254 480.852 693.829 480.939 690.831 480.812C690.773 477.736 690.766 474.659 690.814 471.582Z" fill="#9E2184"/> +<path d="M501.044 24.1224C504.155 24.0454 507.421 24.0981 510.546 24.1056C510.546 27.1769 510.473 30.2478 510.325 33.3156L500.89 33.2845C500.844 31.3506 500.641 25.7657 501.044 24.1224Z" fill="#9E2184"/> +<path d="M473.127 43.0851C475.285 43.0384 480.148 42.5567 481.633 43.5383C482.679 45.0181 482.059 50.0276 481.96 52.161C478.911 52.252 475.599 52.193 472.53 52.1926C472.502 49.5719 472.443 46.7671 472.548 44.1497C472.579 43.3748 472.638 43.4903 473.127 43.0851Z" fill="#9E2184"/> +<path d="M263.265 443.894C263.871 444.129 263.497 451.713 263.096 452.817C261.648 453.511 256.203 453.211 254.351 453.186C253.827 452.402 254.055 445.382 254.07 443.974C257.092 443.99 260.258 444.062 263.265 443.894Z" fill="#9E2184"/> +<path d="M491.436 309.876L500.853 309.878C500.929 312.794 500.611 316.412 500.807 319.083C497.882 318.982 494.388 319.081 491.42 319.088C491.233 316.02 491.237 312.944 491.436 309.876Z" fill="#9E2184"/> +<path d="M434.569 205.83L444 205.829C444.061 208.352 444.193 212.414 443.892 214.843C440.771 214.928 437.647 214.939 434.525 214.876C434.343 212.156 434.337 208.554 434.569 205.83Z" fill="#9E2184"/> +<path d="M444.221 300.634L453.661 300.692C453.693 303.734 453.666 306.776 453.58 309.816C450.454 309.869 447.328 309.876 444.202 309.837C444.147 306.836 444.211 303.649 444.221 300.634Z" fill="#9E2184"/> +<path d="M633.601 471.617C636.639 471.681 639.861 471.628 642.915 471.631C643.083 474.675 643.004 477.717 642.894 480.762C641.055 480.997 635.659 480.856 633.668 480.842C633.528 477.95 633.601 474.551 633.601 471.617Z" fill="#9E2184"/> +<path d="M387.026 196.445C386.92 199.505 387.06 202.329 386.754 205.431C383.63 205.491 380.506 205.494 377.382 205.441C377.346 203.442 377.167 198.183 377.572 196.486L387.026 196.445Z" fill="#9E2184"/> +<path d="M690.814 452.75C693.873 452.806 697.323 452.769 700.34 452.958C700.31 454.813 700.388 460.467 700.04 461.939C697.351 461.962 693.481 461.884 690.872 462.055C690.886 458.952 690.865 455.853 690.814 452.75Z" fill="#9E2184"/> +<path d="M700.482 338.867C703.465 338.818 706.452 338.825 709.434 338.885C709.478 340.743 709.881 346.903 708.952 347.972C707.231 348.085 701.305 348.5 700.247 347.569C699.833 345.979 699.975 340.441 700.482 338.867Z" fill="#9E2184"/> +<path d="M463.203 148.627C464.767 148.819 470.622 148.72 472.575 148.745C472.588 151.006 472.698 155.737 472.373 157.793C471.064 158.112 464.929 157.989 463.302 157.982C463.341 154.863 463.308 151.744 463.203 148.627Z" fill="#9E2184"/> +<path d="M254.125 358.032C256.847 357.848 260.748 357.968 263.56 357.979C263.55 360.547 263.683 364.232 263.926 366.788C260.565 366.935 257.44 367.083 254.073 366.749C254.056 363.873 253.99 360.897 254.125 358.032Z" fill="#9E2184"/> +<path d="M605.401 225.088C608.187 225.013 611.642 224.974 614.391 225.143C614.562 227.147 614.726 232.412 614.2 234.19L604.988 234.162C604.991 232.228 604.689 226.175 605.401 225.088Z" fill="#9E2184"/> +<path d="M700.934 262.895C703.654 262.851 706.675 262.775 709.36 263.049C709.492 264.84 709.84 271.132 708.95 272.259C706.712 272.215 702.356 272.812 701.031 272.031C699.86 270.616 699.784 264.294 700.934 262.895Z" fill="#9E2184"/> +<path d="M595.493 62.1002C598.535 62.2166 601.988 62.117 604.924 62.3309C604.901 64.4833 604.735 69.3471 604.938 71.3448C602.082 71.3667 598.399 71.4821 595.622 71.3005C595.608 68.3056 595.648 65.0779 595.493 62.1002Z" fill="#9E2184"/> +<path d="M301.094 148.751L310.49 148.735C310.286 150.758 310.366 155.387 310.316 157.67C308.677 158.15 303.009 157.97 301.091 157.956C301.148 154.935 301.099 151.783 301.094 148.751Z" fill="#9E2184"/> +<path d="M634.021 196.519C637.028 196.478 640.036 196.463 643.043 196.474C642.76 199.4 643.336 201.965 642.746 205.39C640.861 205.613 636.424 206.117 634.696 205.45C633.002 204.796 633.276 197.66 634.021 196.519Z" fill="#9E2184"/> +<path d="M329.663 386.578C332.795 386.634 335.927 386.643 339.059 386.606C338.797 389.478 338.928 392.743 338.859 395.659C336.646 395.915 332.101 395.822 329.696 395.841L329.663 386.578Z" fill="#9E2184"/> +<path d="M529.47 81.2397C532.443 81.1155 535.538 81.2489 538.599 81.127C538.421 83.9353 538.834 87.7297 538.304 90.4091L529.274 90.435C529.318 88.2236 529.076 83.1277 529.47 81.2397Z" fill="#9E2184"/> +<path d="M558.435 366.873C561.06 366.735 564.386 366.806 567.062 366.793C567.126 368.41 567.564 375 566.347 375.758C564.603 375.737 558.733 376.534 557.981 374.981C557.223 373.412 557.525 369.59 557.636 367.733C557.668 367.187 558.048 367.101 558.435 366.873Z" fill="#9E2184"/> +<path d="M576.686 310.143C578.795 310.323 583.566 310.134 585.949 310.116C585.785 313.096 586.094 316.189 585.785 319.166C583.925 319.461 578.507 319.245 576.502 319.164C576.702 316.119 576.677 313.19 576.686 310.143Z" fill="#9E2184"/> +<path d="M576.489 234.211C576.493 236.921 576.599 240.604 576.263 243.217C573.428 243.391 570.029 243.335 567.146 243.348C567.265 240.521 567.194 237.153 567.231 234.263C570.284 234.206 573.426 234.228 576.489 234.211Z" fill="#9E2184"/> +<path d="M254.088 462.912C257.213 462.875 260.339 462.877 263.464 462.926C263.646 464.767 263.432 470.222 262.911 472.002C260.373 471.995 257.613 472.128 255.133 471.672C254.364 471.506 254.496 469.632 254.413 469.01C254.08 466.507 253.08 465.477 254.088 462.912Z" fill="#9E2184"/> +<path d="M595.555 329.655C598.565 329.586 601.796 329.664 604.825 329.689C604.848 332.013 604.963 336.461 604.631 338.629L595.546 338.636C595.357 336.191 595.445 332.107 595.555 329.655Z" fill="#9E2184"/> +<path d="M330.108 462.677C333.037 462.592 335.969 462.587 338.899 462.663C338.957 464.949 339.227 470.183 338.437 472.089C336.562 472.098 334.458 471.903 332.598 471.797C329.553 471.626 329.582 469.287 329.783 466.941C329.911 465.456 329.824 464.196 330.108 462.677Z" fill="#9E2184"/> +<path d="M700.061 205.878C704.113 205.938 710.197 204.297 709.547 210.039C709.363 211.685 709.812 213.221 709.169 214.899C707.229 214.891 702.467 215.417 701.269 214.689C700.503 213.745 699.95 207.236 700.061 205.878Z" fill="#9E2184"/> +<path d="M387.234 329.676L396.452 329.705C396.521 332.333 396.562 335.958 396.328 338.523C394.013 338.768 389.594 338.583 387.265 338.431L387.234 329.676Z" fill="#9E2184"/> +<path d="M339.119 300.657C342.01 300.667 345.638 300.766 348.457 300.581C348.261 302.098 348.356 307.428 348.353 309.247C345.707 309.079 341.819 309.203 339.077 309.215C339.194 306.573 339.116 303.34 339.119 300.657Z" fill="#9E2184"/> +<path d="M272.74 366.993C272.747 369.823 272.811 372.773 272.615 375.587C267.011 375.41 268.517 375.901 263.626 376.809C263.616 372.854 264.934 370.381 264.675 367.048C267.363 367.069 270.052 367.051 272.74 366.993Z" fill="#9E2184"/> +<path d="M254.078 138.61L265.091 138.891C267.139 138.956 270.913 139.171 272.798 138.883C272.74 145.113 272.728 151.343 272.76 157.573C272.762 160.261 272.608 165.234 272.811 167.713C276.158 167.909 279.82 167.741 283.2 167.75C285.738 167.756 288.862 167.893 291.331 167.593C291.38 164.46 291.398 161.327 291.387 158.194C294.618 158.151 297.849 158.16 301.08 158.22C300.811 160.089 301.035 165.573 301.08 167.733C307.078 167.883 314.264 167.44 320.064 167.876C320.135 170.74 319.926 174.947 320.143 177.522C319.007 177.445 317.467 177.319 316.333 177.43C311.309 177.92 306.357 177.89 301.313 177.923C301.246 180.716 301.087 183.978 301.121 186.734C305.112 186.798 309.105 186.815 313.097 186.786C314.85 186.78 318.429 186.833 320.019 186.617C320.011 192.783 319.84 199.761 320.03 205.859L329.55 205.893C329.529 208.74 329.571 212.059 329.388 214.873C326.004 214.964 313.009 214.608 310.926 215.347C310.192 216.359 310.521 223.236 310.54 225.008L319.99 225.049C320.022 228.035 320.03 231.022 320.015 234.008C314.417 233.946 306.313 233.722 300.891 234.04L300.875 243.637C303.847 243.646 307.611 243.552 310.519 243.704C310.548 245.799 310.999 250.864 309.919 252.277C308.58 253.146 303.227 252.717 301.085 252.805C301.011 256.087 300.819 260.132 300.961 263.349C304.918 263.379 308.883 263.42 312.84 263.513C314.811 263.559 317.444 263.31 319.32 263.63C320.422 264.942 320.248 279.83 319.578 281.468C318.056 281.989 312.522 281.685 310.538 281.743C310.588 278.592 310.712 275.195 310.518 272.068C306.654 272.024 284.725 272.393 282.833 271.602C280.935 269.394 283.769 262.478 281.074 262.457C278.552 262.436 275.366 262.644 272.699 262.598L272.709 252.768C275.515 252.872 278.512 252.745 281.249 252.957C281.251 249.751 281.301 246.4 281.226 243.208C278.278 243.259 275.221 243.272 272.284 243.381C272.288 245.979 272.174 249.98 272.35 252.464C269.464 252.473 266.578 252.466 263.692 252.446C263.797 246.451 263.676 240.487 263.74 234.511C266.447 234.814 269.273 234.442 272.06 234.672C272.043 231.914 272.113 228.515 271.813 225.844L271.77 225.448L271.741 225.21C269.05 225.367 266.44 225.28 263.748 225.228C263.512 228.057 263.555 231.353 263.528 234.23C256.685 234.168 249.843 234.156 243 234.196V225.042L263.843 225.041C264.142 221.705 264.213 219.299 264.228 215.965C261.089 215.707 256.808 215.821 253.567 215.826C253.944 209.026 254.405 203.031 254.126 196.126C253.994 192.863 253.6 189.546 253.62 186.362L263.468 186.319C263.396 189.708 263.371 193.098 263.393 196.487L274.461 196.496C276.467 196.502 279.45 196.632 281.362 196.363C282.55 195.315 282.037 193.491 282.402 192.054C282.799 190.496 283.619 187.471 282.669 186.002C279.326 186.634 267.748 186.362 263.736 186.345C263.882 183.82 263.78 180.571 263.761 177.986C260.581 178.133 257.259 178.059 254.063 178.034L254.086 167.682L263.454 167.68C263.666 161.867 263.591 154.44 263.492 148.611L254.073 148.541L254.078 138.61ZM291.179 224.984C287.933 225 284.268 224.934 281.057 225.054C280.829 227.55 280.531 241.019 281.197 242.807C282.732 243.418 288.242 243.094 290.389 243.195C290.829 242.981 291.1 242.975 291.137 242.601C291.628 237.592 291.323 229.97 291.336 225.04C294.259 225.027 298.13 225.125 300.977 224.96C301.11 221.58 301.043 218.247 301.001 214.865L291.445 214.854C290.955 216.672 291.152 222.852 291.179 224.984ZM272.942 205.472C272.489 206.905 272.343 213.357 272.734 214.698C273.541 215.361 280.432 215.084 281.957 215.07C282.667 213.663 282.254 207.338 282.222 205.404L272.942 205.472ZM310.526 196.252C307.391 196.185 304.255 196.165 301.119 196.192C300.59 198.063 300.835 203.761 300.883 205.933C303.988 205.914 307.305 205.955 310.391 205.863C310.692 203.446 310.555 198.828 310.526 196.252ZM283.69 187.465C286.5 187.325 289.058 187.307 291.87 187.307C291.902 183.552 291.84 179.538 291.956 175.816C289.723 175.707 284.994 176.119 283.577 174.916C283.601 178.316 283.408 184.327 283.69 187.465Z" fill="#9E2184"/> +<path d="M272.946 129.659C276.024 129.664 279.102 129.646 282.179 129.606L282.197 138.825C279.086 138.806 275.898 138.738 272.797 138.883C273.03 135.74 272.742 132.677 272.946 129.659Z" fill="#9E2184"/> +<path d="M395.562 725.075C392 724.892 378.967 725.4 376.449 724.738C375.914 723.784 375.944 717.607 376.385 716.4C377.639 715.775 401.529 716.042 404.847 716.033C404.565 718.354 404.643 722.853 404.765 725.22C407.73 725.356 411.472 725.268 414.511 725.293C414.549 728.414 414.513 731.604 414.511 734.729C411.296 734.697 408.081 734.701 404.866 734.743C404.728 736.895 404.184 742.48 405.217 743.987C406.617 744.985 412.311 744.457 414.51 744.42C414.772 741.475 414.619 737.799 414.57 734.773L438.946 734.766C442.784 734.766 448.834 734.607 452.454 734.992C452.594 737.778 452.421 741.648 452.36 744.478C454.397 744.413 460.486 744.763 461.86 744.201C462.482 742.224 462.243 728.276 462.236 725.234C466.654 725.081 477.126 725.616 480.876 725.104C480.883 728.066 480.984 731.811 480.717 734.69C477.758 734.814 474.232 734.743 471.24 734.745C471.074 737.914 471.166 741.263 471.208 744.443C474.441 744.48 487.815 743.959 489.797 745.047C490.846 747.089 490.141 750.968 490.613 753.471C481.59 753.113 471.975 753.427 462.932 753.558C460.929 753.588 462.826 760.77 461.6 762.57C460.044 763.213 454.308 762.899 452.348 762.864L452.352 772.314C454.559 772.507 458.152 772.39 460.45 772.385C463.946 772.378 467.871 772.434 471.335 772.231C471.413 775.114 471.15 779.767 471.431 782.298C465.81 782.632 458.262 782.427 452.504 782.415C452.317 785.361 452.389 788.702 452.393 791.687C454.75 791.906 459.468 791.724 461.978 791.687C462.07 794.791 462.065 797.898 461.964 801.005C459.304 801.231 455.372 801.072 452.453 801.191C452.221 803.798 452.33 808.251 452.317 810.991C457.974 810.975 465.916 810.719 471.388 811.06C471.664 820.44 472.681 820.108 462.904 819.611C462.591 820.5 461.051 826.956 461.097 827.654C461.295 830.685 469.408 828.352 471.03 829.611C471.759 831.251 471.312 837.193 471.429 839.634L480.883 839.613C481.27 844.868 480.652 852.786 480.689 858.537C483.863 858.562 487.138 858.497 490.323 858.477C490.68 855.743 490.53 849.092 490.503 846.137C490.45 840.705 490.632 834.828 490.452 829.442C487.405 829.387 484.199 829.477 481.102 829.442C481.019 820.067 481.014 810.694 481.088 801.318C484.234 801.261 487.382 801.261 490.53 801.321C490.712 805.614 490.182 808.838 489.585 812.978C489.383 814.37 489.472 818.518 489.477 820.088C496.145 820.302 502.766 819.735 509.581 820.424C509.768 817.393 509.698 814.063 509.694 811C515.695 810.814 522.185 810.924 528.2 810.968C528.295 820.509 528.293 830.053 528.189 839.597C537.286 839.825 547.311 839.604 556.488 839.62C556.756 843.208 556.613 854.838 556.414 858.253C553.305 858.486 550.183 858.449 547.067 858.415C547.21 855.363 547.2 851.922 547.145 848.869C544.488 848.686 540.542 848.76 537.848 848.802C537.717 851.874 537.627 855.43 537.797 858.474C534.939 858.26 531.425 858.502 528.327 858.35C528.376 855.172 528.383 851.996 528.355 848.818C525.933 848.569 521.312 848.786 518.707 848.841C518.627 852.086 518.763 855.209 518.41 858.442C515.262 858.461 512.406 858.922 509.284 859.371C509.214 856.456 509.583 853.844 509.65 850.993C509.735 847.357 509.692 843.598 509.685 839.952C512.183 839.733 516.345 839.846 518.97 839.848C519.221 835.992 518.8 832.92 518.548 829.085C514.985 829.064 512.877 829.14 509.316 828.659C506.997 828.864 501.706 827.735 499.959 828.712C499.154 831.06 499.364 857.619 500.413 858.885C502.455 859.71 506.97 859.468 509.284 859.371C509.261 861.825 509.159 864.877 509.249 867.276C504.098 867.267 494.84 867.009 490.051 867.458C489.917 870.68 489.917 873.727 489.926 876.953C493.116 876.935 496.389 876.877 499.567 877.002C499.735 881.166 499.32 885.209 499.36 889.362C499.433 897.29 499.175 905.204 498.933 913.126C498.818 916.926 498.977 920.839 498.864 924.658L490.367 924.628C489.758 916.087 490.865 905.267 490.549 896.29C487.997 896.299 483.354 896.17 480.966 896.373C480.874 899.256 481.026 903.536 480.673 906.186L471.189 906.2C471.097 902.879 471.217 899.431 471.104 896.209C468.484 896.232 454.183 896.062 452.773 896.638C452.036 898.251 452.357 903.616 452.311 905.734C449.521 905.485 445.946 905.555 443.15 905.721L443.069 918.219C443.061 919.726 442.948 923.25 443.087 924.633C436.823 924.471 430.505 924.748 424.219 924.566C424.151 922.45 423.638 917.666 424.694 916.163C426.07 915.186 431.584 915.615 433.795 915.608C434.047 909.53 433.882 902.448 433.877 896.297C430.714 896.251 427.394 896.313 424.219 896.324C424.433 893.273 424.411 889.897 424.448 886.811C418.264 886.815 411.005 887.002 404.92 886.684C404.669 889.537 404.69 893.644 404.723 896.527L424.163 896.5C424.156 899.546 424.091 902.591 423.97 905.633C422.05 905.651 416.694 905.324 415.283 905.87C414.02 907.182 414.582 912.731 414.35 915.405C411.257 915.435 408.164 915.437 405.072 915.416C405.011 912.238 405.058 908.975 405.013 905.769C402.805 905.449 397.781 905.651 395.446 905.725C395.633 902.814 395.584 899.182 395.524 896.264C390.831 896.186 386.101 896.34 381.403 896.269C379.827 896.246 378.201 896.221 376.639 896.426C375.95 897.677 376.298 903.999 376.171 906.142C374.645 906.209 370.819 906.451 369.504 906.158C365.591 905.287 363.377 904.914 359.376 904.955C358.644 905.624 358.277 906.103 357.645 906.878C357.563 908.91 357.029 913.596 357.913 915.041C359.077 915.953 364.947 915.603 367.035 915.704C367.262 917.995 367.323 931.83 366.65 933.517C365.03 934.183 332.72 933.845 328.49 933.812C328.729 928.191 328.562 921.397 328.566 915.691C331.816 915.522 335.073 915.518 338.324 915.681C338.515 918.523 338.352 922.01 338.499 925.068C341.318 925.179 345.07 925.168 347.869 925.05C348.131 922.04 347.984 917.802 347.973 914.67C347.934 908.622 347.934 902.572 347.972 896.525C349.914 896.536 355.181 896.707 356.692 896.41C358.634 896.027 356.683 889.258 357.776 887.251C359.394 886.543 364.841 886.877 367.085 886.866C367.31 884.428 367.745 879.074 367.729 876.907C371.641 876.967 371.967 878.295 376.498 878.422C379.614 876.799 382.24 877.154 385.744 877.145C385.804 880.367 385.753 883.582 385.822 886.813C388.534 887.016 392.554 886.93 395.367 886.949C395.639 883.884 395.537 879.744 395.516 876.656L385.967 876.721C385.788 870.738 385.999 864.646 385.742 858.686L376.521 858.705C376.446 855.656 376.491 852.425 376.485 849.362C373.338 849.184 370.585 849.532 367.133 849.223C366.92 858.096 367.079 867.649 367.085 876.585C364.603 876.58 363.902 876.543 361.599 877.424C358.599 876.375 353.294 876.578 350.227 876.96C349.723 877.023 348.985 876.808 348.703 876.396C347.595 874.778 347.927 869.477 347.93 867.424C345.412 867.262 340.937 867.223 338.447 867.421C338.502 864.158 338.513 860.894 338.481 857.633C335.564 857.654 331.355 857.808 328.539 857.633L328.555 849.078L338.261 848.998C338.257 851.766 338.197 854.718 338.25 857.47C344.456 857.334 351.365 857.578 357.368 857.329C357.401 854.568 357.449 851.846 357.368 849.083C351.025 849.03 344.756 848.686 338.437 848.795C338.462 845.81 338.56 842.381 338.43 839.438L319.12 839.38L319.301 830.625C323.86 830.638 327.88 830.638 332.444 830.201C334.183 830.035 336.572 830.24 338.401 830.074C338.737 820.489 338.464 809.693 338.511 799.986C335.639 800.198 331.283 800.244 328.42 800.023L328.551 791.855C331.381 791.572 335.056 791.662 337.962 791.703C338.098 788.739 338.124 785.775 338.04 782.812C334.863 782.888 331.685 782.906 328.508 782.871C328.537 776.4 328.305 768.988 328.567 762.648C331.427 762.579 335.575 762.408 338.295 762.934L338.208 782.629C340.21 782.646 346.229 782.89 347.664 782.242C348.616 780.449 347.001 772.952 348.604 772.802C354.284 772.27 360.648 772.482 366.365 772.666C367.543 772.706 366.899 781.473 366.922 782.632C365.507 782.523 363.928 782.537 362.508 782.593C357.684 782.777 352.745 782.417 347.938 782.535C347.851 789.698 347.847 796.863 347.928 804.029C347.959 805.948 347.871 809.203 348.016 810.993L365.912 811.051C365.913 808.285 365.782 804.181 365.947 801.523C368.76 801.196 373.44 801.332 376.397 801.364C376.403 804.57 376.365 807.776 376.283 810.982C382.098 810.991 389.742 810.756 395.371 811.042C395.438 814.312 395.783 826.889 394.992 829.205C394.211 829.94 390.846 830.083 389.626 830.362C388.409 830.641 387.165 831.122 385.965 831.288C385.946 833.989 385.995 836.704 385.668 839.385C382.885 839.396 379.137 839.304 376.434 839.468C376.502 836.227 376.523 832.985 376.496 829.742C386.69 829.594 386.407 831.436 385.832 820.378C385.824 820.212 385.813 820.048 385.798 819.882C382.977 819.906 379.267 820.018 376.498 819.869C376.498 817.333 376.589 813.736 376.366 811.318C373.131 811.302 369.913 811.429 366.68 811.457L366.597 819.813C360.447 819.873 354.079 819.972 347.936 819.855C347.929 823.017 347.823 826.79 347.949 829.901C352.897 830.265 361.537 829.924 366.87 829.933C366.88 832.482 366.766 837.244 366.986 839.666C369.696 839.76 373.545 839.7 376.311 839.611L376.299 848.998C383.39 849.15 390.506 848.968 397.599 849.034C399.556 849.053 402.841 848.852 404.626 849.422C405.074 850.846 404.909 855.624 404.756 857.214C404.577 859.078 397.18 858.35 395.564 858.527C395.216 863.796 395.448 871.003 395.401 876.469C398.211 876.359 401.023 876.29 403.835 876.262C404.427 876.681 405.176 877.251 405.774 877.624C407.82 877.613 413.913 878.306 415.209 877.871C418.665 876.709 420.903 877.46 424.191 876.974C424.037 880.613 424.096 883.434 424.885 886.995C427.347 887.013 431.489 887.147 433.829 886.894C434.085 884.596 433.897 879.327 433.854 876.944C430.896 876.801 427.172 876.926 424.191 876.974C424.047 867.689 424.455 858.057 424.195 848.832C421.297 848.682 417.612 848.767 414.656 848.753C414.472 846.188 414.577 842.3 414.573 839.631C420.928 839.597 427.283 839.597 433.637 839.629C433.823 842.167 433.697 846.315 433.731 849.034C439.905 849.083 446.08 849.078 452.254 849.025C452.457 845.635 452.729 833.063 452.124 830.071C449.424 829.788 446.446 830.311 443.7 830.12C437.168 829.67 430.759 829.567 424.226 829.424C423.975 824.024 424.201 816.439 424.201 810.86C428.906 811.138 433.687 810.719 438.393 811.127C439.817 811.249 441.159 811.327 442.59 811.281C442.651 813.39 442.01 818.808 443.227 820.23C444.165 821.328 450.906 821.157 451.962 820.604C452.618 820.26 452.445 811.984 452.446 811.028C450.394 810.88 444.671 810.767 442.749 810.979C442.801 807.013 442.761 803.581 443.356 799.659C443.604 798.025 443.673 793.362 443.196 791.825C442.09 791.281 434.983 791.332 434.149 791.599C433.5 792.853 433.671 799.189 433.631 801.097C430.663 801.097 427.114 801.019 424.204 801.24C424.144 803.916 423.937 808.172 424.118 810.717C420.938 810.588 417.842 810.721 414.581 810.553C414.487 807.513 414.533 804.194 414.514 801.129C411.488 801.03 408.124 801.076 405.075 801.053C405.036 798.013 405.069 794.907 405.069 791.86C408.06 791.786 422.061 792.162 423.82 791.454C424.51 789.852 424.215 784.328 424.189 782.323C420.87 782.272 417.936 782.394 414.548 782.219C414.366 779.502 414.402 775.344 414.49 772.62C416.408 772.454 418.871 772.625 420.855 772.517C425.171 772.281 429.354 772.235 433.677 772.275C433.69 775.453 433.653 778.818 433.801 781.975C436.999 781.945 440.03 781.774 443.317 781.774C443.558 776.04 443.365 768.76 443.368 762.931C446.169 762.793 449.501 762.844 452.326 762.828C451.842 759.836 452.096 748.299 452.119 744.641C447.82 744.593 443.526 744.787 439.223 744.71C435.253 744.641 428.227 743.636 424.472 744.473C423.74 745.911 424.006 751.516 424.018 753.404C420.898 753.397 417.743 753.353 414.628 753.473C414.421 756.01 414.517 760.242 414.498 762.908C411.188 762.975 408.391 762.987 405.088 762.844L405.05 753.429C398.825 753.183 392.274 753.586 385.951 753.383C385.864 750.472 385.894 747.368 385.873 744.441C387.669 744.448 394.388 744.761 395.34 744.038C395.841 741.846 395.612 728.071 395.562 725.075ZM443.644 886.354C448.954 886.366 454.421 886.456 459.691 885.831C463.204 885.416 466.366 885.449 469.89 885.476L470.745 885.372C471.819 883.95 470.878 869.274 471.235 866.442C471.36 865.435 471.229 859.929 471.093 858.917C470.622 858.412 469.101 858.345 468.375 858.343C460.014 858.311 451.6 858.433 443.24 858.32C442.635 859.952 442.906 862.137 442.751 863.856C442.208 869.878 442.337 875.64 443.234 881.63C443.464 883.162 443.359 884.778 443.644 886.354ZM480.779 886.919C483.851 886.926 486.921 886.912 489.993 886.873C490.235 884.105 490.072 879.88 490.021 877.004C487.02 876.926 484.02 876.896 481.021 876.912C480.756 879.235 480.708 884.474 480.779 886.919Z" fill="#9E2184"/> +<path d="M623.087 677.994C624.469 667.075 621.957 668.113 632.847 667.718C632.49 670.366 632.478 675.028 632.312 677.958C635.836 678.123 640.524 678.137 644.036 678.036C652.531 677.793 651.526 677.66 651.448 685.867L651.393 696.43C648.316 696.307 645.447 696.54 642.259 696.288C642.165 694.216 642.522 688.823 641.99 687.309C641.093 686.685 633.598 686.594 632.766 687.144C632.056 688.802 632.375 696.517 632.596 698.713C633.061 703.355 632.073 711.56 632.971 715.754C634.403 716.964 648.185 715.114 650.724 716.713C651.596 718.045 651.248 723.12 651.227 725.061C648.233 725.079 645.237 725.065 642.241 725.024C642.024 727.547 642.054 732.36 642.135 734.959C644.599 735.107 648.447 734.978 651.017 734.971C650.759 737.428 650.819 739.407 650.492 742.498C650.061 746.561 644.824 743.45 643.555 745.211C642.137 747.176 642.333 761.353 642.354 763.024C645.343 763.116 648.521 763.06 651.526 763.051C651.464 767.195 651.441 771.339 651.46 775.485C651.457 777.518 651.358 780.742 651.483 782.659L623.107 782.682C623.165 780.597 622.743 774.298 623.575 773.109C624.976 772.18 630.213 772.533 632.384 772.514C632.593 769.659 632.501 765.782 632.506 762.844L623.094 762.867C620.1 762.869 616.661 762.802 613.709 763.005C613.349 768.244 613.619 777.354 613.601 782.8C616.59 782.606 620.008 782.786 623.107 782.682C622.794 788.115 623.029 795.46 622.898 801.24C620.724 801.072 616.382 801.323 613.764 801.251C613.559 798.546 613.665 794.342 613.656 791.521C611.107 791.431 606.673 791.438 604.181 791.562L604.17 782.473C602.934 782.429 595.184 782.832 594.769 781.933C593.907 780.064 595.267 774.344 594.124 772.643C592.526 772.037 578.924 772.493 575.603 772.251L575.571 762.977C572.632 762.816 569.074 762.894 566.085 762.892C566.039 759.813 565.951 756.746 566.103 753.671L585.013 753.683C585.135 750.998 585.128 747.236 584.965 744.577C582.904 744.362 578.041 744.528 575.61 744.478L575.575 715.835L565.983 715.844C565.739 721.366 566.327 729.585 565.688 734.731C562.658 734.75 559.629 734.733 556.601 734.683C556.889 729.622 556.82 724.325 556.594 719.262C556.44 715.789 556.059 712.323 556.228 708.84C556.258 708.253 556.26 707.407 556.7 706.964C557.991 705.667 572.625 706.358 575.61 706.215C575.698 703.046 575.629 699.552 575.631 696.359C572.402 696.365 569.362 696.46 566.135 696.225C566.048 693.203 566.066 690.022 566.027 686.982C563.504 686.749 559.136 686.867 556.571 686.968C556.804 684.554 556.61 680.502 556.548 678.001C562.881 677.991 569.217 678.02 575.55 678.089C575.725 680.827 575.656 684.453 575.665 687.226C578.537 687.344 581.969 687.261 584.884 687.263C584.843 690.44 584.868 693.677 584.863 696.861C587.917 696.99 591.388 696.888 594.479 696.858C594.513 699.619 594.61 704.003 594.225 706.646C591.517 706.667 588.938 706.678 586.23 706.84C586.302 710.078 586.527 713.27 586.594 716.533C589.178 716.566 591.759 716.637 594.338 716.743C594.594 719.345 594.444 722.618 594.4 725.28L604.142 725.261C604.373 719.287 604.218 712.399 604.218 706.356L612.234 706.393C612.296 703.254 612.179 700.587 611.992 697.455C609.286 697.441 606.583 697.402 603.877 697.338C603.713 694.91 603.63 680.203 604.19 678.398C605.739 677.699 620.146 678.035 623.087 677.994ZM603.854 761.749C603.833 759.631 603.421 754.773 604.458 753.314C605.891 752.36 611.704 752.818 613.923 752.793L613.932 752.355C613.969 750.82 614.08 749.659 614.393 748.22C614.949 745.658 614.834 736.688 613.589 734.828C612.13 733.95 606.232 734.275 604.091 734.284C602.58 738.732 606.06 744.916 600.685 744.775C598.749 744.724 596.781 744.791 594.84 744.775C594.336 747.515 594.518 759.905 594.548 763.305C596.564 763.353 602.116 763.754 603.552 762.89C603.849 762.337 603.891 762.364 603.854 761.749ZM623.006 744.411C625.078 744.441 630.692 744.625 632.591 744.415C633.216 741.242 633.057 728.575 632.861 725.051C629.623 725.022 626.385 725.04 623.149 725.104C622.833 726.828 622.826 742.36 623.006 744.411Z" fill="#9E2184"/> +<path d="M499.682 477.151C505.645 476.987 512.626 477.022 518.636 477.105C518.643 479.968 518.546 483.85 518.745 486.626C521.9 486.755 525.145 486.718 528.311 486.719C528.042 489.14 528.235 493.152 528.18 495.778C525.039 495.754 521.865 495.692 518.728 495.81C518.692 498.734 518.574 502.282 518.689 505.188C517.164 505.15 510.632 504.887 509.62 505.536C508.901 507.527 509.362 520.849 509.205 524.234C507.968 524.36 500.756 524.189 500.39 524.73C499.341 526.28 499.712 540.928 499.883 543.623C502.987 543.675 506.09 543.679 509.192 543.633C509.254 546.875 509.284 550.118 509.277 553.36C507.689 553.096 499.046 553.107 496.912 553.118C492.563 553.14 485.366 552.618 481.333 553.071C480.657 554.239 480.699 561.478 480.897 563.016C478.973 563.056 473.266 562.682 472.017 563.382C471.095 564.516 471.455 570.353 471.406 572.514C468.362 572.679 465.163 572.583 462.105 572.548C461.941 575.47 462.026 579.36 461.969 582.4C457.91 582.603 447.279 582.63 443.518 582.365C443.06 577.705 443.415 567.949 443.353 562.768L434.183 562.842C434.043 559.825 434.109 556.215 434.087 553.152C430.91 553.222 427.481 553.394 424.335 553.203C424.123 550.659 424.227 546.419 424.215 543.745C435.771 544.822 433.983 544.184 433.853 534.033C430.9 533.853 427.215 533.974 424.198 534.003C424.276 530.902 424.457 527.49 424.133 524.442C420.942 524.402 417.966 524.604 414.717 524.42C414.448 521.578 414.568 518.157 414.589 515.267C416.557 515.268 422.013 515.599 423.482 514.974C424.644 513.827 424.069 507.861 424.217 505.455C427.329 505.24 430.82 505.543 433.849 505.221L433.785 515.295C436.714 515.446 440.191 515.339 443.139 515.304C443.433 512.73 443.344 508.011 443.216 505.358C445.782 505.38 450.021 505.481 452.445 505.242C452.43 508.73 452.469 512.219 452.563 515.706C458.541 515.947 465.041 515.413 471.173 515.379C471.277 512.969 470.858 507.432 471.542 505.61C473.266 504.802 486.963 505.319 490.102 505.186C490.093 507.908 489.98 512.792 490.431 515.316C492.957 515.354 497.24 515.597 499.572 515.407C499.977 513.367 499.795 507.52 499.752 505.284C497.032 505.085 492.93 505.192 490.102 505.186L490.141 496.232C493.31 495.993 496.829 496.246 499.563 495.995C499.943 489.835 499.295 482.934 499.682 477.151ZM443.592 553.345L471.388 553.387C471.881 552.425 471.886 527.989 471.678 524.675C465.458 524.566 459.152 524.77 452.933 524.733C450.24 524.717 445.873 524.925 443.354 524.493C442.029 526.315 443.146 535.667 443.296 538.491C443.562 543.485 443.532 548.361 443.592 553.345ZM452.498 572.567C455.529 572.645 458.714 572.474 461.69 572.668C462.068 572.368 462.275 572.342 462.224 571.624C462.056 569.31 462.722 565.038 461.692 563.154C461.39 562.91 460.961 562.57 460.565 562.579C457.908 562.641 455.253 562.801 452.587 562.79C452.39 565.079 452.253 570.318 452.498 572.567ZM480.69 543.933L490.259 543.891C490.646 542.068 490.484 535.979 490.362 533.92C487.23 533.971 484.098 533.984 480.966 533.958C480.567 535.949 480.685 541.651 480.69 543.933Z" fill="#9E2184"/> +<path d="M452.532 534.239C455.686 534.196 458.838 534.191 461.991 534.222C462.049 536.449 462.309 541.708 461.719 543.631C459.016 543.766 455.006 543.724 452.317 543.61C452.172 541.921 452.074 535.773 452.532 534.239Z" fill="#9E2184"/> +<path d="M385.211 553.624C382.919 553.501 378.509 553.898 376.811 553.119C375.614 551.721 375.111 509.099 376.571 505.755C378.045 504.995 384.149 505.174 386.052 505.285C386.153 508.288 385.533 522.688 386.237 524.112C387.398 524.652 394.595 525.088 395.351 523.92C396.47 522.191 395.794 517.6 395.833 515.336C398.103 515.232 403.145 515.385 404.869 515.17C404.869 518.236 405.162 542.398 404.425 543.398C402.881 543.909 399.903 543.699 398.214 543.656L395.681 543.694C395.5 545.669 395.151 551.906 395.879 553.55C397.849 554.74 404.164 552.772 404.616 554.927C405.061 557.049 404.594 560.686 404.883 563.184C410.838 563.256 416.793 563.279 422.748 563.253C426.218 563.256 430.751 563.383 434.15 563.215C434.099 565.616 433.653 567.481 433.471 569.863C433.219 573.145 433.963 579.515 432.527 582.448C431.149 582.878 425.965 582.643 424.22 582.611C424.205 580.869 424.435 573.706 423.766 572.765C422.397 572.328 414.469 571.709 414.451 574.168C414.432 576.807 414.56 579.707 414.47 582.409C411.496 582.451 408.456 582.394 405.51 582.457C405.422 585.903 406.276 588.699 406.486 592.108C409.339 591.832 411.656 591.825 414.521 592.032C414.527 597.846 414.308 605.513 414.567 611.203C417.711 611.304 420.949 611.248 424.104 611.231C424 613.612 423.892 618.456 424.063 620.743C426.694 620.86 431.175 620.917 433.775 620.701C433.949 617.548 433.891 614.311 433.881 611.147C436.967 611.212 440.054 611.228 443.14 611.196C443.187 617.562 443.195 623.929 443.164 630.295C443.158 632.961 443.019 637.174 443.176 639.733C445.991 639.745 449.827 639.66 452.556 639.857C452.465 643.088 452.319 646.491 452.37 649.708C454.303 649.755 460.221 650.266 461.372 649.099C462.724 647.726 462.925 641.786 462.941 639.771C465.628 639.756 468.371 639.701 471.054 639.828C470.894 646.16 471.593 651.795 471.185 658.411C468.05 658.675 465.041 658.306 462.109 658.543C462.024 660.181 462.192 666.796 461.57 667.64C460.378 668.082 453.662 668.076 452.48 667.51C451.953 665.896 452.303 652.332 452.337 649.793C446.353 649.708 441.016 649.646 434.999 649.251C431.724 649.037 427.637 649.332 424.222 649.191C424.197 646.035 424.193 642.878 424.209 639.722C426.382 639.756 432.048 640.258 433.439 639.209C434.399 637.71 433.893 632.436 433.85 630.192C422.722 629.95 424.125 628.37 423.986 639.476C422.529 639.377 416.144 639.194 415.195 639.912C414.386 641.87 414.897 648.63 413.691 648.738C409.008 649.16 400.014 648.945 395.411 648.958C395.43 654.722 395.633 661.984 395.341 667.62C392.64 667.959 388.697 667.877 385.91 667.862C385.921 665.031 386.044 661.209 385.893 658.459C382.806 658.451 379.529 658.499 376.457 658.424C376.351 655.628 376.499 651.782 376.269 649.22C373.209 649.179 370.148 649.192 367.088 649.26C367.181 646.298 367.255 642.687 367.148 639.726C370.986 639.71 379.372 639.474 382.917 639.79C383.051 642.752 382.981 645.631 382.933 648.592C386.961 648.819 391.36 648.766 395.421 648.79C395.441 643.041 395.717 635.242 395.479 629.631C399.156 629.648 402.945 629.629 406.613 629.767C409.39 629.872 411.927 630.411 414.774 630.295C414.765 627.235 414.855 623.478 414.704 620.473C408.313 620.384 401.922 620.375 395.531 620.445C395.516 618.783 395.157 612.132 395.858 611.314C398.233 610.314 403.171 611.749 404.653 610.601C405.388 608.466 405.041 604.209 405.079 601.737C400.055 601.764 390.626 602.079 385.84 601.692C385.674 598.612 385.825 594.982 385.887 591.854C384.038 591.861 377.26 592.18 376.238 591.339C375.784 589.495 375.183 582.179 378.315 582.446C380.77 582.655 383.386 582.66 385.866 582.637C385.788 584.914 385.677 589.809 385.847 591.971C387.957 591.979 393.918 592.413 395.276 591.539C396.312 590.07 395.864 584.79 395.842 582.619C398.863 582.611 402.071 582.651 405.074 582.546C405.085 580.468 405.321 574.216 404.634 572.682C403.67 572.303 397.065 572.376 396.048 572.609C394.824 573.826 395.7 580.525 395.717 582.586C393.05 582.313 388.705 582.427 385.895 582.427C385.876 579.262 386.166 576.985 386.406 573.869C386.537 572.168 386.226 569.489 386.255 567.679C386.332 562.97 385.163 558.232 385.211 553.624Z" fill="#9E2184"/> +<path d="M319.109 515.292C324.502 515.272 333.064 515.513 338.286 515.149C338.259 517.175 337.84 522.409 338.783 523.777C340.001 524.655 345.788 524.248 347.902 524.339C347.969 526.553 347.555 532.542 348.469 533.788C349.879 534.682 355.363 534.285 357.311 534.131C357.391 530.944 357.417 527.756 357.39 524.568C359.649 524.523 364.713 524.202 366.661 524.898C367.831 526.344 366.974 547.657 367.145 551.292C367.344 555.515 358.07 551.097 357.56 554.218C357.328 555.641 357.177 561.922 357.682 562.893C358.638 563.456 365.126 563.149 367.029 563.312C367.262 565.5 367.113 580.755 366.378 582.027C363.823 583.354 351.939 581.633 348.609 582.614C347.542 582.929 347.907 590.722 347.962 591.809C345.848 591.819 340.396 591.54 338.692 592.034C337.617 593.438 338.612 598.833 338.135 600.586C337.46 603.066 331.369 600.607 328.878 602.01C328.169 603.171 328.351 610.566 328.325 612.519C327.028 612.48 323.628 612.818 322.747 612.266C322.66 611.959 322.473 611.186 322.254 611.144C319.591 610.627 312.218 610.977 309.688 610.854C309.52 604.686 309.683 598.066 309.629 591.826C306.416 591.793 303.28 591.75 300.068 591.853C299.83 594.537 300.052 598.487 299.904 601.491C296.742 601.7 293.63 601.441 290.503 601.705C290.566 598.431 290.594 595.157 290.587 591.883C287.711 591.719 284.034 591.825 281.094 591.84C281.115 588.761 281.104 585.682 281.061 582.603C289.94 582.794 300.746 582.771 309.621 582.553C309.693 579.219 309.699 575.885 309.64 572.552C306.9 572.372 303.163 572.517 300.213 572.422C300.139 570.244 300.601 564.767 299.708 563.402C298.395 562.459 292.769 563.016 290.57 563.051L290.601 562.767C292.128 547.585 288.485 555.29 281.694 552.582C280.404 552.067 281.105 545.97 281.117 544.868C281.112 544.48 281.137 544.198 281.419 544.037C283.776 542.685 299.359 544.992 300.064 542.71C300.803 540.317 299.245 526.41 300.807 524.622C302.587 524.08 307.692 524.211 309.633 524.4C309.792 533.604 309.239 544.712 309.689 553.566C311.306 553.576 317.215 553.225 318.195 553.958C319.532 556.537 318.708 568.682 318.892 572.481C322.873 572.543 326.855 572.554 330.837 572.516C332.749 572.51 336.166 572.61 337.894 572.329C339.896 569.925 336.513 563.97 339.968 563.645C341.806 563.471 345.899 564.159 347.68 563.311C348.409 561.362 348.422 545.987 347.705 544.171C344.418 542.631 329.536 545.421 328.375 542.798C327.654 541.167 329.391 536.998 327.608 536.028C325.785 535.036 320.594 536.998 319.485 534.903C318.621 533.272 319.1 518.28 319.109 515.292ZM328.164 591.935C328.55 590.22 328.885 583.983 328.152 582.655C326.653 582.167 321.061 582.342 319.238 582.351C318.868 583.74 318.645 590.637 319.117 591.703C320.509 592.201 326.467 592.05 328.164 591.935Z" fill="#9E2184"/> +<path d="M262.421 744.404C264.503 744.409 269.778 744.017 271.108 744.982C272.065 746.446 271.55 751.456 271.604 753.653L282.873 753.639C284.917 753.639 288.656 753.544 290.544 753.908C290.546 756.729 290.626 759.951 290.41 762.733C284.793 763.067 277.42 762.881 271.663 762.869L271.608 782.473L280.984 782.408C281.015 785.6 281.045 788.329 280.827 791.507C277.792 791.385 274.611 791.47 271.636 791.293C271.522 797.474 271.339 804.881 271.532 810.996L282.684 810.975C285.117 810.979 288.119 811.065 290.506 810.899C290.725 808.089 290.591 804.245 290.559 801.339C299.704 801.3 309.907 801.06 318.973 801.35C319.037 804.356 318.915 807.55 318.847 810.571C312.607 810.661 306.385 810.565 300.151 810.615C299.887 813.226 299.981 817.223 299.978 819.963C295.77 819.633 285.62 819.889 281.085 819.995C281.039 823.381 281.035 826.767 281.072 830.152L290.524 830.173C290.549 833.3 290.534 836.43 290.48 839.558C288.369 839.253 283.395 839.389 281.087 839.419C280.836 842.005 281.017 846.285 281.063 849.018C284.214 849.078 287.365 849.08 290.516 849.027C290.621 845.888 290.586 842.759 290.573 839.62C293.666 839.615 296.915 839.664 299.994 839.599C299.991 842.332 299.878 846.343 300.166 848.998C303.333 849.104 306.485 849.06 309.655 849.037C309.652 851.869 309.736 855.499 309.546 858.255C311.813 858.511 316.499 858.454 318.906 858.396C318.917 861.187 319.015 864.506 318.917 867.253C313.403 867.324 305.609 867.566 300.234 867.251C300.196 864.248 300.194 861.245 300.228 858.239C295.606 858.219 292.656 858.338 288.093 859.009C284.977 859.465 281.301 859.223 278.075 860.035C276.615 860.242 274.214 860.083 272.681 860.042C272.953 852.565 271.825 845.379 271.399 837.983C271.074 832.325 271.631 825.709 271.308 819.917C266.105 819.82 257.841 819.719 252.74 819.993C252.772 817.043 252.845 813.614 252.682 810.673C250.169 810.601 246.253 810.595 243.755 810.756C243.751 807.661 243.794 804.411 243.706 801.33C249.273 801.33 256.743 801.565 262.149 801.304C262.172 797.027 262.47 795.619 263.058 791.466C263.269 789.979 263.146 784.443 263.142 782.62L252.726 782.669C252.707 785.704 252.754 788.615 252.462 791.636C249.964 791.636 245.898 791.509 243.527 791.671C243.49 794.865 243.484 798.059 243.509 801.254C240.566 800.956 236.861 801.237 233.727 801.076C234.234 794.519 233.728 788.573 234.145 782.77C240.239 782.491 246.801 783.003 252.685 782.724C252.646 779.26 252.456 774.289 252.702 770.945C254.464 770.892 261.143 770.873 262.247 770.26C262.604 768.573 262.558 761.279 262.515 759.142C262.425 754.662 262.746 748.764 262.421 744.404Z" fill="#9E2184"/> +<path d="M367.286 668.107C371.92 667.57 380.715 668.048 385.911 667.862C385.558 673.333 385.76 681.694 385.728 687.315C388.697 687.359 391.88 687.281 394.866 687.264C395.037 684.56 394.947 680.906 394.952 678.132C398.453 677.863 421.901 677.592 423.703 678.482C424.323 678.789 424.432 679.323 424.583 679.953C425.413 683.433 424.85 689.62 424.87 693.306C424.888 696.529 425.192 699.933 424.891 703.129C424.815 703.938 424.719 704.588 424.272 705.273C422.757 706.065 416.927 705.653 414.589 705.819C414.337 709.018 414.651 712.33 414.322 715.77C411.214 715.84 408.009 715.817 404.893 715.833C405.322 711.219 405.066 701.511 405.071 696.508C408.241 696.522 411.405 696.563 414.573 696.44C414.742 694.905 415.057 687.885 414.281 687.098C412.619 686.725 406.886 686.584 405.282 687.435C405.054 687.702 404.679 688.139 404.674 688.494C404.636 691.068 404.832 693.819 404.876 696.392C400.455 696.196 390.138 696.141 385.964 696.461L385.943 687.451C383.923 687.41 377.635 687.729 376.028 689.168C375.093 690.005 375.83 694.671 375.91 696.506C378.194 696.674 383.599 696.692 385.853 696.457C385.698 699.46 385.842 702.581 385.678 705.727C379.604 705.883 373.046 705.568 367.068 705.84C367.016 700.013 367.244 693.607 367.239 687.649L366.971 687.075C365.811 686.481 359.113 686.842 357.502 686.957C357.288 691.338 357.557 698.195 357.585 702.763C360.237 702.576 362.991 702.648 365.651 702.707C365.571 705.952 366.196 706.886 366.373 709.907C366.443 711.106 365.524 713.821 365.542 715.339C365.573 717.888 366.316 720.467 366.321 722.938C366.338 730.115 366.062 737.186 366.378 744.369C362.752 743.961 352.183 744.259 347.981 744.226C348.16 741.908 347.975 737.241 347.95 734.75C350.966 734.842 354.274 734.768 357.313 734.756C357.462 731.802 357.455 728.004 357.332 725.063C354.483 724.945 350.979 725.049 348.08 725.061C348.146 722.067 348.078 718.831 348.069 715.817C345.297 715.662 341.268 715.775 338.422 715.764C338.385 712.71 338.395 709.654 338.453 706.598C340.337 706.625 346.322 706.835 347.797 706.526C348.404 704.952 348.303 689.099 347.978 686.924C346.794 686.228 340.834 686.586 338.788 686.419L338.485 686.392C338.061 681.896 338.309 672.628 338.356 667.876C341.408 668.131 344.844 668.068 347.942 668.077C347.926 671.398 347.935 674.719 347.969 678.04L367.2 678.029C367.412 675.442 367.282 670.822 367.286 668.107Z" fill="#9E2184"/> +<path d="M594.723 611.19C603.863 611.432 613.64 611.128 622.897 611.231C623.144 613.893 622.946 617.71 622.863 620.439C620.906 620.548 615.366 620.275 614.163 620.972C613.236 622.112 613.575 628.167 613.534 630.265C619.768 630.369 626.159 629.83 632.427 630.336L632.411 639.736L642.197 639.812C642.344 645.994 642.162 652.659 642.215 658.928L661.314 658.7L661.33 667.735C652.45 667.332 641.976 667.626 632.962 667.638C632.997 664.834 633.033 652.063 632.437 649.716C631.593 648.929 624.84 649.216 623.167 649.218C623.128 645.977 623.22 642.773 623.13 639.521C620.185 639.355 616.742 639.496 613.656 639.386C613.58 636.424 613.649 633.206 613.658 630.224L594.672 630.303C594.709 633.32 594.601 636.366 594.527 639.384C592.478 639.397 587.428 639.282 585.691 639.789C584.64 640.88 585.483 644.607 585.276 646.019C584.76 649.559 585.366 655.168 584.736 658.517L583.51 658.507C577.668 658.583 571.826 658.547 565.986 658.399C565.773 661.416 565.854 664.801 565.684 667.951C562.711 667.909 559.454 667.865 556.513 668.176C556.46 670.493 556.214 675.953 556.483 677.987C554.063 677.756 548.894 677.932 546.276 677.95C546.17 674.927 546.292 671.345 546.329 668.28C544.34 668.339 539.491 668.037 538.145 668.929C537.195 670.245 537.58 675.581 537.548 677.775C534.485 677.861 531.452 677.805 528.368 677.943C528.373 675.072 527.914 661.484 528.58 659.812C529.537 657.419 553.13 660.484 556.227 658.634C556.921 656.308 556.85 642.506 556.428 639.88C555.571 639.098 548.924 639.35 547.172 639.339C547.018 636.711 547.076 633.332 547.053 630.649C549.744 630.801 564.204 630.044 565.366 631.044C565.833 631.448 565.967 632.173 566.006 632.758C566.158 635.008 565.695 637.476 565.571 639.738C565.386 643.113 565.444 646.53 565.527 649.908C568.191 650.064 572.66 649.928 575.37 649.8C575.882 644.818 575.545 635.829 575.644 630.403C581.604 630.11 588.638 630.31 594.727 630.249C594.766 623.896 594.766 617.543 594.723 611.19Z" fill="#9E2184"/> +<path d="M585.062 524.386C586.444 524.538 593.909 524.065 594.26 525.132C595.345 528.452 593.702 540.925 594.889 543.278C596.306 543.865 602.294 543.768 603.872 543.497C603.644 545.286 603.884 550.299 603.531 552.258C603.372 552.412 603.213 552.565 603.054 552.718C601.24 553.358 596.804 553.022 594.608 553.132C594.543 555.893 594.679 559.963 594.446 562.53C589.443 562.902 538.548 562.405 538.145 562.926C537.255 564.075 537.576 570.76 537.749 572.416C543.697 572.493 550.526 572.543 556.453 572.349C556.622 575.683 556.288 579.478 556.553 582.559C554.995 582.286 549.046 582.368 547.115 582.365C546.951 583.852 547.023 585.707 546.79 587.112C545.619 594.174 547.087 601.262 547.009 608.363C546.926 615.682 546.744 623.034 546.753 630.382C541.759 630.268 537.179 630.371 532.261 631.185C531.298 631.344 529.198 631.232 528.184 631.209C527.643 619.73 524.824 621.153 537.364 620.811C537.509 615.766 537.246 610.241 537.417 605.126C537.592 599.861 538.924 587.545 537.942 582.78C536.559 582.132 530.302 582.41 528.382 582.434C528.394 580.369 528.889 575.008 528.03 573.754C526.665 572.801 521.413 573.226 519.288 573.229C519.493 571.205 519.454 565.794 519.297 563.745C521.017 563.676 526.138 563.903 527.366 563.611C529.449 563.114 527.569 556.53 528.611 553.879C530.579 552.418 552.913 554.192 556.099 553.054C556.894 551.934 556.573 545.499 556.566 543.702L565.953 543.658C565.806 546.544 565.907 550.49 565.986 553.411C568.041 553.644 573.285 553.415 575.529 553.369C575.711 550.453 575.617 546.579 575.624 543.594C578.302 543.758 582.266 543.657 584.999 543.612C585.393 539.183 585.078 529.286 585.062 524.386Z" fill="#9E2184"/> +<path d="M518.771 582.637L528.368 582.57C528.44 586.817 528.603 607.323 527.446 610.633C526.474 611.285 520.396 611.003 518.564 611.013C518.322 614.181 518.647 617.388 518.269 620.616C515.266 620.718 512.258 620.639 509.265 620.378C509.115 623.244 509.228 627.167 509.225 630.113C511.152 630.135 516.817 629.818 518.294 630.464C519.092 632.515 518.88 646.503 517.889 649.039C517.061 649.713 501.906 649.49 499.631 649.506C499.709 647.379 499.875 631.524 499.419 630.632L498.698 630.57C496.017 630.685 493.337 630.759 490.654 630.792C490.606 628.548 491.21 622.364 490.332 621.094C489.027 620.14 482.899 620.606 480.878 620.633C480.919 617.453 480.919 614.273 480.88 611.094C477.912 611.052 474.379 611.538 471.502 610.994C470.345 610.776 470.546 603.656 471.189 602.631C472.98 602.029 487.495 601.723 489.682 602.118C490.431 603.303 490.133 609.384 490.131 611.298C496.232 611.385 502.689 611.245 508.845 611.267C508.9 609.097 508.49 602.23 509.331 601.093C510.8 600.172 515.941 600.644 518.255 600.467L518.58 600.441C519.062 597.406 518.714 586.492 518.771 582.637Z" fill="#9E2184"/> +<path d="M509.482 658.984C511.844 658.874 515.937 658.807 518.302 658.99C518.703 664.977 518.21 672.006 518.364 678.135C521.63 677.994 524.9 678.041 528.168 678.054C528.178 681.012 528.118 684.272 528.208 687.204C531.229 687.23 534.919 687.159 537.885 687.31C537.88 689.865 537.754 694.117 537.963 696.536L547.067 696.538C546.991 702.567 547.118 709.682 546.788 715.612C543.794 715.706 540.798 715.757 537.8 715.759C537.816 712.436 537.885 708.969 537.839 705.66L528.318 705.545C528.318 702.565 528.373 699.375 528.295 696.413C521.886 696.496 514.82 696.881 508.551 696.685C508.498 698.711 508.258 703.798 508.489 705.653C503.688 705.713 495.525 705.462 491.095 705.805C491.068 702.871 490.987 699.649 491.15 696.734C496.944 696.651 502.741 696.632 508.535 696.676C508.406 694.146 507.786 686.428 509.074 684.602C509.823 683.543 509.464 679.858 509.519 678.435C509.482 672.962 509.166 664.314 509.482 658.984Z" fill="#9E2184"/> +<path d="M405.078 477.105L414.57 477.083L414.522 495.673L414.494 515.089C411.468 515.003 408.121 515.073 405.07 515.075L405.097 505.247L395.692 505.161C395.688 503.917 396.28 496.271 395.062 495.987C390.486 494.921 370.706 496.901 367.731 495.228C367.031 493.73 367.369 479.723 367.396 477.127C370.461 477.027 373.871 477.093 376.962 477.086C376.947 478.72 376.652 485.468 377.39 486.476C378.729 486.869 384.392 487.143 385.589 486.034C386.575 485.121 385.989 482.379 385.978 481.033C385.968 479.767 386.017 478.403 386.081 477.091L395.612 477.092L395.649 486.471C406.816 487.94 405.148 486.751 405.078 477.105Z" fill="#9E2184"/> +<path d="M319.097 696.28C325.507 696.247 331.917 696.388 338.319 696.702C338.348 699.958 338.357 703.215 338.345 706.471C335.87 706.059 331.175 705.953 328.551 706.171C328.496 709.087 328.364 713.106 328.568 716.001C331.729 716.003 335.115 716.04 338.266 715.84L338.243 725.091C334.969 725.045 331.826 725.008 328.554 725.095C328.527 726.96 328.306 733.226 328.485 734.747C325.956 734.69 321.37 734.6 318.922 734.793L318.894 753.408C314.34 753.425 304.335 753.703 300.232 753.319C300.179 751.265 299.694 746.287 300.784 744.89C302.13 744.028 307.673 744.494 309.85 744.427C310.038 738.852 309.987 733.272 310.082 727.697C310.124 725.243 308.98 717.974 310.489 716.268C312.913 715.217 317.08 717.554 319 715.459C319.242 714.736 319.197 714.298 319.205 713.544L319.097 696.28Z" fill="#9E2184"/> +<path d="M566.106 572.481C569.291 572.352 572.437 572.443 575.624 572.501C575.633 581.67 575.327 592.682 575.642 601.699C577.809 601.729 583.128 602.192 584.578 601.155C585.513 599.731 585.039 594.151 585.124 591.894C588.86 591.812 600.533 591.612 603.764 592.099L603.723 601.409C601.828 601.996 595.145 601.177 594.808 602.378C594.184 604.59 594.486 608.534 594.516 610.975C591.872 610.972 587.694 610.858 585.228 611.135C585.122 613.322 585.426 618.971 584.49 620.28C583.02 621.252 578.03 620.695 575.645 620.868C575.612 617.665 575.67 614.152 575.564 610.986C572.545 610.93 569.023 611.049 566.11 610.908C566.143 604.724 566.272 598 566.103 591.837C563.531 591.815 559.072 591.933 556.689 591.694C556.673 588.787 556.726 585.422 556.553 582.559C559.272 582.629 563.255 582.722 565.944 582.553C565.967 579.889 565.854 574.955 566.106 572.481Z" fill="#9E2184"/> +<path d="M233.881 705.713C237.04 705.664 240.257 705.685 243.421 705.674L243.556 715.95C246.003 716.1 249.914 716.029 252.347 715.918C252.11 721.38 252.74 728.9 252.814 734.775C254.871 734.83 260.048 734.487 261.574 735.015C262.995 736.361 262.08 741.871 262.342 744.187C259.481 744.197 245.462 743.932 243.704 744.653C243.465 745.752 244.089 751.189 244.155 752.908C246.687 753.282 250.508 752.726 252.718 753.445C252.76 756.589 252.752 759.732 252.693 762.876C246.618 762.876 240.117 763.035 234.089 762.835L234.107 734.934C237.082 734.641 240.523 734.927 243.663 734.796C243.838 731.924 243.719 728.006 243.707 725.049C240.501 725.042 237.315 725.056 234.111 724.913C234.04 721.673 234.087 718.363 234.027 715.114C233.981 712.675 233.032 707.812 233.881 705.713Z" fill="#9E2184"/> +<path d="M328.536 639.751C331.628 639.839 335.06 639.737 338.227 639.78C338.399 642.452 338.272 646.658 338.286 649.458C341.49 649.535 344.655 649.446 347.915 649.555C347.962 652.517 347.959 655.48 347.906 658.442C344.699 658.538 341.49 658.513 338.284 658.367C338.127 661.142 338.24 664.891 338.249 667.741C335.263 667.549 331.345 667.583 328.542 667.213C328.531 669.859 328.497 684.908 327.986 686.563C326.867 687.356 320.669 687.094 318.885 687.09C318.875 689.566 318.749 693.858 319.025 696.178C317.264 696.251 310.65 696.012 309.698 696.54C309.677 699.866 309.581 703.187 309.41 706.506C306.816 706.755 302.864 706.639 300.25 706.561C300.113 700.223 300.217 693.594 300.237 687.232C305.926 687.344 312.855 687.336 318.496 687.199C318.775 683.615 319.079 680.238 319.616 676.646C319.905 674.713 318.424 667.52 319.422 666.109C320.664 665.41 326.921 665.783 328.476 666.08C328.834 657.967 328.474 648.105 328.536 639.751Z" fill="#9E2184"/> +<path d="M632.149 572.46C633.269 572.515 641.552 572.827 641.854 572.084C643.071 569.108 641.299 555.468 642.799 553.575C644.145 553.116 649.695 553.042 650.946 553.664C652.755 554.565 650.568 569.507 651.594 572.205C651.727 572.555 652.02 572.552 652.34 572.68C654.417 572.664 659.314 572.115 660.762 573.162C661.651 574.466 661.163 580.315 661.154 582.541C654.15 582.287 646.217 582.536 639.125 582.427C635.489 582.371 626.339 582.225 623.057 582.602C623.05 578.845 623.022 575.019 623.082 571.268C623.133 568.271 623.37 565.761 623.264 562.738C620.363 562.475 616.809 562.722 613.665 562.54C613.624 560.747 613.306 554.612 614.007 553.39C619.561 553.168 626.931 553.249 632.527 553.401C632.854 556.731 632.31 559.898 632.163 563.215C632.027 566.288 632.071 569.386 632.149 572.46Z" fill="#9E2184"/> +<path d="M661.38 667.923C664.457 667.954 667.568 667.814 670.619 668.13C670.896 673.009 670.714 677.93 670.64 682.814C670.622 684.156 670.58 685.392 670.94 686.699C672.608 688.138 685.814 686.454 688.854 687.548C689.963 688.816 689.317 703.21 689.227 705.823C686.176 705.989 683.12 705.941 680.078 705.678C671.219 705.761 660.37 706.019 651.603 705.681C651.394 702.59 651.626 699.695 651.477 696.678C654.701 696.669 658.128 696.713 661.331 696.568C661.488 687.371 661.587 677.096 661.38 667.923Z" fill="#9E2184"/> +<path d="M528.387 496.087C530.392 495.923 536.089 495.91 538.037 496.135C538.223 502.51 537.917 509.03 538.094 515.326C539.648 515.331 545.836 514.83 546.566 515.676C547.981 517.312 547.103 523.228 546.253 525.192C544.34 525.21 540.016 524.908 538.777 525.927C538.193 526.975 538.484 532.964 538.41 535.042C538.408 544.775 538.73 544.489 528.359 543.486C528.371 540.762 528.511 536.497 528.322 533.901C525.1 533.973 521.89 534.074 518.668 533.999C518.668 531.395 518.532 527.155 518.7 524.683C521.104 524.566 526.737 525.142 528.014 523.985C528.843 522.421 528.345 517.239 528.274 515.161C525.17 515.091 521.752 515.196 518.728 515.057C518.62 511.758 518.663 508.488 518.689 505.188C520.892 505.501 525.921 505.387 528.32 505.366C528.435 502.31 528.392 499.154 528.387 496.087Z" fill="#9E2184"/> +<path d="M642.264 505.118C642.204 503.407 641.724 497.394 642.734 496.296C644.663 495.78 659.24 495.83 661.001 496.326C661.432 499.055 660.959 502.599 661.236 505.354C664.22 505.372 678.371 505.034 680.028 505.739C680.715 506.928 680.8 514.693 679.982 514.852C677.35 515.362 673.607 515.028 670.837 515.091C670.738 518.501 671.13 531.496 670.408 533.634C669.141 534.346 663.181 534.01 661.365 534.016C661.363 531.083 661.466 527.406 661.333 524.535C659.41 524.503 653.1 524.766 651.876 524.03C650.579 521.69 652.231 509.427 651.402 506.188C650.975 504.521 644.029 505.238 642.264 505.118Z" fill="#9E2184"/> +<path d="M537.8 715.759C537.717 717.188 537.71 718.737 537.712 720.175C537.731 728.225 537.489 736.388 537.724 744.429C540.775 744.521 554.124 744.07 556.104 744.865C556.89 746.499 556.507 760.133 556.468 762.89C553.568 762.802 550.321 763.023 547.251 762.966C547.263 759.82 547.256 756.672 547.226 753.526C542.84 753.111 533.451 753.422 528.597 753.374C528.634 747.091 528.288 741.057 528.33 734.724C525.412 734.597 521.759 734.729 518.719 734.687C518.546 731.79 518.664 728.154 518.708 725.245C521.715 725.16 525.004 725.236 528.035 725.252C528.235 722.242 528.159 718.889 528.15 715.842C531.077 715.895 534.93 715.953 537.8 715.759Z" fill="#9E2184"/> +<path d="M328.554 477.12C338.49 476.969 348.735 477.085 358.696 477.097C358.763 480.336 358.815 484.025 358.554 487.231C349.274 487.037 337.382 487.588 328.406 486.967C328.26 492.953 328.481 498.96 328.264 505.019C325.797 505.307 322.512 505.212 319.97 505.21C319.743 505.22 319.487 505.313 319.255 505.377C318.632 506.624 318.883 513.441 319.03 515.101C313.14 515.122 306.024 515.318 300.238 515.039C300.13 513.381 299.834 507.038 300.574 505.81C302.656 505.014 315.637 505.423 319.085 505.29C319.255 499.153 318.982 492.849 319.229 486.711C322.229 486.654 325.369 486.737 328.381 486.779C328.392 483.82 328.267 479.97 328.554 477.12Z" fill="#9E2184"/> +<path d="M443.254 705.738C448.071 705.717 453.81 705.441 458.54 705.736C469.33 706.411 480.012 706.208 490.826 706.19C490.914 710.062 490.616 712.804 490.181 716.662C489.93 718.891 490.393 722.512 489.593 724.602C487.966 725.333 483.336 725.061 481.349 725.04C480.844 724.69 481.086 717.63 481.093 716.508C476.532 716.185 467.095 716.515 462.236 716.533C462.082 719.29 462.066 722.281 462.004 725.058L452.427 725.072C452.27 722.173 452.322 718.661 452.293 715.713C449.273 715.505 446.394 715.955 443.089 715.563C443.003 713.837 442.767 707.063 443.254 705.738Z" fill="#9E2184"/> +<path d="M604.094 477.093L613.658 477.103C613.727 480.59 613.923 503.294 613.264 504.843C611.722 505.474 605.924 505.143 604.002 505.102C603.72 508.382 604.018 511.636 603.686 515.064C601.162 515.21 596.553 515.254 594.066 515.01C593.875 508.773 594.124 502.116 593.995 495.79C591.104 495.674 588.062 495.757 585.161 495.786C585.246 494.697 584.734 487.234 585.599 486.879C588.869 485.537 600.964 487.686 603.672 486.227C604.416 484.852 604.114 479.114 604.094 477.093Z" fill="#9E2184"/> +<path d="M509.276 553.36C511.466 553.661 516.898 552.825 518.182 554.05C518.841 556.136 518.935 568.141 518.832 571.06C518.716 574.32 517.746 578.598 518.645 582.406L499.772 582.433L499.765 572.943C498.297 572.374 483.876 572.826 480.97 572.671C480.901 569.412 480.975 566.492 481.005 563.257C490.468 563.264 500.276 563.412 509.712 563.285C509.733 559.5 509.668 557.161 509.276 553.36Z" fill="#9E2184"/> +<path d="M367.609 611.043C370.459 611.017 373.393 611.113 376.249 611.172C376.259 614.204 376.2 617.632 376.407 620.622C379.383 620.758 383.018 620.648 386.07 620.704C388.57 620.75 393.049 620.895 395.379 620.631C395.404 623.532 395.371 626.474 395.364 629.379C391.078 629.533 386.844 629.688 382.556 629.531C379.03 629.402 370.905 628.415 367.601 629.02C367.114 629.678 367.162 629.711 367.056 630.498C366.881 632.911 366.735 637.033 366.957 639.454C361.09 639.072 354.364 639.729 348.06 639.296C347.905 637.201 347.347 632.238 348.524 630.694C349.907 629.794 355.039 630.134 357.234 630.092C357.597 627.74 357.537 623.876 357.558 621.372C360.028 621.252 363.151 621.377 365.52 621.312C369.241 621.209 365.558 613.503 367.609 611.043Z" fill="#9E2184"/> +<path d="M245.08 486.391L261.106 486.333C263.132 486.323 268.288 486.167 270.085 486.561C271.264 487.707 271.383 503.439 270.709 504.678C270.062 505.129 269.444 505.029 268.629 505.043C260.554 505.146 250.765 505.428 242.799 505.078C242.921 499.367 242.441 492.515 242.396 486.511L245.08 486.391Z" fill="#9E2184"/> +<path d="M252.553 515.324C261.901 515.117 271.339 515.389 280.696 515.282C283.948 515.245 287.27 515.255 290.516 515.366C290.545 517.498 290.966 522.431 289.965 523.895C288.644 524.799 282.485 524.351 280.287 524.356C278.176 524.393 273.547 524.045 271.945 524.646C270.657 525.961 271.214 531.402 271.086 533.911C266.83 534.24 256.68 534.135 252.307 533.97C252.173 531.35 251.862 516.982 252.553 515.324Z" fill="#9E2184"/> +<path d="M632.503 533.768C633.054 529.284 633.268 525.684 632.902 521.196C632.831 520.322 632.748 516.094 633.236 515.569C634.695 515.15 640.572 515.087 641.846 515.729C642.513 516.971 642.162 531.524 642.141 534.112C644.879 534.324 649.062 534.184 651.897 534.202C654.414 534.219 659.051 534.322 661.365 534.016C661.245 536.371 661.685 541.121 660.929 543.014C659.749 543.52 626.281 543.658 623.522 543.277C622.902 542.109 622.851 536.218 623.296 535.03C623.987 533.186 630.77 535.148 632.503 533.768Z" fill="#9E2184"/> +<path d="M309.879 620.733C312.523 620.587 316.163 620.688 318.882 620.685L318.921 630.059C321.787 630.124 325.47 629.923 328.367 629.828C328.336 633.03 328.346 636.232 328.399 639.434C325.532 639.336 321.801 639.362 318.927 639.456C318.67 644.57 319.316 653.74 318.603 658.346C317.111 658.75 311.435 658.642 309.655 658.638C309.553 652.27 309.781 645.855 309.589 639.485C306.82 639.247 303.247 639.342 300.403 639.346C300.543 636.419 300.62 633.585 300.483 630.656C301.784 630.622 304.147 630.461 305.388 630.696C312.418 632.026 308.537 624.888 309.879 620.733Z" fill="#9E2184"/> +<path d="M681.282 734.846C683.255 734.786 687.505 734.443 689.153 735.153C689.865 736.478 689.381 768.495 689.19 772.54C685.283 772.606 683.386 772.47 679.616 772.086C676.684 772.097 673.755 772.083 670.824 772.049C670.803 766.059 670.708 759.852 670.828 753.883C673.691 753.646 677.242 753.791 680.227 753.708C680.519 748.769 679.886 740.398 680.519 735.353C680.554 735.07 680.946 734.994 681.282 734.846Z" fill="#9E2184"/> +<path d="M632.732 601.736C635.843 601.693 638.957 601.691 642.071 601.732C642.28 604.654 641.995 608.079 642.124 611.196C644.246 611.223 649.625 610.846 650.962 611.776C651.815 613.099 651.43 618.495 651.448 620.656C653.838 620.735 656.221 620.575 658.605 620.615C662.055 620.672 661.483 623.408 661.329 625.849C661.236 627.318 661.213 628.719 660.967 630.181C656.821 630.605 646.735 630.299 642.267 630.283L642.216 620.664C639.144 620.564 635.666 620.633 632.566 620.627C632.419 618.044 632.177 603.661 632.732 601.736Z" fill="#9E2184"/> +<path d="M673.861 630.198C676.147 630.199 688.093 629.826 689.144 630.566C689.833 632.386 689.452 637.31 689.174 639.319C675.488 640.105 682.264 637.916 679.828 648.427C679.713 648.925 672.465 648.674 671.575 648.966C671.126 649.114 668.553 649.448 667.809 649.461C662.409 649.5 657.012 649.474 651.612 649.385C651.377 646.774 651.464 642.453 651.522 639.779C657.689 639.575 664.606 639.702 670.764 639.8C670.821 636.652 670.847 633.505 670.84 630.357C671.766 630.268 672.914 630.245 673.861 630.198Z" fill="#9E2184"/> +<path d="M556.884 477.177C562.826 476.943 569.618 477.092 575.626 477.099C575.64 480.08 575.73 483.312 575.497 486.265C572.531 486.394 569.067 486.274 566.006 486.328C565.852 489.205 565.935 492.845 565.93 495.782C563.872 495.746 558.329 495.558 556.585 496.018C556.354 498.632 556.541 502.267 556.368 505.185C553.365 505.25 550.362 505.247 547.359 505.174L547.322 504.704C547.182 502.685 546.935 487.804 547.733 486.895C549.514 486.219 554.335 486.577 556.43 486.641C556.686 484.22 556.241 478.91 556.884 477.177Z" fill="#9E2184"/> +<path d="M500.162 744.464C503.2 744.397 506.237 744.448 509.27 744.616C509.409 750.663 509.289 757.027 509.254 763.093L518.482 763.102C518.655 766.144 518.374 769.223 518.604 772.194C516.074 772.113 511.195 772.47 509.137 771.666C508.54 771.392 501.683 771.323 500.427 771.23C500.397 768.465 500.416 765.697 500.478 762.931C497.579 762.756 493.686 762.908 490.593 762.825L490.565 753.63C493.578 753.724 496.661 753.669 499.68 753.653C499.796 751.624 499.409 745.775 500.162 744.464Z" fill="#9E2184"/> +<path d="M271.41 563.261C275.498 563.136 279.64 563.276 283.73 563.242C285.85 563.224 288.503 563.35 290.57 563.051C290.541 565.539 290.601 570.093 290.353 572.451C288.193 572.528 282.722 572.277 281.427 573.209C280.6 574.484 280.953 580.776 281.061 582.603C279.259 582.238 264.505 582.388 262.258 582.556C262.27 580.397 261.974 574.896 262.575 573.194C263.071 571.79 268.655 573.301 270.92 572.357C271.757 571.211 271.402 565.278 271.41 563.261Z" fill="#9E2184"/> +<path d="M243.695 543.664C246.217 543.657 260.929 543.232 262.054 544.209C262.576 546.3 262.232 550.627 262.134 552.935C259.644 553.049 255.469 552.68 253.339 553.281C251.661 555.394 254.104 561.924 251.866 562.641C245.916 562.839 240.041 562.683 234.094 562.515C234.101 552.243 231.706 550.907 243.359 552.945C243.49 550.445 242.991 545.624 243.695 543.664Z" fill="#9E2184"/> +<path d="M442.762 476.059L442.978 476.022C443.629 476.892 443.122 501.656 443.277 505.188C440.169 505.204 437.06 505.196 433.952 505.166C434.089 502.65 434.005 499.341 434.004 496.767L433.758 496.144C432.455 495.489 426.318 495.825 424.208 495.712C424.159 492.716 424.156 489.72 424.198 486.724C427.019 486.445 429.591 486.748 432.424 486.596C434.376 486.769 434.065 484.029 433.879 482.692C432.827 475.123 436.329 476.59 442.762 476.059Z" fill="#9E2184"/> +<path d="M347.962 591.809C353.041 591.919 362.492 591.497 366.982 592C367.024 594.115 367.367 599.485 366.635 601.208C365.06 602.303 359.424 600.823 357.866 601.98C357.107 602.543 357.384 609.368 357.308 610.471C356.408 610.461 353.07 610.39 352.407 610.595C349.961 611.353 350.857 611.661 348.078 611.679C347.965 613.794 348.255 618.608 347.423 620.037C346.008 621.23 340.428 620.637 338.231 620.589C338.167 617.622 338.848 617.098 338.768 614.582C338.734 613.529 338.447 613.542 338.845 612.414C339.859 612.166 346.461 611.632 347.916 611.529C348.35 605.852 347.944 597.748 347.962 591.809Z" fill="#9E2184"/> +<path d="M661.559 601.79C664.264 601.762 678.132 602.076 679.996 603.056C680.704 604.444 680.261 609.554 680.469 611.6C685.357 611.706 689.913 609.772 689.406 616.113C689.286 617.612 690.038 618.712 689.418 620.488C687.263 620.626 672.409 620.83 671.158 620.276C670.104 618.473 671.381 614.146 670.632 611.836C667.244 608.989 660.261 615.152 661.268 606.131C661.427 604.712 661.042 603.262 661.559 601.79Z" fill="#9E2184"/> +<path d="M594.974 639.527C597.281 639.905 602.356 639.137 603.467 640.046C603.838 642.585 603.672 648.455 603.64 651.202C603.578 656.687 603.67 662.415 603.52 667.88C600.699 668.013 597.055 667.918 594.17 667.925C591.135 667.937 588.12 667.981 585.087 667.829C584.939 665.285 585.073 661.549 585.094 658.92L594.177 658.905C594.338 657.749 594.486 656.456 594.46 655.288C594.34 649.955 595.082 644.86 594.974 639.527Z" fill="#9E2184"/> +<path d="M280.157 476.121C283.602 476.496 287.294 476.935 290.734 477.15C290.603 480.687 290.827 504.64 290.246 505.476C287.625 505.809 282.8 506.395 280.358 506.564C280.413 496.585 280.202 486.136 280.157 476.121Z" fill="#9E2184"/> +<path d="M300.2 761.279C302.724 761.26 305.248 761.256 307.772 761.27L309.386 762.593C312.185 762.576 316.241 762.659 318.923 762.401C318.92 767.317 319.059 776.99 318.704 782.205C318.59 782.334 318.476 782.466 318.362 782.595C304.752 782.832 311.246 782.166 309.381 773.231C309.18 772.265 303 774.183 300.711 773.434C299.726 772.293 300.175 763.517 300.2 761.279Z" fill="#9E2184"/> +<path d="M360.114 504.608C361.367 504.558 365.678 504.279 366.434 504.704C367.714 505.424 367.019 513.499 366.546 514.711C365.589 515.51 348.045 515.139 345.667 515.14L338.428 515.111C338.386 511.728 338.4 508.345 338.468 504.963C345.183 505.047 353.179 504.647 360.114 504.608Z" fill="#9E2184"/> +<path d="M471.457 582.599C480.136 582.778 491.031 582.772 499.685 582.582C499.468 585.756 499.719 589.153 499.491 592.477C495.776 592.555 491.646 592.243 487.869 592.132L471.194 591.806C471.102 589.624 470.888 584.48 471.457 582.599Z" fill="#9E2184"/> +<path d="M663.152 717.093L670.619 716.893C670.653 723.251 670.907 729.26 670.773 735.644C666.5 735.764 663.315 735.121 659.119 735.109C656.475 735.132 653.829 735.081 651.19 734.964C651.285 731.744 651.269 728.389 651.299 725.157C653.336 725.22 659.688 725.505 661.273 724.872C662.956 722.936 660.084 718.306 663.152 717.093Z" fill="#9E2184"/> +<path d="M575.138 495.993C577.848 496.001 582.54 496.158 585.092 495.952C585.08 498.957 585.126 502.162 585.046 505.149C581.916 505.211 578.786 505.235 575.656 505.222C575.571 508.385 575.435 511.958 575.493 515.1C572.9 514.788 568.802 514.967 566 514.886C566.016 508.829 566.163 501.958 565.977 495.973L575.138 495.993Z" fill="#9E2184"/> +<path d="M328.485 734.747C331.782 734.803 335.079 734.8 338.376 734.734C338.138 737.559 338.246 741.486 338.312 744.363C340.503 744.671 345.507 744.459 347.912 744.411C347.905 746.766 347.996 751.203 347.762 753.385L335.453 753.42C333.601 753.427 330.207 753.367 328.457 753.581C328.743 748.827 328.581 739.619 328.485 734.747Z" fill="#9E2184"/> +<path d="M561.568 515.197C563.091 515.226 564.354 515.222 565.873 515.154L565.921 533.97L556.511 533.992L556.44 543.435L551.955 543.462C550.399 543.469 548.846 543.449 547.292 543.401C546.211 531.815 547.062 534.797 556.313 534.065C556.267 532.873 556.255 531.729 556.366 530.539C556.838 525.489 556.737 520.446 556.735 515.376C558.247 515.263 560.033 515.247 561.568 515.197Z" fill="#9E2184"/> +<path d="M366.402 744.482C369.672 744.503 373.005 744.452 376.281 744.436L376.313 759.444C376.315 761.56 376.43 766.485 376.02 768.377C374.069 768.426 369.731 768.654 368.081 768.304C367.643 767.774 367.496 767.405 367.514 766.66C367.635 761.514 367.441 756.289 366.854 751.177C366.575 748.741 366.28 746.928 366.402 744.482Z" fill="#9E2184"/> +<path d="M508.564 705.784L528.161 705.704V715.759C521.701 715.628 515.02 715.93 508.576 715.611C508.597 712.337 508.592 709.062 508.564 705.784Z" fill="#9E2184"/> +<path d="M594.702 572.722C600.775 572.546 607.558 572.596 613.64 572.689C613.649 574.216 613.794 581.753 613.391 582.427C607.187 582.224 600.51 582.716 594.32 582.352C594.253 580.316 593.773 574.053 594.702 572.722Z" fill="#9E2184"/> +<path d="M481.14 668.121C483.924 668.14 497.824 667.507 499.099 668.705C499.661 670.592 499.578 676.113 499.075 677.948C494.413 678.485 486.467 677.908 481.689 677.793C480.368 677.762 480.654 669.452 481.14 668.121Z" fill="#9E2184"/> +<path d="M281.094 591.84C281.001 595.054 281.053 598.388 280.972 601.655C274.933 601.42 268.596 601.774 262.357 601.52C262.13 599.081 262.292 594.56 262.28 591.914C268.142 591.786 275.451 592.17 281.094 591.84Z" fill="#9E2184"/> +<path d="M471.674 620.937C474.591 620.836 477.763 620.885 480.699 620.879L480.685 631.197L490.549 631.026C490.574 633.076 490.837 637.555 490.074 639.437C489.959 639.721 489.521 639.752 489.132 639.867C485.043 639.884 484.734 641.05 479.913 640.384C480.259 638.339 480.362 633.539 480.468 631.247C478.226 631.253 475.004 631.636 472.99 630.898C472.598 629.869 472.294 627.81 472.169 626.66C471.98 624.916 470.876 622.466 471.674 620.937Z" fill="#9E2184"/> +<path d="M613.723 582.574C616.166 582.733 620.321 582.595 622.893 582.591C623.02 588.85 623.004 595.11 622.847 601.367C620.95 602.089 615.832 601.784 613.693 601.685C613.442 596.739 613.594 587.573 613.723 582.574Z" fill="#9E2184"/> +<path d="M623.97 477.138C629.008 476.945 635.823 477.049 640.939 477.177C641.209 477.254 641.856 477.342 641.912 477.679C642.177 479.264 642.986 485.663 641.356 486.327C637.775 486.521 626.33 486.597 623.124 486.246C623.055 483.719 622.9 480.831 623.098 478.312C623.156 477.561 623.481 477.457 623.97 477.138Z" fill="#9E2184"/> +<path d="M661.319 582.616C664.447 582.763 678.876 582.068 680.319 583.177C680.932 585.024 680.547 589.502 680.457 591.613C678.867 592.189 664.073 591.842 661.342 591.812L661.319 582.616Z" fill="#9E2184"/> +<path d="M434.316 667.936C435.592 667.916 442.855 667.532 443.001 668.545C443.428 671.523 443.143 684.252 442.276 686.756C440.743 687.268 436 687.547 435.083 686.902C433.102 685.508 433.642 669.112 434.316 667.936Z" fill="#9E2184"/> +<path d="M481.033 649.688L499.553 649.68C499.542 651.488 499.772 657.352 499.051 658.477C493.787 658.567 486.062 658.79 480.909 658.442C480.849 656.315 480.653 651.567 481.033 649.688Z" fill="#9E2184"/> +<path d="M651.602 753.321C654.442 753.097 658.203 753.136 661.102 753.194C661.437 755.552 661.201 760.362 661.118 762.897C657.922 762.998 654.723 763.049 651.526 763.051C651.672 759.716 651.487 756.563 651.602 753.321Z" fill="#9E2184"/> +<path d="M453.279 620.762C455.951 620.613 459.357 620.746 462.031 620.859C462.238 623.272 462.1 626.396 462.056 628.854C462.042 629.732 461.989 629.864 461.5 630.308C458.431 630.36 455.358 630.353 452.29 630.284C452.257 627.851 452.002 623.551 452.477 621.184C452.537 620.885 452.875 620.888 453.279 620.762Z" fill="#9E2184"/> +<path d="M452.638 477.082L462.022 477.094C462.054 479.282 462.25 485.068 461.75 486.957L461.459 486.995C450.971 488.292 452.552 486.346 452.638 477.082Z" fill="#9E2184"/> +<path d="M677.523 543.286C678.367 543.121 679.482 543.039 680.275 543.399C680.83 544.619 680.501 551.137 680.459 552.955C678.3 553.011 675.917 552.957 673.739 552.954C672.776 552.95 671.785 552.911 670.819 552.887C670.738 549.821 670.74 546.754 670.823 543.688C673.234 543.534 675.048 543.78 677.523 543.286Z" fill="#9E2184"/> +<path d="M452.459 678.057C455.649 677.974 458.843 677.978 462.033 678.066C462.328 680.148 462.307 685.16 462.024 687.258C458.79 687.296 455.555 687.29 452.32 687.239C452.262 685.172 452.044 679.878 452.459 678.057Z" fill="#9E2184"/> +<path d="M672.689 563.124C675.431 563.089 677.941 563.167 680.679 563.267C680.746 565.459 681.029 569.65 680.506 571.815C680.377 572.344 679.794 572.368 679.386 572.438C677.303 572.433 673.06 572.716 671.264 572.244C670.483 570.527 670.492 565.692 671.045 563.767C671.686 563.067 671.486 563.29 672.689 563.124Z" fill="#9E2184"/> +<path d="M499.827 725.273C502.948 725.151 506.112 725.236 509.24 725.28C509.279 727.704 509.422 732.468 509.136 734.74C505.986 734.773 502.833 734.766 499.68 734.717C499.615 732.256 499.445 727.575 499.827 725.273Z" fill="#9E2184"/> +<path d="M423.916 534.13C424.406 534.563 424.065 542.182 424.181 543.629L415.041 543.651C413.993 542.796 414.244 535.905 415.183 534.565C416.557 533.683 421.861 534.191 423.916 534.13Z" fill="#9E2184"/> +<path d="M338.423 725.167C341.549 725.282 344.821 725.243 347.961 725.25C347.924 728.414 347.905 731.578 347.906 734.743L338.375 734.734L338.423 725.167Z" fill="#9E2184"/> +<path d="M603.942 534.225L613.607 534.234C614.015 545.824 614.81 543.15 603.872 543.497C603.882 540.79 603.727 536.785 603.942 534.225Z" fill="#9E2184"/> +<path d="M433.937 591.888C436.991 591.832 440.045 591.831 443.098 591.884C443.261 594.989 443.154 598.429 443.114 601.566L433.853 601.536C433.924 598.571 433.732 594.647 433.937 591.888Z" fill="#9E2184"/> +<path d="M528.438 762.892C531.132 762.874 535.391 762.731 537.982 763.074C537.943 765.759 538.111 769.737 537.855 772.238C534.963 772.24 531.197 772.136 528.374 772.286C528.362 769.152 528.328 766.024 528.438 762.892Z" fill="#9E2184"/> +<path d="M565.99 534.066C569.247 534.228 572.416 534.166 575.649 534.253L575.624 543.594C573.732 543.316 568.189 543.441 566.018 543.446C566.009 540.352 566.046 537.15 565.99 534.066Z" fill="#9E2184"/> +<path d="M433.852 601.536C433.554 602.968 433.709 609.382 433.838 611.026C430.671 611 427.542 610.944 424.377 611.088C423.879 610.435 424.165 603.044 424.211 601.776C426.59 601.646 431.93 601.876 433.852 601.536Z" fill="#9E2184"/> +<path d="M661.861 477.137C664.837 477.085 667.812 477.054 670.79 477.045C670.833 479.642 670.988 482.981 670.688 485.58C670.619 486.157 670.382 486.19 669.983 486.441C667.081 486.534 664.175 486.547 661.271 486.481C661.177 484.623 660.866 478.242 661.861 477.137Z" fill="#9E2184"/> +<path d="M377.109 734.84C379.752 734.731 383.196 734.706 385.803 734.888C385.763 736.72 386.034 742.961 385.524 744.22L384.846 744.229C382.075 744.243 379.23 744.213 376.468 744.358C376.453 741.599 376.241 738.734 376.341 735.978C376.367 735.271 376.67 735.148 377.109 734.84Z" fill="#9E2184"/> +<path d="M528.385 477.113C531.499 477.052 534.753 477.099 537.88 477.099C537.924 480.003 538.025 483.466 537.797 486.315C534.73 486.497 531.432 486.486 528.339 486.524L528.385 477.113Z" fill="#9E2184"/> +<path d="M428.934 715.699C430.322 715.607 432.256 715.653 433.687 715.646C433.683 718.67 433.746 722.014 433.532 724.996C432.184 725.068 430.366 725.019 428.982 725.022L424.183 724.996C424.107 722.042 424.171 718.817 424.172 715.842L428.934 715.699Z" fill="#9E2184"/> +<path d="M281.975 734.849C284.626 734.724 287.774 734.793 290.471 734.796C290.484 736.409 290.824 743.422 289.828 744.194C286.919 744.27 284.009 744.247 281.102 744.13C280.998 741.88 280.842 737.605 281.218 735.337C281.272 735.012 281.56 735.012 281.975 734.849Z" fill="#9E2184"/> +<path d="M481.044 477.122C484.155 477.045 487.421 477.098 490.546 477.106C490.546 480.177 490.473 483.248 490.325 486.316L480.89 486.285C480.844 484.351 480.641 478.766 481.044 477.122Z" fill="#9E2184"/> +<path d="M453.127 496.085C455.285 496.038 460.148 495.557 461.633 496.538C462.679 498.018 462.059 503.028 461.96 505.161C458.911 505.252 455.599 505.193 452.53 505.193C452.502 502.572 452.443 499.767 452.548 497.15C452.579 496.375 452.638 496.49 453.127 496.085Z" fill="#9E2184"/> +<path d="M471.436 762.876L480.853 762.878C480.929 765.794 480.611 769.412 480.807 772.083C477.882 771.982 474.388 772.081 471.42 772.088C471.233 769.02 471.237 765.944 471.436 762.876Z" fill="#9E2184"/> +<path d="M414.569 658.83L424 658.829C424.061 661.352 424.193 665.414 423.892 667.843C420.771 667.928 417.647 667.94 414.525 667.876C414.343 665.156 414.337 661.554 414.569 658.83Z" fill="#9E2184"/> +<path d="M424.221 753.634L433.661 753.692C433.693 756.734 433.666 759.776 433.58 762.816C430.454 762.869 427.328 762.876 424.202 762.837C424.147 759.836 424.211 756.649 424.221 753.634Z" fill="#9E2184"/> +<path d="M367.026 649.445C366.92 652.505 367.06 655.329 366.754 658.431C363.63 658.491 360.506 658.494 357.382 658.441C357.346 656.442 357.167 651.183 357.572 649.486L367.026 649.445Z" fill="#9E2184"/> +<path d="M443.203 601.627C444.767 601.819 450.622 601.72 452.575 601.745C452.588 604.006 452.698 608.737 452.373 610.793C451.064 611.112 444.929 610.989 443.302 610.982C443.341 607.863 443.308 604.744 443.203 601.627Z" fill="#9E2184"/> +<path d="M585.401 678.088C588.187 678.013 591.642 677.974 594.391 678.143C594.562 680.147 594.726 685.412 594.2 687.19L584.988 687.162C584.991 685.228 584.689 679.175 585.401 678.088Z" fill="#9E2184"/> +<path d="M680.934 715.895C683.654 715.851 686.675 715.775 689.36 716.049C689.492 717.84 689.84 724.132 688.95 725.259C686.712 725.215 682.356 725.812 681.031 725.031C679.86 723.616 679.784 717.294 680.934 715.895Z" fill="#9E2184"/> +<path d="M575.493 515.1C578.535 515.217 581.988 515.117 584.924 515.331C584.901 517.483 584.735 522.347 584.938 524.345C582.082 524.367 578.399 524.482 575.622 524.301C575.608 521.306 575.648 518.078 575.493 515.1Z" fill="#9E2184"/> +<path d="M281.094 601.751L290.49 601.735C290.286 603.758 290.366 608.387 290.316 610.67C288.677 611.15 283.009 610.97 281.091 610.956C281.148 607.935 281.099 604.783 281.094 601.751Z" fill="#9E2184"/> +<path d="M614.021 649.519C617.028 649.478 620.036 649.463 623.043 649.474C622.76 652.4 623.336 654.965 622.746 658.39C620.861 658.613 616.424 659.117 614.696 658.45C613.002 657.796 613.276 650.66 614.021 649.519Z" fill="#9E2184"/> +<path d="M509.47 534.24C512.443 534.115 515.538 534.249 518.599 534.127C518.421 536.935 518.834 540.73 518.304 543.409L509.274 543.435C509.318 541.224 509.076 536.128 509.47 534.24Z" fill="#9E2184"/> +<path d="M556.686 763.143C558.795 763.323 563.566 763.134 565.949 763.116C565.785 766.096 566.094 769.189 565.785 772.166C563.925 772.461 558.507 772.245 556.502 772.164C556.702 769.119 556.677 766.19 556.686 763.143Z" fill="#9E2184"/> +<path d="M556.489 687.211C556.493 689.921 556.599 693.604 556.263 696.217C553.428 696.391 550.029 696.335 547.146 696.348C547.265 693.521 547.194 690.153 547.231 687.263C550.284 687.206 553.426 687.228 556.489 687.211Z" fill="#9E2184"/> +<path d="M680.061 658.878C684.113 658.938 690.197 657.297 689.547 663.039C689.363 664.685 689.812 666.221 689.169 667.899C687.229 667.891 682.467 668.417 681.269 667.689C680.503 666.745 679.95 660.236 680.061 658.878Z" fill="#9E2184"/> +<path d="M319.119 753.657C322.01 753.667 325.638 753.766 328.457 753.581C328.261 755.098 328.356 760.429 328.353 762.247C325.707 762.079 321.819 762.203 319.077 762.215C319.194 759.573 319.116 756.34 319.119 753.657Z" fill="#9E2184"/> +<path d="M234.078 591.61L245.091 591.891C247.139 591.956 250.913 592.171 252.798 591.883C252.74 598.113 252.728 604.343 252.76 610.573C252.762 613.261 252.608 618.234 252.811 620.713C256.158 620.909 259.82 620.741 263.2 620.75C265.738 620.756 268.862 620.893 271.331 620.593C271.38 617.46 271.398 614.327 271.387 611.194C274.618 611.151 277.849 611.16 281.08 611.22C280.811 613.089 281.035 618.573 281.08 620.733C287.078 620.883 294.264 620.44 300.064 620.876C300.135 623.74 299.926 627.947 300.143 630.522C299.007 630.445 297.467 630.319 296.333 630.43C291.309 630.92 286.357 630.89 281.313 630.923C281.246 633.716 281.087 636.978 281.121 639.734C285.112 639.798 289.105 639.815 293.097 639.786C294.85 639.78 298.429 639.833 300.019 639.617C300.011 645.783 299.84 652.761 300.03 658.859L309.55 658.893C309.529 661.74 309.571 665.059 309.388 667.873C306.004 667.964 293.009 667.608 290.926 668.347C290.192 669.359 290.521 676.236 290.54 678.008L299.99 678.049C300.022 681.035 300.03 684.022 300.015 687.008C294.417 686.946 286.313 686.722 280.891 687.04L280.875 696.637C283.847 696.646 287.611 696.552 290.519 696.704C290.548 698.799 290.999 703.864 289.919 705.277C288.58 706.146 283.227 705.717 281.085 705.805C281.011 709.087 280.819 713.132 280.961 716.349C284.918 716.379 288.883 716.42 292.84 716.513C294.811 716.559 297.444 716.31 299.32 716.63C300.422 717.942 300.248 732.83 299.578 734.468C298.056 734.989 292.522 734.685 290.538 734.743C290.588 731.592 290.712 728.195 290.518 725.068C286.654 725.024 264.725 725.393 262.833 724.602C260.935 722.394 263.769 715.478 261.074 715.457C258.552 715.436 255.366 715.644 252.699 715.598L252.709 705.768C255.515 705.872 258.512 705.745 261.249 705.957C261.251 702.751 261.301 699.4 261.226 696.208C258.278 696.259 255.221 696.272 252.284 696.381C252.288 698.979 252.174 702.98 252.35 705.464C249.464 705.473 246.578 705.466 243.692 705.446C243.797 699.451 243.676 693.487 243.74 687.511C246.447 687.814 249.273 687.442 252.06 687.672C252.043 684.914 252.113 681.515 251.813 678.844L251.77 678.448L251.741 678.21C249.05 678.367 246.44 678.28 243.748 678.228C243.512 681.057 243.555 684.353 243.528 687.23C236.685 687.168 229.843 687.156 223 687.196V678.042L243.843 678.041C244.142 674.705 244.213 672.299 244.228 668.965C241.089 668.707 236.808 668.821 233.567 668.826C233.944 662.026 234.405 656.031 234.126 649.126C233.994 645.863 233.6 642.546 233.62 639.362L243.468 639.319C243.396 642.708 243.371 646.098 243.393 649.487L254.461 649.496C256.467 649.502 259.45 649.632 261.362 649.363C262.55 648.315 262.037 646.491 262.402 645.054C262.799 643.496 263.619 640.471 262.669 639.002C259.326 639.634 247.748 639.362 243.736 639.345C243.882 636.82 243.78 633.571 243.761 630.986C240.581 631.133 237.259 631.059 234.063 631.034L234.086 620.682L243.454 620.68C243.666 614.867 243.591 607.44 243.492 601.611L234.073 601.541L234.078 591.61ZM271.179 677.984C267.933 678 264.268 677.934 261.057 678.054C260.829 680.55 260.531 694.019 261.197 695.807C262.732 696.418 268.242 696.094 270.389 696.195C270.829 695.981 271.1 695.975 271.137 695.601C271.628 690.592 271.323 682.97 271.336 678.04C274.259 678.027 278.13 678.125 280.977 677.96C281.11 674.58 281.043 671.247 281.001 667.865L271.445 667.854C270.955 669.672 271.152 675.852 271.179 677.984ZM252.942 658.472C252.489 659.905 252.343 666.357 252.734 667.698C253.541 668.361 260.432 668.084 261.957 668.07C262.667 666.663 262.254 660.338 262.222 658.404L252.942 658.472ZM290.526 649.252C287.391 649.185 284.255 649.165 281.119 649.192C280.59 651.063 280.835 656.761 280.883 658.933C283.988 658.914 287.305 658.955 290.391 658.863C290.692 656.446 290.555 651.828 290.526 649.252ZM263.69 640.465C266.5 640.325 269.058 640.307 271.87 640.307C271.902 636.552 271.84 632.538 271.956 628.816C269.723 628.707 264.994 629.119 263.577 627.916C263.601 631.316 263.408 637.327 263.69 640.465Z" fill="#9E2184"/> +<path d="M252.946 582.659C256.024 582.664 259.102 582.646 262.179 582.606L262.197 591.825C259.086 591.805 255.898 591.738 252.797 591.883C253.03 588.74 252.742 585.677 252.946 582.659Z" fill="#9E2184"/> +<path d="M1216.11 521.292C1221.5 521.272 1230.06 521.513 1235.29 521.149C1235.26 523.175 1234.84 528.409 1235.78 529.777C1237 530.655 1242.79 530.248 1244.9 530.339C1244.97 532.553 1244.56 538.542 1245.47 539.788C1246.88 540.682 1252.36 540.285 1254.31 540.131C1254.39 536.944 1254.42 533.756 1254.39 530.568C1256.65 530.523 1261.71 530.202 1263.66 530.898C1264.83 532.344 1263.97 553.657 1264.15 557.292C1264.34 561.515 1255.07 557.097 1254.56 560.218C1254.33 561.641 1254.18 567.922 1254.68 568.893C1255.64 569.456 1262.13 569.149 1264.03 569.312C1264.26 571.5 1264.11 586.755 1263.38 588.027C1260.82 589.354 1248.94 587.633 1245.61 588.614C1244.54 588.929 1244.91 596.722 1244.96 597.809C1242.85 597.819 1237.4 597.54 1235.69 598.034C1234.62 599.438 1235.61 604.833 1235.14 606.586C1234.46 609.066 1228.37 606.607 1225.88 608.01C1225.17 609.171 1225.35 616.566 1225.33 618.519C1224.03 618.48 1220.63 618.818 1219.75 618.266C1219.66 617.959 1219.47 617.186 1219.25 617.144C1216.59 616.627 1209.22 616.977 1206.69 616.854C1206.52 610.686 1206.68 604.066 1206.63 597.826C1203.42 597.793 1200.28 597.75 1197.07 597.853C1196.83 600.537 1197.05 604.487 1196.9 607.491C1193.74 607.7 1190.63 607.441 1187.5 607.705C1187.57 604.431 1187.59 601.157 1187.59 597.883C1184.71 597.719 1181.03 597.825 1178.09 597.84C1178.12 594.761 1178.1 591.682 1178.06 588.603C1186.94 588.794 1197.75 588.771 1206.62 588.553C1206.69 585.219 1206.7 581.885 1206.64 578.552C1203.9 578.372 1200.16 578.517 1197.21 578.422C1197.14 576.244 1197.6 570.767 1196.71 569.402C1195.4 568.459 1189.77 569.016 1187.57 569.051L1187.6 568.767C1189.13 553.585 1185.49 561.29 1178.69 558.582C1177.4 558.067 1178.1 551.97 1178.12 550.868C1178.11 550.48 1178.14 550.198 1178.42 550.037C1180.78 548.685 1196.36 550.992 1197.06 548.71C1197.8 546.317 1196.24 532.41 1197.81 530.622C1199.59 530.08 1204.69 530.211 1206.63 530.4C1206.79 539.604 1206.24 550.712 1206.69 559.566C1208.31 559.576 1214.22 559.225 1215.2 559.958C1216.53 562.537 1215.71 574.682 1215.89 578.481C1219.87 578.543 1223.86 578.554 1227.84 578.516C1229.75 578.51 1233.17 578.61 1234.89 578.329C1236.9 575.925 1233.51 569.97 1236.97 569.645C1238.81 569.471 1242.9 570.159 1244.68 569.311C1245.41 567.362 1245.42 551.987 1244.7 550.171C1241.42 548.631 1226.54 551.421 1225.38 548.798C1224.65 547.167 1226.39 542.998 1224.61 542.028C1222.78 541.036 1217.59 542.998 1216.48 540.903C1215.62 539.272 1216.1 524.28 1216.11 521.292ZM1225.16 597.935C1225.55 596.22 1225.88 589.983 1225.15 588.655C1223.65 588.167 1218.06 588.342 1216.24 588.351C1215.87 589.74 1215.65 596.637 1216.12 597.703C1217.51 598.201 1223.47 598.05 1225.16 597.935Z" fill="#9E2184"/> +<path d="M1159.42 750.404C1161.5 750.409 1166.78 750.017 1168.11 750.982C1169.06 752.446 1168.55 757.456 1168.6 759.653L1179.87 759.639C1181.92 759.639 1185.66 759.544 1187.54 759.908C1187.55 762.729 1187.63 765.951 1187.41 768.733C1181.79 769.067 1174.42 768.881 1168.66 768.869L1168.61 788.473L1177.98 788.408C1178.01 791.6 1178.04 794.329 1177.83 797.507C1174.79 797.385 1171.61 797.47 1168.64 797.293C1168.52 803.474 1168.34 810.881 1168.53 816.996L1179.68 816.975C1182.12 816.979 1185.12 817.065 1187.51 816.899C1187.73 814.089 1187.59 810.245 1187.56 807.339C1196.7 807.3 1206.91 807.06 1215.97 807.35C1216.04 810.356 1215.92 813.55 1215.85 816.571C1209.61 816.661 1203.38 816.565 1197.15 816.615C1196.89 819.226 1196.98 823.223 1196.98 825.963C1192.77 825.633 1182.62 825.889 1178.08 825.995C1178.04 829.381 1178.03 832.767 1178.07 836.152L1187.52 836.173C1187.55 839.3 1187.53 842.43 1187.48 845.558C1185.37 845.253 1180.4 845.389 1178.09 845.419C1177.84 848.005 1178.02 852.285 1178.06 855.018C1181.21 855.078 1184.37 855.08 1187.52 855.027C1187.62 851.888 1187.59 848.759 1187.57 845.62C1190.67 845.615 1193.92 845.664 1196.99 845.599C1196.99 848.332 1196.88 852.343 1197.17 854.998C1200.33 855.104 1203.49 855.06 1206.65 855.037C1206.65 857.869 1206.74 861.499 1206.55 864.255C1208.81 864.511 1213.5 864.454 1215.91 864.396C1215.92 867.187 1216.01 870.506 1215.92 873.253C1210.4 873.324 1202.61 873.566 1197.23 873.251C1197.2 870.248 1197.19 867.245 1197.23 864.239C1192.61 864.219 1189.66 864.338 1185.09 865.009C1181.98 865.465 1178.3 865.223 1175.08 866.035C1173.62 866.242 1171.21 866.083 1169.68 866.042C1169.95 858.565 1168.83 851.379 1168.4 843.983C1168.07 838.325 1168.63 831.709 1168.31 825.917C1163.1 825.82 1154.84 825.719 1149.74 825.993C1149.77 823.043 1149.85 819.614 1149.68 816.673C1147.17 816.601 1143.25 816.595 1140.75 816.756C1140.75 813.661 1140.79 810.411 1140.71 807.33C1146.27 807.33 1153.74 807.565 1159.15 807.304C1159.17 803.027 1159.47 801.619 1160.06 797.466C1160.27 795.979 1160.15 790.443 1160.14 788.62L1149.73 788.669C1149.71 791.704 1149.75 794.615 1149.46 797.636C1146.96 797.636 1142.9 797.509 1140.53 797.671C1140.49 800.865 1140.48 804.059 1140.51 807.254C1137.57 806.956 1133.86 807.237 1130.73 807.076C1131.23 800.519 1130.73 794.573 1131.15 788.77C1137.24 788.491 1143.8 789.003 1149.68 788.724C1149.65 785.26 1149.46 780.289 1149.7 776.945C1151.46 776.892 1158.14 776.873 1159.25 776.26C1159.6 774.573 1159.56 767.279 1159.52 765.142C1159.43 760.662 1159.75 754.764 1159.42 750.404Z" fill="#9E2184"/> +<path d="M1216.1 702.28C1222.51 702.247 1228.92 702.388 1235.32 702.702C1235.35 705.958 1235.36 709.215 1235.34 712.471C1232.87 712.059 1228.17 711.953 1225.55 712.171C1225.5 715.087 1225.36 719.106 1225.57 722.001C1228.73 722.003 1232.11 722.04 1235.27 721.84L1235.24 731.091C1231.97 731.045 1228.83 731.008 1225.55 731.095C1225.53 732.96 1225.31 739.226 1225.48 740.747C1222.96 740.69 1218.37 740.6 1215.92 740.793L1215.89 759.408C1211.34 759.425 1201.33 759.703 1197.23 759.319C1197.18 757.265 1196.69 752.287 1197.78 750.89C1199.13 750.028 1204.67 750.494 1206.85 750.427C1207.04 744.852 1206.99 739.272 1207.08 733.697C1207.12 731.243 1205.98 723.974 1207.49 722.268C1209.91 721.217 1214.08 723.554 1216 721.459C1216.24 720.736 1216.2 720.298 1216.2 719.544L1216.1 702.28Z" fill="#9E2184"/> +<path d="M1130.88 711.713C1134.04 711.664 1137.26 711.685 1140.42 711.674L1140.56 721.95C1143 722.1 1146.91 722.029 1149.35 721.918C1149.11 727.38 1149.74 734.9 1149.81 740.775C1151.87 740.83 1157.05 740.487 1158.57 741.015C1160 742.361 1159.08 747.871 1159.34 750.187C1156.48 750.197 1142.46 749.932 1140.7 750.653C1140.47 751.752 1141.09 757.189 1141.16 758.908C1143.69 759.282 1147.51 758.726 1149.72 759.445C1149.76 762.589 1149.75 765.732 1149.69 768.876C1143.62 768.876 1137.12 769.035 1131.09 768.835L1131.11 740.934C1134.08 740.641 1137.52 740.927 1140.66 740.796C1140.84 737.924 1140.72 734.006 1140.71 731.049C1137.5 731.042 1134.31 731.056 1131.11 730.913C1131.04 727.673 1131.09 724.363 1131.03 721.114C1130.98 718.675 1130.03 713.812 1130.88 711.713Z" fill="#9E2184"/> +<path d="M1225.54 645.751C1228.63 645.839 1232.06 645.737 1235.23 645.78C1235.4 648.452 1235.27 652.658 1235.29 655.458C1238.49 655.535 1241.66 655.446 1244.92 655.555C1244.96 658.517 1244.96 661.48 1244.91 664.442C1241.7 664.538 1238.49 664.513 1235.28 664.367C1235.13 667.142 1235.24 670.891 1235.25 673.741C1232.26 673.549 1228.35 673.583 1225.54 673.213C1225.53 675.859 1225.5 690.908 1224.99 692.563C1223.87 693.356 1217.67 693.094 1215.89 693.09C1215.88 695.566 1215.75 699.858 1216.03 702.178C1214.26 702.251 1207.65 702.012 1206.7 702.54C1206.68 705.866 1206.58 709.187 1206.41 712.506C1203.82 712.755 1199.86 712.639 1197.25 712.561C1197.11 706.223 1197.22 699.594 1197.24 693.232C1202.93 693.344 1209.86 693.336 1215.5 693.199C1215.78 689.615 1216.08 686.238 1216.62 682.646C1216.91 680.713 1215.42 673.52 1216.42 672.109C1217.66 671.41 1223.92 671.783 1225.48 672.08C1225.83 663.967 1225.47 654.105 1225.54 645.751Z" fill="#9E2184"/> +<path d="M1225.55 483.12C1235.49 482.969 1245.73 483.085 1255.7 483.097C1255.76 486.336 1255.81 490.025 1255.55 493.231C1246.27 493.037 1234.38 493.588 1225.41 492.967C1225.26 498.953 1225.48 504.96 1225.26 511.019C1222.8 511.307 1219.51 511.212 1216.97 511.21C1216.74 511.22 1216.49 511.313 1216.25 511.377C1215.63 512.624 1215.88 519.441 1216.03 521.101C1210.14 521.122 1203.02 521.318 1197.24 521.039C1197.13 519.381 1196.83 513.038 1197.57 511.81C1199.66 511.014 1212.64 511.423 1216.08 511.29C1216.25 505.153 1215.98 498.849 1216.23 492.711C1219.23 492.654 1222.37 492.737 1225.38 492.779C1225.39 489.82 1225.27 485.97 1225.55 483.12Z" fill="#9E2184"/> +<path d="M1142.08 492.391L1158.11 492.333C1160.13 492.323 1165.29 492.167 1167.08 492.561C1168.26 493.707 1168.38 509.439 1167.71 510.678C1167.06 511.129 1166.44 511.029 1165.63 511.043C1157.55 511.146 1147.76 511.428 1139.8 511.078C1139.92 505.367 1139.44 498.515 1139.4 492.511L1142.08 492.391Z" fill="#9E2184"/> +<path d="M1149.55 521.324C1158.9 521.117 1168.34 521.389 1177.7 521.282C1180.95 521.245 1184.27 521.255 1187.52 521.366C1187.54 523.498 1187.97 528.431 1186.96 529.895C1185.64 530.799 1179.49 530.351 1177.29 530.356C1175.18 530.393 1170.55 530.045 1168.95 530.646C1167.66 531.961 1168.21 537.402 1168.09 539.911C1163.83 540.24 1153.68 540.135 1149.31 539.97C1149.17 537.35 1148.86 522.982 1149.55 521.324Z" fill="#9E2184"/> +<path d="M1206.88 626.733C1209.52 626.587 1213.16 626.688 1215.88 626.685L1215.92 636.059C1218.79 636.124 1222.47 635.923 1225.37 635.828C1225.34 639.03 1225.35 642.232 1225.4 645.434C1222.53 645.336 1218.8 645.362 1215.93 645.456C1215.67 650.57 1216.32 659.74 1215.6 664.346C1214.11 664.75 1208.44 664.642 1206.66 664.638C1206.55 658.27 1206.78 651.855 1206.59 645.485C1203.82 645.247 1200.25 645.342 1197.4 645.346C1197.54 642.419 1197.62 639.585 1197.48 636.656C1198.78 636.622 1201.15 636.461 1202.39 636.696C1209.42 638.026 1205.54 630.888 1206.88 626.733Z" fill="#9E2184"/> +<path d="M1168.41 569.261C1172.5 569.136 1176.64 569.276 1180.73 569.242C1182.85 569.224 1185.5 569.35 1187.57 569.051C1187.54 571.539 1187.6 576.093 1187.35 578.451C1185.19 578.528 1179.72 578.277 1178.43 579.209C1177.6 580.484 1177.95 586.776 1178.06 588.603C1176.26 588.238 1161.5 588.388 1159.26 588.556C1159.27 586.397 1158.97 580.896 1159.58 579.194C1160.07 577.79 1165.66 579.301 1167.92 578.357C1168.76 577.211 1168.4 571.278 1168.41 569.261Z" fill="#9E2184"/> +<path d="M1140.7 549.664C1143.22 549.657 1157.93 549.232 1159.05 550.209C1159.58 552.3 1159.23 556.627 1159.13 558.935C1156.64 559.049 1152.47 558.68 1150.34 559.281C1148.66 561.394 1151.1 567.924 1148.87 568.641C1142.92 568.839 1137.04 568.683 1131.09 568.515C1131.1 558.243 1128.71 556.907 1140.36 558.945C1140.49 556.445 1139.99 551.624 1140.7 549.664Z" fill="#9E2184"/> +<path d="M1177.16 482.121C1180.6 482.496 1184.29 482.935 1187.73 483.15C1187.6 486.687 1187.83 510.64 1187.25 511.476C1184.62 511.809 1179.8 512.395 1177.36 512.564C1177.41 502.585 1177.2 492.136 1177.16 482.121Z" fill="#9E2184"/> +<path d="M1178.09 597.84C1178 601.054 1178.05 604.388 1177.97 607.655C1171.93 607.42 1165.6 607.774 1159.36 607.52C1159.13 605.081 1159.29 600.56 1159.28 597.914C1165.14 597.786 1172.45 598.17 1178.09 597.84Z" fill="#9E2184"/> +<path d="M1178.98 740.849C1181.63 740.724 1184.77 740.793 1187.47 740.796C1187.48 742.409 1187.82 749.422 1186.83 750.194C1183.92 750.27 1181.01 750.247 1178.1 750.13C1178 747.88 1177.84 743.605 1178.22 741.337C1178.27 741.012 1178.56 741.012 1178.98 740.849Z" fill="#9E2184"/> +<path d="M1178.09 607.751L1187.49 607.735C1187.29 609.758 1187.37 614.387 1187.32 616.67C1185.68 617.15 1180.01 616.97 1178.09 616.956C1178.15 613.935 1178.1 610.783 1178.09 607.751Z" fill="#9E2184"/> +<path d="M1131.08 597.61L1142.09 597.891C1144.14 597.956 1147.91 598.171 1149.8 597.883C1149.74 604.113 1149.73 610.343 1149.76 616.573C1149.76 619.261 1149.61 624.234 1149.81 626.713C1153.16 626.909 1156.82 626.741 1160.2 626.75C1162.74 626.756 1165.86 626.893 1168.33 626.593C1168.38 623.46 1168.4 620.327 1168.39 617.194C1171.62 617.151 1174.85 617.16 1178.08 617.22C1177.81 619.089 1178.04 624.573 1178.08 626.733C1184.08 626.883 1191.26 626.44 1197.06 626.876C1197.14 629.74 1196.93 633.947 1197.14 636.522C1196.01 636.445 1194.47 636.319 1193.33 636.43C1188.31 636.92 1183.36 636.89 1178.31 636.923C1178.25 639.716 1178.09 642.978 1178.12 645.734C1182.11 645.798 1186.1 645.815 1190.1 645.786C1191.85 645.78 1195.43 645.833 1197.02 645.617C1197.01 651.783 1196.84 658.761 1197.03 664.859L1206.55 664.893C1206.53 667.74 1206.57 671.059 1206.39 673.873C1203 673.964 1190.01 673.608 1187.93 674.347C1187.19 675.359 1187.52 682.236 1187.54 684.008L1196.99 684.049C1197.02 687.035 1197.03 690.022 1197.01 693.008C1191.42 692.946 1183.31 692.722 1177.89 693.04L1177.87 702.637C1180.85 702.646 1184.61 702.552 1187.52 702.704C1187.55 704.799 1188 709.864 1186.92 711.277C1185.58 712.146 1180.23 711.717 1178.09 711.805C1178.01 715.087 1177.82 719.132 1177.96 722.349C1181.92 722.379 1185.88 722.42 1189.84 722.513C1191.81 722.559 1194.44 722.31 1196.32 722.63C1197.42 723.942 1197.25 738.83 1196.58 740.468C1195.06 740.989 1189.52 740.685 1187.54 740.743C1187.59 737.592 1187.71 734.195 1187.52 731.068C1183.65 731.024 1161.72 731.393 1159.83 730.602C1157.94 728.394 1160.77 721.478 1158.07 721.457C1155.55 721.436 1152.37 721.644 1149.7 721.598L1149.71 711.768C1152.52 711.872 1155.51 711.745 1158.25 711.957C1158.25 708.751 1158.3 705.4 1158.23 702.208C1155.28 702.259 1152.22 702.272 1149.28 702.381C1149.29 704.979 1149.17 708.98 1149.35 711.464C1146.46 711.473 1143.58 711.466 1140.69 711.446C1140.8 705.451 1140.68 699.487 1140.74 693.511C1143.45 693.814 1146.27 693.442 1149.06 693.672C1149.04 690.914 1149.11 687.515 1148.81 684.844L1148.77 684.448L1148.74 684.21C1146.05 684.367 1143.44 684.28 1140.75 684.228C1140.51 687.057 1140.56 690.353 1140.53 693.23C1133.69 693.168 1126.84 693.156 1120 693.196V684.042L1140.84 684.041C1141.14 680.705 1141.21 678.299 1141.23 674.965C1138.09 674.707 1133.81 674.821 1130.57 674.826C1130.94 668.026 1131.41 662.031 1131.13 655.126C1130.99 651.863 1130.6 648.546 1130.62 645.362L1140.47 645.319C1140.4 648.708 1140.37 652.098 1140.39 655.487L1151.46 655.496C1153.47 655.502 1156.45 655.632 1158.36 655.363C1159.55 654.315 1159.04 652.491 1159.4 651.054C1159.8 649.496 1160.62 646.471 1159.67 645.002C1156.33 645.634 1144.75 645.362 1140.74 645.345C1140.88 642.82 1140.78 639.571 1140.76 636.986C1137.58 637.133 1134.26 637.059 1131.06 637.034L1131.09 626.682L1140.45 626.68C1140.67 620.867 1140.59 613.44 1140.49 607.611L1131.07 607.541L1131.08 597.61ZM1168.18 683.984C1164.93 684 1161.27 683.934 1158.06 684.054C1157.83 686.55 1157.53 700.019 1158.2 701.807C1159.73 702.418 1165.24 702.094 1167.39 702.195C1167.83 701.981 1168.1 701.975 1168.14 701.601C1168.63 696.592 1168.32 688.97 1168.34 684.04C1171.26 684.027 1175.13 684.125 1177.98 683.96C1178.11 680.58 1178.04 677.247 1178 673.865L1168.44 673.854C1167.95 675.672 1168.15 681.852 1168.18 683.984ZM1149.94 664.472C1149.49 665.905 1149.34 672.357 1149.73 673.698C1150.54 674.361 1157.43 674.084 1158.96 674.07C1159.67 672.663 1159.25 666.338 1159.22 664.404L1149.94 664.472ZM1187.53 655.252C1184.39 655.185 1181.25 655.165 1178.12 655.192C1177.59 657.063 1177.83 662.761 1177.88 664.933C1180.99 664.914 1184.3 664.955 1187.39 664.863C1187.69 662.446 1187.56 657.828 1187.53 655.252ZM1160.69 646.465C1163.5 646.325 1166.06 646.307 1168.87 646.307C1168.9 642.552 1168.84 638.538 1168.96 634.816C1166.72 634.707 1161.99 635.119 1160.58 633.916C1160.6 637.316 1160.41 643.327 1160.69 646.465Z" fill="#9E2184"/> +<path d="M1149.95 588.659C1153.02 588.664 1156.1 588.646 1159.18 588.606L1159.2 597.825C1156.09 597.805 1152.9 597.738 1149.8 597.883C1150.03 594.74 1149.74 591.677 1149.95 588.659Z" fill="#9E2184"/> +<path d="M889.562 -183.925C886 -184.108 872.967 -183.6 870.449 -184.262C869.914 -185.216 869.944 -191.393 870.385 -192.6C871.639 -193.225 895.529 -192.958 898.847 -192.967C898.565 -190.646 898.643 -186.147 898.765 -183.78C901.73 -183.644 905.472 -183.732 908.511 -183.707C908.549 -180.586 908.513 -177.396 908.511 -174.271C905.296 -174.303 902.081 -174.299 898.866 -174.257C898.728 -172.105 898.184 -166.52 899.217 -165.013C900.617 -164.015 906.311 -164.543 908.51 -164.58C908.772 -167.525 908.619 -171.201 908.57 -174.227L932.946 -174.234C936.784 -174.234 942.834 -174.393 946.454 -174.008C946.594 -171.222 946.421 -167.352 946.36 -164.522C948.397 -164.587 954.486 -164.237 955.86 -164.799C956.482 -166.776 956.243 -180.724 956.236 -183.766C960.654 -183.919 971.126 -183.384 974.876 -183.895C974.883 -180.934 974.984 -177.189 974.717 -174.31C971.758 -174.186 968.232 -174.257 965.24 -174.255C965.074 -171.086 965.166 -167.737 965.208 -164.557C968.441 -164.52 981.815 -165.041 983.797 -163.953C984.846 -161.911 984.141 -158.032 984.613 -155.529C975.59 -155.887 965.975 -155.573 956.932 -155.442C954.929 -155.412 956.826 -148.23 955.6 -146.43C954.044 -145.787 948.308 -146.101 946.348 -146.135L946.352 -136.686C948.559 -136.493 952.152 -136.61 954.45 -136.615C957.946 -136.622 961.871 -136.566 965.335 -136.769C965.413 -133.886 965.15 -129.233 965.431 -126.702C959.81 -126.368 952.262 -126.573 946.504 -126.585C946.317 -123.639 946.389 -120.298 946.393 -117.313C948.75 -117.094 953.468 -117.276 955.978 -117.313C956.07 -114.209 956.065 -111.102 955.964 -107.995C953.304 -107.769 949.372 -107.928 946.453 -107.809C946.221 -105.202 946.33 -100.749 946.317 -98.009C951.974 -98.0251 959.916 -98.281 965.388 -97.9399C965.664 -88.5598 966.681 -88.8916 956.904 -89.3895C956.591 -88.4998 955.051 -82.0444 955.097 -81.3461C955.295 -78.3155 963.408 -80.6478 965.03 -79.3894C965.759 -77.7485 965.312 -71.807 965.429 -69.3664L974.883 -69.3871C975.27 -64.1324 974.652 -56.2135 974.689 -50.4633C977.863 -50.438 981.138 -50.5025 984.323 -50.5232C984.68 -53.2566 984.53 -59.9079 984.503 -62.8625C984.45 -68.2947 984.632 -74.1716 984.452 -79.5577C981.405 -79.613 978.199 -79.5231 975.102 -79.5577C975.019 -88.9332 975.014 -98.3063 975.088 -107.682C978.234 -107.739 981.382 -107.739 984.53 -107.679C984.712 -103.386 984.182 -100.162 983.585 -96.0224C983.383 -94.6303 983.472 -90.4819 983.477 -88.9124C990.145 -88.6981 996.766 -89.265 1003.58 -88.5759C1003.77 -91.6066 1003.7 -94.9369 1003.69 -97.9998C1009.7 -98.1865 1016.19 -98.0758 1022.2 -98.032C1022.29 -88.4906 1022.29 -78.9469 1022.19 -69.4032C1031.29 -69.175 1041.31 -69.3963 1050.49 -69.3802C1050.76 -65.7918 1050.61 -54.1623 1050.41 -50.7468C1047.31 -50.514 1044.18 -50.5509 1041.07 -50.5854C1041.21 -53.6368 1041.2 -57.0777 1041.14 -60.1315C1038.49 -60.3135 1034.54 -60.2398 1031.85 -60.1983C1031.72 -57.1262 1031.63 -53.57 1031.8 -50.5255C1028.94 -50.7399 1025.42 -50.4979 1022.33 -50.65C1022.38 -53.8281 1022.38 -57.004 1022.35 -60.1822C1019.93 -60.4311 1015.31 -60.2144 1012.71 -60.1591C1012.63 -56.9141 1012.76 -53.7913 1012.41 -50.5578C1009.26 -50.5393 1006.41 -50.0784 1003.28 -49.629C1003.21 -52.5444 1003.58 -55.1556 1003.65 -58.0065C1003.74 -61.6433 1003.69 -65.4023 1003.68 -69.0483C1006.18 -69.2673 1010.35 -69.1543 1012.97 -69.152C1013.22 -73.0078 1012.8 -76.0799 1012.55 -79.9149C1008.99 -79.9356 1006.88 -79.8596 1003.32 -80.3413C1001 -80.1362 995.706 -81.2654 993.959 -80.2882C993.154 -77.9398 993.364 -51.3806 994.413 -50.1153C996.455 -49.2902 1000.97 -49.5322 1003.28 -49.629C1003.26 -47.1745 1003.16 -44.1231 1003.25 -41.7239C998.098 -41.7331 988.84 -41.9913 984.051 -41.5418C983.917 -38.3199 983.917 -35.2731 983.926 -32.0465C987.116 -32.065 990.389 -32.1226 993.567 -31.9982C993.735 -27.8336 993.32 -23.7912 993.36 -19.6381C993.433 -11.71 993.175 -3.7957 992.933 4.12552C992.818 7.92595 992.977 11.8393 992.864 15.6582L984.367 15.6282C983.758 7.08705 984.865 -3.73344 984.549 -12.7102C981.997 -12.701 977.354 -12.8301 974.966 -12.6272C974.874 -9.74408 975.026 -5.46428 974.673 -2.81389L965.189 -2.80005C965.097 -6.12111 965.217 -9.56891 965.104 -12.7909C962.484 -12.7678 948.183 -12.9384 946.773 -12.3622C946.036 -10.7489 946.357 -5.38361 946.311 -3.26561C943.521 -3.51451 939.946 -3.44539 937.15 -3.27945L937.069 9.2189C937.061 10.7262 936.948 14.25 937.087 15.6328C930.823 15.4715 924.505 15.7481 918.219 15.566C918.151 13.4503 917.638 8.66576 918.694 7.1631C920.07 6.18591 925.584 6.61458 927.795 6.60767C928.047 0.530212 927.882 -6.55208 927.877 -12.7033C924.714 -12.7494 921.394 -12.6871 918.219 -12.6756C918.433 -15.727 918.411 -19.1034 918.448 -22.1894C912.264 -22.1848 905.005 -21.9981 898.92 -22.3162C898.669 -19.463 898.69 -15.356 898.723 -12.4728L918.163 -12.5005C918.156 -9.45367 918.091 -6.40918 917.97 -3.36699C916.05 -3.34856 910.694 -3.67584 909.283 -3.12964C908.02 -1.81827 908.582 3.73141 908.35 6.40486C905.257 6.43481 902.164 6.43713 899.072 6.4164C899.011 3.23822 899.058 -0.0252075 899.013 -3.23103C896.805 -3.55138 891.781 -3.34859 889.446 -3.27483C889.633 -6.18565 889.584 -9.81783 889.524 -12.7355C884.831 -12.8139 880.101 -12.6595 875.403 -12.7309C873.827 -12.754 872.201 -12.7794 870.639 -12.5742C869.95 -11.3228 870.298 -5.00102 870.171 -2.85767C868.645 -2.79083 864.819 -2.54886 863.504 -2.84155C859.591 -3.71272 857.377 -4.08607 853.376 -4.04459C852.644 -3.37624 852.277 -2.89687 851.645 -2.12248C851.563 -0.0897522 851.029 4.59569 851.913 6.04073C853.077 6.95338 858.947 6.60307 861.035 6.70448C861.262 8.99533 861.323 22.8304 860.65 24.5174C859.03 25.1835 826.72 24.8447 822.49 24.8124C822.729 19.1913 822.562 12.397 822.566 6.69063C825.816 6.5224 829.073 6.51781 832.324 6.68144C832.515 9.52312 832.352 13.0101 832.499 16.0684C835.318 16.179 839.07 16.1675 841.869 16.05C842.131 13.0401 841.984 8.80174 841.973 5.66968C841.934 -0.377823 841.934 -6.42763 841.972 -12.4751C843.914 -12.4636 849.181 -12.2931 850.692 -12.5904C852.634 -12.9729 850.683 -19.7418 851.776 -21.7492C853.394 -22.4567 858.841 -22.1226 861.085 -22.1341C861.31 -24.5724 861.745 -29.9262 861.729 -32.0926C865.641 -32.0327 865.967 -30.7052 870.498 -30.5785C873.614 -32.201 876.24 -31.846 879.744 -31.8553C879.804 -28.6333 879.753 -25.4183 879.822 -22.1871C882.534 -21.9843 886.554 -22.0695 889.367 -22.0511C889.639 -25.1163 889.537 -29.2556 889.516 -32.3439L879.967 -32.2793C879.788 -38.2623 879.999 -44.3536 879.742 -50.3135L870.521 -50.2951C870.446 -53.3442 870.491 -56.5753 870.485 -59.6383C867.338 -59.8157 864.585 -59.4677 861.133 -59.7765C860.92 -50.9035 861.079 -41.3506 861.085 -32.4153C858.603 -32.4199 857.902 -32.4568 855.599 -31.5764C852.599 -32.625 847.294 -32.4222 844.227 -32.0396C843.723 -31.9774 842.985 -32.1917 842.703 -32.6043C841.595 -34.2222 841.927 -39.5229 841.93 -41.5764C839.412 -41.7377 834.937 -41.7769 832.447 -41.5787C832.502 -44.8422 832.513 -48.1056 832.481 -51.3667C829.564 -51.346 825.355 -51.1916 822.539 -51.3667L822.555 -59.9217L832.261 -60.0024C832.257 -57.2345 832.197 -54.2822 832.25 -51.5304C838.456 -51.6664 845.365 -51.4221 851.368 -51.671C851.401 -54.432 851.449 -57.1538 851.368 -59.9171C845.025 -59.9702 838.756 -60.3136 832.437 -60.2052C832.462 -63.1898 832.56 -66.6192 832.43 -69.5623L813.12 -69.6199L813.301 -78.3754C817.86 -78.3615 821.88 -78.3615 826.444 -78.7994C828.183 -78.9654 830.572 -78.7603 832.401 -78.9262C832.737 -88.5114 832.464 -99.3065 832.511 -109.014C829.639 -108.802 825.283 -108.756 822.42 -108.977L822.551 -117.145C825.381 -117.428 829.056 -117.338 831.962 -117.297C832.098 -120.261 832.124 -123.225 832.04 -126.188C828.863 -126.112 825.685 -126.094 822.508 -126.128C822.537 -132.6 822.305 -140.012 822.567 -146.352C825.427 -146.421 829.575 -146.592 832.295 -146.066L832.208 -126.37C834.21 -126.354 840.229 -126.11 841.664 -126.758C842.616 -128.551 841.001 -136.048 842.604 -136.198C848.284 -136.73 854.648 -136.518 860.365 -136.334C861.543 -136.294 860.899 -127.527 860.922 -126.368C859.507 -126.477 857.928 -126.463 856.508 -126.407C851.684 -126.223 846.745 -126.583 841.938 -126.465C841.851 -119.302 841.847 -112.137 841.928 -104.971C841.959 -103.052 841.871 -99.7974 842.016 -98.0067L859.912 -97.9491C859.913 -100.715 859.782 -104.819 859.947 -107.477C862.76 -107.804 867.44 -107.668 870.397 -107.636C870.403 -104.43 870.365 -101.224 870.283 -98.0182C876.098 -98.009 883.742 -98.2441 889.371 -97.9583C889.438 -94.6879 889.783 -82.1113 888.992 -79.7951C888.211 -79.0599 884.846 -78.917 883.626 -78.6381C882.409 -78.3592 881.165 -77.8776 879.965 -77.7116C879.946 -75.0105 879.995 -72.2956 879.668 -69.6153C876.885 -69.6037 873.137 -69.6959 870.434 -69.5323C870.502 -72.7727 870.523 -76.0154 870.496 -79.2581C880.69 -79.4056 880.407 -77.5641 879.832 -88.622C879.824 -88.7879 879.813 -88.9516 879.798 -89.1175C876.977 -89.0945 873.267 -88.9815 870.498 -89.1313C870.498 -91.6665 870.589 -95.2641 870.366 -97.6817C867.131 -97.6979 863.913 -97.5711 860.68 -97.5434L860.597 -89.1867C854.447 -89.1267 848.079 -89.0276 841.936 -89.1452C841.929 -85.9831 841.823 -82.2104 841.949 -79.0991C846.897 -78.7349 855.537 -79.076 860.87 -79.0668C860.88 -76.5178 860.766 -71.7563 860.986 -69.3341C863.696 -69.2396 867.545 -69.2995 870.311 -69.3894L870.299 -60.0024C877.39 -59.8503 884.506 -60.0324 891.599 -59.9655C893.556 -59.9471 896.841 -60.1476 898.626 -59.5783C899.074 -58.154 898.909 -53.3764 898.756 -51.7862C898.577 -49.9217 891.18 -50.65 889.564 -50.4725C889.216 -45.204 889.448 -37.9972 889.401 -32.5305C892.211 -32.6411 895.023 -32.7103 897.835 -32.7379C898.427 -32.3185 899.176 -31.7492 899.774 -31.3759C901.82 -31.3874 907.913 -30.6937 909.209 -31.1293C912.665 -32.2908 914.903 -31.5395 918.191 -32.0258C918.037 -28.3867 918.096 -25.5658 918.885 -22.005C921.347 -21.9866 925.489 -21.8529 927.829 -22.1064C928.085 -24.4042 927.897 -29.6727 927.854 -32.0558C924.896 -32.1987 921.172 -32.0742 918.191 -32.0258C918.047 -41.3114 918.455 -50.9427 918.195 -60.1684C915.297 -60.3181 911.612 -60.2329 908.656 -60.2467C908.472 -62.8118 908.577 -66.6998 908.573 -69.3686C914.928 -69.4032 921.283 -69.4032 927.637 -69.3709C927.823 -66.8335 927.697 -62.6851 927.731 -59.9655C933.905 -59.9171 940.08 -59.9218 946.254 -59.9748C946.457 -63.365 946.729 -75.937 946.124 -78.9285C943.424 -79.212 940.446 -78.6888 937.7 -78.8801C931.168 -79.3295 924.759 -79.4332 918.226 -79.5761C917.975 -84.976 918.201 -92.5607 918.201 -98.1404C922.906 -97.8615 927.687 -98.281 932.393 -97.873C933.817 -97.7509 935.159 -97.6725 936.59 -97.7186C936.651 -95.6098 936.01 -90.1915 937.227 -88.7695C938.165 -87.6725 944.906 -87.843 945.962 -88.3961C946.618 -88.7395 946.445 -97.0157 946.446 -97.9721C944.394 -98.1196 938.671 -98.2326 936.749 -98.0205C936.801 -101.987 936.761 -105.419 937.356 -109.341C937.604 -110.975 937.673 -115.638 937.196 -117.175C936.09 -117.719 928.983 -117.668 928.149 -117.401C927.5 -116.147 927.671 -109.811 927.631 -107.903C924.663 -107.903 921.114 -107.981 918.204 -107.76C918.144 -105.084 917.937 -100.828 918.118 -98.2833C914.938 -98.4123 911.842 -98.2786 908.581 -98.4469C908.487 -101.487 908.533 -104.806 908.514 -107.871C905.488 -107.97 902.124 -107.924 899.075 -107.947C899.036 -110.987 899.069 -114.093 899.069 -117.14C902.06 -117.214 916.061 -116.838 917.82 -117.546C918.51 -119.148 918.215 -124.672 918.189 -126.677C914.87 -126.728 911.936 -126.606 908.548 -126.781C908.366 -129.498 908.402 -133.656 908.49 -136.38C910.408 -136.546 912.871 -136.375 914.855 -136.483C919.171 -136.719 923.354 -136.765 927.677 -136.725C927.69 -133.547 927.653 -130.182 927.801 -127.025C930.999 -127.055 934.03 -127.226 937.317 -127.226C937.558 -132.96 937.365 -140.24 937.368 -146.069C940.169 -146.207 943.501 -146.156 946.326 -146.172C945.842 -149.164 946.096 -160.701 946.119 -164.359C941.82 -164.407 937.526 -164.213 933.223 -164.29C929.253 -164.359 922.227 -165.363 918.472 -164.527C917.74 -163.089 918.006 -157.484 918.018 -155.596C914.898 -155.603 911.743 -155.647 908.628 -155.527C908.421 -152.99 908.517 -148.758 908.498 -146.092C905.188 -146.025 902.391 -146.013 899.088 -146.156L899.05 -155.571C892.825 -155.817 886.274 -155.414 879.951 -155.617C879.864 -158.528 879.894 -161.632 879.873 -164.559C881.669 -164.552 888.388 -164.239 889.34 -164.962C889.841 -167.154 889.612 -180.929 889.562 -183.925ZM937.644 -22.6457C942.954 -22.6342 948.421 -22.5443 953.691 -23.1689C957.204 -23.5837 960.366 -23.5515 963.89 -23.5238L964.745 -23.6275C965.819 -25.0495 964.878 -39.7258 965.235 -42.5582C965.36 -43.5654 965.229 -49.0713 965.093 -50.083C964.622 -50.5878 963.101 -50.6546 962.375 -50.6569C954.014 -50.6892 945.6 -50.567 937.24 -50.6799C936.635 -49.0482 936.906 -46.8634 936.751 -45.1441C936.208 -39.1219 936.337 -33.3602 937.234 -27.3703C937.464 -25.8377 937.359 -24.2221 937.644 -22.6457ZM974.779 -22.0811C977.851 -22.0742 980.921 -22.088 983.993 -22.1272C984.235 -24.8951 984.072 -29.1196 984.021 -31.9958C981.02 -32.0742 978.02 -32.1042 975.021 -32.088C974.756 -29.7649 974.708 -24.5264 974.779 -22.0811Z" fill="#9E2184"/> +<path d="M1164.85 -79.4632C1167.61 -79.2535 1171.36 -79.4816 1174.47 -79.3088C1174.58 -76.1859 1174.49 -72.5606 1174.48 -69.4009L1183.4 -69.3894C1183.54 -67.0502 1183.56 -62.4731 1183.22 -60.2052L1174.5 -60.1891C1174.41 -57.0225 1174.47 -53.6599 1174.47 -50.4771C1176.21 -50.431 1181.9 -50.8113 1183.01 -50.1891C1183.87 -48.1748 1183.49 -35.0219 1183.17 -32.1134C1178.06 -31.8737 1170 -31.9152 1164.87 -32.1065C1164.8 -35.3146 1164.91 -38.4513 1164.79 -41.7032C1160.93 -41.9083 1149.1 -41.8691 1145.47 -41.5926C1145.39 -38.4236 1145.44 -35.0473 1145.44 -31.8645L1155.11 -31.8C1155.32 -25.5474 1155.14 -18.8061 1155.18 -12.489C1158.39 -12.4521 1161.6 -12.4659 1164.82 -12.5304L1164.83 -22.0903C1167.87 -22.2171 1171.35 -22.1387 1174.43 -22.1295C1174.48 -19.0135 1174.27 -15.9114 1174.38 -12.7402C1171.19 -12.6849 1168 -12.6641 1164.82 -12.678C1164.69 -9.78788 1164.8 -6.19028 1164.82 -3.2495C1163.07 -3.54681 1156.58 -3.71964 1155.19 -2.51659C1153.97 -1.46336 1149.04 -1.9243 1147.11 -1.97961C1146.87 0.825188 1146.85 3.81207 1146.87 6.63531C1152.91 6.64223 1158.79 6.40025 1164.8 6.39103C1164.62 8.03197 1164.52 14.1025 1164.82 15.5821C1162.66 15.2364 1158.97 15.3309 1156.76 15.3055C1153.36 15.2664 1156.37 22.2634 1154.61 24.6073C1153.09 25.1581 1147.76 24.8608 1145.9 24.817C1145.28 19.2673 1146.73 12.1089 1146.59 6.43019C1143.14 6.37488 1139.69 6.37719 1136.24 6.43941C1136.08 10.415 1136.59 21.2263 1135.91 24.5266C1135.03 25.2618 1128.52 24.9046 1126.98 24.8769C1127.11 16.0384 1126.96 6.99023 1126.91 -1.86668L1123.59 -1.91508C1121.3 -3.51683 1120.14 -3.24258 1117.32 -3.21723C1117.35 -6.38157 1117.34 -9.54358 1117.31 -12.7056C1114.71 -12.8301 1111.37 -12.754 1108.73 -12.7586L1107.77 -14.8513C1105.82 -14.5102 1100.85 -14.4226 1098.49 -14.2544C1098.24 -19.055 1099.42 -38.3038 1097.77 -41.3206C1095.82 -42.0927 1082.47 -41.6525 1079.04 -41.7654C1079.03 -44.6578 1079.06 -47.5479 1079.13 -50.438C1083.81 -50.7076 1093.66 -50.0323 1097.7 -50.6477C1098.52 -51.7862 1098.21 -58.1932 1098.19 -59.9494H1126.3C1126.41 -62.0951 1126.12 -67.3659 1126.79 -68.9884C1128.18 -69.5554 1143.94 -69.6683 1145.17 -68.9653C1145.95 -67.3728 1145.47 -53.4525 1145.5 -50.5025C1147.77 -50.3481 1150.94 -50.4518 1153.3 -50.4449C1157.04 -50.431 1161.05 -50.3066 1164.77 -50.4357C1164.91 -53.4802 1164.83 -57.0732 1164.83 -60.1614C1161.79 -60.2721 1158.41 -60.226 1155.35 -60.2444C1155.31 -63.2474 1155.3 -66.2504 1155.32 -69.2534C1157.74 -69.4862 1162.15 -69.3802 1164.75 -69.4194C1164.91 -72.4777 1164.83 -76.3426 1164.85 -79.4632ZM1136.27 -50.544C1130.7 -50.6869 1125.13 -50.7145 1119.56 -50.6293C1117.4 -50.6062 1108.98 -50.862 1107.68 -50.1729C1106.34 -47.4557 1108.07 -27.0431 1108.13 -22.1871L1124.14 -22.1433L1136.23 -22.1087C1136.38 -30.3549 1136.67 -42.3831 1136.27 -50.544ZM1126.79 -2.3299C1129.84 -2.38752 1132.88 -2.40598 1135.92 -2.38293C1136.47 -3.26102 1136.26 -11.014 1136.25 -12.7033C1133.48 -12.7102 1129.98 -12.6296 1127.3 -12.8808C1126.14 -11.5026 1126.66 -4.46404 1126.79 -2.3299ZM1107.87 -14.9458C1107.87 -15.8216 1107.98 -17.6307 1107.68 -18.3521L1107.3 -18.6333C1107.29 -17.5063 1107.19 -16.3447 1107.5 -15.28L1107.87 -14.9458Z" fill="#9E2184"/> +<path d="M1032.02 -50.3112L1040.85 -50.3089C1040.82 -44.0194 1041.25 -38.0872 1041.17 -31.8553C1037.17 -31.9198 1025.54 -32.4891 1022.29 -32.1365C1022 -26.4139 1022.18 -18.8315 1022.15 -12.9891C1024.79 -12.9868 1028.02 -13.0698 1030.61 -12.9614C1030.74 -9.73718 1030.94 -6.1972 1030.91 -2.99138C1037.46 -3.03056 1044.02 -3.02363 1050.58 -2.97062C1050.55 -6.11191 1050.58 -9.2532 1050.67 -12.3922C1053.71 -12.4752 1056.75 -12.5051 1059.78 -12.4821C1060.08 -10.4171 1059.95 -4.91809 1059.68 -2.88996C1056.62 -2.83696 1053.56 -2.83927 1050.5 -2.89688L1050.52 6.87961C1048.04 6.26656 1035.1 6.39794 1031.84 6.39794C1031.62 9.54153 1031.62 12.5007 1031.61 15.6512C1028.82 15.695 1026.04 15.6881 1023.25 15.6328C1023.32 12.3025 1023.35 9.88723 1023.07 6.53622C1022.8 3.30274 1022.32 0.062336 1022.34 -3.15501C1018.94 -2.98907 1015.74 -3.17806 1012.35 -3.27255C1009.32 -3.35552 1006.35 -3.22185 1003.33 -3.50533C1003.21 -9.67728 1003.36 -16.029 1003.43 -22.2148C1005.37 -22.2217 1011.15 -21.9382 1012.42 -22.6066C1013 -23.8511 1013.44 -32.2217 1011.65 -32.6274C1009.66 -33.0791 1005.66 -32.7034 1003.35 -32.7564C1003.3 -35.7456 1003.27 -38.7348 1003.25 -41.7239C1007.16 -41.7539 1011.29 -41.7746 1015.16 -41.7124C1018.76 -41.6548 1028.77 -40.4817 1031.66 -41.4405C1032.27 -42.9362 1031.97 -48.3177 1032.02 -50.3112Z" fill="#9E2184"/> +<path d="M785.156 -12.3945C786.514 -12.5512 792.769 -12.5973 793.865 -12.3807C794.776 -10.9426 793.965 3.84664 793.426 6.04762C792.666 6.67449 786.241 6.42096 784.582 6.43709C784.379 12.2772 784.85 19.0576 784.411 24.7547C782.704 25.0083 777.867 24.8746 775.987 24.8585C776.039 18.7764 773.947 -8.78074 775.611 -11.4334C777.258 -12.3991 782.258 -11.9405 784.826 -12.3415L785.156 -12.3945Z" fill="#9E2184"/> +<path d="M746.8 -12.4798C749.874 -12.3853 753.101 -12.4521 756.189 -12.4728C756.16 -9.33156 756.167 -6.19027 756.208 -3.05128L765.588 -2.97754C765.528 2.19187 765.507 7.35899 765.524 12.5284C765.56 15.3286 765.883 22.2565 765.431 24.7432C763.614 25.029 758.764 25.1212 757.065 24.4459C756.342 23.2521 756.794 17.6955 756.618 15.9924C756.29 12.8349 755.869 9.63831 755.931 6.46245C753.85 6.32186 748.581 6.81509 747.212 6.05223C746.389 4.05177 746.754 -9.55742 746.8 -12.4798Z" fill="#9E2184"/> +<path d="M1088.63 6.50395C1094.04 6.22278 1102.51 6.94644 1107.46 6.4325C1107.5 9.44011 1107.45 12.5468 1107.44 15.5637C1105.3 15.5222 1099.61 14.946 1098.37 15.8656C1097.45 17.2622 1097.79 21.9915 1097.79 23.9873L1097.64 24.5197C1096.53 25.1328 1081.63 24.8446 1079.11 24.8124C1079.09 18.97 1078.98 12.6874 1079.16 6.88193C1082.37 6.63763 1085.34 7.08934 1088.63 6.50395Z" fill="#9E2184"/> +<path d="M1061.1 6.97179C1062.64 6.83351 1068.1 6.74362 1069.45 7.22761C1070.08 8.76022 1069.64 22.2588 1069.62 24.8262C1063.51 24.9414 1057.11 24.8423 1050.99 24.84C1041.54 22.9617 1042.13 26.1099 1042.59 15.1857C1044.35 15.1696 1048.88 15.566 1050.09 14.9829C1051.14 13.872 1050.73 9.08518 1050.72 7.19764C1053.78 7.16999 1058.17 7.28753 1061.1 6.97179Z" fill="#9E2184"/> +<path d="M937.087 15.6328C943.257 15.6812 949.428 15.6858 955.598 15.6512C958.124 15.6489 962.878 15.5268 965.213 15.8195C965.261 17.6102 965.531 23.3881 965.038 24.8377C964.621 24.9852 964.798 24.9921 964.512 24.9391C959.44 25.1489 953.664 24.8953 948.502 24.9691C945.852 25.006 939.574 25.1466 937.151 24.9207C937.221 21.9131 937.126 18.6612 937.087 15.6328Z" fill="#9E2184"/> +<path d="M879.942 -2.98908C882.9 -3.11584 886.41 -3.03286 889.411 -3.03517C889.435 0.424171 889.701 12.8995 889.26 15.642L879.953 15.6812C879.9 12.6252 879.275 -0.629083 879.942 -2.98908Z" fill="#9E2184"/> +<path d="M1003.38 6.65836C1006.28 6.47629 1009.59 6.57539 1012.48 6.65144C1012.59 8.99531 1012.45 23.07 1011.96 24.8354C1011.7 24.87 1011.43 24.8999 1011.17 24.9253C1009.73 25.0613 1004.33 25.4692 1003.93 24.6072C1002.74 22.0905 1003.19 9.10363 1003.38 6.65836Z" fill="#9E2184"/> +<path d="M946.396 -3.05129C949.596 -3.12734 952.797 -3.12506 955.996 -3.04439C956.04 -0.389393 956.148 3.53318 955.888 6.11213C953.108 6.22967 949.313 6.18358 946.542 6.06604C946.291 3.70143 946.39 -0.536871 946.396 -3.05129Z" fill="#9E2184"/> +<path d="M1107.88 -2.98907C1110.95 -3.07435 1114.02 -3.05129 1117.1 -2.91761C1117.1 -0.311012 1117.21 3.91808 1116.81 6.32187C1114.1 6.4855 1110.41 6.39331 1107.63 6.40022C1107.61 4.4251 1107.44 -1.33661 1107.88 -2.98907Z" fill="#9E2184"/> +<path d="M1164.81 15.5821C1167.83 15.619 1171.42 15.5729 1174.39 15.7204C1174.35 18.7234 1174.27 21.8394 1174.29 24.8354C1171.25 24.8516 1167.83 24.9391 1164.83 24.8124C1164.77 21.7356 1164.77 18.6589 1164.81 15.5821Z" fill="#9E2184"/> +<path d="M1107.6 15.6167C1110.64 15.6813 1113.86 15.6282 1116.91 15.6305C1117.08 18.675 1117 21.7172 1116.89 24.7617C1115.05 24.9968 1109.66 24.8562 1107.67 24.8424C1107.53 21.95 1107.6 18.5506 1107.6 15.6167Z" fill="#9E2184"/> +<path d="M1164.81 -3.24954C1167.87 -3.19423 1171.32 -3.2311 1174.34 -3.04211C1174.31 -1.18684 1174.39 4.46655 1174.04 5.93925C1171.35 5.96229 1167.48 5.88393 1164.87 6.05448C1164.89 2.95237 1164.87 -0.147433 1164.81 -3.24954Z" fill="#9E2184"/> +<path d="M728.088 6.91189C731.213 6.87502 734.339 6.87731 737.464 6.92571C737.646 8.76715 737.432 14.2223 736.911 16.0016C734.373 15.9947 731.613 16.1283 729.133 15.672C728.364 15.5061 728.496 13.6324 728.413 13.0101C728.08 10.5072 727.08 9.47701 728.088 6.91189Z" fill="#9E2184"/> +<path d="M804.108 6.67684C807.037 6.59157 809.969 6.58694 812.899 6.663C812.957 8.94925 813.227 14.1832 812.437 16.0892C810.562 16.0984 808.458 15.9025 806.598 15.7965C803.553 15.6259 803.582 13.2867 803.783 10.9405C803.911 9.45629 803.824 8.19563 804.108 6.67684Z" fill="#9E2184"/> +<path d="M-16.4382 -183.925C-19.9999 -184.108 -33.0334 -183.6 -35.551 -184.262C-36.0864 -185.216 -36.0557 -191.393 -35.6153 -192.6C-34.3613 -193.225 -10.4712 -192.958 -7.15333 -192.967C-7.43473 -190.646 -7.3573 -186.147 -7.23492 -183.78C-4.2704 -183.644 -0.527588 -183.732 2.51091 -183.707C2.5494 -180.586 2.51252 -177.396 2.51067 -174.271C-0.704369 -174.303 -3.9194 -174.299 -7.13422 -174.257C-7.27249 -172.105 -7.8164 -166.52 -6.78321 -165.013C-5.38311 -164.015 0.310844 -164.543 2.50952 -164.58C2.77248 -167.525 2.61923 -171.201 2.56991 -174.227L26.9459 -174.234C30.7837 -174.234 36.8337 -174.393 40.4544 -174.008C40.5936 -171.222 40.4214 -167.352 40.3603 -164.522C42.3974 -164.587 48.4865 -164.237 49.86 -164.799C50.4823 -166.776 50.2426 -180.724 50.2357 -183.766C54.6538 -183.919 65.1263 -183.384 68.876 -183.895C68.8829 -180.934 68.9843 -177.189 68.717 -174.31C65.7578 -174.186 62.2316 -174.257 59.2401 -174.255C59.0742 -171.086 59.1664 -167.737 59.2078 -164.557C62.4413 -164.52 75.8154 -165.041 77.7975 -163.953C78.8461 -161.911 78.1409 -158.032 78.6133 -155.529C69.5905 -155.887 59.9753 -155.573 50.9317 -155.442C48.929 -155.412 50.8257 -148.23 49.5996 -146.43C48.0439 -145.787 42.3076 -146.101 40.3477 -146.135L40.3518 -136.686C42.5588 -136.493 46.1518 -136.61 48.4496 -136.615C51.9458 -136.622 55.8707 -136.566 59.3346 -136.769C59.413 -133.886 59.1502 -129.233 59.4314 -126.702C53.8103 -126.368 46.2624 -126.573 40.5039 -126.585C40.3172 -123.639 40.3891 -120.298 40.3926 -117.313C42.7501 -117.094 47.4678 -117.276 49.9776 -117.313C50.0698 -114.209 50.0651 -111.102 49.9637 -107.995C47.3041 -107.769 43.3723 -107.928 40.4532 -107.809C40.2209 -105.202 40.3304 -100.749 40.3168 -98.009C45.9743 -98.0251 53.9163 -98.281 59.3876 -97.9399C59.6642 -88.5598 60.6805 -88.8916 50.904 -89.3895C50.5906 -88.4998 49.0511 -82.0444 49.0972 -81.3461C49.2954 -78.3155 57.4079 -80.6478 59.0304 -79.3894C59.7587 -77.7485 59.3116 -71.807 59.4291 -69.3664L68.8829 -69.3871C69.2701 -64.1324 68.6525 -56.2135 68.6893 -50.4633C71.8629 -50.438 75.1378 -50.5025 78.3229 -50.5232C78.6802 -53.2566 78.5303 -59.9079 78.5027 -62.8625C78.4497 -68.2947 78.6317 -74.1716 78.452 -79.5577C75.4052 -79.613 72.1994 -79.5231 69.1019 -79.5577C69.0189 -88.9332 69.0143 -98.3063 69.088 -107.682C72.2339 -107.739 75.3822 -107.739 78.5304 -107.679C78.7124 -103.386 78.1823 -100.162 77.5854 -96.0224C77.3826 -94.6303 77.4725 -90.4819 77.4771 -88.9124C84.1446 -88.6981 90.7659 -89.265 97.5809 -88.5759C97.7676 -91.6066 97.6984 -94.9369 97.6938 -97.9998C103.695 -98.1865 110.185 -98.0758 116.2 -98.032C116.295 -88.4906 116.293 -78.9469 116.189 -69.4032C125.286 -69.175 135.311 -69.3963 144.488 -69.3802C144.756 -65.7918 144.613 -54.1623 144.414 -50.7468C141.305 -50.514 138.183 -50.5509 135.067 -50.5854C135.21 -53.6368 135.2 -57.0777 135.145 -60.1315C132.488 -60.3135 128.542 -60.2398 125.848 -60.1983C125.717 -57.1262 125.627 -53.57 125.797 -50.5255C122.939 -50.7399 119.425 -50.4979 116.327 -50.65C116.376 -53.8281 116.383 -57.004 116.355 -60.1822C113.933 -60.4311 109.312 -60.2144 106.707 -60.1591C106.627 -56.9141 106.763 -53.7913 106.41 -50.5578C103.262 -50.5393 100.406 -50.0784 97.2836 -49.629C97.2145 -52.5444 97.5832 -55.1556 97.65 -58.0065C97.7353 -61.6433 97.6915 -65.4023 97.6846 -69.0483C100.183 -69.2673 104.345 -69.1543 106.97 -69.152C107.221 -73.0078 106.8 -76.0799 106.548 -79.9149C102.985 -79.9356 100.877 -79.8596 97.3158 -80.3413C94.9973 -80.1362 89.7058 -81.2654 87.9588 -80.2882C87.1545 -77.9398 87.3642 -51.3806 88.4128 -50.1153C90.4548 -49.2902 94.9697 -49.5322 97.2836 -49.629C97.2606 -47.1745 97.1591 -44.1231 97.249 -41.7239C92.0981 -41.7331 82.8401 -41.9913 78.051 -41.5418C77.9173 -38.3199 77.9173 -35.2731 77.9265 -32.0465C81.1162 -32.065 84.3889 -32.1226 87.567 -31.9982C87.7353 -27.8336 87.3204 -23.7912 87.3596 -19.6381C87.4333 -11.71 87.1752 -3.7957 86.9332 4.12552C86.818 7.92595 86.977 11.8393 86.8641 15.6582L78.3667 15.6282C77.7583 7.08705 78.8645 -3.73344 78.5488 -12.7102C75.9975 -12.701 71.3536 -12.8301 68.9659 -12.6272C68.8737 -9.74408 69.0258 -5.46428 68.6732 -2.81389L59.1894 -2.80005C59.0972 -6.12111 59.2171 -9.56891 59.1041 -12.7909C56.4837 -12.7678 42.1831 -12.9384 40.7733 -12.3622C40.0363 -10.7489 40.3571 -5.38361 40.3115 -3.26561C37.5205 -3.51451 33.9459 -3.44539 31.1496 -3.27945L31.069 9.2189C31.0614 10.7262 30.9485 14.25 31.0865 15.6328C24.8228 15.4715 18.5048 15.7481 12.2194 15.566C12.1512 13.4503 11.6382 8.66576 12.6937 7.1631C14.0701 6.18591 19.584 6.61458 21.7954 6.60767C22.0466 0.530212 21.8816 -6.55208 21.8765 -12.7033C18.7138 -12.7494 15.3941 -12.6871 12.2187 -12.6756C12.4328 -15.727 12.4112 -19.1034 12.4476 -22.1894C6.26386 -22.1848 -0.995209 -21.9981 -7.07982 -22.3162C-7.33149 -19.463 -7.31029 -15.356 -7.27733 -12.4728L12.1634 -12.5005C12.1556 -9.45367 12.091 -6.40918 11.9698 -3.36699C10.0505 -3.34856 4.69391 -3.67584 3.28297 -3.12964C2.01978 -1.81827 2.58212 3.73141 2.35027 6.40486C-0.742622 6.43481 -3.83551 6.43713 -6.92841 6.4164C-6.98901 3.23822 -6.94199 -0.0252075 -6.9874 -3.23103C-9.19483 -3.55138 -14.2193 -3.34859 -16.5539 -3.27483C-16.367 -6.18565 -16.4163 -9.81783 -16.4756 -12.7355C-21.1691 -12.8139 -25.8992 -12.6595 -30.5973 -12.7309C-32.1733 -12.754 -33.7985 -12.7794 -35.3606 -12.5742C-36.0497 -11.3228 -35.7022 -5.00102 -35.8292 -2.85767C-37.3547 -2.79083 -41.1811 -2.54886 -42.4964 -2.84155C-46.4086 -3.71272 -48.6234 -4.08607 -52.6239 -4.04459C-53.3561 -3.37624 -53.7232 -2.89687 -54.3552 -2.12248C-54.4375 -0.0897522 -54.9715 4.59569 -54.0867 6.04073C-52.9226 6.95338 -47.0535 6.60307 -44.9654 6.70448C-44.7377 8.99533 -44.6769 22.8304 -45.3496 24.5174C-46.97 25.1835 -79.2797 24.8447 -83.5099 24.8124C-83.2712 19.1913 -83.4378 12.397 -83.4343 6.69063C-80.1838 6.5224 -76.9268 6.51781 -73.6758 6.68144C-73.4848 9.52312 -73.6477 13.0101 -73.5009 16.0684C-70.6821 16.179 -66.9296 16.1675 -64.1312 16.05C-63.8692 13.0401 -64.016 8.80174 -64.0273 5.66968C-64.066 -0.377823 -64.0664 -6.42763 -64.0284 -12.4751C-62.086 -12.4636 -56.8187 -12.2931 -55.3082 -12.5904C-53.3658 -12.9729 -55.3167 -19.7418 -54.224 -21.7492C-52.6064 -22.4567 -47.1593 -22.1226 -44.915 -22.1341C-44.6896 -24.5724 -44.2549 -29.9262 -44.2706 -32.0926C-40.3586 -32.0327 -40.0332 -30.7052 -35.5019 -30.5785C-32.3862 -32.201 -29.7605 -31.846 -26.2555 -31.8553C-26.1958 -28.6333 -26.2474 -25.4183 -26.1783 -22.1871C-23.4661 -21.9843 -19.4463 -22.0695 -16.6325 -22.0511C-16.3606 -25.1163 -16.4631 -29.2556 -16.4836 -32.3439L-26.0333 -32.2793C-26.2122 -38.2623 -26.0006 -44.3536 -26.2576 -50.3135L-35.4789 -50.2951C-35.5542 -53.3442 -35.5093 -56.5753 -35.5151 -59.6383C-38.6623 -59.8157 -41.4146 -59.4677 -44.8668 -59.7765C-45.08 -50.9035 -44.9207 -41.3506 -44.9152 -32.4153C-47.3969 -32.4199 -48.0977 -32.4568 -50.4006 -31.5764C-53.4006 -32.625 -58.7057 -32.4222 -61.773 -32.0396C-62.2769 -31.9774 -63.0151 -32.1917 -63.2971 -32.6043C-64.4046 -34.2222 -64.0731 -39.5229 -64.0697 -41.5764C-66.588 -41.7377 -71.0626 -41.7769 -73.5528 -41.5787C-73.4984 -44.8422 -73.4869 -48.1056 -73.5187 -51.3667C-76.4359 -51.346 -80.6445 -51.1916 -83.4609 -51.3667L-83.4452 -59.9217L-73.7385 -60.0024C-73.7431 -57.2345 -73.8026 -54.2822 -73.7501 -51.5304C-67.5438 -51.6664 -60.635 -51.4221 -54.6315 -51.671C-54.5988 -54.432 -54.5506 -57.1538 -54.6318 -59.9171C-60.9747 -59.9702 -67.2444 -60.3136 -73.5629 -60.2052C-73.538 -63.1898 -73.4401 -66.6192 -73.5698 -69.5623L-92.8799 -69.6199L-92.6992 -78.3754C-88.1398 -78.3615 -84.1198 -78.3615 -79.5565 -78.7994C-77.8167 -78.9654 -75.4283 -78.7603 -73.5986 -78.9262C-73.2628 -88.5114 -73.5364 -99.3065 -73.4894 -109.014C-76.3608 -108.802 -80.7169 -108.756 -83.5805 -108.977L-83.4493 -117.145C-80.6192 -117.428 -76.9441 -117.338 -74.0381 -117.297C-73.9017 -120.261 -73.8759 -123.225 -73.9605 -126.188C-77.137 -126.112 -80.3147 -126.094 -83.492 -126.128C-83.4632 -132.6 -83.695 -140.012 -83.4334 -146.352C-80.5726 -146.421 -76.4253 -146.592 -73.7049 -146.066L-73.7918 -126.37C-71.7904 -126.354 -65.7705 -126.11 -64.3356 -126.758C-63.3843 -128.551 -64.9994 -136.048 -63.396 -136.198C-57.7156 -136.73 -51.3524 -136.518 -45.6349 -136.334C-44.4568 -136.294 -45.1007 -127.527 -45.0777 -126.368C-46.4927 -126.477 -48.0717 -126.463 -49.4923 -126.407C-54.316 -126.223 -59.2552 -126.583 -64.0616 -126.465C-64.1494 -119.302 -64.1526 -112.137 -64.0715 -104.971C-64.0411 -103.052 -64.1291 -99.7974 -63.9844 -98.0067L-46.0876 -97.9491C-46.0871 -100.715 -46.2176 -104.819 -46.0525 -107.477C-43.2399 -107.804 -38.5602 -107.668 -35.6033 -107.636C-35.5971 -104.43 -35.6349 -101.224 -35.7169 -98.0182C-29.9024 -98.009 -22.2585 -98.2441 -16.6286 -97.9583C-16.562 -94.6879 -16.2175 -82.1113 -17.0077 -79.7951C-17.7895 -79.0599 -21.1541 -78.917 -22.374 -78.6381C-23.5911 -78.3592 -24.8347 -77.8776 -26.0349 -77.7116C-26.0538 -75.0105 -26.0045 -72.2956 -26.3325 -69.6153C-29.1152 -69.6037 -32.863 -69.6959 -35.5662 -69.5323C-35.498 -72.7727 -35.4775 -76.0154 -35.5044 -79.2581C-25.3099 -79.4056 -25.5931 -77.5641 -26.1677 -88.622C-26.1755 -88.7879 -26.1873 -88.9516 -26.2023 -89.1175C-29.023 -89.0945 -32.7328 -88.9815 -35.5021 -89.1313C-35.5019 -91.6665 -35.4107 -95.2641 -35.6338 -97.6817C-38.8688 -97.6979 -42.0869 -97.5711 -45.3199 -97.5434L-45.4033 -89.1867C-51.5534 -89.1267 -57.921 -89.0276 -64.0641 -89.1452C-64.0708 -85.9831 -64.1768 -82.2104 -64.0505 -79.0991C-59.1031 -78.7349 -50.4635 -79.076 -45.13 -79.0668C-45.1201 -76.5178 -45.2339 -71.7563 -45.0136 -69.3341C-42.3044 -69.2396 -38.4549 -69.2995 -35.6888 -69.3894L-35.7013 -60.0024C-28.6097 -59.8503 -21.4938 -60.0324 -14.4011 -59.9655C-12.444 -59.9471 -9.15934 -60.1476 -7.37367 -59.5783C-6.92564 -58.154 -7.0911 -53.3764 -7.2439 -51.7862C-7.42321 -49.9217 -14.8201 -50.65 -16.4359 -50.4725C-16.7839 -45.204 -16.5519 -37.9972 -16.5986 -32.5305C-13.7885 -32.6411 -10.9768 -32.7103 -8.16463 -32.7379C-7.57324 -32.3185 -6.82446 -31.7492 -6.2257 -31.3759C-4.18006 -31.3874 1.91308 -30.6937 3.20878 -31.1293C6.66534 -32.2908 8.90343 -31.5395 12.1906 -32.0258C12.0369 -28.3867 12.0956 -25.5658 12.8848 -22.005C15.3473 -21.9866 19.4889 -21.8529 21.8288 -22.1064C22.0846 -24.4042 21.8975 -29.6727 21.8539 -32.0558C18.8956 -32.1987 15.1717 -32.0742 12.1906 -32.0258C12.0472 -41.3114 12.4554 -50.9427 12.1945 -60.1684C9.29706 -60.3181 5.61209 -60.2329 2.65587 -60.2467C2.47242 -62.8118 2.57729 -66.6998 2.57291 -69.3686C8.92762 -69.4032 15.2826 -69.4032 21.6373 -69.3709C21.823 -66.8335 21.697 -62.6851 21.7306 -59.9655C27.9051 -59.9171 34.0798 -59.9218 40.2543 -59.9748C40.4569 -63.365 40.7289 -75.937 40.1241 -78.9285C37.4237 -79.212 34.4463 -78.6888 31.6995 -78.8801C25.1676 -79.3295 18.7589 -79.4332 12.2263 -79.5761C11.9751 -84.976 12.2005 -92.5607 12.2012 -98.1404C16.9058 -97.8615 21.6873 -98.281 26.3932 -97.873C27.8168 -97.7509 29.1591 -97.6725 30.5898 -97.7186C30.6514 -95.6098 30.0104 -90.1915 31.2273 -88.7695C32.1653 -87.6725 38.9059 -87.843 39.9621 -88.3961C40.6176 -88.7395 40.4449 -97.0157 40.4458 -97.9721C38.394 -98.1196 32.6707 -98.2326 30.7491 -98.0205C30.8009 -101.987 30.7608 -105.419 31.3559 -109.341C31.6037 -110.975 31.6733 -115.638 31.1955 -117.175C30.0899 -117.719 22.9834 -117.668 22.1491 -117.401C21.4997 -116.147 21.6714 -109.811 21.6313 -107.903C18.6631 -107.903 15.1136 -107.981 12.204 -107.76C12.1443 -105.084 11.9369 -100.828 12.118 -98.2833C8.93753 -98.4123 5.84164 -98.2786 2.58143 -98.4469C2.48694 -101.487 2.53327 -104.806 2.51437 -107.871C-0.511909 -107.97 -3.87561 -107.924 -6.92494 -107.947C-6.96366 -110.987 -6.9314 -114.093 -6.9314 -117.14C-3.94015 -117.214 10.0608 -116.838 11.8205 -117.546C12.5105 -119.148 12.2148 -124.672 12.1888 -126.677C8.86977 -126.728 5.93613 -126.606 2.54847 -126.781C2.36617 -129.498 2.40235 -133.656 2.4897 -136.38C4.40789 -136.546 6.87138 -136.375 8.8548 -136.483C13.1712 -136.719 17.3538 -136.765 21.6769 -136.725C21.6898 -133.547 21.6527 -130.182 21.8007 -127.025C24.9994 -127.055 28.0298 -127.226 31.3167 -127.226C31.5583 -132.96 31.3649 -140.24 31.3681 -146.069C34.1695 -146.207 37.5014 -146.156 40.3264 -146.172C39.8418 -149.164 40.0957 -160.701 40.1186 -164.359C35.8201 -164.407 31.5265 -164.213 27.2227 -164.29C23.2526 -164.359 16.2268 -165.363 12.4722 -164.527C11.7405 -163.089 12.006 -157.484 12.0177 -155.596C8.8979 -155.603 5.743 -155.647 2.62799 -155.527C2.42126 -152.99 2.51691 -148.758 2.49824 -146.092C-0.812218 -146.025 -3.60941 -146.013 -6.91249 -146.156L-6.95029 -155.571C-13.1746 -155.817 -19.7256 -155.414 -26.0495 -155.617C-26.1357 -158.528 -26.1057 -161.632 -26.1267 -164.559C-24.3313 -164.552 -17.612 -164.239 -16.6602 -164.962C-16.1589 -167.154 -16.388 -180.929 -16.4382 -183.925ZM31.6438 -22.6457C36.9536 -22.6342 42.4205 -22.5443 47.6913 -23.1689C51.2037 -23.5837 54.3657 -23.5515 57.8896 -23.5238L58.7446 -23.6275C59.8186 -25.0495 58.8783 -39.7258 59.2355 -42.5582C59.36 -43.5654 59.2286 -49.0713 59.0926 -50.083C58.6225 -50.5878 57.1014 -50.6546 56.3754 -50.6569C48.014 -50.6892 39.6002 -50.567 31.2398 -50.6799C30.6345 -49.0482 30.9058 -46.8634 30.7509 -45.1441C30.208 -39.1219 30.3375 -33.3602 31.234 -27.3703C31.4635 -25.8377 31.3589 -24.2221 31.6438 -22.6457ZM68.7792 -22.0811C71.8514 -22.0742 74.9212 -22.088 77.9933 -22.1272C78.2353 -24.8951 78.0717 -29.1196 78.021 -31.9958C75.0203 -32.0742 72.0196 -32.1042 69.0212 -32.088C68.7562 -29.7649 68.7078 -24.5264 68.7792 -22.0811Z" fill="#9E2184"/> +<path d="M258.854 -79.4632C261.606 -79.2535 265.355 -79.4816 268.473 -79.3088C268.582 -76.1859 268.485 -72.5606 268.478 -69.4009L277.397 -69.3894C277.542 -67.0502 277.556 -62.4731 277.217 -60.2052L268.499 -60.1891C268.414 -57.0225 268.469 -53.6599 268.471 -50.4771C270.209 -50.431 275.895 -50.8113 277.012 -50.1891C277.865 -48.1748 277.489 -35.0219 277.169 -32.1134C272.062 -31.8737 263.998 -31.9152 258.865 -32.1065C258.798 -35.3146 258.909 -38.4513 258.789 -41.7032C254.931 -41.9083 243.101 -41.8691 239.469 -41.5926C239.391 -38.4236 239.444 -35.0473 239.441 -31.8645L249.11 -31.8C249.319 -25.5474 249.137 -18.8061 249.176 -12.489C252.389 -12.4521 255.604 -12.4659 258.819 -12.5304L258.826 -22.0903C261.871 -22.2171 265.348 -22.1387 268.427 -22.1295C268.483 -19.0135 268.266 -15.9114 268.381 -12.7402C265.194 -12.6849 262.004 -12.6641 258.817 -12.678C258.685 -9.78788 258.796 -6.19028 258.815 -3.2495C257.068 -3.54681 250.582 -3.71964 249.188 -2.51659C247.966 -1.46336 243.037 -1.9243 241.105 -1.97961C240.866 0.825188 240.85 3.81207 240.868 6.63531C246.911 6.64223 252.788 6.40025 258.803 6.39103C258.621 8.03197 258.52 14.1025 258.815 15.5821C256.657 15.2364 252.97 15.3309 250.762 15.3055C247.358 15.2664 250.372 22.2634 248.605 24.6073C247.093 25.1581 241.762 24.8608 239.9 24.817C239.28 19.2673 240.725 12.1089 240.594 6.43019C237.144 6.37488 233.691 6.37719 230.241 6.43941C230.077 10.415 230.587 21.2263 229.914 24.5266C229.033 25.2618 222.518 24.9046 220.981 24.8769C221.112 16.0384 220.955 6.99023 220.907 -1.86668L217.593 -1.91508C215.304 -3.51683 214.14 -3.24258 211.322 -3.21723C211.345 -6.38157 211.34 -9.54358 211.306 -12.7056C208.713 -12.8301 205.371 -12.754 202.732 -12.7586L201.774 -14.8513C199.817 -14.5102 194.848 -14.4226 192.493 -14.2544C192.237 -19.055 193.419 -38.3038 191.774 -41.3206C189.821 -42.0927 176.468 -41.6525 173.043 -41.7654C173.027 -44.6578 173.057 -47.5479 173.131 -50.438C177.807 -50.7076 187.662 -50.0323 191.704 -50.6477C192.518 -51.7862 192.207 -58.1932 192.191 -59.9494H220.301C220.412 -62.0951 220.119 -67.3659 220.79 -68.9884C222.179 -69.5554 237.939 -69.6683 239.172 -68.9653C239.948 -67.3728 239.469 -53.4525 239.501 -50.5025C241.767 -50.3481 244.936 -50.4518 247.296 -50.4449C251.041 -50.431 255.046 -50.3066 258.768 -50.4357C258.909 -53.4802 258.828 -57.0732 258.828 -60.1614C255.791 -60.2721 252.408 -60.226 249.352 -60.2444C249.31 -63.2474 249.299 -66.2504 249.322 -69.2534C251.737 -69.4862 256.148 -69.3802 258.75 -69.4194C258.911 -72.4777 258.831 -76.3426 258.854 -79.4632ZM230.269 -50.544C224.698 -50.6869 219.128 -50.7145 213.557 -50.6293C211.398 -50.6062 202.984 -50.862 201.681 -50.1729C200.34 -47.4557 202.069 -27.0431 202.126 -22.1871L218.137 -22.1433L230.225 -22.1087C230.384 -30.3549 230.672 -42.3831 230.269 -50.544ZM220.794 -2.3299C223.836 -2.38752 226.878 -2.40598 229.921 -2.38293C230.467 -3.26102 230.257 -11.014 230.248 -12.7033C227.478 -12.7102 223.979 -12.6296 221.299 -12.8808C220.142 -11.5026 220.663 -4.46404 220.794 -2.3299ZM201.866 -14.9458C201.87 -15.8216 201.983 -17.6307 201.679 -18.3521L201.299 -18.6333C201.287 -17.5063 201.186 -16.3447 201.497 -15.28L201.866 -14.9458Z" fill="#9E2184"/> +<path d="M126.016 -50.3112L134.848 -50.3089C134.822 -44.0194 135.249 -38.0872 135.175 -31.8553C131.172 -31.9198 119.535 -32.4891 116.293 -32.1365C116 -26.4139 116.182 -18.8315 116.154 -12.9891C118.786 -12.9868 122.024 -13.0698 124.613 -12.9614C124.742 -9.73718 124.935 -6.1972 124.905 -2.99138C131.464 -3.03056 138.024 -3.02363 144.583 -2.97062C144.546 -6.11191 144.576 -9.2532 144.675 -12.3922C147.71 -12.4752 150.745 -12.5051 153.781 -12.4821C154.085 -10.4171 153.949 -4.91809 153.677 -2.88996C150.619 -2.83696 147.558 -2.83927 144.5 -2.89688L144.52 6.87961C142.036 6.26656 129.102 6.39794 125.843 6.39794C125.615 9.54153 125.624 12.5007 125.61 15.6512C122.824 15.695 120.038 15.6881 117.251 15.6328C117.323 12.3025 117.346 9.88723 117.069 6.53622C116.8 3.30274 116.323 0.062336 116.336 -3.15501C112.937 -2.98907 109.74 -3.17806 106.346 -3.27255C103.32 -3.35552 100.347 -3.22185 97.3274 -3.50533C97.2098 -9.67728 97.355 -16.029 97.4288 -22.2148C99.367 -22.2217 105.154 -21.9382 106.419 -22.6066C107 -23.8511 107.438 -32.2217 105.647 -32.6274C103.661 -33.0791 99.6574 -32.7034 97.3527 -32.7564C97.302 -35.7456 97.2675 -38.7348 97.249 -41.7239C101.16 -41.7539 105.288 -41.7746 109.16 -41.7124C112.764 -41.6548 122.769 -40.4817 125.659 -41.4405C126.272 -42.9362 125.97 -48.3177 126.016 -50.3112Z" fill="#9E2184"/> +<path d="M182.626 6.50395C188.04 6.22278 196.507 6.94644 201.462 6.4325C201.504 9.44011 201.451 12.5468 201.437 15.5637C199.298 15.5222 193.608 14.946 192.368 15.8656C191.451 17.2622 191.789 21.9915 191.794 23.9873L191.642 24.5197C190.526 25.1328 175.633 24.8446 173.108 24.8124C173.091 18.97 172.978 12.6874 173.163 6.88193C176.366 6.63763 179.337 7.08934 182.626 6.50395Z" fill="#9E2184"/> +<path d="M155.104 6.97179C156.643 6.83351 162.101 6.74362 163.447 7.22761C164.083 8.76022 163.643 22.2588 163.615 24.8262C157.515 24.9414 151.112 24.8423 144.989 24.84C135.537 22.9617 136.129 26.1099 136.588 15.1857C138.353 15.1696 142.88 15.566 144.087 14.9829C145.138 13.872 144.733 9.08518 144.721 7.19764C147.784 7.16999 152.168 7.28753 155.104 6.97179Z" fill="#9E2184"/> +<path d="M31.0869 15.6328C37.257 15.6812 43.4281 15.6858 49.5977 15.6512C52.1236 15.6489 56.8782 15.5268 59.2129 15.8195C59.2613 17.6102 59.5309 23.3881 59.0377 24.8377C58.6205 24.9852 58.798 24.9921 58.5122 24.9391C53.4396 25.1489 47.6641 24.8953 42.5016 24.9691C39.8519 25.006 33.5741 25.1466 31.1514 24.9207C31.2213 21.9131 31.1263 18.6612 31.0869 15.6328Z" fill="#9E2184"/> +<path d="M97.3832 6.65836C100.278 6.47629 103.585 6.57539 106.482 6.65144C106.586 8.99531 106.448 23.07 105.959 24.8354C105.696 24.87 105.431 24.8999 105.166 24.9253C103.733 25.0613 98.3327 25.4692 97.9271 24.6072C96.7425 22.0905 97.1896 9.10363 97.3832 6.65836Z" fill="#9E2184"/> +<path d="M40.3965 -3.05129C43.5961 -3.12734 46.7973 -3.12506 49.9962 -3.04439C50.04 -0.389393 50.1483 3.53318 49.8879 6.11213C47.1084 6.22967 43.3126 6.18358 40.5419 6.06604C40.2914 3.70143 40.3902 -0.536871 40.3965 -3.05129Z" fill="#9E2184"/> +<path d="M201.878 -2.98907C204.95 -3.07435 208.024 -3.05129 211.096 -2.91761C211.096 -0.311012 211.212 3.91808 210.806 6.32187C208.098 6.4855 204.413 6.39331 201.629 6.40022C201.608 4.4251 201.438 -1.33661 201.878 -2.98907Z" fill="#9E2184"/> +<path d="M258.814 15.5821C261.829 15.619 265.415 15.5729 268.386 15.7204C268.351 18.7234 268.271 21.8394 268.287 24.8354C265.254 24.8516 261.829 24.9391 258.831 24.8124C258.773 21.7356 258.766 18.6589 258.814 15.5821Z" fill="#9E2184"/> +<path d="M201.601 15.6167C204.639 15.6813 207.861 15.6282 210.915 15.6305C211.083 18.675 211.004 21.7172 210.894 24.7617C209.055 24.9968 203.659 24.8562 201.668 24.8424C201.528 21.95 201.601 18.5506 201.601 15.6167Z" fill="#9E2184"/> +<path d="M258.814 -3.24954C261.873 -3.19423 265.323 -3.2311 268.34 -3.04211C268.31 -1.18684 268.388 4.46655 268.04 5.93925C265.351 5.96229 261.481 5.88393 258.872 6.05448C258.886 2.95237 258.865 -0.147433 258.814 -3.24954Z" fill="#9E2184"/> +<path d="M-35.4382 272.075C-38.9999 271.892 -52.0334 272.4 -54.551 271.738C-55.0864 270.784 -55.0557 264.607 -54.6153 263.4C-53.3613 262.775 -29.4712 263.042 -26.1533 263.033C-26.4347 265.354 -26.3573 269.853 -26.2349 272.22C-23.2704 272.356 -19.5276 272.268 -16.4891 272.293C-16.4506 275.414 -16.4875 278.604 -16.4893 281.729C-19.7044 281.697 -22.9194 281.701 -26.1342 281.743C-26.2725 283.895 -26.8164 289.48 -25.7832 290.987C-24.3831 291.985 -18.6892 291.457 -16.4905 291.42C-16.2275 288.475 -16.3808 284.799 -16.4301 281.773L7.9459 281.766C11.7837 281.766 17.8337 281.607 21.4544 281.992C21.5936 284.778 21.4214 288.648 21.3603 291.478C23.3974 291.413 29.4865 291.763 30.86 291.201C31.4823 289.224 31.2426 275.276 31.2357 272.234C35.6538 272.081 46.1263 272.616 49.876 272.104C49.8829 275.066 49.9843 278.811 49.717 281.69C46.7578 281.814 43.2316 281.743 40.2401 281.745C40.0742 284.914 40.1664 288.263 40.2078 291.443C43.4413 291.48 56.8154 290.959 58.7975 292.047C59.8461 294.089 59.1409 297.968 59.6133 300.471C50.5905 300.113 40.9753 300.427 31.9317 300.558C29.929 300.588 31.8257 307.77 30.5996 309.57C29.0439 310.213 23.3076 309.899 21.3477 309.864L21.3518 319.314C23.5588 319.507 27.1518 319.39 29.4496 319.385C32.9458 319.378 36.8707 319.434 40.3346 319.231C40.413 322.114 40.1502 326.767 40.4314 329.298C34.8103 329.632 27.2624 329.427 21.5039 329.415C21.3172 332.361 21.3891 335.702 21.3926 338.687C23.7501 338.906 28.4678 338.724 30.9776 338.687C31.0698 341.791 31.0651 344.898 30.9637 348.005C28.3041 348.231 24.3723 348.072 21.4532 348.191C21.2209 350.798 21.3304 355.251 21.3168 357.991C26.9743 357.975 34.9163 357.719 40.3876 358.06C40.6642 367.44 41.6805 367.108 31.904 366.611C31.5906 367.5 30.0511 373.956 30.0972 374.654C30.2954 377.685 38.4079 375.352 40.0304 376.611C40.7587 378.251 40.3116 384.193 40.4291 386.634L49.8829 386.613C50.2701 391.868 49.6525 399.786 49.6893 405.537C52.8629 405.562 56.1378 405.497 59.3229 405.477C59.6802 402.743 59.5303 396.092 59.5027 393.137C59.4497 387.705 59.6317 381.828 59.452 376.442C56.4052 376.387 53.1994 376.477 50.1019 376.442C50.0189 367.067 50.0143 357.694 50.088 348.318C53.2339 348.261 56.3822 348.261 59.5304 348.321C59.7124 352.614 59.1823 355.838 58.5854 359.978C58.3826 361.37 58.4725 365.518 58.4771 367.088C65.1446 367.302 71.7659 366.735 78.5809 367.424C78.7676 364.393 78.6984 361.063 78.6938 358C84.6952 357.814 91.1852 357.924 97.2005 357.968C97.295 367.509 97.2926 377.053 97.1889 386.597C106.286 386.825 116.311 386.604 125.488 386.62C125.756 390.208 125.613 401.838 125.414 405.253C122.305 405.486 119.183 405.449 116.067 405.415C116.21 402.363 116.2 398.922 116.145 395.869C113.488 395.686 109.542 395.76 106.848 395.802C106.717 398.874 106.627 402.43 106.797 405.474C103.939 405.26 100.425 405.502 97.3272 405.35C97.3756 402.172 97.3826 398.996 97.3549 395.818C94.9327 395.569 90.3117 395.786 87.7074 395.841C87.6268 399.086 87.7628 402.209 87.4102 405.442C84.262 405.461 81.4064 405.922 78.2836 406.371C78.2145 403.456 78.5832 400.844 78.65 397.993C78.7353 394.357 78.6915 390.598 78.6846 386.952C81.1829 386.733 85.3451 386.846 87.9702 386.848C88.2214 382.992 87.7997 379.92 87.5484 376.085C83.9854 376.064 81.8766 376.14 78.3158 375.659C75.9973 375.864 70.7058 374.735 68.9588 375.712C68.1545 378.06 68.3642 404.619 69.4128 405.885C71.4548 406.71 75.9697 406.468 78.2836 406.371C78.2606 408.825 78.1591 411.877 78.249 414.276C73.0981 414.267 63.8401 414.009 59.051 414.458C58.9173 417.68 58.9173 420.727 58.9265 423.953C62.1162 423.935 65.3889 423.877 68.567 424.002C68.7353 428.166 68.3204 432.209 68.3596 436.362C68.4333 444.29 68.1752 452.204 67.9332 460.126C67.818 463.926 67.977 467.839 67.8641 471.658L59.3667 471.628C58.7583 463.087 59.8645 452.267 59.5488 443.29C56.9975 443.299 52.3536 443.17 49.9659 443.373C49.8737 446.256 50.0258 450.536 49.6732 453.186L40.1894 453.2C40.0972 449.879 40.2171 446.431 40.1041 443.209C37.4837 443.232 23.1831 443.062 21.7733 443.638C21.0363 445.251 21.3571 450.616 21.3115 452.734C18.5205 452.485 14.9459 452.555 12.1496 452.721L12.069 465.219C12.0614 466.726 11.9485 470.25 12.0865 471.633C5.82284 471.471 -0.495247 471.748 -6.78059 471.566C-6.84881 469.45 -7.36184 464.666 -6.30629 463.163C-4.92993 462.186 0.584038 462.615 2.79539 462.608C3.04659 456.53 2.88158 449.448 2.8765 443.297C-0.286217 443.251 -3.60588 443.313 -6.78128 443.324C-6.56718 440.273 -6.58884 436.897 -6.55243 433.811C-12.7361 433.815 -19.9952 434.002 -26.0798 433.684C-26.3315 436.537 -26.3103 440.644 -26.2773 443.527L-6.8366 443.5C-6.84444 446.546 -6.90897 449.591 -7.03019 452.633C-8.94953 452.651 -14.3061 452.324 -15.717 452.87C-16.9802 454.182 -16.4179 459.731 -16.6497 462.405C-19.7426 462.435 -22.8355 462.437 -25.9284 462.416C-25.989 459.238 -25.942 455.975 -25.9874 452.769C-28.1948 452.449 -33.2193 452.651 -35.5539 452.725C-35.367 449.814 -35.4163 446.182 -35.4756 443.264C-40.1691 443.186 -44.8992 443.34 -49.5973 443.269C-51.1733 443.246 -52.7985 443.221 -54.3606 443.426C-55.0497 444.677 -54.7022 450.999 -54.8292 453.142C-56.3547 453.209 -60.1811 453.451 -61.4964 453.158C-65.4086 452.287 -67.6234 451.914 -71.6239 451.955C-72.3561 452.624 -72.7232 453.103 -73.3552 453.878C-73.4375 455.91 -73.9715 460.596 -73.0867 462.041C-71.9226 462.953 -66.0535 462.603 -63.9654 462.704C-63.7377 464.995 -63.6769 478.83 -64.3496 480.517C-65.97 481.183 -98.2797 480.845 -102.51 480.812C-102.271 475.191 -102.438 468.397 -102.434 462.691C-99.1838 462.522 -95.9268 462.518 -92.6758 462.681C-92.4848 465.523 -92.6477 469.01 -92.5009 472.068C-89.6821 472.179 -85.9296 472.168 -83.1312 472.05C-82.8692 469.04 -83.016 464.802 -83.0273 461.67C-83.066 455.622 -83.0664 449.572 -83.0284 443.525C-81.086 443.536 -75.8187 443.707 -74.3082 443.41C-72.3658 443.027 -74.3167 436.258 -73.224 434.251C-71.6064 433.543 -66.1593 433.877 -63.915 433.866C-63.6896 431.428 -63.2549 426.074 -63.2706 423.907C-59.3586 423.967 -59.0332 425.295 -54.5019 425.422C-51.3862 423.799 -48.7605 424.154 -45.2555 424.145C-45.1958 427.367 -45.2474 430.582 -45.1783 433.813C-42.4661 434.016 -38.4463 433.93 -35.6325 433.949C-35.3606 430.884 -35.4631 426.744 -35.4836 423.656L-45.0333 423.721C-45.2122 417.738 -45.0006 411.646 -45.2576 405.686L-54.4789 405.705C-54.5542 402.656 -54.5093 399.425 -54.5151 396.362C-57.6623 396.184 -60.4146 396.532 -63.8668 396.223C-64.08 405.096 -63.9207 414.649 -63.9152 423.585C-66.3969 423.58 -67.0977 423.543 -69.4006 424.424C-72.4006 423.375 -77.7057 423.578 -80.773 423.96C-81.2769 424.023 -82.0151 423.808 -82.2971 423.396C-83.4046 421.778 -83.0731 416.477 -83.0697 414.424C-85.588 414.262 -90.0626 414.223 -92.5528 414.421C-92.4984 411.158 -92.4869 407.894 -92.5187 404.633C-95.4359 404.654 -99.6445 404.808 -102.461 404.633L-102.445 396.078L-92.7385 395.998C-92.7431 398.766 -92.8026 401.718 -92.7501 404.47C-86.5438 404.334 -79.635 404.578 -73.6315 404.329C-73.5988 401.568 -73.5506 398.846 -73.6318 396.083C-79.9747 396.03 -86.2444 395.686 -92.5629 395.795C-92.538 392.81 -92.4401 389.381 -92.5698 386.438L-111.88 386.38L-111.699 377.625C-107.14 377.638 -103.12 377.638 -98.5565 377.201C-96.8167 377.035 -94.4283 377.24 -92.5986 377.074C-92.2628 367.489 -92.5364 356.693 -92.4894 346.986C-95.3608 347.198 -99.7169 347.244 -102.58 347.023L-102.449 338.855C-99.6192 338.572 -95.9441 338.662 -93.0381 338.703C-92.9017 335.739 -92.8759 332.775 -92.9605 329.812C-96.137 329.888 -99.3147 329.906 -102.492 329.871C-102.463 323.4 -102.695 315.988 -102.433 309.648C-99.5726 309.579 -95.4253 309.408 -92.7049 309.934L-92.7918 329.629C-90.7904 329.646 -84.7705 329.89 -83.3356 329.242C-82.3843 327.449 -83.9994 319.952 -82.396 319.802C-76.7156 319.27 -70.3524 319.482 -64.6349 319.666C-63.4568 319.706 -64.1007 328.473 -64.0777 329.632C-65.4927 329.523 -67.0717 329.537 -68.4923 329.593C-73.316 329.777 -78.2552 329.417 -83.0616 329.535C-83.1494 336.698 -83.1526 343.863 -83.0715 351.029C-83.0411 352.948 -83.1291 356.203 -82.9844 357.993L-65.0876 358.051C-65.0871 355.285 -65.2176 351.181 -65.0525 348.523C-62.2399 348.196 -57.5602 348.332 -54.6033 348.364C-54.5971 351.57 -54.6349 354.776 -54.7169 357.982C-48.9024 357.991 -41.2585 357.756 -35.6286 358.042C-35.562 361.312 -35.2175 373.889 -36.0077 376.205C-36.7895 376.94 -40.1541 377.083 -41.374 377.362C-42.5911 377.641 -43.8347 378.122 -45.0349 378.288C-45.0538 380.989 -45.0045 383.704 -45.3325 386.385C-48.1152 386.396 -51.863 386.304 -54.5662 386.468C-54.498 383.227 -54.4775 379.985 -54.5044 376.742C-44.3099 376.594 -44.5931 378.436 -45.1677 367.378C-45.1755 367.212 -45.1873 367.048 -45.2023 366.882C-48.023 366.906 -51.7328 367.018 -54.5021 366.869C-54.5019 364.333 -54.4107 360.736 -54.6338 358.318C-57.8688 358.302 -61.0869 358.429 -64.3199 358.457L-64.4033 366.813C-70.5534 366.873 -76.921 366.972 -83.0641 366.855C-83.0708 370.017 -83.1768 373.79 -83.0505 376.901C-78.1031 377.265 -69.4635 376.924 -64.13 376.933C-64.1201 379.482 -64.2339 384.244 -64.0136 386.666C-61.3044 386.76 -57.4549 386.7 -54.6888 386.611L-54.7013 395.998C-47.6097 396.15 -40.4938 395.968 -33.4011 396.034C-31.444 396.053 -28.1593 395.852 -26.3737 396.422C-25.9256 397.846 -26.0911 402.624 -26.2439 404.214C-26.4232 406.078 -33.8201 405.35 -35.4359 405.527C-35.7839 410.796 -35.5519 418.003 -35.5986 423.469C-32.7885 423.359 -29.9768 423.29 -27.1646 423.262C-26.5732 423.681 -25.8245 424.251 -25.2257 424.624C-23.1801 424.613 -17.0869 425.306 -15.7912 424.871C-12.3347 423.709 -10.0966 424.46 -6.8094 423.974C-6.96312 427.613 -6.90436 430.434 -6.11523 433.995C-3.65268 434.013 0.488853 434.147 2.8288 433.894C3.08463 431.596 2.89749 426.327 2.85393 423.944C-0.10437 423.801 -3.82829 423.926 -6.8094 423.974C-6.95275 414.689 -6.5446 405.057 -6.80549 395.832C-9.70294 395.682 -13.3879 395.767 -16.3441 395.753C-16.5276 393.188 -16.4227 389.3 -16.4271 386.631C-10.0724 386.597 -3.71743 386.597 2.63729 386.629C2.82304 389.167 2.69698 393.315 2.73062 396.034C8.90511 396.083 15.0798 396.078 21.2543 396.025C21.4569 392.635 21.7289 380.063 21.1241 377.071C18.4237 376.788 15.4463 377.311 12.6995 377.12C6.16759 376.67 -0.241051 376.567 -6.77368 376.424C-7.02489 371.024 -6.7995 363.439 -6.79881 357.86C-2.09425 358.138 2.6873 357.719 7.39324 358.127C8.81685 358.249 10.1591 358.327 11.5898 358.281C11.6514 360.39 11.0104 365.808 12.2273 367.23C13.1653 368.328 19.9059 368.157 20.9621 367.604C21.6176 367.26 21.4449 358.984 21.4458 358.028C19.394 357.88 13.6707 357.767 11.7491 357.979C11.8009 354.013 11.7608 350.581 12.3559 346.659C12.6037 345.025 12.6733 340.362 12.1955 338.825C11.0899 338.281 3.98344 338.332 3.14915 338.599C2.49969 339.853 2.67139 346.189 2.63129 348.097C-0.336914 348.097 -3.88637 348.019 -6.79604 348.24C-6.85573 350.916 -7.06315 355.172 -6.882 357.717C-10.0625 357.588 -13.1584 357.721 -16.4186 357.553C-16.5131 354.513 -16.4667 351.194 -16.4856 348.129C-19.5119 348.03 -22.8756 348.076 -25.9249 348.053C-25.9637 345.013 -25.9314 341.907 -25.9314 338.86C-22.9401 338.786 -8.93916 339.162 -7.17953 338.454C-6.48951 336.852 -6.7852 331.328 -6.81124 329.323C-10.1302 329.272 -13.0639 329.394 -16.4515 329.219C-16.6338 326.502 -16.5976 322.344 -16.5103 319.62C-14.5921 319.454 -12.1286 319.625 -10.1452 319.517C-5.82876 319.281 -1.6462 319.235 2.67693 319.275C2.68983 322.453 2.65273 325.818 2.80069 328.975C5.99936 328.945 9.02979 328.774 12.3167 328.774C12.5583 323.04 12.3649 315.76 12.3681 309.931C15.1695 309.793 18.5014 309.844 21.3264 309.828C20.8418 306.836 21.0957 295.299 21.1186 291.641C16.8201 291.593 12.5265 291.787 8.2227 291.71C4.25265 291.641 -2.7732 290.636 -6.52777 291.473C-7.25951 292.911 -6.994 298.516 -6.98225 300.404C-10.1021 300.397 -13.257 300.353 -16.372 300.473C-16.5787 303.01 -16.4831 307.242 -16.5018 309.908C-19.8122 309.975 -22.6094 309.987 -25.9125 309.844L-25.9503 300.429C-32.1746 300.183 -38.7256 300.586 -45.0495 300.383C-45.1357 297.472 -45.1057 294.368 -45.1267 291.441C-43.3313 291.448 -36.612 291.761 -35.6602 291.038C-35.1589 288.846 -35.388 275.071 -35.4382 272.075ZM12.6438 433.354C17.9536 433.366 23.4205 433.456 28.6913 432.831C32.2037 432.416 35.3657 432.449 38.8896 432.476L39.7446 432.372C40.8186 430.95 39.8783 416.274 40.2355 413.442C40.36 412.435 40.2286 406.929 40.0926 405.917C39.6225 405.412 38.1014 405.345 37.3754 405.343C29.014 405.311 20.6002 405.433 12.2398 405.32C11.6345 406.952 11.9058 409.137 11.7509 410.856C11.208 416.878 11.3375 422.64 12.234 428.63C12.4635 430.162 12.3589 431.778 12.6438 433.354ZM49.7792 433.919C52.8514 433.926 55.9212 433.912 58.9933 433.873C59.2353 431.105 59.0717 426.88 59.021 424.004C56.0203 423.926 53.0196 423.896 50.0212 423.912C49.7562 426.235 49.7078 431.474 49.7792 433.919Z" fill="#9E2184"/> +<path d="M21.2809 414.223L30.8926 414.159C30.9825 416.212 30.9894 420.646 30.6552 422.545L21.1428 422.769C21.1055 420.821 20.9437 415.933 21.2809 414.223Z" fill="#9E2184"/> +<path d="M192.087 224.994C193.469 214.075 190.957 215.113 201.847 214.718C201.49 217.366 201.478 222.028 201.312 224.958C204.836 225.123 209.524 225.137 213.036 225.036C221.531 224.793 220.526 224.66 220.448 232.867L220.393 243.43C217.316 243.307 214.447 243.54 211.259 243.288C211.165 241.216 211.522 235.823 210.99 234.309C210.093 233.685 202.598 233.594 201.766 234.144C201.056 235.802 201.375 243.517 201.596 245.713C202.061 250.355 201.073 258.56 201.971 262.754C203.403 263.964 217.185 262.114 219.724 263.713C220.596 265.045 220.248 270.12 220.227 272.061C217.233 272.079 214.237 272.065 211.241 272.024C211.024 274.547 211.054 279.36 211.135 281.959C213.599 282.107 217.447 281.978 220.017 281.971C219.759 284.428 219.819 286.407 219.492 289.498C219.061 293.561 213.824 290.45 212.555 292.211C211.137 294.176 211.333 308.353 211.354 310.024C214.343 310.116 217.521 310.06 220.526 310.051C220.464 314.195 220.441 318.339 220.46 322.485C220.457 324.518 220.358 327.742 220.483 329.659L192.107 329.682C192.165 327.597 191.743 321.298 192.575 320.109C193.976 319.18 199.213 319.533 201.384 319.514C201.593 316.659 201.501 312.782 201.506 309.844L192.094 309.867C189.1 309.869 185.661 309.802 182.709 310.005C182.349 315.244 182.619 324.354 182.601 329.8C185.59 329.606 189.008 329.786 192.107 329.682C191.794 335.115 192.029 342.46 191.898 348.24C189.724 348.072 185.382 348.323 182.764 348.251C182.559 345.546 182.665 341.342 182.656 338.521C180.107 338.431 175.673 338.438 173.181 338.562L173.17 329.473C171.934 329.429 164.184 329.832 163.769 328.933C162.907 327.064 164.267 321.344 163.124 319.643C161.526 319.037 147.924 319.493 144.603 319.251L144.571 309.977C141.632 309.816 138.074 309.894 135.085 309.892C135.039 306.813 134.951 303.746 135.103 300.671L154.013 300.683C154.135 297.998 154.128 294.236 153.965 291.577C151.904 291.362 147.041 291.528 144.61 291.478L144.575 262.835L134.983 262.844C134.739 268.366 135.327 276.585 134.688 281.731C131.658 281.75 128.629 281.733 125.601 281.683C125.889 276.622 125.82 271.325 125.594 266.262C125.44 262.789 125.059 259.323 125.228 255.84C125.258 255.253 125.26 254.407 125.7 253.964C126.991 252.667 141.625 253.358 144.61 253.215C144.698 250.046 144.629 246.552 144.631 243.359C141.402 243.365 138.362 243.46 135.135 243.225C135.048 240.203 135.066 237.022 135.027 233.982C132.504 233.749 128.136 233.867 125.571 233.968C125.804 231.554 125.61 227.502 125.548 225.001C131.881 224.991 138.217 225.02 144.55 225.089C144.725 227.827 144.656 231.453 144.665 234.226C147.537 234.344 150.969 234.261 153.884 234.263C153.843 237.44 153.868 240.677 153.863 243.861C156.917 243.99 160.388 243.888 163.479 243.858C163.513 246.619 163.61 251.003 163.225 253.646C160.517 253.667 157.938 253.678 155.23 253.84C155.302 257.078 155.527 260.27 155.594 263.533C158.178 263.566 160.759 263.637 163.338 263.743C163.594 266.345 163.444 269.618 163.4 272.28L173.142 272.261C173.373 266.287 173.218 259.399 173.218 253.356L181.234 253.393C181.296 250.254 181.179 247.587 180.992 244.455C178.286 244.441 175.583 244.402 172.877 244.338C172.713 241.91 172.63 227.203 173.19 225.398C174.739 224.699 189.146 225.035 192.087 224.994ZM172.854 308.749C172.833 306.631 172.421 301.773 173.458 300.314C174.891 299.36 180.704 299.818 182.923 299.793L182.932 299.355C182.969 297.82 183.08 296.659 183.393 295.22C183.949 292.658 183.834 283.688 182.589 281.828C181.13 280.95 175.232 281.275 173.091 281.284C171.58 285.732 175.06 291.916 169.685 291.775C167.749 291.724 165.781 291.791 163.84 291.775C163.336 294.515 163.518 306.905 163.548 310.305C165.564 310.353 171.116 310.754 172.552 309.89C172.849 309.337 172.891 309.364 172.854 308.749ZM192.006 291.411C194.078 291.441 199.692 291.625 201.591 291.415C202.216 288.242 202.057 275.575 201.861 272.051C198.623 272.022 195.385 272.04 192.149 272.104C191.833 273.828 191.826 289.36 192.006 291.411Z" fill="#9E2184"/> +<path d="M68.6825 24.151C74.6447 23.9874 81.6256 24.0218 87.6362 24.1053C87.6431 26.9675 87.5463 30.8496 87.7445 33.6259C90.8997 33.7552 94.1447 33.7179 97.3113 33.7187C97.0416 36.1395 97.2353 40.152 97.1799 42.7784C94.0387 42.7537 90.8651 42.692 87.7284 42.8095C87.6915 45.7339 87.574 49.2815 87.6892 52.188C86.1635 52.1502 79.632 51.887 78.6203 52.5364C77.9012 54.527 78.3622 67.849 78.2054 71.2344C76.9678 71.36 69.7564 71.189 69.39 71.7296C68.3414 73.2798 68.7124 87.9277 68.883 90.6228C71.9874 90.6753 75.0895 90.6788 78.1916 90.6334C78.2538 93.8752 78.2838 97.1176 78.2769 100.36C76.689 100.096 68.0464 100.107 65.9122 100.118C61.5633 100.14 54.3658 99.6177 50.3326 100.071C49.6573 101.239 49.6988 108.478 49.897 110.016C47.9725 110.056 42.2661 109.682 41.017 110.382C40.0951 111.516 40.4546 117.353 40.4062 119.514C37.3618 119.679 34.1629 119.583 31.1045 119.548C30.9409 122.47 31.0262 126.36 30.9686 129.4C26.91 129.603 16.2789 129.63 12.5177 129.365C12.0604 124.705 12.4151 114.949 12.3534 109.768L3.18325 109.842C3.04266 106.825 3.10926 103.215 3.0869 100.152C-0.0898781 100.222 -3.51925 100.394 -6.66538 100.203C-6.87718 97.6594 -6.77347 93.4191 -6.78499 90.7447C4.77141 91.8224 2.98343 91.1837 2.85253 81.033C-0.0995502 80.8534 -3.78475 80.9737 -6.80181 81.003C-6.72438 77.9021 -6.54254 74.4895 -6.86727 71.442C-10.0583 71.4019 -13.0344 71.6043 -16.2828 71.4201C-16.5525 68.5784 -16.4324 65.1574 -16.4107 62.2668C-14.443 62.2677 -8.98666 62.5985 -7.51765 61.9744C-6.35632 60.8269 -6.93111 54.8614 -6.78315 52.4553C-3.67113 52.2396 -0.179756 52.5429 2.84906 52.2207L2.78477 62.2947C5.71402 62.4459 9.19133 62.3387 12.1393 62.3037C12.4326 59.7298 12.3439 55.011 12.2165 52.3576C14.7823 52.3795 19.0213 52.4807 21.4447 52.2417C21.4297 55.7303 21.4693 59.2189 21.5631 62.7063C27.5415 62.9469 34.0407 62.4132 40.1735 62.3788C40.2772 59.9691 39.8577 54.432 40.5422 52.6102C42.2662 51.8015 55.9629 52.3186 59.1019 52.1864C59.0927 54.9077 58.9797 59.7918 59.4315 62.3164C61.9574 62.3542 66.2395 62.5966 68.5719 62.4067C68.9775 60.3671 68.7954 54.5196 68.7516 52.2841C66.0321 52.0845 61.9297 52.1924 59.1019 52.1864L59.1411 43.2317C62.31 42.9932 65.8293 43.2458 68.5626 42.9946C68.9429 36.8346 68.2953 29.9342 68.6825 24.151ZM12.5919 100.345L40.3878 100.387C40.881 99.4251 40.8856 74.9892 40.6782 71.6748C34.4579 71.5656 28.1522 71.7697 21.933 71.7331C19.2398 71.7172 14.8726 71.9246 12.3536 71.4932C11.0291 73.3146 12.1457 82.6675 12.2962 85.4905C12.5624 90.4847 12.5315 95.3612 12.5919 100.345ZM21.4979 119.567C24.5293 119.645 27.7144 119.474 30.6897 119.668C31.0677 119.368 31.2751 119.342 31.2244 118.624C31.0561 116.31 31.7222 112.038 30.692 110.154C30.3901 109.91 29.9614 109.57 29.565 109.579C26.9077 109.641 24.2527 109.801 21.5866 109.79C21.39 112.078 21.2527 117.318 21.4979 119.567ZM49.6895 90.9334L59.2586 90.8908C59.6458 89.0676 59.4845 82.9788 59.3623 80.9196C56.2302 80.971 53.0982 80.9839 49.9661 80.9583C49.5674 82.9489 49.6849 88.6514 49.6895 90.9334Z" fill="#9E2184"/> +<path d="M21.5317 81.2385C24.6856 81.1961 27.8384 81.1908 30.9912 81.2224C31.0489 83.4485 31.3093 88.7083 30.7193 90.6308C28.0159 90.7663 24.0058 90.7239 21.3171 90.6099C21.1721 88.9205 21.0742 82.773 21.5317 81.2385Z" fill="#9E2184"/> +<path d="M239.854 376.537C242.606 376.747 246.355 376.518 249.473 376.691C249.582 379.814 249.485 383.439 249.478 386.599L258.397 386.611C258.542 388.95 258.556 393.527 258.217 395.795L249.499 395.811C249.414 398.978 249.469 402.34 249.471 405.523C251.209 405.569 256.895 405.189 258.012 405.811C258.865 407.825 258.489 420.978 258.169 423.887C253.062 424.126 244.998 424.085 239.865 423.894C239.798 420.685 239.909 417.549 239.789 414.297C235.931 414.092 224.101 414.131 220.469 414.407C220.391 417.576 220.444 420.953 220.441 424.136L230.11 424.2C230.319 430.453 230.137 437.194 230.176 443.511C233.389 443.548 236.604 443.534 239.819 443.47L239.826 433.91C242.871 433.783 246.348 433.861 249.427 433.871C249.483 436.986 249.266 440.089 249.381 443.26C246.194 443.315 243.004 443.336 239.817 443.322C239.685 446.212 239.796 449.81 239.815 452.751C238.068 452.453 231.582 452.28 230.188 453.483C228.966 454.537 224.037 454.076 222.105 454.02C221.866 456.825 221.85 459.812 221.868 462.635C227.911 462.642 233.788 462.4 239.803 462.391C239.621 464.032 239.52 470.103 239.815 471.582C237.657 471.236 233.97 471.331 231.762 471.306C228.358 471.266 231.372 478.263 229.605 480.607C228.093 481.158 222.762 480.861 220.9 480.817C220.28 475.267 221.725 468.109 221.594 462.43C218.144 462.375 214.691 462.377 211.241 462.439C211.077 466.415 211.587 477.226 210.914 480.527C210.033 481.262 203.518 480.905 201.981 480.877C202.112 472.038 201.955 462.99 201.907 454.133L198.593 454.085C196.304 452.483 195.14 452.757 192.322 452.783C192.345 449.618 192.34 446.456 192.306 443.294C189.713 443.17 186.371 443.246 183.732 443.241L182.774 441.149C180.817 441.49 175.848 441.577 173.493 441.746C173.237 436.945 174.419 417.696 172.774 414.679C170.821 413.907 157.468 414.347 154.043 414.235C154.027 411.342 154.057 408.452 154.131 405.562C158.807 405.292 168.662 405.968 172.704 405.352C173.518 404.214 173.207 397.807 173.191 396.051H201.301C201.412 393.905 201.119 388.634 201.79 387.012C203.179 386.445 218.939 386.332 220.172 387.035C220.948 388.627 220.469 402.548 220.501 405.498C222.767 405.652 225.936 405.548 228.296 405.555C232.041 405.569 236.046 405.693 239.768 405.564C239.909 402.52 239.828 398.927 239.828 395.839C236.791 395.728 233.408 395.774 230.352 395.756C230.31 392.753 230.299 389.75 230.322 386.747C232.737 386.514 237.148 386.62 239.75 386.581C239.911 383.522 239.831 379.657 239.854 376.537ZM211.269 405.456C205.698 405.313 200.128 405.285 194.557 405.371C192.398 405.394 183.984 405.138 182.681 405.827C181.34 408.544 183.069 428.957 183.126 433.813L199.137 433.857L211.225 433.891C211.384 425.645 211.672 413.617 211.269 405.456ZM201.794 453.67C204.836 453.612 207.878 453.594 210.921 453.617C211.467 452.739 211.257 444.986 211.248 443.297C208.478 443.29 204.979 443.37 202.299 443.119C201.142 444.497 201.663 451.536 201.794 453.67ZM182.866 441.054C182.87 440.178 182.983 438.369 182.679 437.648L182.299 437.367C182.287 438.494 182.186 439.655 182.497 440.72L182.866 441.054Z" fill="#9E2184"/> +<path d="M192.244 414.732C195.063 414.613 198.63 414.571 201.412 414.707C201.426 416.576 201.672 422.525 200.986 423.96C197.932 424.096 195.146 424.209 192.106 423.868C192.039 421.762 191.781 416.532 192.244 414.732Z" fill="#9E2184"/> +<path d="M182.299 437.367L182.68 437.648C182.984 438.369 182.871 440.178 182.866 441.054L182.497 440.72C182.186 439.655 182.288 438.494 182.299 437.367Z" fill="#9E2184"/> +<path d="M-45.7894 100.624C-48.0814 100.501 -52.491 100.898 -54.1886 100.119C-55.3861 98.7212 -55.8895 56.0986 -54.4286 52.7554C-52.9552 51.9949 -46.8512 52.1737 -44.9482 52.2848C-44.8466 55.2876 -45.4675 69.6877 -44.7629 71.1118C-43.6018 71.6525 -36.4054 72.0876 -35.6495 70.9205C-34.5297 69.1913 -35.2063 64.6001 -35.1669 62.3365C-32.897 62.2318 -27.855 62.3848 -26.1314 62.1696C-26.1309 65.2362 -25.8378 89.3983 -26.5753 90.3976C-28.1192 90.9093 -31.0968 90.6986 -32.7862 90.6565L-35.3192 90.6945C-35.5002 92.6691 -35.8489 98.9061 -35.1213 100.55C-33.1508 101.74 -26.8364 99.7724 -26.384 101.928C-25.9387 104.049 -26.4059 107.686 -26.1168 110.184C-20.1622 110.256 -14.2069 110.279 -8.25183 110.253C-4.7819 110.256 -0.249256 110.383 3.14993 110.215C3.09922 112.616 2.65327 114.481 2.4705 116.863C2.21883 120.145 2.96255 126.515 1.52742 129.448C0.14875 129.878 -5.03518 129.643 -6.77983 129.611C-6.79527 127.869 -6.56479 120.706 -7.23431 119.765C-8.60283 119.328 -16.5307 118.709 -16.5489 121.168C-16.5683 123.807 -16.4404 126.707 -16.5298 129.409C-19.5038 129.451 -22.5444 129.394 -25.4902 129.457C-25.5776 132.903 -24.7239 135.699 -24.5137 139.108C-21.661 138.832 -19.3436 138.825 -16.4793 139.032C-16.4726 144.846 -16.6923 152.513 -16.4335 158.203C-13.289 158.304 -10.0506 158.248 -6.89599 158.231C-7.00039 160.612 -7.10847 165.456 -6.93723 167.743C-4.3062 167.86 0.175491 167.917 2.77495 167.701C2.94872 164.548 2.89064 161.311 2.88142 158.147C5.96717 158.212 9.05384 158.229 12.1403 158.196C12.1868 164.562 12.1949 170.929 12.1642 177.295C12.1585 179.961 12.019 184.174 12.1765 186.733C14.9907 186.745 18.8266 186.66 21.5563 186.857C21.465 190.088 21.3192 193.491 21.3696 196.708C23.303 196.755 29.2215 197.266 30.3715 196.099C31.7244 194.726 31.9249 188.786 31.941 186.771C34.6283 186.756 37.3709 186.701 40.0535 186.828C39.8945 193.16 40.5928 198.795 40.1849 205.411C37.0505 205.675 34.0406 205.306 31.109 205.543C31.0237 207.181 31.192 213.796 30.5697 214.64C29.3782 215.082 22.6623 215.076 21.4796 214.51C20.9529 212.896 21.3035 199.332 21.3367 196.793C15.3528 196.708 10.0156 196.646 3.99943 196.251C0.723778 196.037 -3.36335 196.332 -6.77752 196.191C-6.80287 193.035 -6.80724 189.878 -6.79088 186.722C-4.61779 186.756 1.04758 187.258 2.43893 186.209C3.3986 184.711 2.8934 179.436 2.84962 177.192C-8.27834 176.95 -6.87548 175.37 -7.01422 186.476C-8.47147 186.377 -14.8559 186.195 -15.805 186.912C-16.6142 188.87 -16.1025 195.63 -17.3095 195.738C-21.9919 196.16 -30.986 195.945 -35.5886 195.958C-35.5704 201.722 -35.3672 208.984 -35.6592 214.62C-38.3598 214.959 -42.3034 214.877 -45.0902 214.862C-45.0791 212.031 -44.9558 208.209 -45.1068 205.459C-48.1944 205.451 -51.4714 205.499 -54.5426 205.424C-54.6491 202.628 -54.5009 198.782 -54.7307 196.22C-57.7911 196.179 -60.8522 196.192 -63.9121 196.26C-63.819 193.298 -63.745 189.687 -63.852 186.726C-60.0142 186.711 -51.6277 186.474 -48.0826 186.79C-47.9489 189.752 -48.0194 192.631 -48.0667 195.592C-44.0388 195.819 -39.6403 195.766 -35.579 195.79C-35.5594 190.041 -35.2826 182.242 -35.5209 176.631C-31.8438 176.648 -28.0546 176.629 -24.3872 176.767C-21.6103 176.872 -19.0728 177.411 -16.2263 177.295C-16.2353 174.235 -16.1454 170.478 -16.2961 167.473C-22.6868 167.384 -29.0781 167.375 -35.469 167.445C-35.4836 165.783 -35.8429 159.132 -35.1415 158.314C-32.7675 157.314 -27.8288 158.749 -26.3466 157.601C-25.6117 155.466 -25.9594 151.209 -25.9209 148.737C-30.9449 148.764 -40.3739 149.079 -45.1596 148.692C-45.3262 145.612 -45.1755 141.982 -45.1132 138.854C-46.9621 138.861 -53.7404 139.18 -54.7616 138.339C-55.2163 136.495 -55.8174 129.179 -52.6853 129.446C-50.2296 129.655 -47.6136 129.66 -45.1335 129.637C-45.2116 131.914 -45.3234 136.809 -45.1531 138.971C-43.0429 138.979 -37.0819 139.413 -35.7239 138.539C-34.6884 137.07 -35.1355 131.79 -35.1581 129.619C-32.1367 129.611 -28.9286 129.651 -25.9256 129.546C-25.9154 127.468 -25.6792 121.216 -26.3664 119.682C-27.3298 119.303 -33.935 119.376 -34.9516 119.609C-36.1757 120.826 -35.2996 127.525 -35.283 129.586C-37.9498 129.313 -42.2951 129.427 -45.1047 129.427C-45.1236 126.262 -44.8337 123.985 -44.5942 120.869C-44.4633 119.168 -44.7742 116.489 -44.7447 114.679C-44.6675 109.97 -45.8374 105.232 -45.7894 100.624Z" fill="#9E2184"/> +<path d="M163.723 158.19C172.863 158.432 182.64 158.128 191.897 158.231C192.144 160.893 191.946 164.71 191.863 167.439C189.906 167.548 184.366 167.275 183.163 167.972C182.236 169.112 182.575 175.167 182.534 177.265C188.768 177.369 195.159 176.83 201.427 177.336L201.411 186.736L211.197 186.812C211.344 192.994 211.162 199.659 211.215 205.928L230.314 205.7L230.33 214.735C221.45 214.332 210.976 214.626 201.962 214.638C201.997 211.834 202.033 199.063 201.437 196.716C200.593 195.929 193.84 196.216 192.167 196.219C192.128 192.977 192.22 189.773 192.13 186.521C189.185 186.355 185.742 186.496 182.656 186.386C182.58 183.424 182.649 180.206 182.658 177.224L163.672 177.303C163.709 180.32 163.601 183.366 163.527 186.384C161.478 186.397 156.428 186.283 154.691 186.789C153.64 187.88 154.483 191.607 154.276 193.019C153.76 196.559 154.366 202.168 153.736 205.517L152.51 205.508C146.668 205.583 140.826 205.547 134.986 205.399C134.773 208.416 134.854 211.801 134.684 214.951C131.711 214.909 128.454 214.865 125.513 215.176C125.46 217.494 125.214 222.953 125.483 224.987C123.063 224.756 117.894 224.932 115.276 224.95C115.17 221.927 115.292 218.345 115.329 215.28C113.34 215.339 108.491 215.037 107.145 215.929C106.195 217.245 106.58 222.581 106.548 224.775C103.485 224.861 100.452 224.805 97.3684 224.943C97.373 222.072 96.9144 208.485 97.5804 206.812C98.5369 204.419 122.13 207.484 125.227 205.635C125.921 203.308 125.85 189.506 125.428 186.88C124.571 186.098 117.924 186.351 116.172 186.339C116.018 183.711 116.076 180.332 116.053 177.649C118.744 177.801 133.204 177.044 134.366 178.044C134.833 178.448 134.967 179.173 135.006 179.758C135.158 182.008 134.695 184.476 134.571 186.738C134.386 190.113 134.444 193.53 134.527 196.908C137.191 197.064 141.66 196.928 144.37 196.8C144.882 191.818 144.545 182.829 144.644 177.403C150.604 177.11 157.638 177.31 163.727 177.249C163.766 170.896 163.766 164.543 163.723 158.19Z" fill="#9E2184"/> +<path d="M154.062 71.3865C155.444 71.5381 162.909 71.0654 163.26 72.1316C164.345 75.4524 162.702 87.9247 163.889 90.2778C165.306 90.8648 171.294 90.7675 172.872 90.4974C172.644 92.2856 172.884 97.2985 172.531 99.2584C172.372 99.4117 172.213 99.5647 172.054 99.718C170.24 100.358 165.804 100.022 163.608 100.132C163.543 102.893 163.679 106.963 163.446 109.53C158.443 109.902 107.548 109.405 107.145 109.926C106.255 111.075 106.576 117.76 106.749 119.416C112.697 119.493 119.526 119.543 125.453 119.349C125.622 122.683 125.288 126.478 125.553 129.559C123.995 129.286 118.046 129.368 116.115 129.365C115.951 130.852 116.023 132.707 115.79 134.112C114.619 141.174 116.087 148.262 116.009 155.363C115.926 162.682 115.744 170.034 115.753 177.382C110.759 177.268 106.179 177.371 101.261 178.185C100.298 178.344 98.1982 178.232 97.1842 178.209C96.6426 166.73 93.824 168.153 106.364 167.811C106.509 162.766 106.246 157.241 106.417 152.126C106.592 146.861 107.924 134.545 106.942 129.78C105.559 129.132 99.3022 129.41 97.3824 129.434C97.3939 127.369 97.8894 122.008 97.0298 120.754C95.6654 119.801 90.413 120.226 88.2881 120.229C88.4932 118.205 88.454 112.794 88.2973 110.745C90.0166 110.676 95.1376 110.903 96.366 110.611C98.4495 110.114 96.5688 103.53 97.6106 100.879C99.5788 99.4177 121.913 101.192 125.099 100.054C125.894 98.9339 125.573 92.4986 125.566 90.7021L134.953 90.658C134.806 93.5435 134.907 97.4896 134.986 100.411C137.041 100.644 142.285 100.415 144.529 100.369C144.711 97.4534 144.617 93.5795 144.624 90.5935C147.302 90.7583 151.266 90.6571 153.999 90.6124C154.393 86.183 154.078 76.286 154.062 71.3865Z" fill="#9E2184"/> +<path d="M87.7167 319.39C90.1551 319.576 94.8336 319.36 97.3734 319.286C96.9655 324.336 97.2305 333.658 97.1637 339.116C99.7726 339.132 104.306 339.298 106.765 339.118C106.823 335.979 106.839 332.842 106.811 329.703C110.416 329.676 114.105 329.609 117.703 329.703C117.77 332.732 117.606 337.074 117.823 339.865C122.492 340.031 127.168 339.941 131.828 339.597C133.935 339.436 136.088 339.106 138.171 338.98C140.155 338.86 142.338 339.014 144.348 338.913C144.318 341.837 144.242 345.168 144.348 348.083C141.262 348.06 138.03 348.085 134.956 347.996C134.908 351.337 134.898 354.679 134.928 358.019C138.153 358.194 141.554 358.085 144.797 358.037C144.811 354.741 144.281 351.31 144.364 348.334C146.307 348.32 151.808 348.141 153.451 348.613C154.142 349.413 153.88 352.119 153.866 353.246C153.847 354.884 152.746 357.184 152.064 358.726L145.44 358.715C145.375 362.126 145.018 364.746 144.783 368.085C144.599 370.674 144.643 374.197 144.61 376.848C141.497 376.901 138.222 376.995 135.117 376.823C134.903 373.476 135.097 370.261 134.984 366.97C132.271 366.958 128.374 367.037 125.737 366.772C125.737 364.329 125.822 361.109 125.673 358.731C123.937 358.731 122.135 358.754 120.411 358.576C118.636 358.394 116.329 357.694 114.601 357.638C108.908 357.452 103.015 357.588 97.3319 357.774L97.3642 348.526C93.3978 348.592 91.1069 348.325 87.136 348.023C84.6815 347.839 81.2313 347.975 78.6916 347.892C78.6962 344.981 78.7561 341.796 78.6501 338.91C72.8607 339.016 65.3083 339.199 59.5788 339.005C59.3691 335.96 59.4705 332.709 59.4982 329.643L49.9291 329.648C49.9083 326.228 50.0351 322.729 49.9498 319.323C53.0865 319.298 56.2232 319.314 59.3576 319.369C59.5143 322.42 59.3806 326.421 59.4129 329.602C68.0509 329.929 78.8437 329.673 87.6222 329.62C87.8458 326.714 87.7467 322.363 87.7167 319.39Z" fill="#9E2184"/> +<path d="M87.7714 129.637L97.3681 129.57C97.4396 133.817 97.6032 154.323 96.4463 157.633C95.4737 158.285 89.3962 158.003 87.564 158.013C87.322 161.181 87.647 164.388 87.269 167.616C84.266 167.718 81.2584 167.639 78.2646 167.378C78.1148 170.244 78.2277 174.167 78.2254 177.113C80.1521 177.135 85.8171 176.818 87.2944 177.464C88.0918 179.515 87.8798 193.503 86.8887 196.039C86.0614 196.713 70.9057 196.49 68.631 196.506C68.7094 194.379 68.8753 178.524 68.419 177.632L67.6976 177.57C65.0173 177.685 62.3369 177.759 59.6542 177.792C59.6058 175.548 60.2097 169.364 59.3316 168.094C58.0271 167.14 51.899 167.606 49.8778 167.633C49.9193 164.453 49.9192 161.273 49.8801 158.094C46.9116 158.052 43.3785 158.538 40.5023 157.994C39.3453 157.776 39.5459 150.656 40.1889 149.631C41.9796 149.029 56.4945 148.723 58.6817 149.118C59.4307 150.303 59.1334 156.384 59.1311 158.298C65.2316 158.385 71.6893 158.245 77.8451 158.267C77.9005 156.097 77.4902 149.23 78.3314 148.093C79.7995 147.172 84.9413 147.644 87.2552 147.467L87.5801 147.441C88.0618 144.406 87.7138 133.492 87.7714 129.637Z" fill="#9E2184"/> +<path d="M107.016 405.689L115.848 405.691C115.822 411.981 116.249 417.913 116.175 424.145C112.172 424.08 100.535 423.511 97.2927 423.864C97 429.586 97.182 437.169 97.1544 443.011C99.7863 443.013 103.024 442.93 105.613 443.039C105.742 446.263 105.935 449.803 105.905 453.009C112.464 452.969 119.024 452.976 125.583 453.029C125.546 449.888 125.576 446.747 125.675 443.608C128.71 443.525 131.745 443.495 134.781 443.518C135.085 445.583 134.949 451.082 134.677 453.11C131.619 453.163 128.558 453.161 125.5 453.103L125.52 462.88C123.036 462.267 110.102 462.398 106.843 462.398C106.615 465.542 106.624 468.501 106.61 471.651C103.824 471.695 101.038 471.688 98.2514 471.633C98.3228 468.303 98.3459 465.887 98.0693 462.536C97.7997 459.303 97.3226 456.062 97.3364 452.845C93.937 453.011 90.7404 452.822 87.3456 452.727C84.3196 452.644 81.3465 452.778 78.3274 452.495C78.2098 446.323 78.355 439.971 78.4288 433.785C80.367 433.778 86.1541 434.062 87.4194 433.393C88.0001 432.149 88.438 423.778 86.6473 423.373C84.6607 422.921 80.6574 423.297 78.3527 423.244C78.302 420.254 78.2675 417.265 78.249 414.276C82.1601 414.246 86.2878 414.225 90.1596 414.288C93.7642 414.345 103.769 415.518 106.659 414.56C107.272 413.064 106.97 407.682 107.016 405.689Z" fill="#9E2184"/> +<path d="M230.377 348.374C233.539 348.268 236.517 348.307 239.683 348.353C239.849 351.395 239.778 354.893 239.778 357.977C241.981 357.959 257.155 357.521 258.084 358.369C258.729 359.846 258.612 365.152 258.135 366.537C257.328 367.159 249.425 366.917 247.81 366.908C245.148 366.947 242.486 366.929 239.824 366.848C239.78 370.04 239.759 373.232 239.757 376.426C236.623 376.484 233.486 376.486 230.349 376.428V366.859C228.206 366.788 223.182 366.693 221.243 367.048C219.457 367.373 221.296 373.656 220.103 376.004C218.872 376.954 195.756 376.456 192.112 376.518C191.861 379.561 192.036 383.061 191.822 386.329C188.775 386.394 185.724 386.399 182.674 386.339C182.55 379.987 182.642 373.402 182.658 367.035C185.016 367.256 189.632 367.134 192.091 367.127C192.391 361.704 192.133 353.99 192.114 348.369C194.836 348.346 209.238 348.014 210.865 348.735C211.531 350.395 211.193 355.67 211.147 357.698C207.959 357.599 204.788 357.645 201.603 357.671C201.28 359.849 201.315 364.88 201.43 367.166C204.687 367.205 207.941 367.198 211.197 367.15C211.301 364.186 211.227 360.883 211.218 357.892C213.405 358.032 228.266 358.102 229.916 357.68C230.649 356.541 230.365 350.328 230.377 348.374Z" fill="#9E2184"/> +<path d="M78.482 205.984C80.8443 205.874 84.9374 205.807 87.302 205.99C87.703 211.977 87.2098 219.006 87.3642 225.135C90.63 224.994 93.9003 225.041 97.1684 225.054C97.1776 228.012 97.1177 231.272 97.2076 234.204C100.229 234.23 103.919 234.159 106.885 234.31C106.88 236.865 106.754 241.117 106.963 243.536L116.067 243.538C115.991 249.567 116.118 256.682 115.788 262.612C112.794 262.706 109.798 262.757 106.8 262.759C106.816 259.436 106.885 255.969 106.839 252.66L97.3182 252.545C97.3182 249.565 97.3735 246.375 97.2951 243.413C90.8858 243.496 83.8196 243.881 77.5509 243.685C77.4979 245.711 77.2582 250.798 77.4886 252.653C72.688 252.713 64.5248 252.462 60.0952 252.805C60.0675 249.871 59.9868 246.649 60.1505 243.734C65.9445 243.651 71.7408 243.632 77.5347 243.676C77.4057 241.146 76.7857 233.428 78.074 231.602C78.8231 230.543 78.4635 226.858 78.5188 225.435C78.4819 219.962 78.1662 211.314 78.482 205.984Z" fill="#9E2184"/> +<path d="M135.106 119.481C138.291 119.352 141.437 119.443 144.624 119.501C144.633 128.67 144.327 139.682 144.642 148.699C146.809 148.729 152.128 149.192 153.578 148.155C154.513 146.731 154.039 141.151 154.124 138.894C157.86 138.812 169.533 138.612 172.764 139.099L172.723 148.409C170.828 148.996 164.145 148.177 163.808 149.378C163.184 151.59 163.486 155.534 163.516 157.975C160.872 157.972 156.694 157.858 154.228 158.135C154.122 160.322 154.426 165.971 153.49 167.28C152.02 168.252 147.03 167.695 144.645 167.868C144.612 164.665 144.67 161.152 144.564 157.986C141.545 157.93 138.023 158.049 135.11 157.908C135.143 151.724 135.272 145 135.103 138.837C132.531 138.815 128.072 138.933 125.689 138.694C125.673 135.787 125.726 132.422 125.553 129.559C128.272 129.629 132.255 129.722 134.944 129.553C134.967 126.889 134.854 121.955 135.106 119.481Z" fill="#9E2184"/> +<path d="M201.149 119.46C202.269 119.515 210.552 119.827 210.854 119.084C212.071 116.108 210.299 102.468 211.799 100.575C213.145 100.116 218.695 100.042 219.946 100.664C221.755 101.565 219.568 116.507 220.594 119.205C220.727 119.555 221.02 119.552 221.34 119.68C223.417 119.664 228.314 119.115 229.762 120.162C230.651 121.466 230.163 127.315 230.154 129.541C223.15 129.287 215.217 129.536 208.125 129.427C204.489 129.371 195.339 129.225 192.057 129.602C192.05 125.845 192.022 122.019 192.082 118.268C192.133 115.271 192.37 112.761 192.264 109.738C189.363 109.475 185.809 109.722 182.665 109.54C182.624 107.747 182.306 101.612 183.007 100.39C188.561 100.168 195.931 100.249 201.527 100.401C201.854 103.731 201.31 106.898 201.163 110.215C201.027 113.288 201.071 116.386 201.149 119.46Z" fill="#9E2184"/> +<path d="M230.38 214.923C233.457 214.954 236.568 214.814 239.619 215.13C239.896 220.009 239.714 224.93 239.64 229.814C239.622 231.156 239.58 232.392 239.94 233.699C241.608 235.138 254.814 233.454 257.854 234.548C258.963 235.816 258.317 250.21 258.227 252.823C255.176 252.989 252.12 252.941 249.078 252.678C240.219 252.761 229.37 253.019 220.603 252.681C220.394 249.59 220.626 246.695 220.477 243.678C223.701 243.669 227.128 243.713 230.331 243.568C230.488 234.371 230.587 224.096 230.38 214.923Z" fill="#9E2184"/> +<path d="M97.387 43.0875C99.392 42.9231 105.089 42.9105 107.037 43.1354C107.223 49.5104 106.917 56.0299 107.094 62.3261C108.648 62.3307 114.836 61.8296 115.566 62.6761C116.981 64.3125 116.103 70.2277 115.253 72.1915C113.34 72.2102 109.016 71.9078 107.777 72.9272C107.193 73.9753 107.484 79.9643 107.41 82.0424C107.408 91.7749 107.73 91.4887 97.3593 90.4857C97.3708 87.7624 97.5114 83.4967 97.3224 80.9009C94.1005 80.9726 90.8901 81.0735 87.6681 80.9991C87.6681 78.3955 87.5321 74.1546 87.7004 71.6833C90.1042 71.5656 95.7368 72.1417 97.0136 70.9852C97.8433 69.4213 97.3455 64.2387 97.274 62.1606C94.1696 62.0908 90.7518 62.1956 87.728 62.0571C87.6197 58.7579 87.6635 55.4881 87.6888 52.188C89.8921 52.5012 94.921 52.3871 97.3201 52.3657C97.4354 49.3099 97.3916 46.1538 97.387 43.0875Z" fill="#9E2184"/> +<path d="M211.264 52.1181C211.204 50.4074 210.724 44.3938 211.734 43.2958C213.663 42.7802 228.24 42.8298 230.001 43.3255C230.432 46.0554 229.959 49.5994 230.236 52.3537C233.22 52.3717 247.371 52.0336 249.028 52.7395C249.715 53.9278 249.8 61.693 248.982 61.8515C246.35 62.3616 242.607 62.0283 239.837 62.0905C239.738 65.5005 240.13 78.4964 239.408 80.6336C238.141 81.3462 232.181 81.0104 230.365 81.0159C230.363 78.083 230.466 74.4061 230.333 71.5349C228.41 71.5031 222.1 71.7661 220.876 71.0302C219.579 68.6895 221.231 56.427 220.402 53.1875C219.975 51.5215 213.029 52.238 211.264 52.1181Z" fill="#9E2184"/> +<path d="M106.8 262.759C106.717 264.188 106.71 265.737 106.712 267.175C106.731 275.225 106.489 283.388 106.724 291.429C109.775 291.521 123.124 291.07 125.104 291.865C125.89 293.499 125.507 307.133 125.468 309.89C122.568 309.802 119.321 310.024 116.251 309.966C116.263 306.82 116.256 303.672 116.226 300.526C111.84 300.111 102.451 300.422 97.5972 300.374C97.634 294.091 97.2883 288.058 97.3298 281.724C94.4121 281.597 90.7592 281.729 87.7193 281.687C87.5464 278.79 87.664 275.154 87.7077 272.245C90.7154 272.16 94.0042 272.236 97.0348 272.252C97.2353 269.242 97.1593 265.889 97.1501 262.842C100.077 262.895 103.93 262.953 106.8 262.759Z" fill="#9E2184"/> +<path d="M12.2538 252.738C17.0713 252.717 22.8105 252.441 27.5397 252.736C38.3302 253.411 49.0125 253.208 59.826 253.19C59.9136 257.062 59.6163 259.804 59.1808 263.662C58.9295 265.891 59.3928 269.512 58.593 271.602C56.9659 272.333 52.3358 272.061 50.3492 272.04C49.8444 271.69 50.0864 264.63 50.0934 263.508C45.5324 263.185 36.0947 263.515 31.2364 263.533C31.082 266.29 31.0659 269.281 31.0036 272.058L21.427 272.072C21.2702 269.173 21.3219 265.661 21.2926 262.713C18.273 262.505 15.394 262.955 12.0891 262.563C12.0033 260.837 11.7673 254.063 12.2538 252.738Z" fill="#9E2184"/> +<path d="M173.094 24.0927L182.658 24.1033C182.727 27.5903 182.923 50.2938 182.264 51.8427C180.722 52.4745 174.924 52.1426 173.002 52.1016C172.72 55.3818 173.018 58.6365 172.686 62.0643C170.162 62.2102 165.553 62.2544 163.066 62.0096C162.875 55.7729 163.124 49.1158 162.995 42.7899C160.104 42.6742 157.062 42.7574 154.161 42.7862C154.246 41.6968 153.734 34.2336 154.599 33.8794C157.869 32.5371 169.964 34.6863 172.672 33.2273C173.416 31.8523 173.114 26.1142 173.094 24.0927Z" fill="#9E2184"/> +<path d="M78.2763 100.36C80.4657 100.661 85.8979 99.8254 87.1816 101.05C87.8407 103.136 87.9352 115.141 87.8315 118.06C87.7163 121.32 86.746 125.598 87.6448 129.406L68.7717 129.433L68.7648 119.943C67.2967 119.374 52.8763 119.826 49.9701 119.671C49.901 116.412 49.9747 113.492 50.0047 110.257C59.4677 110.264 69.2765 110.412 78.7119 110.285C78.7326 106.5 78.6681 104.161 78.2763 100.36Z" fill="#9E2184"/> +<path d="M153.977 386.597C154.426 380.95 153.972 374.82 154.057 369.136C154.069 368.51 154.315 368.079 154.67 367.602C155.166 367.281 155.629 367.046 156.235 367.035C161.79 366.942 167.397 367.191 172.949 367.005C172.94 372.976 172.9 380.383 172.679 386.325C170.605 386.433 165.403 386.046 164.087 386.839C163.216 387.91 163.548 393.725 163.49 395.767C158.114 395.991 150.033 395.85 144.65 395.746C144.541 392.727 144.597 389.745 144.631 386.724C147.268 386.505 151.276 386.599 153.977 386.597Z" fill="#9E2184"/> +<path d="M201.503 80.768C202.054 76.2837 202.268 72.684 201.902 68.1961C201.831 67.3222 201.748 63.0945 202.236 62.5692C203.695 62.15 209.572 62.0873 210.846 62.7287C211.513 63.9712 211.162 78.5236 211.141 81.1123C213.879 81.3238 218.062 81.1842 220.897 81.2024C223.414 81.2187 228.051 81.3222 230.365 81.0159C230.245 83.3706 230.685 88.1215 229.929 90.0139C228.749 90.5202 195.281 90.6585 192.522 90.2766C191.902 89.1088 191.851 83.2181 192.296 82.0305C192.987 80.1856 199.77 82.1485 201.503 80.768Z" fill="#9E2184"/> +<path d="M250.282 281.846C252.255 281.786 256.505 281.443 258.153 282.153C258.865 283.478 258.381 315.495 258.19 319.54C254.283 319.606 252.386 319.47 248.616 319.086C245.684 319.097 242.755 319.083 239.824 319.049C239.803 313.059 239.708 306.852 239.828 300.883C242.691 300.646 246.242 300.791 249.227 300.708C249.519 295.769 248.886 287.398 249.519 282.353C249.554 282.07 249.946 281.994 250.282 281.846Z" fill="#9E2184"/> +<path d="M201.732 148.736C204.843 148.693 207.957 148.691 211.071 148.732C211.28 151.654 210.995 155.079 211.124 158.196C213.246 158.223 218.625 157.846 219.962 158.776C220.815 160.099 220.43 165.495 220.448 167.656C222.838 167.735 225.221 167.575 227.605 167.615C231.055 167.672 230.483 170.408 230.329 172.849C230.236 174.318 230.213 175.719 229.967 177.181C225.821 177.605 215.735 177.299 211.267 177.283L211.216 167.664C208.144 167.564 204.666 167.633 201.566 167.627C201.419 165.044 201.177 150.661 201.732 148.736Z" fill="#9E2184"/> +<path d="M242.861 177.198C245.147 177.199 257.093 176.826 258.144 177.566C258.833 179.386 258.452 184.31 258.174 186.318C244.488 187.105 251.264 184.916 248.828 195.427C248.713 195.925 241.465 195.674 240.575 195.966C240.126 196.114 237.553 196.448 236.809 196.461C231.409 196.5 226.012 196.474 220.612 196.384C220.377 193.774 220.464 189.453 220.522 186.779C226.689 186.575 233.606 186.702 239.764 186.8C239.821 183.652 239.847 180.504 239.84 177.357C240.766 177.268 241.914 177.245 242.861 177.198Z" fill="#9E2184"/> +<path d="M125.884 24.1766C131.826 23.9435 138.618 24.0919 144.626 24.0991C144.64 27.08 144.73 30.3117 144.497 33.2654C141.531 33.3937 138.067 33.2741 135.006 33.3281C134.852 36.205 134.935 39.8453 134.93 42.7819C132.872 42.7459 127.329 42.5579 125.585 43.0179C125.354 45.6321 125.541 49.2666 125.368 52.185C122.365 52.2505 119.362 52.2468 116.359 52.1737L116.322 51.7042C116.182 49.6849 115.935 34.8042 116.733 33.8947C118.514 33.219 123.335 33.5774 125.43 33.6414C125.686 31.2205 125.241 25.91 125.884 24.1766Z" fill="#9E2184"/> +<path d="M163.626 462.504C169.04 462.223 177.507 462.946 182.462 462.432C182.504 465.44 182.451 468.547 182.437 471.564C180.298 471.522 174.608 470.946 173.368 471.866C172.451 473.262 172.789 477.991 172.794 479.987L172.642 480.52C171.526 481.133 156.633 480.845 154.108 480.812C154.091 474.97 153.978 468.687 154.163 462.882C157.366 462.638 160.337 463.089 163.626 462.504Z" fill="#9E2184"/> +<path d="M69.1622 291.464C72.1997 291.397 75.2373 291.448 78.2703 291.616C78.4086 297.663 78.2887 304.027 78.2542 310.093L87.4821 310.102C87.655 313.144 87.3738 316.223 87.6043 319.194C85.0737 319.113 80.1947 319.47 78.1366 318.666C77.5397 318.392 70.6833 318.323 69.4272 318.231C69.3972 315.465 69.4157 312.697 69.4779 309.931C66.5786 309.756 62.686 309.908 59.5931 309.825L59.5654 300.63C62.5777 300.724 65.6613 300.669 68.6805 300.653C68.7957 298.625 68.4085 292.775 69.1622 291.464Z" fill="#9E2184"/> +<path d="M136.104 462.972C137.643 462.834 143.101 462.744 144.447 463.228C145.083 464.76 144.643 478.259 144.615 480.826C138.515 480.941 132.112 480.842 125.989 480.84C116.537 478.962 117.129 482.11 117.588 471.186C119.353 471.17 123.88 471.566 125.087 470.983C126.138 469.872 125.733 465.085 125.721 463.198C128.784 463.17 133.168 463.288 136.104 462.972Z" fill="#9E2184"/> +<path d="M125.511 415.027C127.205 414.444 141.794 414.615 144.576 414.744C144.772 417.71 144.686 421.174 144.673 424.188C146.74 424.198 152.216 423.845 153.539 424.776C154.447 426.104 153.988 431.667 154.08 433.838C148.15 433.834 140.964 434.043 135.161 433.76C135.05 430.476 135.016 427.187 135.057 423.9L125.597 423.967C125.5 420.987 125.47 418.007 125.511 415.027Z" fill="#9E2184"/> +<path d="M11.7622 23.0588L11.9781 23.0221C12.6294 23.8924 12.1215 48.6563 12.2766 52.1884C9.1685 52.2036 6.0604 52.1963 2.9523 52.1661C3.08897 49.6498 3.00531 46.3412 3.00439 43.7669L2.75755 43.1444C1.45471 42.4889 -4.68244 42.8254 -6.79169 42.712C-6.84055 39.7164 -6.84401 36.7201 -6.8016 33.7241C-3.98136 33.4445 -1.40886 33.748 1.4236 33.596C3.3759 33.7694 3.06545 31.0288 2.87946 29.6922C1.82714 22.1226 5.32866 23.5895 11.7622 23.0588Z" fill="#9E2184"/> +<path d="M154.08 433.838C156.903 433.847 160.805 433.746 163.541 433.912C163.536 437.065 163.483 440.344 163.536 443.488L172.808 443.534C172.829 447.217 174.287 454.576 169.406 453.785C167.502 453.479 165.17 453.735 163.207 453.43L161.199 452.045C155.239 451.884 150.473 452.824 144.615 452.73C144.608 449.814 144.52 446.445 144.631 443.566C155.617 443.481 154.414 445.203 154.08 433.838Z" fill="#9E2184"/> +<path d="M230.559 148.79C233.264 148.762 247.132 149.076 248.996 150.056C249.704 151.444 249.261 156.554 249.469 158.6C254.357 158.706 258.913 156.772 258.406 163.113C258.286 164.612 259.038 165.712 258.418 167.488C256.263 167.626 241.409 167.83 240.158 167.276C239.104 165.473 240.381 161.146 239.632 158.836C236.244 155.989 229.261 162.152 230.268 153.131C230.427 151.712 230.042 150.262 230.559 148.79Z" fill="#9E2184"/> +<path d="M163.974 186.527C166.281 186.905 171.356 186.137 172.467 187.046C172.838 189.585 172.672 195.455 172.64 198.201C172.578 203.687 172.67 209.414 172.52 214.88C169.699 215.013 166.055 214.918 163.17 214.924C160.135 214.937 157.12 214.981 154.087 214.829C153.939 212.285 154.073 208.549 154.094 205.92L163.177 205.905C163.338 204.749 163.486 203.456 163.46 202.288C163.34 196.955 164.082 191.86 163.974 186.527Z" fill="#9E2184"/> +<path d="M40.4569 129.599C49.1364 129.778 60.0306 129.772 68.6847 129.582C68.4681 132.756 68.7193 136.153 68.4911 139.477C64.7759 139.555 60.646 139.243 56.8686 139.132L40.1942 138.806C40.102 136.624 39.8876 131.48 40.4569 129.599Z" fill="#9E2184"/> +<path d="M232.152 264.093L239.619 263.893C239.653 270.252 239.907 276.26 239.773 282.644C235.5 282.764 232.315 282.121 228.119 282.109C225.475 282.132 222.829 282.081 220.19 281.964C220.285 278.744 220.269 275.389 220.299 272.157C222.336 272.22 228.688 272.505 230.273 271.872C231.956 269.936 229.084 265.306 232.152 264.093Z" fill="#9E2184"/> +<path d="M144.138 42.9934C146.848 43.0015 151.54 43.1582 154.092 42.9524C154.08 45.957 154.126 49.1617 154.046 52.1493C150.916 52.2108 147.786 52.2348 144.656 52.2216C144.571 55.3851 144.435 58.9585 144.493 62.1002C141.9 61.7882 137.802 61.9666 135 61.8861C135.016 55.8292 135.163 48.9582 134.977 42.9729L144.138 42.9934Z" fill="#9E2184"/> +<path d="M12.0869 471.633C18.257 471.681 24.4281 471.686 30.5977 471.651C33.1236 471.649 37.8782 471.527 40.2129 471.819C40.2613 473.61 40.5309 479.388 40.0377 480.838C39.6205 480.985 39.798 480.992 39.5122 480.939C34.4396 481.149 28.6641 480.895 23.5016 480.969C20.8519 481.006 14.5741 481.147 12.1514 480.921C12.2213 477.913 12.1263 474.661 12.0869 471.633Z" fill="#9E2184"/> +<path d="M130.568 62.1975C132.091 62.2261 133.354 62.2221 134.873 62.1537L134.921 80.9701L125.511 80.992L125.44 90.4347L120.955 90.4617C119.399 90.4691 117.846 90.4488 116.292 90.4009C115.211 78.8145 116.062 81.7968 125.313 81.0648C125.267 79.8733 125.255 78.7288 125.366 77.5391C125.838 72.4893 125.737 67.4464 125.735 62.3756C127.247 62.2627 129.033 62.2473 130.568 62.1975Z" fill="#9E2184"/> +<path d="M77.5645 252.784L97.1612 252.704V262.759C90.7011 262.628 84.0199 262.93 77.576 262.611C77.5967 259.337 77.5921 256.062 77.5645 252.784Z" fill="#9E2184"/> +<path d="M163.702 119.722C169.775 119.546 176.558 119.596 182.64 119.689C182.649 121.216 182.794 128.753 182.391 129.427C176.187 129.224 169.51 129.716 163.32 129.352C163.253 127.316 162.773 121.053 163.702 119.722Z" fill="#9E2184"/> +<path d="M50.1404 215.121C52.9244 215.14 66.824 214.507 68.0985 215.705C68.6608 217.592 68.5779 223.113 68.0755 224.948C63.4131 225.485 55.4665 224.908 50.6889 224.793C49.3683 224.762 49.6541 216.452 50.1404 215.121Z" fill="#9E2184"/> +<path d="M40.6736 167.937C43.5913 167.836 46.7626 167.885 49.6988 167.879L49.6849 178.197L59.549 178.026C59.5743 180.076 59.8371 184.555 59.0742 186.437C58.959 186.721 58.5211 186.752 58.1316 186.867C54.0431 186.884 53.7343 188.05 48.9128 187.384C49.2585 185.339 49.3623 180.539 49.4683 178.247C47.2258 178.253 44.0039 178.636 41.9896 177.898C41.5978 176.869 41.2936 174.81 41.1691 173.66C40.9801 171.916 39.8762 169.466 40.6736 167.937Z" fill="#9E2184"/> +<path d="M182.723 129.574C185.166 129.733 189.321 129.595 191.893 129.591C192.02 135.85 192.004 142.11 191.847 148.367C189.95 149.089 184.832 148.784 182.693 148.685C182.442 143.739 182.594 134.573 182.723 129.574Z" fill="#9E2184"/> +<path d="M192.97 24.1378C198.008 23.9449 204.823 24.0488 209.939 24.177C210.209 24.254 210.856 24.3423 210.912 24.6792C211.177 26.2644 211.986 32.6635 210.356 33.3271C206.775 33.5213 195.33 33.5973 192.124 33.2459C192.055 30.7187 191.9 27.8315 192.098 25.3117C192.156 24.5609 192.481 24.4571 192.97 24.1378Z" fill="#9E2184"/> +<path d="M230.319 129.616C233.447 129.763 247.876 129.068 249.319 130.177C249.932 132.024 249.547 136.502 249.457 138.613C247.867 139.189 233.073 138.842 230.342 138.812L230.319 129.616Z" fill="#9E2184"/> +<path d="M40.4402 329.415C42.9316 329.782 47.299 329.655 49.9286 329.648C49.7051 334.974 49.8065 342.725 49.8664 348.122C46.8519 348.141 43.3856 348.233 40.4172 348.053C40.2028 342.326 40.4241 335.221 40.4402 329.415Z" fill="#9E2184"/> +<path d="M3.31561 214.936C4.59195 214.916 11.8552 214.532 12.0006 215.545C12.4284 218.523 12.1435 231.252 11.2758 233.756C9.74338 234.268 5.00034 234.547 4.0833 233.902C2.10219 232.508 2.64218 216.112 3.31561 214.936Z" fill="#9E2184"/> +<path d="M220.482 329.659C224.244 329.701 228.005 329.71 231.768 329.687C234.082 329.682 237.399 329.588 239.616 329.895C239.731 332.748 239.634 335.753 239.593 338.618C234.375 338.187 226.313 338.638 220.6 338.456L220.482 329.659Z" fill="#9E2184"/> +<path d="M78.3832 462.658C81.2779 462.476 84.5851 462.575 87.4821 462.651C87.5858 464.995 87.4475 479.07 86.959 480.835C86.6962 480.87 86.4312 480.9 86.1662 480.925C84.7326 481.061 79.3327 481.469 78.9271 480.607C77.7425 478.09 78.1896 465.104 78.3832 462.658Z" fill="#9E2184"/> +<path d="M50.033 196.688L68.5535 196.68C68.542 198.488 68.7724 204.352 68.0511 205.477C62.7872 205.567 55.0619 205.79 49.9086 205.442C49.8487 203.315 49.6527 198.567 50.033 196.688Z" fill="#9E2184"/> +<path d="M172.951 355.502C174.67 355.477 180.035 355.318 181.37 355.689C181.48 355.947 181.589 356.101 181.598 356.352C183.059 361.612 182.345 361.87 182.515 366.988C179.408 366.887 176.074 366.972 172.948 367.005C172.946 363.216 172.886 359.277 172.951 355.502Z" fill="#9E2184"/> +<path d="M220.602 300.321C223.442 300.097 227.203 300.136 230.102 300.194C230.437 302.552 230.201 307.362 230.118 309.897C226.922 309.998 223.723 310.049 220.526 310.051C220.672 306.716 220.487 303.563 220.602 300.321Z" fill="#9E2184"/> +<path d="M22.2791 167.762C24.9507 167.613 28.3571 167.745 31.0305 167.859C31.2379 170.272 31.0997 173.396 31.0559 175.854C31.042 176.732 30.989 176.864 30.5004 177.308C27.4306 177.36 24.3584 177.353 21.2902 177.284C21.2575 174.851 21.0019 170.551 21.4773 168.184C21.5373 167.885 21.8747 167.888 22.2791 167.762Z" fill="#9E2184"/> +<path d="M68.7282 348.129C71.9755 348.088 75.2228 348.072 78.4701 348.079C78.4909 351.148 78.5577 354.617 78.3688 357.65C75.3312 357.406 72.1876 357.892 68.7858 357.544C68.6775 354.518 68.5969 351.139 68.7282 348.129Z" fill="#9E2184"/> +<path d="M21.6382 24.0825L31.0217 24.0941C31.054 26.2823 31.2499 32.0676 30.7498 33.9572L30.4594 33.995C19.9705 35.292 21.5515 33.3459 21.6382 24.0825Z" fill="#9E2184"/> +<path d="M246.523 90.2859C247.367 90.1211 248.482 90.0386 249.275 90.3986C249.83 91.6189 249.501 98.1372 249.459 99.9552C247.3 100.011 244.917 99.957 242.739 99.9545C241.776 99.9499 240.785 99.9114 239.819 99.8865C239.738 96.821 239.74 93.754 239.823 90.6885C242.234 90.5341 244.048 90.78 246.523 90.2859Z" fill="#9E2184"/> +<path d="M21.4595 225.057C24.6492 224.974 27.8435 224.978 31.0332 225.066C31.3282 227.148 31.3074 232.16 31.0239 234.258C27.7905 234.296 24.5547 234.29 21.3203 234.239C21.2615 232.172 21.0442 226.878 21.4595 225.057Z" fill="#9E2184"/> +<path d="M241.689 110.124C244.431 110.089 246.941 110.167 249.679 110.267C249.746 112.459 250.029 116.65 249.506 118.815C249.377 119.344 248.794 119.368 248.386 119.438C246.303 119.433 242.06 119.716 240.264 119.244C239.483 117.527 239.492 112.692 240.045 110.767C240.686 110.067 240.486 110.29 241.689 110.124Z" fill="#9E2184"/> +<path d="M68.8275 272.273C71.948 272.151 75.1123 272.236 78.2398 272.28C78.279 274.704 78.4219 279.468 78.1361 281.74C74.9856 281.773 71.8328 281.766 68.68 281.717C68.6154 279.256 68.4449 274.575 68.8275 272.273Z" fill="#9E2184"/> +<path d="M165.896 338.756C168.242 338.671 170.59 338.8 172.973 338.719C172.978 340.69 173.114 346.228 172.819 347.843C172.164 348.327 172.155 348.159 171.155 348.198C168.599 348.219 165.845 348.129 163.275 348.085C163.25 346.15 163.036 340.768 163.526 339.136C164.128 338.733 165.121 338.791 165.896 338.756Z" fill="#9E2184"/> +<path d="M172.942 81.2247L182.607 81.2342C183.015 92.8242 183.81 90.1496 172.872 90.4974C172.882 87.7901 172.727 83.7845 172.942 81.2247Z" fill="#9E2184"/> +<path d="M2.93709 138.888C5.99057 138.832 9.04474 138.831 12.0985 138.884C12.2607 141.989 12.1538 145.428 12.1141 148.566L2.85251 148.536C2.92373 145.57 2.73175 141.647 2.93709 138.888Z" fill="#9E2184"/> +<path d="M97.4382 309.892C100.132 309.874 104.391 309.731 106.982 310.074C106.943 312.759 107.111 316.737 106.855 319.238C103.963 319.24 100.197 319.136 97.3736 319.286C97.3621 316.152 97.3276 313.024 97.4382 309.892Z" fill="#9E2184"/> +<path d="M134.99 81.0662C138.247 81.2282 141.416 81.1662 144.649 81.2533L144.624 90.5935C142.732 90.3156 137.189 90.4409 135.018 90.4465C135.009 87.3522 135.046 84.1501 134.99 81.0662Z" fill="#9E2184"/> +<path d="M2.85211 148.536C2.55388 149.968 2.70922 156.382 2.83759 158.026C-0.32928 158 -3.4579 157.944 -6.6227 158.088C-7.12051 157.435 -6.83518 150.044 -6.78863 148.776C-4.4095 148.646 0.930459 148.876 2.85211 148.536Z" fill="#9E2184"/> +<path d="M249.487 443.442C251.942 443.594 255.867 443.46 258.427 443.451C258.482 446.131 258.664 450.755 258.155 453.239C256.572 453.755 251.19 453.49 249.379 453.066L249.487 443.442Z" fill="#9E2184"/> +<path d="M230.861 24.1371C233.837 24.0848 236.812 24.0539 239.79 24.0447C239.833 26.6415 239.988 29.9815 239.688 32.5799C239.619 33.1574 239.382 33.1897 238.983 33.4412C236.081 33.5337 233.175 33.5469 230.271 33.4809C230.177 31.6226 229.866 25.2424 230.861 24.1371Z" fill="#9E2184"/> +<path d="M116.29 424.186C119.104 424.29 122.614 424.177 125.481 424.165C125.521 426.853 125.647 431.109 125.359 433.67C123.884 433.979 118.072 433.834 116.35 433.815C116.191 430.639 116.265 427.374 116.29 424.186Z" fill="#9E2184"/> +<path d="M21.3965 452.949C24.5961 452.873 27.7973 452.875 30.9962 452.956C31.04 455.611 31.1483 459.533 30.8879 462.112C28.1084 462.23 24.3126 462.184 21.5419 462.066C21.2914 459.701 21.3902 455.463 21.3965 452.949Z" fill="#9E2184"/> +<path d="M97.385 24.1128C100.499 24.0522 103.753 24.0995 106.88 24.0995C106.924 27.0029 107.025 30.4661 106.797 33.3151C103.73 33.4974 100.432 33.486 97.3389 33.5244L97.385 24.1128Z" fill="#9E2184"/> +<path d="M182.878 453.011C185.95 452.926 189.024 452.949 192.096 453.082C192.096 455.689 192.212 459.918 191.806 462.322C189.098 462.485 185.413 462.393 182.629 462.4C182.608 460.425 182.438 454.663 182.878 453.011Z" fill="#9E2184"/> +<path d="M-2.06631 262.699C-0.678198 262.607 1.25566 262.653 2.68687 262.646C2.68295 265.67 2.7461 269.014 2.53177 271.996C1.18399 272.068 -0.633952 272.019 -2.01815 272.022L-6.81742 271.996C-6.89325 269.042 -6.82942 265.817 -6.82849 262.842L-2.06631 262.699Z" fill="#9E2184"/> +<path d="M239.814 471.582C242.829 471.619 246.415 471.573 249.386 471.72C249.351 474.723 249.271 477.839 249.287 480.835C246.254 480.852 242.829 480.939 239.831 480.812C239.773 477.736 239.766 474.659 239.814 471.582Z" fill="#9E2184"/> +<path d="M50.0441 24.1224C53.1554 24.0454 56.4211 24.0981 59.5463 24.1056C59.5463 27.1769 59.4725 30.2478 59.325 33.3156L49.8896 33.2845C49.8436 31.3506 49.6407 25.7657 50.0441 24.1224Z" fill="#9E2184"/> +<path d="M22.1266 43.0851C24.2854 43.0384 29.1483 42.5567 30.6325 43.5383C31.6789 45.0181 31.0589 50.0276 30.9598 52.161C27.9107 52.252 24.5988 52.193 21.5297 52.1926C21.5025 49.5719 21.4433 46.7671 21.5481 44.1497C21.579 43.3748 21.6376 43.4903 22.1266 43.0851Z" fill="#9E2184"/> +<path d="M40.4357 309.876L49.8526 309.878C49.9287 312.794 49.6107 316.412 49.8066 319.083C46.8819 318.982 43.388 319.081 40.4196 319.088C40.2329 316.02 40.2375 312.944 40.4357 309.876Z" fill="#9E2184"/> +<path d="M-6.77863 300.634L2.66115 300.692C2.69296 303.734 2.66575 306.776 2.58001 309.816C-0.545833 309.869 -3.67237 309.876 -6.79845 309.837C-6.85307 306.836 -6.78946 303.649 -6.77863 300.634Z" fill="#9E2184"/> +<path d="M182.601 471.617C185.639 471.681 188.861 471.628 191.915 471.631C192.083 474.675 192.004 477.717 191.894 480.762C190.055 480.997 184.659 480.856 182.668 480.842C182.528 477.95 182.601 474.551 182.601 471.617Z" fill="#9E2184"/> +<path d="M239.814 452.75C242.873 452.806 246.323 452.769 249.34 452.958C249.31 454.813 249.388 460.467 249.04 461.939C246.351 461.962 242.481 461.884 239.872 462.055C239.886 458.952 239.865 455.853 239.814 452.75Z" fill="#9E2184"/> +<path d="M249.482 338.867C252.465 338.818 255.452 338.825 258.434 338.885C258.478 340.743 258.881 346.903 257.952 347.972C256.231 348.085 250.305 348.5 249.247 347.569C248.833 345.979 248.975 340.441 249.482 338.867Z" fill="#9E2184"/> +<path d="M12.2031 148.627C13.7671 148.819 19.6217 148.72 21.5749 148.745C21.5878 151.006 21.698 155.737 21.3726 157.793C20.0642 158.112 13.9291 157.989 12.3022 157.982C12.341 154.863 12.308 151.744 12.2031 148.627Z" fill="#9E2184"/> +<path d="M154.401 225.088C157.187 225.013 160.642 224.974 163.391 225.143C163.562 227.147 163.726 232.412 163.2 234.19L153.988 234.162C153.991 232.228 153.689 226.175 154.401 225.088Z" fill="#9E2184"/> +<path d="M249.934 262.895C252.654 262.851 255.675 262.775 258.36 263.049C258.492 264.84 258.84 271.132 257.95 272.259C255.712 272.215 251.356 272.812 250.031 272.031C248.86 270.616 248.784 264.294 249.934 262.895Z" fill="#9E2184"/> +<path d="M144.493 62.1002C147.535 62.2166 150.988 62.117 153.924 62.3309C153.901 64.4833 153.735 69.3471 153.938 71.3448C151.082 71.3667 147.399 71.4821 144.622 71.3005C144.608 68.3056 144.648 65.0779 144.493 62.1002Z" fill="#9E2184"/> +<path d="M183.021 196.519C186.028 196.478 189.036 196.463 192.043 196.474C191.76 199.4 192.336 201.965 191.746 205.39C189.861 205.613 185.424 206.117 183.696 205.45C182.002 204.796 182.276 197.66 183.021 196.519Z" fill="#9E2184"/> +<path d="M78.4701 81.2397C81.4431 81.1155 84.5383 81.2489 87.599 81.127C87.4215 83.9353 87.834 87.7297 87.3039 90.4091L78.2742 90.435C78.318 88.2236 78.076 83.1277 78.4701 81.2397Z" fill="#9E2184"/> +<path d="M107.435 366.873C110.06 366.735 113.386 366.806 116.062 366.793C116.126 368.41 116.564 375 115.347 375.758C113.603 375.737 107.733 376.534 106.981 374.981C106.223 373.412 106.525 369.59 106.636 367.733C106.668 367.187 107.048 367.101 107.435 366.873Z" fill="#9E2184"/> +<path d="M125.686 310.143C127.795 310.323 132.566 310.134 134.949 310.116C134.785 313.096 135.094 316.189 134.785 319.166C132.925 319.461 127.507 319.245 125.502 319.164C125.702 316.119 125.677 313.19 125.686 310.143Z" fill="#9E2184"/> +<path d="M125.489 234.211C125.493 236.921 125.599 240.604 125.263 243.217C122.428 243.391 119.029 243.335 116.146 243.348C116.265 240.521 116.194 237.153 116.231 234.263C119.284 234.206 122.426 234.228 125.489 234.211Z" fill="#9E2184"/> +<path d="M144.555 329.655C147.565 329.586 150.796 329.664 153.825 329.689C153.848 332.013 153.963 336.461 153.631 338.629L144.546 338.636C144.357 336.191 144.445 332.107 144.555 329.655Z" fill="#9E2184"/> +<path d="M249.061 205.878C253.113 205.938 259.197 204.297 258.547 210.039C258.363 211.685 258.812 213.221 258.169 214.899C256.229 214.891 251.467 215.417 250.269 214.689C249.503 213.745 248.95 207.236 249.061 205.878Z" fill="#9E2184"/> +<path d="M-55.4382 725.075C-58.9999 724.892 -72.0334 725.4 -74.551 724.738C-75.0864 723.784 -75.0557 717.607 -74.6153 716.4C-73.3613 715.775 -49.4712 716.042 -46.1533 716.033C-46.4347 718.354 -46.3573 722.853 -46.2349 725.22C-43.2704 725.356 -39.5276 725.268 -36.4891 725.293C-36.4506 728.414 -36.4875 731.604 -36.4893 734.729C-39.7044 734.697 -42.9194 734.701 -46.1342 734.743C-46.2725 736.895 -46.8164 742.48 -45.7832 743.987C-44.3831 744.985 -38.6892 744.457 -36.4905 744.42C-36.2275 741.475 -36.3808 737.799 -36.4301 734.773L-12.0541 734.766C-8.21634 734.766 -2.16629 734.607 1.45438 734.992C1.59358 737.778 1.4214 741.648 1.36032 744.478C3.39743 744.413 9.48645 744.763 10.86 744.201C11.4823 742.224 11.2426 728.276 11.2357 725.234C15.6538 725.081 26.1263 725.616 29.876 725.104C29.8829 728.066 29.9843 731.811 29.717 734.69C26.7578 734.814 23.2316 734.743 20.2401 734.745C20.0742 737.914 20.1664 741.263 20.2078 744.443C23.4413 744.48 36.8154 743.959 38.7975 745.047C39.8461 747.089 39.1409 750.968 39.6133 753.471C30.5905 753.113 20.9753 753.427 11.9317 753.558C9.92896 753.588 11.8257 760.77 10.5996 762.57C9.04395 763.213 3.30757 762.899 1.34766 762.864L1.35179 772.314C3.55876 772.507 7.15179 772.39 9.44957 772.385C12.9458 772.378 16.8707 772.434 20.3346 772.231C20.413 775.114 20.1502 779.767 20.4314 782.298C14.8103 782.632 7.26241 782.427 1.50392 782.415C1.31723 785.361 1.38913 788.702 1.39259 791.687C3.75006 791.906 8.46777 791.724 10.9776 791.687C11.0698 794.791 11.0651 797.898 10.9637 801.005C8.30414 801.231 4.37233 801.072 1.45322 801.191C1.2209 803.798 1.33037 808.251 1.31677 810.991C6.97432 810.975 14.9163 810.719 20.3876 811.06C20.6642 820.44 21.6805 820.108 11.904 819.611C11.5906 820.5 10.0511 826.956 10.0972 827.654C10.2954 830.685 18.4079 828.352 20.0304 829.611C20.7587 831.251 20.3116 837.193 20.4291 839.634L29.8829 839.613C30.2701 844.868 29.6525 852.786 29.6893 858.537C32.8629 858.562 36.1378 858.497 39.3229 858.477C39.6802 855.743 39.5303 849.092 39.5027 846.137C39.4497 840.705 39.6317 834.828 39.452 829.442C36.4052 829.387 33.1994 829.477 30.1019 829.442C30.0189 820.067 30.0143 810.694 30.088 801.318C33.2339 801.261 36.3822 801.261 39.5304 801.321C39.7124 805.614 39.1823 808.838 38.5854 812.978C38.3826 814.37 38.4725 818.518 38.4771 820.088C45.1446 820.302 51.7659 819.735 58.5809 820.424C58.7676 817.393 58.6984 814.063 58.6938 811C64.6952 810.814 71.1852 810.924 77.2005 810.968C77.295 820.509 77.2926 830.053 77.1889 839.597C86.2855 839.825 96.3109 839.604 105.488 839.62C105.756 843.208 105.613 854.838 105.414 858.253C102.305 858.486 99.1826 858.449 96.0666 858.415C96.2095 855.363 96.2003 851.922 96.145 848.869C93.4877 848.686 89.5421 848.76 86.8479 848.802C86.7165 851.874 86.6266 855.43 86.7972 858.474C83.9394 858.26 80.4247 858.502 77.3272 858.35C77.3756 855.172 77.3826 851.996 77.3549 848.818C74.9327 848.569 70.3117 848.786 67.7074 848.841C67.6268 852.086 67.7628 855.209 67.4102 858.442C64.262 858.461 61.4064 858.922 58.2836 859.371C58.2145 856.456 58.5832 853.844 58.65 850.993C58.7353 847.357 58.6915 843.598 58.6846 839.952C61.1829 839.733 65.3451 839.846 67.9702 839.848C68.2214 835.992 67.7997 832.92 67.5484 829.085C63.9854 829.064 61.8766 829.14 58.3158 828.659C55.9973 828.864 50.7058 827.735 48.9588 828.712C48.1545 831.06 48.3642 857.619 49.4128 858.885C51.4548 859.71 55.9697 859.468 58.2836 859.371C58.2606 861.825 58.1591 864.877 58.249 867.276C53.0981 867.267 43.8401 867.009 39.051 867.458C38.9173 870.68 38.9173 873.727 38.9265 876.953C42.1162 876.935 45.3889 876.877 48.567 877.002C48.7353 881.166 48.3204 885.209 48.3596 889.362C48.4333 897.29 48.1752 905.204 47.9332 913.126C47.818 916.926 47.977 920.839 47.8641 924.658L39.3667 924.628C38.7583 916.087 39.8645 905.267 39.5488 896.29C36.9975 896.299 32.3536 896.17 29.9659 896.373C29.8737 899.256 30.0258 903.536 29.6732 906.186L20.1894 906.2C20.0972 902.879 20.2171 899.431 20.1041 896.209C17.4837 896.232 3.18309 896.062 1.77332 896.638C1.03629 898.251 1.35712 903.616 1.31148 905.734C-1.47949 905.485 -5.05408 905.555 -7.85036 905.721L-7.93102 918.219C-7.93862 919.726 -8.05154 923.25 -7.91348 924.633C-14.1772 924.471 -20.4952 924.748 -26.7806 924.566C-26.8488 922.45 -27.3618 917.666 -26.3063 916.163C-24.9299 915.186 -19.416 915.615 -17.2046 915.608C-16.9534 909.53 -17.1184 902.448 -17.1235 896.297C-20.2862 896.251 -23.6059 896.313 -26.7813 896.324C-26.5672 893.273 -26.5888 889.897 -26.5524 886.811C-32.7361 886.815 -39.9952 887.002 -46.0798 886.684C-46.3315 889.537 -46.3103 893.644 -46.2773 896.527L-26.8366 896.5C-26.8444 899.546 -26.909 902.591 -27.0302 905.633C-28.9495 905.651 -34.3061 905.324 -35.717 905.87C-36.9802 907.182 -36.4179 912.731 -36.6497 915.405C-39.7426 915.435 -42.8355 915.437 -45.9284 915.416C-45.989 912.238 -45.942 908.975 -45.9874 905.769C-48.1948 905.449 -53.2193 905.651 -55.5539 905.725C-55.367 902.814 -55.4163 899.182 -55.4756 896.264C-60.1691 896.186 -64.8992 896.34 -69.5973 896.269C-71.1733 896.246 -72.7985 896.221 -74.3606 896.426C-75.0497 897.677 -74.7022 903.999 -74.8292 906.142C-76.3547 906.209 -80.1811 906.451 -81.4964 906.158C-85.4086 905.287 -87.6234 904.914 -91.6239 904.955C-92.3561 905.624 -92.7232 906.103 -93.3552 906.878C-93.4375 908.91 -93.9715 913.596 -93.0867 915.041C-91.9226 915.953 -86.0535 915.603 -83.9654 915.704C-83.7377 917.995 -83.6769 931.83 -84.3496 933.517C-85.97 934.183 -118.28 933.845 -122.51 933.812C-122.271 928.191 -122.438 921.397 -122.434 915.691C-119.184 915.522 -115.927 915.518 -112.676 915.681C-112.485 918.523 -112.648 922.01 -112.501 925.068C-109.682 925.179 -105.93 925.168 -103.131 925.05C-102.869 922.04 -103.016 917.802 -103.027 914.67C-103.066 908.622 -103.066 902.572 -103.028 896.525C-101.086 896.536 -95.8187 896.707 -94.3082 896.41C-92.3658 896.027 -94.3167 889.258 -93.224 887.251C-91.6064 886.543 -86.1593 886.877 -83.915 886.866C-83.6896 884.428 -83.2549 879.074 -83.2706 876.907C-79.3586 876.967 -79.0332 878.295 -74.5019 878.422C-71.3862 876.799 -68.7605 877.154 -65.2555 877.145C-65.1958 880.367 -65.2474 883.582 -65.1783 886.813C-62.4661 887.016 -58.4463 886.93 -55.6325 886.949C-55.3606 883.884 -55.4631 879.744 -55.4836 876.656L-65.0333 876.721C-65.2122 870.738 -65.0006 864.646 -65.2576 858.686L-74.4789 858.705C-74.5542 855.656 -74.5093 852.425 -74.5151 849.362C-77.6623 849.184 -80.4146 849.532 -83.8668 849.223C-84.08 858.096 -83.9207 867.649 -83.9152 876.585C-86.3969 876.58 -87.0977 876.543 -89.4006 877.424C-92.4006 876.375 -97.7057 876.578 -100.773 876.96C-101.277 877.023 -102.015 876.808 -102.297 876.396C-103.405 874.778 -103.073 869.477 -103.07 867.424C-105.588 867.262 -110.063 867.223 -112.553 867.421C-112.498 864.158 -112.487 860.894 -112.519 857.633C-115.436 857.654 -119.645 857.808 -122.461 857.633L-122.445 849.078L-112.739 848.998C-112.743 851.766 -112.803 854.718 -112.75 857.47C-106.544 857.334 -99.635 857.578 -93.6315 857.329C-93.5988 854.568 -93.5506 851.846 -93.6318 849.083C-99.9747 849.03 -106.244 848.686 -112.563 848.795C-112.538 845.81 -112.44 842.381 -112.57 839.438L-131.88 839.38L-131.699 830.625C-127.14 830.638 -123.12 830.638 -118.556 830.201C-116.817 830.035 -114.428 830.24 -112.599 830.074C-112.263 820.489 -112.536 809.693 -112.489 799.986C-115.361 800.198 -119.717 800.244 -122.58 800.023L-122.449 791.855C-119.619 791.572 -115.944 791.662 -113.038 791.703C-112.902 788.739 -112.876 785.775 -112.96 782.812C-116.137 782.888 -119.315 782.906 -122.492 782.871C-122.463 776.4 -122.695 768.988 -122.433 762.648C-119.573 762.579 -115.425 762.408 -112.705 762.934L-112.792 782.629C-110.79 782.646 -104.771 782.89 -103.336 782.242C-102.384 780.449 -103.999 772.952 -102.396 772.802C-96.7156 772.27 -90.3524 772.482 -84.6349 772.666C-83.4568 772.706 -84.1007 781.473 -84.0777 782.632C-85.4927 782.523 -87.0717 782.537 -88.4923 782.593C-93.316 782.777 -98.2552 782.417 -103.062 782.535C-103.149 789.698 -103.153 796.863 -103.072 804.029C-103.041 805.948 -103.129 809.203 -102.984 810.993L-85.0876 811.051C-85.0871 808.285 -85.2176 804.181 -85.0525 801.523C-82.2399 801.196 -77.5602 801.332 -74.6033 801.364C-74.5971 804.57 -74.6349 807.776 -74.7169 810.982C-68.9024 810.991 -61.2585 810.756 -55.6286 811.042C-55.562 814.312 -55.2175 826.889 -56.0077 829.205C-56.7895 829.94 -60.1541 830.083 -61.374 830.362C-62.5911 830.641 -63.8347 831.122 -65.0349 831.288C-65.0538 833.989 -65.0045 836.704 -65.3325 839.385C-68.1152 839.396 -71.863 839.304 -74.5662 839.468C-74.498 836.227 -74.4775 832.985 -74.5044 829.742C-64.3099 829.594 -64.5931 831.436 -65.1677 820.378C-65.1755 820.212 -65.1873 820.048 -65.2023 819.882C-68.023 819.906 -71.7328 820.018 -74.5021 819.869C-74.5019 817.333 -74.4107 813.736 -74.6338 811.318C-77.8688 811.302 -81.0869 811.429 -84.3199 811.457L-84.4033 819.813C-90.5534 819.873 -96.921 819.972 -103.064 819.855C-103.071 823.017 -103.177 826.79 -103.051 829.901C-98.1031 830.265 -89.4635 829.924 -84.13 829.933C-84.1201 832.482 -84.2339 837.244 -84.0136 839.666C-81.3044 839.76 -77.4549 839.7 -74.6888 839.611L-74.7013 848.998C-67.6097 849.15 -60.4938 848.968 -53.4011 849.034C-51.444 849.053 -48.1593 848.852 -46.3737 849.422C-45.9256 850.846 -46.0911 855.624 -46.2439 857.214C-46.4232 859.078 -53.8201 858.35 -55.4359 858.527C-55.7839 863.796 -55.5519 871.003 -55.5986 876.469C-52.7885 876.359 -49.9768 876.29 -47.1646 876.262C-46.5732 876.681 -45.8245 877.251 -45.2257 877.624C-43.1801 877.613 -37.0869 878.306 -35.7912 877.871C-32.3347 876.709 -30.0966 877.46 -26.8094 876.974C-26.9631 880.613 -26.9044 883.434 -26.1152 886.995C-23.6527 887.013 -19.5111 887.147 -17.1712 886.894C-16.9154 884.596 -17.1025 879.327 -17.1461 876.944C-20.1044 876.801 -23.8283 876.926 -26.8094 876.974C-26.9528 867.689 -26.5446 858.057 -26.8055 848.832C-29.7029 848.682 -33.3879 848.767 -36.3441 848.753C-36.5276 846.188 -36.4227 842.3 -36.4271 839.631C-30.0724 839.597 -23.7174 839.597 -17.3627 839.629C-17.177 842.167 -17.303 846.315 -17.2694 849.034C-11.0949 849.083 -4.92017 849.078 1.25432 849.025C1.45689 845.635 1.72887 833.063 1.12411 830.071C-1.57629 829.788 -4.55373 830.311 -7.30046 830.12C-13.8324 829.67 -20.2411 829.567 -26.7737 829.424C-27.0249 824.024 -26.7995 816.439 -26.7988 810.86C-22.0942 811.138 -17.3127 810.719 -12.6068 811.127C-11.1832 811.249 -9.8409 811.327 -8.41016 811.281C-8.34862 813.39 -8.98956 818.808 -7.77267 820.23C-6.83467 821.328 -0.0941467 821.157 0.962097 820.604C1.61755 820.26 1.44493 811.984 1.44585 811.028C-0.606018 810.88 -6.32927 810.767 -8.25092 810.979C-8.19906 807.013 -8.23915 803.581 -7.64408 799.659C-7.39632 798.025 -7.32674 793.362 -7.8045 791.825C-8.91006 791.281 -16.0166 791.332 -16.8509 791.599C-17.5003 792.853 -17.3286 799.189 -17.3687 801.097C-20.3369 801.097 -23.8864 801.019 -26.796 801.24C-26.8557 803.916 -27.0631 808.172 -26.882 810.717C-30.0625 810.588 -33.1584 810.721 -36.4186 810.553C-36.5131 807.513 -36.4667 804.194 -36.4856 801.129C-39.5119 801.03 -42.8756 801.076 -45.9249 801.053C-45.9637 798.013 -45.9314 794.907 -45.9314 791.86C-42.9401 791.786 -28.9392 792.162 -27.1795 791.454C-26.4895 789.852 -26.7852 784.328 -26.8112 782.323C-30.1302 782.272 -33.0639 782.394 -36.4515 782.219C-36.6338 779.502 -36.5976 775.344 -36.5103 772.62C-34.5921 772.454 -32.1286 772.625 -30.1452 772.517C-25.8288 772.281 -21.6462 772.235 -17.3231 772.275C-17.3102 775.453 -17.3473 778.818 -17.1993 781.975C-14.0006 781.945 -10.9702 781.774 -7.68327 781.774C-7.44174 776.04 -7.63509 768.76 -7.63187 762.931C-4.83052 762.793 -1.49864 762.844 1.32645 762.828C0.841766 759.836 1.09575 748.299 1.11858 744.641C-3.1799 744.593 -7.47353 744.787 -11.7773 744.71C-15.7474 744.641 -22.7732 743.636 -26.5278 744.473C-27.2595 745.911 -26.994 751.516 -26.9823 753.404C-30.1021 753.397 -33.257 753.353 -36.372 753.473C-36.5787 756.01 -36.4831 760.242 -36.5018 762.908C-39.8122 762.975 -42.6094 762.987 -45.9125 762.844L-45.9503 753.429C-52.1746 753.183 -58.7256 753.586 -65.0495 753.383C-65.1357 750.472 -65.1057 747.368 -65.1267 744.441C-63.3313 744.448 -56.612 744.761 -55.6602 744.038C-55.1589 741.846 -55.388 728.071 -55.4382 725.075ZM-7.35622 886.354C-2.04645 886.366 3.4205 886.456 8.69131 885.831C12.2037 885.416 15.3657 885.449 18.8896 885.476L19.7446 885.372C20.8186 883.95 19.8783 869.274 20.2355 866.442C20.36 865.435 20.2286 859.929 20.0926 858.917C19.6225 858.412 18.1014 858.345 17.3754 858.343C9.01399 858.311 0.600235 858.433 -7.76025 858.32C-8.36546 859.952 -8.09418 862.137 -8.24906 863.856C-8.79205 869.878 -8.66254 875.64 -7.76601 881.63C-7.53646 883.162 -7.64108 884.778 -7.35622 886.354ZM29.7792 886.919C32.8514 886.926 35.9212 886.912 38.9933 886.873C39.2353 884.105 39.0717 879.88 39.021 877.004C36.0203 876.926 33.0196 876.896 30.0212 876.912C29.7562 879.235 29.7078 884.474 29.7792 886.919Z" fill="#9E2184"/> +<path d="M172.087 677.994C173.469 667.075 170.957 668.113 181.847 667.718C181.49 670.366 181.478 675.028 181.312 677.958C184.836 678.123 189.524 678.137 193.036 678.036C201.531 677.793 200.526 677.66 200.448 685.867L200.393 696.43C197.316 696.307 194.447 696.54 191.259 696.288C191.165 694.216 191.522 688.823 190.99 687.309C190.093 686.685 182.598 686.594 181.766 687.144C181.056 688.802 181.375 696.517 181.596 698.713C182.061 703.355 181.073 711.56 181.971 715.754C183.403 716.964 197.185 715.114 199.724 716.713C200.596 718.045 200.248 723.12 200.227 725.061C197.233 725.079 194.237 725.065 191.241 725.024C191.024 727.547 191.054 732.36 191.135 734.959C193.599 735.107 197.447 734.978 200.017 734.971C199.759 737.428 199.819 739.407 199.492 742.498C199.061 746.561 193.824 743.45 192.555 745.211C191.137 747.176 191.333 761.353 191.354 763.024C194.343 763.116 197.521 763.06 200.526 763.051C200.464 767.195 200.441 771.339 200.46 775.485C200.457 777.518 200.358 780.742 200.483 782.659L172.107 782.682C172.165 780.597 171.743 774.298 172.575 773.109C173.976 772.18 179.213 772.533 181.384 772.514C181.593 769.659 181.501 765.782 181.506 762.844L172.094 762.867C169.1 762.869 165.661 762.802 162.709 763.005C162.349 768.244 162.619 777.354 162.601 782.8C165.59 782.606 169.008 782.786 172.107 782.682C171.794 788.115 172.029 795.46 171.898 801.24C169.724 801.072 165.382 801.323 162.764 801.251C162.559 798.546 162.665 794.342 162.656 791.521C160.107 791.431 155.673 791.438 153.181 791.562L153.17 782.473C151.934 782.429 144.184 782.832 143.769 781.933C142.907 780.064 144.267 774.344 143.124 772.643C141.526 772.037 127.924 772.493 124.603 772.251L124.571 762.977C121.632 762.816 118.074 762.894 115.085 762.892C115.039 759.813 114.951 756.746 115.103 753.671L134.013 753.683C134.135 750.998 134.128 747.236 133.965 744.577C131.904 744.362 127.041 744.528 124.61 744.478L124.575 715.835L114.983 715.844C114.739 721.366 115.327 729.585 114.688 734.731C111.658 734.75 108.629 734.733 105.601 734.683C105.889 729.622 105.82 724.325 105.594 719.262C105.44 715.789 105.059 712.323 105.228 708.84C105.258 708.253 105.26 707.407 105.7 706.964C106.991 705.667 121.625 706.358 124.61 706.215C124.698 703.046 124.629 699.552 124.631 696.359C121.402 696.365 118.362 696.46 115.135 696.225C115.048 693.203 115.066 690.022 115.027 686.982C112.504 686.749 108.136 686.867 105.571 686.968C105.804 684.554 105.61 680.502 105.548 678.001C111.881 677.991 118.217 678.02 124.55 678.089C124.725 680.827 124.656 684.453 124.665 687.226C127.537 687.344 130.969 687.261 133.884 687.263C133.843 690.44 133.868 693.677 133.863 696.861C136.917 696.99 140.388 696.888 143.479 696.858C143.513 699.619 143.61 704.003 143.225 706.646C140.517 706.667 137.938 706.678 135.23 706.84C135.302 710.078 135.527 713.27 135.594 716.533C138.178 716.566 140.759 716.637 143.338 716.743C143.594 719.345 143.444 722.618 143.4 725.28L153.142 725.261C153.373 719.287 153.218 712.399 153.218 706.356L161.234 706.393C161.296 703.254 161.179 700.587 160.992 697.455C158.286 697.441 155.583 697.402 152.877 697.338C152.713 694.91 152.63 680.203 153.19 678.398C154.739 677.699 169.146 678.035 172.087 677.994ZM152.854 761.749C152.833 759.631 152.421 754.773 153.458 753.314C154.891 752.36 160.704 752.818 162.923 752.793L162.932 752.355C162.969 750.82 163.08 749.659 163.393 748.22C163.949 745.658 163.834 736.688 162.589 734.828C161.13 733.95 155.232 734.275 153.091 734.284C151.58 738.732 155.06 744.916 149.685 744.775C147.749 744.724 145.781 744.791 143.84 744.775C143.336 747.515 143.518 759.905 143.548 763.305C145.564 763.353 151.116 763.754 152.552 762.89C152.849 762.337 152.891 762.364 152.854 761.749ZM172.006 744.411C174.078 744.441 179.692 744.625 181.591 744.415C182.216 741.242 182.057 728.575 181.861 725.051C178.623 725.022 175.385 725.04 172.149 725.104C171.833 726.828 171.826 742.36 172.006 744.411Z" fill="#9E2184"/> +<path d="M48.6825 477.151C54.6447 476.987 61.6256 477.022 67.6362 477.105C67.6431 479.968 67.5463 483.85 67.7445 486.626C70.8997 486.755 74.1447 486.718 77.3113 486.719C77.0416 489.14 77.2353 493.152 77.1799 495.778C74.0387 495.754 70.8651 495.692 67.7284 495.81C67.6915 498.734 67.574 502.282 67.6892 505.188C66.1635 505.15 59.632 504.887 58.6203 505.536C57.9012 507.527 58.3622 520.849 58.2054 524.234C56.9678 524.36 49.7564 524.189 49.39 524.73C48.3414 526.28 48.7124 540.928 48.883 543.623C51.9874 543.675 55.0895 543.679 58.1916 543.633C58.2538 546.875 58.2838 550.118 58.2769 553.36C56.689 553.096 48.0464 553.107 45.9122 553.118C41.5633 553.14 34.3658 552.618 30.3326 553.071C29.6573 554.239 29.6988 561.478 29.897 563.016C27.9725 563.056 22.2661 562.682 21.017 563.382C20.0951 564.516 20.4546 570.353 20.4062 572.514C17.3618 572.679 14.1629 572.583 11.1045 572.548C10.9409 575.47 11.0262 579.36 10.9686 582.4C6.91001 582.603 -3.72105 582.63 -7.4823 582.365C-7.93955 577.705 -7.58487 567.949 -7.64663 562.768L-16.8168 562.842C-16.9573 559.825 -16.8907 556.215 -16.9131 553.152C-20.0899 553.222 -23.5193 553.394 -26.6654 553.203C-26.8772 550.659 -26.7735 546.419 -26.785 543.745C-15.2286 544.822 -17.0166 544.184 -17.1475 534.033C-20.0996 533.853 -23.7847 533.974 -26.8018 534.003C-26.7244 530.902 -26.5425 527.49 -26.8673 524.442C-30.0583 524.402 -33.0344 524.604 -36.2828 524.42C-36.5525 521.578 -36.4324 518.157 -36.4107 515.267C-34.443 515.268 -28.9867 515.599 -27.5177 514.974C-26.3563 513.827 -26.9311 507.861 -26.7831 505.455C-23.6711 505.24 -20.1798 505.543 -17.1509 505.221L-17.2152 515.295C-14.286 515.446 -10.8087 515.339 -7.86074 515.304C-7.56735 512.73 -7.65608 508.011 -7.78353 505.358C-5.21772 505.38 -0.978703 505.481 1.44468 505.242C1.4297 508.73 1.46933 512.219 1.56313 515.706C7.54149 515.947 14.0407 515.413 20.1735 515.379C20.2772 512.969 19.8577 507.432 20.5422 505.61C22.2662 504.802 35.9629 505.319 39.1019 505.186C39.0927 507.908 38.9797 512.792 39.4315 515.316C41.9574 515.354 46.2395 515.597 48.5719 515.407C48.9775 513.367 48.7954 507.52 48.7516 505.284C46.0321 505.085 41.9297 505.192 39.1019 505.186L39.1411 496.232C42.31 495.993 45.8293 496.246 48.5626 495.995C48.9429 489.835 48.2953 482.934 48.6825 477.151ZM-7.4081 553.345L20.3878 553.387C20.881 552.425 20.8856 527.989 20.6782 524.675C14.4579 524.566 8.15223 524.77 1.93303 524.733C-0.760227 524.717 -5.12738 524.925 -7.64641 524.493C-8.97091 526.315 -7.85428 535.667 -7.70378 538.491C-7.43759 543.485 -7.46848 548.361 -7.4081 553.345ZM1.49791 572.567C4.52926 572.645 7.71435 572.474 10.6897 572.668C11.0677 572.368 11.2751 572.342 11.2244 571.624C11.0561 569.31 11.7222 565.038 10.692 563.154C10.3901 562.91 9.96142 562.57 9.56501 562.579C6.90771 562.641 4.2527 562.801 1.58664 562.79C1.39005 565.079 1.25269 570.318 1.49791 572.567ZM29.6895 543.933L39.2586 543.891C39.6458 542.068 39.4845 535.979 39.3623 533.92C36.2302 533.971 33.0982 533.984 29.9661 533.958C29.5674 535.949 29.6849 541.651 29.6895 543.933Z" fill="#9E2184"/> +<path d="M1.53166 534.239C4.68563 534.196 7.83844 534.191 10.9912 534.222C11.0489 536.449 11.3093 541.708 10.7193 543.631C8.01591 543.766 4.00575 543.724 1.3171 543.61C1.17214 541.921 1.07418 535.773 1.53166 534.239Z" fill="#9E2184"/> +<path d="M-65.7894 553.624C-68.0814 553.501 -72.491 553.898 -74.1886 553.119C-75.3861 551.721 -75.8895 509.099 -74.4286 505.755C-72.9552 504.995 -66.8512 505.174 -64.9482 505.285C-64.8466 508.288 -65.4675 522.688 -64.7629 524.112C-63.6018 524.652 -56.4054 525.088 -55.6495 523.92C-54.5297 522.191 -55.2063 517.6 -55.1669 515.336C-52.897 515.232 -47.855 515.385 -46.1314 515.17C-46.1309 518.236 -45.8378 542.398 -46.5753 543.398C-48.1192 543.909 -51.0968 543.699 -52.7862 543.656L-55.3192 543.694C-55.5002 545.669 -55.8489 551.906 -55.1213 553.55C-53.1508 554.74 -46.8364 552.772 -46.384 554.927C-45.9387 557.049 -46.4059 560.686 -46.1168 563.184C-40.1622 563.256 -34.2069 563.279 -28.2518 563.253C-24.7819 563.256 -20.2493 563.383 -16.8501 563.215C-16.9008 565.616 -17.3467 567.481 -17.5295 569.863C-17.7812 573.145 -17.0375 579.515 -18.4726 582.448C-19.8512 582.878 -25.0352 582.643 -26.7798 582.611C-26.7953 580.869 -26.5648 573.706 -27.2343 572.765C-28.6028 572.328 -36.5307 571.709 -36.5489 574.168C-36.5683 576.807 -36.4404 579.707 -36.5298 582.409C-39.5038 582.451 -42.5444 582.394 -45.4902 582.457C-45.5776 585.903 -44.7239 588.699 -44.5137 592.108C-41.661 591.832 -39.3436 591.825 -36.4793 592.032C-36.4726 597.846 -36.6923 605.513 -36.4335 611.203C-33.289 611.304 -30.0506 611.248 -26.896 611.231C-27.0004 613.612 -27.1085 618.456 -26.9372 620.743C-24.3062 620.86 -19.8245 620.917 -17.2251 620.701C-17.0513 617.548 -17.1094 614.311 -17.1186 611.147C-14.0328 611.212 -10.9462 611.228 -7.85973 611.196C-7.81317 617.562 -7.8051 623.929 -7.83575 630.295C-7.84151 632.961 -7.98096 637.174 -7.82355 639.733C-5.00929 639.745 -1.17336 639.66 1.55631 639.857C1.46505 643.088 1.31916 646.491 1.36964 649.708C3.30303 649.755 9.22148 650.266 10.3715 649.099C11.7244 647.726 11.9249 641.786 11.941 639.771C14.6283 639.756 17.3709 639.701 20.0535 639.828C19.8945 646.16 20.5928 651.795 20.1849 658.411C17.0505 658.675 14.0406 658.306 11.109 658.543C11.0237 660.181 11.192 666.796 10.5697 667.64C9.3782 668.082 2.66233 668.076 1.47956 667.51C0.952942 665.896 1.30349 652.332 1.33668 649.793C-4.64722 649.708 -9.98441 649.646 -16.0006 649.251C-19.2762 649.037 -23.3634 649.332 -26.7775 649.191C-26.8029 646.035 -26.8072 642.878 -26.7909 639.722C-24.6178 639.756 -18.9524 640.258 -17.5611 639.209C-16.6014 637.71 -17.1066 632.436 -17.1504 630.192C-28.2783 629.95 -26.8755 628.37 -27.0142 639.476C-28.4715 639.377 -34.8559 639.194 -35.805 639.912C-36.6142 641.87 -36.1025 648.63 -37.3095 648.738C-41.9919 649.16 -50.986 648.945 -55.5886 648.958C-55.5704 654.722 -55.3672 661.984 -55.6592 667.62C-58.3598 667.959 -62.3034 667.877 -65.0902 667.862C-65.0791 665.031 -64.9558 661.209 -65.1068 658.459C-68.1944 658.451 -71.4714 658.499 -74.5426 658.424C-74.6491 655.628 -74.5009 651.782 -74.7307 649.22C-77.7911 649.179 -80.8522 649.192 -83.9121 649.26C-83.819 646.298 -83.745 642.687 -83.852 639.726C-80.0142 639.71 -71.6277 639.474 -68.0826 639.79C-67.9489 642.752 -68.0194 645.631 -68.0667 648.592C-64.0388 648.819 -59.6403 648.766 -55.579 648.79C-55.5594 643.041 -55.2826 635.242 -55.5209 629.631C-51.8438 629.648 -48.0546 629.629 -44.3872 629.767C-41.6103 629.872 -39.0728 630.411 -36.2263 630.295C-36.2353 627.235 -36.1454 623.478 -36.2961 620.473C-42.6868 620.384 -49.0781 620.375 -55.469 620.445C-55.4836 618.783 -55.8429 612.132 -55.1415 611.314C-52.7675 610.314 -47.8288 611.749 -46.3466 610.601C-45.6117 608.466 -45.9594 604.209 -45.9209 601.737C-50.9449 601.764 -60.3739 602.079 -65.1596 601.692C-65.3262 598.612 -65.1755 594.982 -65.1132 591.854C-66.9621 591.861 -73.7404 592.18 -74.7616 591.339C-75.2163 589.495 -75.8174 582.179 -72.6853 582.446C-70.2296 582.655 -67.6136 582.66 -65.1335 582.637C-65.2116 584.914 -65.3234 589.809 -65.1531 591.971C-63.0429 591.979 -57.0819 592.413 -55.7239 591.539C-54.6884 590.07 -55.1355 584.79 -55.1581 582.619C-52.1367 582.611 -48.9286 582.651 -45.9256 582.546C-45.9154 580.468 -45.6792 574.216 -46.3664 572.682C-47.3298 572.303 -53.935 572.376 -54.9516 572.609C-56.1757 573.826 -55.2996 580.525 -55.283 582.586C-57.9498 582.313 -62.2951 582.427 -65.1047 582.427C-65.1236 579.262 -64.8337 576.985 -64.5942 573.869C-64.4633 572.168 -64.7742 569.489 -64.7447 567.679C-64.6675 562.97 -65.8374 558.232 -65.7894 553.624Z" fill="#9E2184"/> +<path d="M143.723 611.19C152.863 611.432 162.64 611.128 171.897 611.231C172.144 613.893 171.946 617.71 171.863 620.439C169.906 620.548 164.366 620.275 163.163 620.972C162.236 622.112 162.575 628.167 162.534 630.265C168.768 630.369 175.159 629.83 181.427 630.336L181.411 639.736L191.197 639.812C191.344 645.994 191.162 652.659 191.215 658.928L210.314 658.7L210.33 667.735C201.45 667.332 190.976 667.626 181.962 667.638C181.997 664.834 182.033 652.063 181.437 649.716C180.593 648.929 173.84 649.216 172.167 649.218C172.128 645.977 172.22 642.773 172.13 639.521C169.185 639.355 165.742 639.496 162.656 639.386C162.58 636.424 162.649 633.206 162.658 630.224L143.672 630.303C143.709 633.32 143.601 636.366 143.527 639.384C141.478 639.397 136.428 639.282 134.691 639.789C133.64 640.88 134.483 644.607 134.276 646.019C133.76 649.559 134.366 655.168 133.736 658.517L132.51 658.507C126.668 658.583 120.826 658.547 114.986 658.399C114.773 661.416 114.854 664.801 114.684 667.951C111.711 667.909 108.454 667.865 105.513 668.176C105.46 670.493 105.214 675.953 105.483 677.987C103.063 677.756 97.8939 677.932 95.2758 677.95C95.1698 674.927 95.292 671.345 95.3288 668.28C93.3399 668.339 88.4908 668.037 87.1449 668.929C86.1954 670.245 86.5802 675.581 86.548 677.775C83.485 677.861 80.4521 677.805 77.3684 677.943C77.373 675.072 76.9144 661.484 77.5804 659.812C78.5369 657.419 102.13 660.484 105.227 658.634C105.921 656.308 105.85 642.506 105.428 639.88C104.571 639.098 97.9239 639.35 96.1723 639.339C96.0179 636.711 96.0756 633.332 96.0525 630.649C98.7444 630.801 113.204 630.044 114.366 631.044C114.833 631.448 114.967 632.173 115.006 632.758C115.158 635.008 114.695 637.476 114.571 639.738C114.386 643.113 114.444 646.53 114.527 649.908C117.191 650.064 121.66 649.928 124.37 649.8C124.882 644.818 124.545 635.829 124.644 630.403C130.604 630.11 137.638 630.31 143.727 630.249C143.766 623.896 143.766 617.543 143.723 611.19Z" fill="#9E2184"/> +<path d="M134.062 524.386C135.444 524.538 142.909 524.065 143.26 525.132C144.345 528.452 142.702 540.925 143.889 543.278C145.306 543.865 151.294 543.768 152.872 543.497C152.644 545.286 152.884 550.299 152.531 552.258C152.372 552.412 152.213 552.565 152.054 552.718C150.24 553.358 145.804 553.022 143.608 553.132C143.543 555.893 143.679 559.963 143.446 562.53C138.443 562.902 87.5484 562.405 87.1451 562.926C86.2554 564.075 86.5758 570.76 86.7486 572.416C92.697 572.493 99.5258 572.543 105.453 572.349C105.622 575.683 105.288 579.478 105.553 582.559C103.995 582.286 98.0462 582.368 96.1149 582.365C95.9512 583.852 96.0227 585.707 95.7899 587.112C94.6192 594.174 96.0872 601.262 96.0089 608.363C95.9259 615.682 95.7438 623.034 95.7531 630.382C90.7588 630.268 86.1794 630.371 81.2612 631.185C80.2978 631.344 78.1982 631.232 77.1842 631.209C76.6426 619.73 73.824 621.153 86.3638 620.811C86.509 615.766 86.2462 610.241 86.4168 605.126C86.5919 599.861 87.924 587.545 86.9422 582.78C85.5594 582.132 79.3022 582.41 77.3824 582.434C77.3939 580.369 77.8894 575.008 77.0298 573.754C75.6654 572.801 70.413 573.226 68.2881 573.229C68.4932 571.205 68.454 565.794 68.2973 563.745C70.0166 563.676 75.1376 563.903 76.366 563.611C78.4495 563.114 76.5688 556.53 77.6106 553.879C79.5788 552.418 101.913 554.192 105.099 553.054C105.894 551.934 105.573 545.499 105.566 543.702L114.953 543.658C114.806 546.544 114.907 550.49 114.986 553.411C117.041 553.644 122.285 553.415 124.529 553.369C124.711 550.453 124.617 546.579 124.624 543.594C127.302 543.758 131.266 543.657 133.999 543.612C134.393 539.183 134.078 529.286 134.062 524.386Z" fill="#9E2184"/> +<path d="M67.7714 582.637L77.3681 582.57C77.4396 586.817 77.6032 607.323 76.4463 610.633C75.4737 611.285 69.3962 611.003 67.564 611.013C67.322 614.181 67.647 617.388 67.269 620.616C64.266 620.718 61.2584 620.639 58.2646 620.378C58.1148 623.244 58.2277 627.167 58.2254 630.113C60.1521 630.135 65.8171 629.818 67.2944 630.464C68.0918 632.515 67.8798 646.503 66.8887 649.039C66.0614 649.713 50.9057 649.49 48.631 649.506C48.7094 647.379 48.8753 631.524 48.419 630.632L47.6976 630.57C45.0173 630.685 42.3369 630.759 39.6542 630.792C39.6058 628.548 40.2097 622.364 39.3316 621.094C38.0271 620.14 31.899 620.606 29.8778 620.633C29.9193 617.453 29.9192 614.273 29.8801 611.094C26.9116 611.052 23.3785 611.538 20.5023 610.994C19.3453 610.776 19.5459 603.656 20.1889 602.631C21.9796 602.029 36.4945 601.723 38.6817 602.118C39.4307 603.303 39.1334 609.384 39.1311 611.298C45.2316 611.385 51.6893 611.245 57.8451 611.267C57.9005 609.097 57.4902 602.23 58.3314 601.093C59.7995 600.172 64.9413 600.644 67.2552 600.467L67.5801 600.441C68.0618 597.406 67.7138 586.492 67.7714 582.637Z" fill="#9E2184"/> +<path d="M58.482 658.984C60.8443 658.874 64.9374 658.807 67.302 658.99C67.703 664.977 67.2098 672.006 67.3642 678.135C70.63 677.994 73.9003 678.041 77.1684 678.054C77.1776 681.012 77.1177 684.272 77.2076 687.204C80.229 687.23 83.9188 687.159 86.8849 687.31C86.8803 689.865 86.7536 694.117 86.9633 696.536L96.0668 696.538C95.9907 702.567 96.1175 709.682 95.7879 715.612C92.7942 715.706 89.7981 715.757 86.7997 715.759C86.8158 712.436 86.8849 708.969 86.8388 705.66L77.3182 705.545C77.3182 702.565 77.3735 699.375 77.2951 696.413C70.8858 696.496 63.8196 696.881 57.5509 696.685C57.4979 698.711 57.2582 703.798 57.4886 705.653C52.688 705.713 44.5248 705.462 40.0952 705.805C40.0675 702.871 39.9868 699.649 40.1505 696.734C45.9445 696.651 51.7408 696.632 57.5347 696.676C57.4057 694.146 56.7857 686.428 58.074 684.602C58.8231 683.543 58.4635 679.858 58.5188 678.435C58.4819 672.962 58.1662 664.314 58.482 658.984Z" fill="#9E2184"/> +<path d="M115.106 572.481C118.291 572.352 121.437 572.443 124.624 572.501C124.633 581.67 124.327 592.682 124.642 601.699C126.809 601.729 132.128 602.192 133.578 601.155C134.513 599.731 134.039 594.151 134.124 591.894C137.86 591.812 149.533 591.612 152.764 592.099L152.723 601.409C150.828 601.996 144.145 601.177 143.808 602.378C143.184 604.59 143.486 608.534 143.516 610.975C140.872 610.972 136.694 610.858 134.228 611.135C134.122 613.322 134.426 618.971 133.49 620.28C132.02 621.252 127.03 620.695 124.645 620.868C124.612 617.665 124.67 614.152 124.564 610.986C121.545 610.93 118.023 611.049 115.11 610.908C115.143 604.724 115.272 598 115.103 591.837C112.531 591.815 108.072 591.933 105.689 591.694C105.673 588.787 105.726 585.422 105.553 582.559C108.272 582.629 112.255 582.722 114.944 582.553C114.967 579.889 114.854 574.955 115.106 572.481Z" fill="#9E2184"/> +<path d="M181.149 572.46C182.269 572.515 190.552 572.827 190.854 572.084C192.071 569.108 190.299 555.468 191.799 553.575C193.145 553.116 198.695 553.042 199.946 553.664C201.755 554.565 199.568 569.507 200.594 572.205C200.727 572.555 201.02 572.552 201.34 572.68C203.417 572.664 208.314 572.115 209.762 573.162C210.651 574.466 210.163 580.315 210.154 582.541C203.15 582.287 195.217 582.536 188.125 582.427C184.489 582.371 175.339 582.225 172.057 582.602C172.05 578.845 172.022 575.019 172.082 571.268C172.133 568.271 172.37 565.761 172.264 562.738C169.363 562.475 165.809 562.722 162.665 562.54C162.624 560.747 162.306 554.612 163.007 553.39C168.561 553.168 175.931 553.249 181.527 553.401C181.854 556.731 181.31 559.898 181.163 563.215C181.027 566.288 181.071 569.386 181.149 572.46Z" fill="#9E2184"/> +<path d="M210.38 667.923C213.457 667.954 216.568 667.814 219.619 668.13C219.896 673.009 219.714 677.93 219.64 682.814C219.622 684.156 219.58 685.392 219.94 686.699C221.608 688.138 234.814 686.454 237.854 687.548C238.963 688.816 238.317 703.21 238.227 705.823C235.176 705.989 232.12 705.941 229.078 705.678C220.219 705.761 209.37 706.019 200.603 705.681C200.394 702.59 200.626 699.695 200.477 696.678C203.701 696.669 207.128 696.713 210.331 696.568C210.488 687.371 210.587 677.096 210.38 667.923Z" fill="#9E2184"/> +<path d="M77.387 496.087C79.392 495.923 85.0892 495.91 87.0367 496.135C87.2234 502.51 86.9168 509.03 87.0943 515.326C88.6477 515.331 94.8357 514.83 95.5663 515.676C96.9814 517.312 96.1033 523.228 95.2529 525.192C93.34 525.21 89.0164 524.908 87.7765 525.927C87.1934 526.975 87.4838 532.964 87.4101 535.042C87.4078 544.775 87.7304 544.489 77.3593 543.486C77.3708 540.762 77.5114 536.497 77.3224 533.901C74.1005 533.973 70.8901 534.074 67.6681 533.999C67.6681 531.395 67.5321 527.155 67.7004 524.683C70.1042 524.566 75.7368 525.142 77.0136 523.985C77.8433 522.421 77.3455 517.239 77.274 515.161C74.1696 515.091 70.7518 515.196 67.728 515.057C67.6197 511.758 67.6635 508.488 67.6888 505.188C69.8921 505.501 74.921 505.387 77.3201 505.366C77.4354 502.31 77.3916 499.154 77.387 496.087Z" fill="#9E2184"/> +<path d="M191.264 505.118C191.204 503.407 190.724 497.394 191.734 496.296C193.663 495.78 208.24 495.83 210.001 496.326C210.432 499.055 209.959 502.599 210.236 505.354C213.22 505.372 227.371 505.034 229.028 505.739C229.715 506.928 229.8 514.693 228.982 514.852C226.35 515.362 222.607 515.028 219.837 515.091C219.738 518.501 220.13 531.496 219.408 533.634C218.141 534.346 212.181 534.01 210.365 534.016C210.363 531.083 210.466 527.406 210.333 524.535C208.41 524.503 202.1 524.766 200.876 524.03C199.579 521.69 201.231 509.427 200.402 506.188C199.975 504.521 193.029 505.238 191.264 505.118Z" fill="#9E2184"/> +<path d="M86.7998 715.759C86.7168 717.188 86.7099 718.737 86.7122 720.175C86.7307 728.225 86.4886 736.388 86.7237 744.429C89.7751 744.521 103.124 744.07 105.104 744.865C105.89 746.499 105.507 760.133 105.468 762.89C102.568 762.802 99.3212 763.023 96.2513 762.966C96.2628 759.82 96.2559 756.672 96.226 753.526C91.8402 753.111 82.4508 753.422 77.5972 753.374C77.634 747.091 77.2883 741.057 77.3298 734.724C74.4121 734.597 70.7592 734.729 67.7193 734.687C67.5464 731.79 67.664 728.154 67.7077 725.245C70.7154 725.16 74.0042 725.236 77.0348 725.252C77.2353 722.242 77.1593 718.889 77.1501 715.842C80.077 715.895 83.9305 715.953 86.7998 715.759Z" fill="#9E2184"/> +<path d="M-7.74615 705.738C-2.92867 705.717 2.81047 705.441 7.53969 705.736C18.3302 706.411 29.0125 706.208 39.826 706.19C39.9136 710.062 39.6163 712.804 39.1808 716.662C38.9295 718.891 39.3928 722.512 38.593 724.602C36.9659 725.333 32.3358 725.061 30.3492 725.04C29.8444 724.69 30.0864 717.63 30.0934 716.508C25.5324 716.185 16.0947 716.515 11.2364 716.533C11.082 719.29 11.0659 722.281 11.0036 725.058L1.42696 725.072C1.27024 722.173 1.32187 718.661 1.2926 715.713C-1.727 715.505 -4.60601 715.955 -7.91093 715.563C-7.99667 713.837 -8.23267 707.063 -7.74615 705.738Z" fill="#9E2184"/> +<path d="M153.094 477.093L162.658 477.103C162.727 480.59 162.923 503.294 162.264 504.843C160.722 505.474 154.924 505.143 153.002 505.102C152.72 508.382 153.018 511.636 152.686 515.064C150.162 515.21 145.553 515.254 143.066 515.01C142.875 508.773 143.124 502.116 142.995 495.79C140.104 495.674 137.062 495.757 134.161 495.786C134.246 494.697 133.734 487.234 134.599 486.879C137.869 485.537 149.964 487.686 152.672 486.227C153.416 484.852 153.114 479.114 153.094 477.093Z" fill="#9E2184"/> +<path d="M58.2763 553.36C60.4657 553.661 65.8979 552.825 67.1816 554.05C67.8407 556.136 67.9352 568.141 67.8315 571.06C67.7163 574.32 66.746 578.598 67.6448 582.406L48.7717 582.433L48.7648 572.943C47.2967 572.374 32.8763 572.826 29.9701 572.671C29.901 569.412 29.9747 566.492 30.0047 563.257C39.4677 563.264 49.2765 563.412 58.7119 563.285C58.7326 559.5 58.6681 557.161 58.2763 553.36Z" fill="#9E2184"/> +<path d="M181.503 533.768C182.054 529.284 182.268 525.684 181.902 521.196C181.831 520.322 181.748 516.094 182.236 515.569C183.695 515.15 189.572 515.087 190.846 515.729C191.513 516.971 191.162 531.524 191.141 534.112C193.879 534.324 198.062 534.184 200.897 534.202C203.414 534.219 208.051 534.322 210.365 534.016C210.245 536.371 210.685 541.121 209.929 543.014C208.749 543.52 175.281 543.658 172.522 543.277C171.902 542.109 171.851 536.218 172.296 535.03C172.987 533.186 179.77 535.148 181.503 533.768Z" fill="#9E2184"/> +<path d="M230.282 734.846C232.255 734.786 236.505 734.443 238.153 735.153C238.865 736.478 238.381 768.495 238.19 772.54C234.283 772.606 232.386 772.47 228.616 772.086C225.684 772.097 222.755 772.083 219.824 772.049C219.803 766.059 219.708 759.852 219.828 753.883C222.691 753.646 226.242 753.791 229.227 753.708C229.519 748.769 228.886 740.398 229.519 735.353C229.554 735.07 229.946 734.994 230.282 734.846Z" fill="#9E2184"/> +<path d="M181.732 601.736C184.843 601.693 187.957 601.691 191.071 601.732C191.28 604.654 190.995 608.079 191.124 611.196C193.246 611.223 198.625 610.846 199.962 611.776C200.815 613.099 200.43 618.495 200.448 620.656C202.838 620.735 205.221 620.575 207.605 620.615C211.055 620.672 210.483 623.408 210.329 625.849C210.236 627.318 210.213 628.719 209.967 630.181C205.821 630.605 195.735 630.299 191.267 630.283L191.216 620.664C188.144 620.564 184.666 620.633 181.566 620.627C181.419 618.044 181.177 603.661 181.732 601.736Z" fill="#9E2184"/> +<path d="M222.861 630.198C225.147 630.199 237.093 629.826 238.144 630.566C238.833 632.386 238.452 637.31 238.174 639.319C224.488 640.105 231.264 637.916 228.828 648.427C228.713 648.925 221.465 648.674 220.575 648.966C220.126 649.114 217.553 649.448 216.809 649.461C211.409 649.5 206.012 649.474 200.612 649.385C200.377 646.774 200.464 642.453 200.522 639.779C206.689 639.575 213.606 639.702 219.764 639.8C219.821 636.652 219.847 633.505 219.84 630.357C220.766 630.268 221.914 630.245 222.861 630.198Z" fill="#9E2184"/> +<path d="M105.884 477.177C111.826 476.943 118.618 477.092 124.626 477.099C124.64 480.08 124.73 483.312 124.497 486.265C121.531 486.394 118.067 486.274 115.006 486.328C114.852 489.205 114.935 492.845 114.93 495.782C112.872 495.746 107.329 495.558 105.585 496.018C105.354 498.632 105.541 502.267 105.368 505.185C102.365 505.25 99.3622 505.247 96.3591 505.174L96.3223 504.704C96.1817 502.685 95.9351 487.804 96.7325 486.895C98.514 486.219 103.335 486.577 105.43 486.641C105.686 484.22 105.241 478.91 105.884 477.177Z" fill="#9E2184"/> +<path d="M49.1622 744.464C52.1997 744.397 55.2373 744.448 58.2703 744.616C58.4086 750.663 58.2887 757.027 58.2542 763.093L67.4821 763.102C67.655 766.144 67.3738 769.223 67.6043 772.194C65.0737 772.113 60.1947 772.47 58.1366 771.666C57.5397 771.392 50.6833 771.323 49.4272 771.23C49.3972 768.465 49.4157 765.697 49.4779 762.931C46.5786 762.756 42.686 762.908 39.5931 762.825L39.5654 753.63C42.5777 753.724 45.6613 753.669 48.6805 753.653C48.7957 751.624 48.4085 745.775 49.1622 744.464Z" fill="#9E2184"/> +<path d="M210.559 601.79C213.264 601.762 227.132 602.076 228.996 603.056C229.704 604.444 229.261 609.554 229.469 611.6C234.357 611.706 238.913 609.772 238.406 616.113C238.286 617.612 239.038 618.712 238.418 620.488C236.263 620.626 221.409 620.83 220.158 620.276C219.104 618.473 220.381 614.146 219.632 611.836C216.244 608.989 209.261 615.152 210.268 606.131C210.427 604.712 210.042 603.262 210.559 601.79Z" fill="#9E2184"/> +<path d="M143.974 639.527C146.281 639.905 151.356 639.137 152.467 640.046C152.838 642.585 152.672 648.455 152.64 651.202C152.578 656.687 152.67 662.415 152.52 667.88C149.699 668.013 146.055 667.918 143.17 667.925C140.135 667.937 137.12 667.981 134.087 667.829C133.939 665.285 134.073 661.549 134.094 658.92L143.177 658.905C143.338 657.749 143.486 656.456 143.46 655.288C143.34 649.955 144.082 644.86 143.974 639.527Z" fill="#9E2184"/> +<path d="M20.4569 582.599C29.1364 582.778 40.0306 582.772 48.6847 582.582C48.4681 585.756 48.7193 589.153 48.4911 592.477C44.7759 592.555 40.646 592.243 36.8686 592.132L20.1942 591.806C20.102 589.624 19.8876 584.48 20.4569 582.599Z" fill="#9E2184"/> +<path d="M212.152 717.093L219.619 716.893C219.653 723.251 219.907 729.26 219.773 735.644C215.5 735.764 212.315 735.121 208.119 735.109C205.475 735.132 202.829 735.081 200.19 734.964C200.285 731.744 200.269 728.389 200.299 725.157C202.336 725.22 208.688 725.505 210.273 724.872C211.956 722.936 209.084 718.306 212.152 717.093Z" fill="#9E2184"/> +<path d="M124.138 495.993C126.848 496.001 131.54 496.158 134.092 495.952C134.08 498.957 134.126 502.162 134.046 505.149C130.916 505.211 127.786 505.235 124.656 505.222C124.571 508.385 124.435 511.958 124.493 515.1C121.9 514.788 117.802 514.967 115 514.886C115.016 508.829 115.163 501.958 114.977 495.973L124.138 495.993Z" fill="#9E2184"/> +<path d="M110.568 515.197C112.091 515.226 113.354 515.222 114.873 515.154L114.921 533.97L105.511 533.992L105.44 543.435L100.955 543.462C99.3991 543.469 97.8457 543.449 96.2924 543.401C95.2115 531.815 96.0619 534.797 105.313 534.065C105.267 532.873 105.255 531.729 105.366 530.539C105.838 525.489 105.737 520.446 105.735 515.376C107.247 515.263 109.033 515.247 110.568 515.197Z" fill="#9E2184"/> +<path d="M57.5645 705.784L77.1612 705.704V715.759C70.7011 715.628 64.0199 715.93 57.576 715.611C57.5967 712.337 57.5921 709.062 57.5645 705.784Z" fill="#9E2184"/> +<path d="M143.702 572.722C149.775 572.546 156.558 572.596 162.64 572.689C162.649 574.216 162.794 581.753 162.391 582.427C156.187 582.224 149.51 582.716 143.32 582.352C143.253 580.316 142.773 574.053 143.702 572.722Z" fill="#9E2184"/> +<path d="M30.1404 668.121C32.9244 668.14 46.824 667.507 48.0985 668.705C48.6608 670.592 48.5779 676.113 48.0755 677.948C43.4131 678.485 35.4665 677.908 30.6889 677.793C29.3683 677.762 29.6541 669.452 30.1404 668.121Z" fill="#9E2184"/> +<path d="M20.6736 620.937C23.5913 620.836 26.7626 620.885 29.6988 620.879L29.6849 631.197L39.549 631.026C39.5743 633.076 39.8371 637.555 39.0742 639.437C38.959 639.721 38.5211 639.752 38.1316 639.867C34.0431 639.884 33.7343 641.05 28.9128 640.384C29.2585 638.339 29.3623 633.539 29.4683 631.247C27.2258 631.253 24.0039 631.636 21.9896 630.898C21.5978 629.869 21.2936 627.81 21.1691 626.66C20.9801 624.916 19.8762 622.466 20.6736 620.937Z" fill="#9E2184"/> +<path d="M162.723 582.574C165.166 582.733 169.321 582.595 171.893 582.591C172.02 588.85 172.004 595.11 171.847 601.367C169.95 602.089 164.832 601.784 162.693 601.685C162.442 596.739 162.594 587.573 162.723 582.574Z" fill="#9E2184"/> +<path d="M172.97 477.138C178.008 476.945 184.823 477.049 189.939 477.177C190.209 477.254 190.856 477.342 190.912 477.679C191.177 479.264 191.986 485.663 190.356 486.327C186.775 486.521 175.33 486.597 172.124 486.246C172.055 483.719 171.9 480.831 172.098 478.312C172.156 477.561 172.481 477.457 172.97 477.138Z" fill="#9E2184"/> +<path d="M210.319 582.616C213.447 582.763 227.876 582.068 229.319 583.177C229.932 585.024 229.547 589.502 229.457 591.613C227.867 592.189 213.073 591.842 210.342 591.812L210.319 582.616Z" fill="#9E2184"/> +<path d="M30.033 649.688L48.5535 649.68C48.542 651.488 48.7724 657.352 48.0511 658.477C42.7872 658.567 35.0619 658.79 29.9086 658.442C29.8487 656.315 29.6527 651.567 30.033 649.688Z" fill="#9E2184"/> +<path d="M200.602 753.321C203.442 753.097 207.203 753.136 210.102 753.194C210.437 755.552 210.201 760.362 210.118 762.897C206.922 762.998 203.723 763.049 200.526 763.051C200.672 759.716 200.487 756.563 200.602 753.321Z" fill="#9E2184"/> +<path d="M2.27915 620.762C4.95074 620.613 8.35708 620.746 11.0305 620.859C11.2379 623.272 11.0997 626.396 11.0559 628.854C11.042 629.732 10.989 629.864 10.5004 630.308C7.43059 630.36 4.35845 630.353 1.29022 630.284C1.25749 627.851 1.00189 623.551 1.47735 621.184C1.53727 620.885 1.87468 620.888 2.27915 620.762Z" fill="#9E2184"/> +<path d="M1.6382 477.082L11.0217 477.094C11.054 479.282 11.2499 485.068 10.7498 486.957L10.4594 486.995C-0.029464 488.292 1.55155 486.346 1.6382 477.082Z" fill="#9E2184"/> +<path d="M226.523 543.286C227.367 543.121 228.482 543.039 229.275 543.399C229.83 544.619 229.501 551.137 229.459 552.955C227.3 553.011 224.917 552.957 222.739 552.954C221.776 552.95 220.785 552.911 219.819 552.887C219.738 549.821 219.74 546.754 219.823 543.688C222.234 543.534 224.048 543.78 226.523 543.286Z" fill="#9E2184"/> +<path d="M1.45947 678.057C4.64916 677.974 7.84347 677.978 11.0332 678.066C11.3282 680.148 11.3074 685.16 11.0239 687.258C7.79045 687.296 4.55467 687.29 1.32027 687.239C1.2615 685.172 1.04417 679.878 1.45947 678.057Z" fill="#9E2184"/> +<path d="M221.689 563.124C224.431 563.089 226.941 563.167 229.679 563.267C229.746 565.459 230.029 569.65 229.506 571.815C229.377 572.344 228.794 572.368 228.386 572.438C226.303 572.433 222.06 572.716 220.264 572.244C219.483 570.527 219.492 565.692 220.045 563.767C220.686 563.067 220.486 563.29 221.689 563.124Z" fill="#9E2184"/> +<path d="M48.8275 725.273C51.948 725.151 55.1123 725.236 58.2398 725.28C58.279 727.704 58.4219 732.468 58.1361 734.74C54.9856 734.773 51.8328 734.766 48.68 734.717C48.6154 732.256 48.4449 727.575 48.8275 725.273Z" fill="#9E2184"/> +<path d="M152.942 534.225L162.607 534.234C163.015 545.824 163.81 543.15 152.872 543.497C152.882 540.79 152.727 536.785 152.942 534.225Z" fill="#9E2184"/> +<path d="M77.4382 762.892C80.1324 762.874 84.3914 762.731 86.9819 763.074C86.9427 765.759 87.111 769.737 86.8551 772.238C83.9628 772.24 80.1969 772.136 77.3736 772.286C77.3621 769.152 77.3276 766.024 77.4382 762.892Z" fill="#9E2184"/> +<path d="M114.99 534.066C118.247 534.228 121.416 534.166 124.649 534.253L124.624 543.594C122.732 543.316 117.189 543.441 115.018 543.446C115.009 540.352 115.046 537.15 114.99 534.066Z" fill="#9E2184"/> +<path d="M210.861 477.137C213.837 477.085 216.812 477.054 219.79 477.045C219.833 479.642 219.988 482.981 219.688 485.58C219.619 486.157 219.382 486.19 218.983 486.441C216.081 486.534 213.175 486.547 210.271 486.481C210.177 484.623 209.866 478.242 210.861 477.137Z" fill="#9E2184"/> +<path d="M77.385 477.113C80.4986 477.052 83.7528 477.099 86.8803 477.099C86.9241 480.003 87.0255 483.466 86.7973 486.315C83.7298 486.497 80.4318 486.486 77.3389 486.524L77.385 477.113Z" fill="#9E2184"/> +<path d="M30.0441 477.122C33.1554 477.045 36.4211 477.098 39.5463 477.106C39.5463 480.177 39.4725 483.248 39.325 486.316L29.8896 486.285C29.8436 484.351 29.6407 478.766 30.0441 477.122Z" fill="#9E2184"/> +<path d="M2.12661 496.085C4.28541 496.038 9.14831 495.557 10.6325 496.538C11.6789 498.018 11.0589 503.028 10.9598 505.161C7.91067 505.252 4.59884 505.193 1.52969 505.193C1.50249 502.572 1.44326 499.767 1.54813 497.15C1.57901 496.375 1.63755 496.49 2.12661 496.085Z" fill="#9E2184"/> +<path d="M20.4357 762.876L29.8526 762.878C29.9287 765.794 29.6107 769.412 29.8066 772.083C26.8819 771.982 23.388 772.081 20.4196 772.088C20.2329 769.02 20.2375 765.944 20.4357 762.876Z" fill="#9E2184"/> +<path d="M-7.79688 601.627C-6.23291 601.819 -0.378316 601.72 1.57491 601.745C1.58781 604.006 1.69798 608.737 1.37256 610.793C0.0641861 611.112 -6.07088 610.989 -7.69776 610.982C-7.65904 607.863 -7.69201 604.744 -7.79688 601.627Z" fill="#9E2184"/> +<path d="M134.401 678.088C137.187 678.013 140.642 677.974 143.391 678.143C143.562 680.147 143.726 685.412 143.2 687.19L133.988 687.162C133.991 685.228 133.689 679.175 134.401 678.088Z" fill="#9E2184"/> +<path d="M229.934 715.895C232.654 715.851 235.675 715.775 238.36 716.049C238.492 717.84 238.84 724.132 237.95 725.259C235.712 725.215 231.356 725.812 230.031 725.031C228.86 723.616 228.784 717.294 229.934 715.895Z" fill="#9E2184"/> +<path d="M124.493 515.1C127.535 515.217 130.988 515.117 133.924 515.331C133.901 517.483 133.735 522.347 133.938 524.345C131.082 524.367 127.399 524.482 124.622 524.301C124.608 521.306 124.648 518.078 124.493 515.1Z" fill="#9E2184"/> +<path d="M163.021 649.519C166.028 649.478 169.036 649.463 172.043 649.474C171.76 652.4 172.336 654.965 171.746 658.39C169.861 658.613 165.424 659.117 163.696 658.45C162.002 657.796 162.276 650.66 163.021 649.519Z" fill="#9E2184"/> +<path d="M58.4701 534.24C61.4431 534.115 64.5383 534.249 67.599 534.127C67.4215 536.935 67.834 540.73 67.3039 543.409L58.2742 543.435C58.318 541.224 58.076 536.128 58.4701 534.24Z" fill="#9E2184"/> +<path d="M105.686 763.143C107.795 763.323 112.566 763.134 114.949 763.116C114.785 766.096 115.094 769.189 114.785 772.166C112.925 772.461 107.507 772.245 105.502 772.164C105.702 769.119 105.677 766.19 105.686 763.143Z" fill="#9E2184"/> +<path d="M105.489 687.211C105.493 689.921 105.599 693.604 105.263 696.217C102.428 696.391 99.0287 696.335 96.1455 696.348C96.2654 693.521 96.1939 690.153 96.2308 687.263C99.2845 687.206 102.426 687.228 105.489 687.211Z" fill="#9E2184"/> +<path d="M229.061 658.878C233.113 658.938 239.197 657.297 238.547 663.039C238.363 664.685 238.812 666.221 238.169 667.899C236.229 667.891 231.467 668.417 230.269 667.689C229.503 666.745 228.95 660.236 229.061 658.878Z" fill="#9E2184"/> +<path d="M841.562 731.075C838 730.892 824.967 731.4 822.449 730.738C821.914 729.784 821.944 723.607 822.385 722.4C823.639 721.775 847.529 722.042 850.847 722.033C850.565 724.354 850.643 728.853 850.765 731.22C853.73 731.356 857.472 731.268 860.511 731.293C860.549 734.414 860.513 737.604 860.511 740.729C857.296 740.697 854.081 740.701 850.866 740.743C850.728 742.895 850.184 748.48 851.217 749.987C852.617 750.985 858.311 750.457 860.51 750.42C860.772 747.475 860.619 743.799 860.57 740.773L884.946 740.766C888.784 740.766 894.834 740.607 898.454 740.992C898.594 743.778 898.421 747.648 898.36 750.478C900.397 750.413 906.486 750.763 907.86 750.201C908.482 748.224 908.243 734.276 908.236 731.234C912.654 731.081 923.126 731.616 926.876 731.104C926.883 734.066 926.984 737.811 926.717 740.69C923.758 740.814 920.232 740.743 917.24 740.745C917.074 743.914 917.166 747.263 917.208 750.443C920.441 750.48 933.815 749.959 935.797 751.047C936.846 753.089 936.141 756.968 936.613 759.471C927.59 759.113 917.975 759.427 908.932 759.558C906.929 759.588 908.826 766.77 907.6 768.57C906.044 769.213 900.308 768.899 898.348 768.864L898.352 778.314C900.559 778.507 904.152 778.39 906.45 778.385C909.946 778.378 913.871 778.434 917.335 778.231C917.413 781.114 917.15 785.767 917.431 788.298C911.81 788.632 904.262 788.427 898.504 788.415C898.317 791.361 898.389 794.702 898.393 797.687C900.75 797.906 905.468 797.724 907.978 797.687C908.07 800.791 908.065 803.898 907.964 807.005C905.304 807.231 901.372 807.072 898.453 807.191C898.221 809.798 898.33 814.251 898.317 816.991C903.974 816.975 911.916 816.719 917.388 817.06C917.664 826.44 918.681 826.108 908.904 825.611C908.591 826.5 907.051 832.956 907.097 833.654C907.295 836.685 915.408 834.352 917.03 835.611C917.759 837.251 917.312 843.193 917.429 845.634L926.883 845.613C927.27 850.868 926.652 858.786 926.689 864.537C929.863 864.562 933.138 864.497 936.323 864.477C936.68 861.743 936.53 855.092 936.503 852.137C936.45 846.705 936.632 840.828 936.452 835.442C933.405 835.387 930.199 835.477 927.102 835.442C927.019 826.067 927.014 816.694 927.088 807.318C930.234 807.261 933.382 807.261 936.53 807.321C936.712 811.614 936.182 814.838 935.585 818.978C935.383 820.37 935.472 824.518 935.477 826.088C942.145 826.302 948.766 825.735 955.581 826.424C955.768 823.393 955.698 820.063 955.694 817C961.695 816.814 968.185 816.924 974.2 816.968C974.295 826.509 974.293 836.053 974.189 845.597C983.286 845.825 993.311 845.604 1002.49 845.62C1002.76 849.208 1002.61 860.838 1002.41 864.253C999.305 864.486 996.183 864.449 993.067 864.415C993.21 861.363 993.2 857.922 993.145 854.869C990.488 854.686 986.542 854.76 983.848 854.802C983.717 857.874 983.627 861.43 983.797 864.474C980.939 864.26 977.425 864.502 974.327 864.35C974.376 861.172 974.383 857.996 974.355 854.818C971.933 854.569 967.312 854.786 964.707 854.841C964.627 858.086 964.763 861.209 964.41 864.442C961.262 864.461 958.406 864.922 955.284 865.371C955.214 862.456 955.583 859.844 955.65 856.993C955.735 853.357 955.692 849.598 955.685 845.952C958.183 845.733 962.345 845.846 964.97 845.848C965.221 841.992 964.8 838.92 964.548 835.085C960.985 835.064 958.877 835.14 955.316 834.659C952.997 834.864 947.706 833.735 945.959 834.712C945.154 837.06 945.364 863.619 946.413 864.885C948.455 865.71 952.97 865.468 955.284 865.371C955.261 867.825 955.159 870.877 955.249 873.276C950.098 873.267 940.84 873.009 936.051 873.458C935.917 876.68 935.917 879.727 935.926 882.953C939.116 882.935 942.389 882.877 945.567 883.002C945.735 887.166 945.32 891.209 945.36 895.362C945.433 903.29 945.175 911.204 944.933 919.126C944.818 922.926 944.977 926.839 944.864 930.658L936.367 930.628C935.758 922.087 936.865 911.267 936.549 902.29C933.997 902.299 929.354 902.17 926.966 902.373C926.874 905.256 927.026 909.536 926.673 912.186L917.189 912.2C917.097 908.879 917.217 905.431 917.104 902.209C914.484 902.232 900.183 902.062 898.773 902.638C898.036 904.251 898.357 909.616 898.311 911.734C895.521 911.485 891.946 911.555 889.15 911.721L889.069 924.219C889.061 925.726 888.948 929.25 889.087 930.633C882.823 930.471 876.505 930.748 870.219 930.566C870.151 928.45 869.638 923.666 870.694 922.163C872.07 921.186 877.584 921.615 879.795 921.608C880.047 915.53 879.882 908.448 879.877 902.297C876.714 902.251 873.394 902.313 870.219 902.324C870.433 899.273 870.411 895.897 870.448 892.811C864.264 892.815 857.005 893.002 850.92 892.684C850.669 895.537 850.69 899.644 850.723 902.527L870.163 902.5C870.156 905.546 870.091 908.591 869.97 911.633C868.05 911.651 862.694 911.324 861.283 911.87C860.02 913.182 860.582 918.731 860.35 921.405C857.257 921.435 854.164 921.437 851.072 921.416C851.011 918.238 851.058 914.975 851.013 911.769C848.805 911.449 843.781 911.651 841.446 911.725C841.633 908.814 841.584 905.182 841.524 902.264C836.831 902.186 832.101 902.34 827.403 902.269C825.827 902.246 824.201 902.221 822.639 902.426C821.95 903.677 822.298 909.999 822.171 912.142C820.645 912.209 816.819 912.451 815.504 912.158C811.591 911.287 809.377 910.914 805.376 910.955C804.644 911.624 804.277 912.103 803.645 912.878C803.563 914.91 803.029 919.596 803.913 921.041C805.077 921.953 810.947 921.603 813.035 921.704C813.262 923.995 813.323 937.83 812.65 939.517C811.03 940.183 778.72 939.845 774.49 939.812C774.729 934.191 774.562 927.397 774.566 921.691C777.816 921.522 781.073 921.518 784.324 921.681C784.515 924.523 784.352 928.01 784.499 931.068C787.318 931.179 791.07 931.168 793.869 931.05C794.131 928.04 793.984 923.802 793.973 920.67C793.934 914.622 793.934 908.572 793.972 902.525C795.914 902.536 801.181 902.707 802.692 902.41C804.634 902.027 802.683 895.258 803.776 893.251C805.394 892.543 810.841 892.877 813.085 892.866C813.31 890.428 813.745 885.074 813.729 882.907C817.641 882.967 817.967 884.295 822.498 884.422C825.614 882.799 828.24 883.154 831.744 883.145C831.804 886.367 831.753 889.582 831.822 892.813C834.534 893.016 838.554 892.93 841.367 892.949C841.639 889.884 841.537 885.744 841.516 882.656L831.967 882.721C831.788 876.738 831.999 870.646 831.742 864.686L822.521 864.705C822.446 861.656 822.491 858.425 822.485 855.362C819.338 855.184 816.585 855.532 813.133 855.223C812.92 864.096 813.079 873.649 813.085 882.585C810.603 882.58 809.902 882.543 807.599 883.424C804.599 882.375 799.294 882.578 796.227 882.96C795.723 883.023 794.985 882.808 794.703 882.396C793.595 880.778 793.927 875.477 793.93 873.424C791.412 873.262 786.937 873.223 784.447 873.421C784.502 870.158 784.513 866.894 784.481 863.633C781.564 863.654 777.355 863.808 774.539 863.633L774.555 855.078L784.261 854.998C784.257 857.766 784.197 860.718 784.25 863.47C790.456 863.334 797.365 863.578 803.368 863.329C803.401 860.568 803.449 857.846 803.368 855.083C797.025 855.03 790.756 854.686 784.437 854.795C784.462 851.81 784.56 848.381 784.43 845.438L765.12 845.38L765.301 836.625C769.86 836.638 773.88 836.638 778.444 836.201C780.183 836.035 782.572 836.24 784.401 836.074C784.737 826.489 784.464 815.693 784.511 805.986C781.639 806.198 777.283 806.244 774.42 806.023L774.551 797.855C777.381 797.572 781.056 797.662 783.962 797.703C784.098 794.739 784.124 791.775 784.04 788.812C780.863 788.888 777.685 788.906 774.508 788.871C774.537 782.4 774.305 774.988 774.567 768.648C777.427 768.579 781.575 768.408 784.295 768.934L784.208 788.629C786.21 788.646 792.229 788.89 793.664 788.242C794.616 786.449 793.001 778.952 794.604 778.802C800.284 778.27 806.648 778.482 812.365 778.666C813.543 778.706 812.899 787.473 812.922 788.632C811.507 788.523 809.928 788.537 808.508 788.593C803.684 788.777 798.745 788.417 793.938 788.535C793.851 795.698 793.847 802.863 793.928 810.029C793.959 811.948 793.871 815.203 794.016 816.993L811.912 817.051C811.913 814.285 811.782 810.181 811.947 807.523C814.76 807.196 819.44 807.332 822.397 807.364C822.403 810.57 822.365 813.776 822.283 816.982C828.098 816.991 835.742 816.756 841.371 817.042C841.438 820.312 841.783 832.889 840.992 835.205C840.211 835.94 836.846 836.083 835.626 836.362C834.409 836.641 833.165 837.122 831.965 837.288C831.946 839.989 831.995 842.704 831.668 845.385C828.885 845.396 825.137 845.304 822.434 845.468C822.502 842.227 822.523 838.985 822.496 835.742C832.69 835.594 832.407 837.436 831.832 826.378C831.824 826.212 831.813 826.048 831.798 825.882C828.977 825.906 825.267 826.018 822.498 825.869C822.498 823.333 822.589 819.736 822.366 817.318C819.131 817.302 815.913 817.429 812.68 817.457L812.597 825.813C806.447 825.873 800.079 825.972 793.936 825.855C793.929 829.017 793.823 832.79 793.949 835.901C798.897 836.265 807.537 835.924 812.87 835.933C812.88 838.482 812.766 843.244 812.986 845.666C815.696 845.76 819.545 845.7 822.311 845.611L822.299 854.998C829.39 855.15 836.506 854.968 843.599 855.034C845.556 855.053 848.841 854.852 850.626 855.422C851.074 856.846 850.909 861.624 850.756 863.214C850.577 865.078 843.18 864.35 841.564 864.527C841.216 869.796 841.448 877.003 841.401 882.469C844.211 882.359 847.023 882.29 849.835 882.262C850.427 882.681 851.176 883.251 851.774 883.624C853.82 883.613 859.913 884.306 861.209 883.871C864.665 882.709 866.903 883.46 870.191 882.974C870.037 886.613 870.096 889.434 870.885 892.995C873.347 893.013 877.489 893.147 879.829 892.894C880.085 890.596 879.897 885.327 879.854 882.944C876.896 882.801 873.172 882.926 870.191 882.974C870.047 873.689 870.455 864.057 870.195 854.832C867.297 854.682 863.612 854.767 860.656 854.753C860.472 852.188 860.577 848.3 860.573 845.631C866.928 845.597 873.283 845.597 879.637 845.629C879.823 848.167 879.697 852.315 879.731 855.034C885.905 855.083 892.08 855.078 898.254 855.025C898.457 851.635 898.729 839.063 898.124 836.071C895.424 835.788 892.446 836.311 889.7 836.12C883.168 835.67 876.759 835.567 870.226 835.424C869.975 830.024 870.201 822.439 870.201 816.86C874.906 817.138 879.687 816.719 884.393 817.127C885.817 817.249 887.159 817.327 888.59 817.281C888.651 819.39 888.01 824.808 889.227 826.23C890.165 827.328 896.906 827.157 897.962 826.604C898.618 826.26 898.445 817.984 898.446 817.028C896.394 816.88 890.671 816.767 888.749 816.979C888.801 813.013 888.761 809.581 889.356 805.659C889.604 804.025 889.673 799.362 889.196 797.825C888.09 797.281 880.983 797.332 880.149 797.599C879.5 798.853 879.671 805.189 879.631 807.097C876.663 807.097 873.114 807.019 870.204 807.24C870.144 809.916 869.937 814.172 870.118 816.717C866.938 816.588 863.842 816.721 860.581 816.553C860.487 813.513 860.533 810.194 860.514 807.129C857.488 807.03 854.124 807.076 851.075 807.053C851.036 804.013 851.069 800.907 851.069 797.86C854.06 797.786 868.061 798.162 869.82 797.454C870.51 795.852 870.215 790.328 870.189 788.323C866.87 788.272 863.936 788.394 860.548 788.219C860.366 785.502 860.402 781.344 860.49 778.62C862.408 778.454 864.871 778.625 866.855 778.517C871.171 778.281 875.354 778.235 879.677 778.275C879.69 781.453 879.653 784.818 879.801 787.975C882.999 787.945 886.03 787.774 889.317 787.774C889.558 782.04 889.365 774.76 889.368 768.931C892.169 768.793 895.501 768.844 898.326 768.828C897.842 765.836 898.096 754.299 898.119 750.641C893.82 750.593 889.526 750.787 885.223 750.71C881.253 750.641 874.227 749.636 870.472 750.473C869.74 751.911 870.006 757.516 870.018 759.404C866.898 759.397 863.743 759.353 860.628 759.473C860.421 762.01 860.517 766.242 860.498 768.908C857.188 768.975 854.391 768.987 851.088 768.844L851.05 759.429C844.825 759.183 838.274 759.586 831.951 759.383C831.864 756.472 831.894 753.368 831.873 750.441C833.669 750.448 840.388 750.761 841.34 750.038C841.841 747.846 841.612 734.071 841.562 731.075ZM889.644 892.354C894.954 892.366 900.421 892.456 905.691 891.831C909.204 891.416 912.366 891.449 915.89 891.476L916.745 891.372C917.819 889.95 916.878 875.274 917.235 872.442C917.36 871.435 917.229 865.929 917.093 864.917C916.622 864.412 915.101 864.345 914.375 864.343C906.014 864.311 897.6 864.433 889.24 864.32C888.635 865.952 888.906 868.137 888.751 869.856C888.208 875.878 888.337 881.64 889.234 887.63C889.464 889.162 889.359 890.778 889.644 892.354ZM926.779 892.919C929.851 892.926 932.921 892.912 935.993 892.873C936.235 890.105 936.072 885.88 936.021 883.004C933.02 882.926 930.02 882.896 927.021 882.912C926.756 885.235 926.708 890.474 926.779 892.919Z" fill="#9E2184"/> +<path d="M1069.09 683.994C1070.47 673.075 1067.96 674.113 1078.85 673.718C1078.49 676.366 1078.48 681.028 1078.31 683.958C1081.84 684.123 1086.52 684.137 1090.04 684.036C1098.53 683.793 1097.53 683.66 1097.45 691.867L1097.39 702.43C1094.32 702.307 1091.45 702.54 1088.26 702.288C1088.16 700.216 1088.52 694.823 1087.99 693.309C1087.09 692.685 1079.6 692.594 1078.77 693.144C1078.06 694.802 1078.37 702.517 1078.6 704.713C1079.06 709.355 1078.07 717.56 1078.97 721.754C1080.4 722.964 1094.18 721.114 1096.72 722.713C1097.6 724.045 1097.25 729.12 1097.23 731.061C1094.23 731.079 1091.24 731.065 1088.24 731.024C1088.02 733.547 1088.05 738.36 1088.13 740.959C1090.6 741.107 1094.45 740.978 1097.02 740.971C1096.76 743.428 1096.82 745.407 1096.49 748.498C1096.06 752.561 1090.82 749.45 1089.55 751.211C1088.14 753.176 1088.33 767.353 1088.35 769.024C1091.34 769.116 1094.52 769.06 1097.53 769.051C1097.46 773.195 1097.44 777.339 1097.46 781.485C1097.46 783.518 1097.36 786.742 1097.48 788.659L1069.11 788.682C1069.16 786.597 1068.74 780.298 1069.58 779.109C1070.98 778.18 1076.21 778.533 1078.38 778.514C1078.59 775.659 1078.5 771.782 1078.51 768.844L1069.09 768.867C1066.1 768.869 1062.66 768.802 1059.71 769.005C1059.35 774.244 1059.62 783.354 1059.6 788.8C1062.59 788.606 1066.01 788.786 1069.11 788.682C1068.79 794.115 1069.03 801.46 1068.9 807.24C1066.72 807.072 1062.38 807.323 1059.76 807.251C1059.56 804.546 1059.67 800.342 1059.66 797.521C1057.11 797.431 1052.67 797.438 1050.18 797.562L1050.17 788.473C1048.93 788.429 1041.18 788.832 1040.77 787.933C1039.91 786.064 1041.27 780.344 1040.12 778.643C1038.53 778.037 1024.92 778.493 1021.6 778.251L1021.57 768.977C1018.63 768.816 1015.07 768.894 1012.08 768.892C1012.04 765.813 1011.95 762.746 1012.1 759.671L1031.01 759.683C1031.14 756.998 1031.13 753.236 1030.96 750.577C1028.9 750.362 1024.04 750.528 1021.61 750.478L1021.58 721.835L1011.98 721.844C1011.74 727.366 1012.33 735.585 1011.69 740.731C1008.66 740.75 1005.63 740.733 1002.6 740.683C1002.89 735.622 1002.82 730.325 1002.59 725.262C1002.44 721.789 1002.06 718.323 1002.23 714.84C1002.26 714.253 1002.26 713.407 1002.7 712.964C1003.99 711.667 1018.63 712.358 1021.61 712.215C1021.7 709.046 1021.63 705.552 1021.63 702.359C1018.4 702.365 1015.36 702.46 1012.14 702.225C1012.05 699.203 1012.07 696.022 1012.03 692.982C1009.5 692.749 1005.14 692.867 1002.57 692.968C1002.8 690.554 1002.61 686.502 1002.55 684.001C1008.88 683.991 1015.22 684.02 1021.55 684.089C1021.73 686.827 1021.66 690.453 1021.67 693.226C1024.54 693.344 1027.97 693.261 1030.88 693.263C1030.84 696.44 1030.87 699.677 1030.86 702.861C1033.92 702.99 1037.39 702.888 1040.48 702.858C1040.51 705.619 1040.61 710.003 1040.23 712.646C1037.52 712.667 1034.94 712.678 1032.23 712.84C1032.3 716.078 1032.53 719.27 1032.59 722.533C1035.18 722.566 1037.76 722.637 1040.34 722.743C1040.59 725.345 1040.44 728.618 1040.4 731.28L1050.14 731.261C1050.37 725.287 1050.22 718.399 1050.22 712.356L1058.23 712.393C1058.3 709.254 1058.18 706.587 1057.99 703.455C1055.29 703.441 1052.58 703.402 1049.88 703.338C1049.71 700.91 1049.63 686.203 1050.19 684.398C1051.74 683.699 1066.15 684.035 1069.09 683.994ZM1049.85 767.749C1049.83 765.631 1049.42 760.773 1050.46 759.314C1051.89 758.36 1057.7 758.818 1059.92 758.793L1059.93 758.355C1059.97 756.82 1060.08 755.659 1060.39 754.22C1060.95 751.658 1060.83 742.688 1059.59 740.828C1058.13 739.95 1052.23 740.275 1050.09 740.284C1048.58 744.732 1052.06 750.916 1046.69 750.775C1044.75 750.724 1042.78 750.791 1040.84 750.775C1040.34 753.515 1040.52 765.905 1040.55 769.305C1042.56 769.353 1048.12 769.754 1049.55 768.89C1049.85 768.337 1049.89 768.364 1049.85 767.749ZM1069.01 750.411C1071.08 750.441 1076.69 750.625 1078.59 750.415C1079.22 747.242 1079.06 734.575 1078.86 731.051C1075.62 731.022 1072.38 731.04 1069.15 731.104C1068.83 732.828 1068.83 748.36 1069.01 750.411Z" fill="#9E2184"/> +<path d="M945.682 483.151C951.645 482.987 958.626 483.022 964.636 483.105C964.643 485.968 964.546 489.85 964.745 492.626C967.9 492.755 971.145 492.718 974.311 492.719C974.042 495.14 974.235 499.152 974.18 501.778C971.039 501.754 967.865 501.692 964.728 501.81C964.692 504.734 964.574 508.282 964.689 511.188C963.164 511.15 956.632 510.887 955.62 511.536C954.901 513.527 955.362 526.849 955.205 530.234C953.968 530.36 946.756 530.189 946.39 530.73C945.341 532.28 945.712 546.928 945.883 549.623C948.987 549.675 952.09 549.679 955.192 549.633C955.254 552.875 955.284 556.118 955.277 559.36C953.689 559.096 945.046 559.107 942.912 559.118C938.563 559.14 931.366 558.618 927.333 559.071C926.657 560.239 926.699 567.478 926.897 569.016C924.973 569.056 919.266 568.682 918.017 569.382C917.095 570.516 917.455 576.353 917.406 578.514C914.362 578.679 911.163 578.583 908.105 578.548C907.941 581.47 908.026 585.36 907.969 588.4C903.91 588.603 893.279 588.63 889.518 588.365C889.06 583.705 889.415 573.949 889.353 568.768L880.183 568.842C880.043 565.825 880.109 562.215 880.087 559.152C876.91 559.222 873.481 559.394 870.335 559.203C870.123 556.659 870.227 552.419 870.215 549.745C881.771 550.822 879.983 550.184 879.853 540.033C876.9 539.853 873.215 539.974 870.198 540.003C870.276 536.902 870.457 533.49 870.133 530.442C866.942 530.402 863.966 530.604 860.717 530.42C860.448 527.578 860.568 524.157 860.589 521.267C862.557 521.268 868.013 521.599 869.482 520.974C870.644 519.827 870.069 513.861 870.217 511.455C873.329 511.24 876.82 511.543 879.849 511.221L879.785 521.295C882.714 521.446 886.191 521.339 889.139 521.304C889.433 518.73 889.344 514.011 889.216 511.358C891.782 511.38 896.021 511.481 898.445 511.242C898.43 514.73 898.469 518.219 898.563 521.706C904.541 521.947 911.041 521.413 917.173 521.379C917.277 518.969 916.858 513.432 917.542 511.61C919.266 510.802 932.963 511.319 936.102 511.186C936.093 513.908 935.98 518.792 936.431 521.316C938.957 521.354 943.24 521.597 945.572 521.407C945.977 519.367 945.795 513.52 945.752 511.284C943.032 511.085 938.93 511.192 936.102 511.186L936.141 502.232C939.31 501.993 942.829 502.246 945.563 501.995C945.943 495.835 945.295 488.934 945.682 483.151ZM889.592 559.345L917.388 559.387C917.881 558.425 917.886 533.989 917.678 530.675C911.458 530.566 905.152 530.77 898.933 530.733C896.24 530.717 891.873 530.925 889.354 530.493C888.029 532.315 889.146 541.667 889.296 544.491C889.562 549.485 889.532 554.361 889.592 559.345ZM898.498 578.567C901.529 578.645 904.714 578.474 907.69 578.668C908.068 578.368 908.275 578.342 908.224 577.624C908.056 575.31 908.722 571.038 907.692 569.154C907.39 568.91 906.961 568.57 906.565 568.579C903.908 568.641 901.253 568.801 898.587 568.79C898.39 571.079 898.253 576.318 898.498 578.567ZM926.69 549.933L936.259 549.891C936.646 548.068 936.484 541.979 936.362 539.92C933.23 539.971 930.098 539.984 926.966 539.958C926.567 541.949 926.685 547.651 926.69 549.933Z" fill="#9E2184"/> +<path d="M898.532 540.239C901.686 540.196 904.838 540.191 907.991 540.222C908.049 542.449 908.309 547.708 907.719 549.631C905.016 549.766 901.006 549.724 898.317 549.61C898.172 547.921 898.074 541.773 898.532 540.239Z" fill="#9E2184"/> +<path d="M831.211 559.624C828.919 559.501 824.509 559.898 822.811 559.119C821.614 557.721 821.111 515.099 822.571 511.755C824.045 510.995 830.149 511.174 832.052 511.285C832.153 514.288 831.533 528.688 832.237 530.112C833.398 530.652 840.595 531.088 841.351 529.92C842.47 528.191 841.794 523.6 841.833 521.336C844.103 521.232 849.145 521.385 850.869 521.17C850.869 524.236 851.162 548.398 850.425 549.398C848.881 549.909 845.903 549.699 844.214 549.656L841.681 549.694C841.5 551.669 841.151 557.906 841.879 559.55C843.849 560.74 850.164 558.772 850.616 560.927C851.061 563.049 850.594 566.686 850.883 569.184C856.838 569.256 862.793 569.279 868.748 569.253C872.218 569.256 876.751 569.383 880.15 569.215C880.099 571.616 879.653 573.481 879.471 575.863C879.219 579.145 879.963 585.515 878.527 588.448C877.149 588.878 871.965 588.643 870.22 588.611C870.205 586.869 870.435 579.706 869.766 578.765C868.397 578.328 860.469 577.709 860.451 580.168C860.432 582.807 860.56 585.707 860.47 588.409C857.496 588.451 854.456 588.394 851.51 588.457C851.422 591.903 852.276 594.699 852.486 598.108C855.339 597.832 857.656 597.825 860.521 598.032C860.527 603.846 860.308 611.513 860.567 617.203C863.711 617.304 866.949 617.248 870.104 617.231C870 619.612 869.892 624.456 870.063 626.743C872.694 626.86 877.175 626.917 879.775 626.701C879.949 623.548 879.891 620.311 879.881 617.147C882.967 617.212 886.054 617.228 889.14 617.196C889.187 623.562 889.195 629.929 889.164 636.295C889.158 638.961 889.019 643.174 889.176 645.733C891.991 645.745 895.827 645.66 898.556 645.857C898.465 649.088 898.319 652.491 898.37 655.708C900.303 655.755 906.221 656.266 907.372 655.099C908.724 653.726 908.925 647.786 908.941 645.771C911.628 645.756 914.371 645.701 917.054 645.828C916.894 652.16 917.593 657.795 917.185 664.411C914.05 664.675 911.041 664.306 908.109 664.543C908.024 666.181 908.192 672.796 907.57 673.64C906.378 674.082 899.662 674.076 898.48 673.51C897.953 671.896 898.303 658.332 898.337 655.793C892.353 655.708 887.016 655.646 880.999 655.251C877.724 655.037 873.637 655.332 870.222 655.191C870.197 652.035 870.193 648.878 870.209 645.722C872.382 645.756 878.048 646.258 879.439 645.209C880.399 643.71 879.893 638.436 879.85 636.192C868.722 635.95 870.125 634.37 869.986 645.476C868.529 645.377 862.144 645.194 861.195 645.912C860.386 647.87 860.897 654.63 859.691 654.738C855.008 655.16 846.014 654.945 841.411 654.958C841.43 660.722 841.633 667.984 841.341 673.62C838.64 673.959 834.697 673.877 831.91 673.862C831.921 671.031 832.044 667.209 831.893 664.459C828.806 664.451 825.529 664.499 822.457 664.424C822.351 661.628 822.499 657.782 822.269 655.22C819.209 655.179 816.148 655.192 813.088 655.26C813.181 652.298 813.255 648.687 813.148 645.726C816.986 645.71 825.372 645.474 828.917 645.79C829.051 648.752 828.981 651.631 828.933 654.592C832.961 654.819 837.36 654.766 841.421 654.79C841.441 649.041 841.717 641.242 841.479 635.631C845.156 635.648 848.945 635.629 852.613 635.767C855.39 635.872 857.927 636.411 860.774 636.295C860.765 633.235 860.855 629.478 860.704 626.473C854.313 626.384 847.922 626.375 841.531 626.445C841.516 624.783 841.157 618.132 841.858 617.314C844.233 616.314 849.171 617.749 850.653 616.601C851.388 614.466 851.041 610.209 851.079 607.737C846.055 607.764 836.626 608.079 831.84 607.692C831.674 604.612 831.825 600.982 831.887 597.854C830.038 597.861 823.26 598.18 822.238 597.339C821.784 595.495 821.183 588.179 824.315 588.446C826.77 588.655 829.386 588.66 831.866 588.637C831.788 590.914 831.677 595.809 831.847 597.971C833.957 597.979 839.918 598.413 841.276 597.539C842.312 596.07 841.864 590.79 841.842 588.619C844.863 588.611 848.071 588.651 851.074 588.546C851.085 586.468 851.321 580.216 850.634 578.682C849.67 578.303 843.065 578.376 842.048 578.609C840.824 579.826 841.7 586.525 841.717 588.586C839.05 588.313 834.705 588.427 831.895 588.427C831.876 585.262 832.166 582.985 832.406 579.869C832.537 578.168 832.226 575.489 832.255 573.679C832.332 568.97 831.163 564.232 831.211 559.624Z" fill="#9E2184"/> +<path d="M765.109 521.292C770.502 521.272 779.064 521.513 784.286 521.149C784.259 523.175 783.84 528.409 784.783 529.777C786.001 530.655 791.788 530.248 793.902 530.339C793.969 532.553 793.555 538.542 794.469 539.788C795.879 540.682 801.363 540.285 803.311 540.131C803.391 536.944 803.417 533.756 803.39 530.568C805.649 530.523 810.713 530.202 812.661 530.898C813.831 532.344 812.974 553.657 813.145 557.292C813.344 561.515 804.07 557.097 803.56 560.218C803.328 561.641 803.177 567.922 803.682 568.893C804.638 569.456 811.126 569.149 813.029 569.312C813.262 571.5 813.113 586.755 812.378 588.027C809.823 589.354 797.939 587.633 794.609 588.614C793.542 588.929 793.907 596.722 793.962 597.809C791.848 597.819 786.396 597.54 784.692 598.034C783.617 599.438 784.612 604.833 784.135 606.586C783.46 609.066 777.369 606.607 774.878 608.01C774.169 609.171 774.351 616.566 774.325 618.519C773.028 618.48 769.628 618.818 768.747 618.266C768.66 617.959 768.473 617.186 768.254 617.144C765.591 616.627 758.218 616.977 755.688 616.854C755.52 610.686 755.683 604.066 755.629 597.826C752.416 597.793 749.28 597.75 746.068 597.853C745.83 600.537 746.052 604.487 745.904 607.491C742.742 607.7 739.63 607.441 736.503 607.705C736.566 604.431 736.594 601.157 736.587 597.883C733.711 597.719 730.034 597.825 727.094 597.84C727.115 594.761 727.104 591.682 727.061 588.603C735.94 588.794 746.746 588.771 755.621 588.553C755.693 585.219 755.699 581.885 755.64 578.552C752.9 578.372 749.163 578.517 746.213 578.422C746.139 576.244 746.601 570.767 745.708 569.402C744.395 568.459 738.769 569.016 736.57 569.051L736.601 568.767C738.128 553.585 734.485 561.29 727.694 558.582C726.404 558.067 727.105 551.97 727.117 550.868C727.112 550.48 727.137 550.198 727.419 550.037C729.776 548.685 745.359 550.992 746.064 548.71C746.803 546.317 745.245 532.41 746.807 530.622C748.587 530.08 753.692 530.211 755.633 530.4C755.792 539.604 755.239 550.712 755.689 559.566C757.306 559.576 763.215 559.225 764.195 559.958C765.532 562.537 764.708 574.682 764.892 578.481C768.873 578.543 772.855 578.554 776.837 578.516C778.749 578.51 782.166 578.61 783.894 578.329C785.896 575.925 782.513 569.97 785.968 569.645C787.806 569.471 791.899 570.159 793.68 569.311C794.409 567.362 794.422 551.987 793.705 550.171C790.418 548.631 775.536 551.421 774.375 548.798C773.654 547.167 775.391 542.998 773.608 542.028C771.785 541.036 766.594 542.998 765.485 540.903C764.621 539.272 765.1 524.28 765.109 521.292ZM774.164 597.935C774.55 596.22 774.885 589.983 774.152 588.655C772.653 588.167 767.061 588.342 765.238 588.351C764.868 589.74 764.645 596.637 765.117 597.703C766.509 598.201 772.467 598.05 774.164 597.935Z" fill="#9E2184"/> +<path d="M708.421 750.404C710.503 750.409 715.778 750.017 717.108 750.982C718.065 752.446 717.55 757.456 717.604 759.653L728.873 759.639C730.917 759.639 734.656 759.544 736.544 759.908C736.546 762.729 736.626 765.951 736.41 768.733C730.793 769.067 723.42 768.881 717.663 768.869L717.608 788.473L726.984 788.408C727.015 791.6 727.045 794.329 726.827 797.507C723.792 797.385 720.611 797.47 717.636 797.293C717.522 803.474 717.339 810.881 717.532 816.996L728.684 816.975C731.117 816.979 734.119 817.065 736.506 816.899C736.725 814.089 736.591 810.245 736.559 807.339C745.704 807.3 755.907 807.06 764.973 807.35C765.037 810.356 764.915 813.55 764.847 816.571C758.607 816.661 752.385 816.565 746.151 816.615C745.887 819.226 745.981 823.223 745.978 825.963C741.77 825.633 731.62 825.889 727.085 825.995C727.039 829.381 727.035 832.767 727.072 836.152L736.524 836.173C736.549 839.3 736.534 842.43 736.48 845.558C734.369 845.253 729.395 845.389 727.087 845.419C726.836 848.005 727.017 852.285 727.063 855.018C730.214 855.078 733.365 855.08 736.516 855.027C736.621 851.888 736.586 848.759 736.573 845.62C739.666 845.615 742.915 845.664 745.994 845.599C745.991 848.332 745.878 852.343 746.166 854.998C749.333 855.104 752.485 855.06 755.655 855.037C755.652 857.869 755.736 861.499 755.546 864.255C757.813 864.511 762.499 864.454 764.906 864.396C764.917 867.187 765.015 870.506 764.917 873.253C759.403 873.324 751.609 873.566 746.234 873.251C746.196 870.248 746.194 867.245 746.228 864.239C741.606 864.219 738.656 864.338 734.093 865.009C730.977 865.465 727.301 865.223 724.075 866.035C722.615 866.242 720.214 866.083 718.681 866.042C718.953 858.565 717.825 851.379 717.399 843.983C717.074 838.325 717.631 831.709 717.308 825.917C712.105 825.82 703.841 825.719 698.74 825.993C698.772 823.043 698.845 819.614 698.682 816.673C696.169 816.601 692.253 816.595 689.755 816.756C689.751 813.661 689.794 810.411 689.706 807.33C695.273 807.33 702.743 807.565 708.149 807.304C708.172 803.027 708.47 801.619 709.058 797.466C709.269 795.979 709.146 790.443 709.142 788.62L698.726 788.669C698.707 791.704 698.754 794.615 698.462 797.636C695.964 797.636 691.898 797.509 689.527 797.671C689.49 800.865 689.484 804.059 689.509 807.254C686.566 806.956 682.861 807.237 679.727 807.076C680.234 800.519 679.728 794.573 680.145 788.77C686.239 788.491 692.801 789.003 698.685 788.724C698.646 785.26 698.456 780.289 698.702 776.945C700.464 776.892 707.143 776.873 708.247 776.26C708.604 774.573 708.558 767.279 708.515 765.142C708.425 760.662 708.746 754.764 708.421 750.404Z" fill="#9E2184"/> +<path d="M813.286 674.107C817.92 673.57 826.715 674.048 831.911 673.862C831.558 679.333 831.76 687.694 831.728 693.315C834.697 693.359 837.88 693.281 840.866 693.264C841.037 690.56 840.947 686.906 840.952 684.132C844.453 683.863 867.901 683.592 869.703 684.482C870.323 684.789 870.432 685.323 870.583 685.953C871.413 689.433 870.85 695.62 870.87 699.306C870.888 702.529 871.192 705.933 870.891 709.129C870.815 709.938 870.719 710.588 870.272 711.273C868.757 712.065 862.927 711.653 860.589 711.819C860.337 715.018 860.651 718.33 860.322 721.77C857.214 721.84 854.009 721.817 850.893 721.833C851.322 717.219 851.066 707.511 851.071 702.508C854.241 702.522 857.405 702.563 860.573 702.44C860.742 700.905 861.057 693.885 860.281 693.098C858.619 692.725 852.886 692.584 851.282 693.435C851.054 693.702 850.679 694.139 850.674 694.494C850.636 697.068 850.832 699.819 850.876 702.392C846.455 702.196 836.138 702.141 831.964 702.461L831.943 693.451C829.923 693.41 823.635 693.729 822.028 695.168C821.093 696.005 821.83 700.671 821.91 702.506C824.194 702.674 829.599 702.692 831.853 702.457C831.698 705.46 831.842 708.581 831.678 711.727C825.604 711.883 819.046 711.568 813.068 711.84C813.016 706.013 813.244 699.607 813.239 693.649L812.971 693.075C811.811 692.481 805.113 692.842 803.502 692.957C803.288 697.338 803.557 704.195 803.585 708.763C806.237 708.576 808.991 708.648 811.651 708.707C811.571 711.952 812.196 712.886 812.373 715.907C812.443 717.106 811.524 719.821 811.542 721.339C811.573 723.888 812.316 726.467 812.321 728.938C812.338 736.115 812.062 743.186 812.378 750.369C808.752 749.961 798.183 750.259 793.981 750.226C794.16 747.908 793.975 743.241 793.95 740.75C796.966 740.842 800.274 740.768 803.313 740.756C803.462 737.802 803.455 734.004 803.332 731.063C800.483 730.945 796.979 731.049 794.08 731.061C794.146 728.067 794.078 724.831 794.069 721.817C791.297 721.662 787.268 721.775 784.422 721.764C784.385 718.71 784.395 715.654 784.453 712.598C786.337 712.625 792.322 712.835 793.797 712.526C794.404 710.952 794.303 695.099 793.978 692.924C792.794 692.228 786.834 692.586 784.788 692.419L784.485 692.392C784.061 687.896 784.309 678.628 784.356 673.876C787.408 674.131 790.844 674.068 793.942 674.077C793.926 677.398 793.935 680.719 793.969 684.04L813.2 684.029C813.412 681.442 813.282 676.822 813.286 674.107Z" fill="#9E2184"/> +<path d="M1040.72 617.19C1049.86 617.432 1059.64 617.128 1068.9 617.231C1069.14 619.893 1068.95 623.71 1068.86 626.439C1066.91 626.548 1061.37 626.275 1060.16 626.972C1059.24 628.112 1059.58 634.167 1059.53 636.265C1065.77 636.369 1072.16 635.83 1078.43 636.336L1078.41 645.736L1088.2 645.812C1088.34 651.994 1088.16 658.659 1088.22 664.928L1107.31 664.7L1107.33 673.735C1098.45 673.332 1087.98 673.626 1078.96 673.638C1079 670.834 1079.03 658.063 1078.44 655.716C1077.59 654.929 1070.84 655.216 1069.17 655.218C1069.13 651.977 1069.22 648.773 1069.13 645.521C1066.19 645.355 1062.74 645.496 1059.66 645.386C1059.58 642.424 1059.65 639.206 1059.66 636.224L1040.67 636.303C1040.71 639.32 1040.6 642.366 1040.53 645.384C1038.48 645.397 1033.43 645.282 1031.69 645.789C1030.64 646.88 1031.48 650.607 1031.28 652.019C1030.76 655.559 1031.37 661.168 1030.74 664.517L1029.51 664.507C1023.67 664.583 1017.83 664.547 1011.99 664.399C1011.77 667.416 1011.85 670.801 1011.68 673.951C1008.71 673.909 1005.45 673.865 1002.51 674.176C1002.46 676.493 1002.21 681.953 1002.48 683.987C1000.06 683.756 994.894 683.932 992.276 683.95C992.17 680.927 992.292 677.345 992.329 674.28C990.34 674.339 985.491 674.037 984.145 674.929C983.196 676.245 983.581 681.581 983.548 683.775C980.486 683.861 977.453 683.805 974.369 683.943C974.374 681.072 973.915 667.484 974.581 665.812C975.537 663.419 999.13 666.484 1002.23 664.634C1002.92 662.308 1002.85 648.506 1002.43 645.88C1001.57 645.098 994.924 645.35 993.173 645.339C993.018 642.711 993.076 639.332 993.053 636.649C995.745 636.801 1010.2 636.044 1011.37 637.044C1011.83 637.448 1011.97 638.173 1012.01 638.758C1012.16 641.008 1011.7 643.476 1011.57 645.738C1011.39 649.113 1011.44 652.53 1011.53 655.908C1014.19 656.064 1018.66 655.928 1021.37 655.8C1021.88 650.818 1021.55 641.829 1021.64 636.403C1027.6 636.11 1034.64 636.31 1040.73 636.249C1040.77 629.896 1040.77 623.543 1040.72 617.19Z" fill="#9E2184"/> +<path d="M1031.06 530.386C1032.44 530.538 1039.91 530.065 1040.26 531.132C1041.35 534.452 1039.7 546.925 1040.89 549.278C1042.31 549.865 1048.29 549.768 1049.87 549.497C1049.64 551.286 1049.88 556.299 1049.53 558.258C1049.37 558.412 1049.21 558.565 1049.05 558.718C1047.24 559.358 1042.8 559.022 1040.61 559.132C1040.54 561.893 1040.68 565.963 1040.45 568.53C1035.44 568.902 984.549 568.405 984.146 568.926C983.256 570.075 983.576 576.76 983.749 578.416C989.698 578.493 996.526 578.543 1002.45 578.349C1002.62 581.683 1002.29 585.478 1002.55 588.559C1001 588.286 995.047 588.368 993.115 588.365C992.952 589.852 993.023 591.707 992.79 593.112C991.62 600.174 993.088 607.262 993.009 614.363C992.926 621.682 992.744 629.034 992.754 636.382C987.759 636.268 983.18 636.371 978.262 637.185C977.298 637.344 975.199 637.232 974.185 637.209C973.643 625.73 970.824 627.153 983.364 626.811C983.509 621.766 983.247 616.241 983.417 611.126C983.592 605.861 984.925 593.545 983.943 588.78C982.56 588.132 976.303 588.41 974.383 588.434C974.394 586.369 974.89 581.008 974.03 579.754C972.666 578.801 967.413 579.226 965.289 579.229C965.494 577.205 965.455 571.794 965.298 569.745C967.017 569.676 972.138 569.903 973.367 569.611C975.45 569.114 973.569 562.53 974.611 559.879C976.579 558.418 998.914 560.192 1002.1 559.054C1002.89 557.934 1002.57 551.499 1002.57 549.702L1011.95 549.658C1011.81 552.544 1011.91 556.49 1011.99 559.411C1014.04 559.644 1019.29 559.415 1021.53 559.369C1021.71 556.453 1021.62 552.579 1021.62 549.594C1024.3 549.758 1028.27 549.657 1031 549.612C1031.39 545.183 1031.08 535.286 1031.06 530.386Z" fill="#9E2184"/> +<path d="M964.772 588.637L974.369 588.57C974.44 592.817 974.604 613.323 973.447 616.633C972.474 617.285 966.397 617.003 964.564 617.013C964.322 620.181 964.647 623.388 964.27 626.616C961.266 626.718 958.259 626.639 955.265 626.378C955.115 629.244 955.228 633.167 955.226 636.113C957.153 636.135 962.818 635.818 964.295 636.464C965.092 638.515 964.88 652.503 963.889 655.039C963.062 655.713 947.906 655.49 945.632 655.506C945.71 653.379 945.876 637.524 945.419 636.632L944.698 636.57C942.018 636.685 939.337 636.759 936.655 636.792C936.606 634.548 937.21 628.364 936.332 627.094C935.028 626.14 928.899 626.606 926.878 626.633C926.92 623.453 926.92 620.273 926.881 617.094C923.912 617.052 920.379 617.538 917.503 616.994C916.346 616.776 916.546 609.656 917.189 608.631C918.98 608.029 933.495 607.723 935.682 608.118C936.431 609.303 936.134 615.384 936.132 617.298C942.232 617.385 948.69 617.245 954.846 617.267C954.901 615.097 954.491 608.23 955.332 607.093C956.8 606.172 961.942 606.644 964.256 606.467L964.581 606.441C965.062 603.406 964.714 592.492 964.772 588.637Z" fill="#9E2184"/> +<path d="M955.482 664.984C957.844 664.874 961.937 664.807 964.302 664.99C964.703 670.977 964.21 678.006 964.364 684.135C967.63 683.994 970.9 684.041 974.168 684.054C974.178 687.012 974.118 690.272 974.208 693.204C977.229 693.23 980.919 693.159 983.885 693.31C983.88 695.865 983.754 700.117 983.963 702.536L993.067 702.538C992.991 708.567 993.118 715.682 992.788 721.612C989.794 721.706 986.798 721.757 983.8 721.759C983.816 718.436 983.885 714.969 983.839 711.66L974.318 711.545C974.318 708.565 974.373 705.375 974.295 702.413C967.886 702.496 960.82 702.881 954.551 702.685C954.498 704.711 954.258 709.798 954.489 711.653C949.688 711.713 941.525 711.462 937.095 711.805C937.068 708.871 936.987 705.649 937.15 702.734C942.944 702.651 948.741 702.632 954.535 702.676C954.406 700.146 953.786 692.428 955.074 690.602C955.823 689.543 955.464 685.858 955.519 684.435C955.482 678.962 955.166 670.314 955.482 664.984Z" fill="#9E2184"/> +<path d="M851.078 483.105L860.57 483.083L860.522 501.673L860.494 521.089C857.468 521.003 854.121 521.073 851.07 521.075L851.097 511.247L841.692 511.161C841.688 509.917 842.28 502.271 841.062 501.987C836.486 500.921 816.706 502.901 813.731 501.228C813.031 499.73 813.369 485.723 813.396 483.127C816.461 483.027 819.871 483.093 822.962 483.086C822.947 484.72 822.652 491.468 823.39 492.476C824.729 492.869 830.392 493.143 831.589 492.034C832.575 491.121 831.989 488.379 831.978 487.033C831.968 485.767 832.017 484.403 832.081 483.091L841.612 483.092L841.649 492.471C852.816 493.94 851.148 492.751 851.078 483.105Z" fill="#9E2184"/> +<path d="M765.097 702.28C771.507 702.247 777.917 702.388 784.319 702.702C784.348 705.958 784.357 709.215 784.345 712.471C781.87 712.059 777.175 711.953 774.551 712.171C774.496 715.087 774.364 719.106 774.568 722.001C777.729 722.003 781.115 722.04 784.266 721.84L784.243 731.091C780.969 731.045 777.826 731.008 774.554 731.095C774.527 732.96 774.306 739.226 774.485 740.747C771.956 740.69 767.37 740.6 764.922 740.793L764.894 759.408C760.34 759.425 750.335 759.703 746.232 759.319C746.179 757.265 745.694 752.287 746.784 750.89C748.13 750.028 753.673 750.494 755.85 750.427C756.038 744.852 755.987 739.272 756.082 733.697C756.124 731.243 754.98 723.974 756.489 722.268C758.913 721.217 763.08 723.554 765 721.459C765.242 720.736 765.197 720.298 765.205 719.544L765.097 702.28Z" fill="#9E2184"/> +<path d="M1012.11 578.481C1015.29 578.352 1018.44 578.443 1021.62 578.501C1021.63 587.67 1021.33 598.682 1021.64 607.699C1023.81 607.729 1029.13 608.192 1030.58 607.155C1031.51 605.731 1031.04 600.151 1031.12 597.894C1034.86 597.812 1046.53 597.612 1049.76 598.099L1049.72 607.409C1047.83 607.996 1041.14 607.177 1040.81 608.378C1040.18 610.59 1040.49 614.534 1040.52 616.975C1037.87 616.972 1033.69 616.858 1031.23 617.135C1031.12 619.322 1031.43 624.971 1030.49 626.28C1029.02 627.252 1024.03 626.695 1021.64 626.868C1021.61 623.665 1021.67 620.152 1021.56 616.986C1018.54 616.93 1015.02 617.049 1012.11 616.908C1012.14 610.724 1012.27 604 1012.1 597.837C1009.53 597.815 1005.07 597.933 1002.69 597.694C1002.67 594.787 1002.73 591.422 1002.55 588.559C1005.27 588.629 1009.25 588.722 1011.94 588.553C1011.97 585.889 1011.85 580.955 1012.11 578.481Z" fill="#9E2184"/> +<path d="M679.881 711.713C683.04 711.664 686.257 711.685 689.421 711.674L689.556 721.95C692.003 722.1 695.914 722.029 698.347 721.918C698.11 727.38 698.74 734.9 698.814 740.775C700.871 740.83 706.048 740.487 707.574 741.015C708.995 742.361 708.08 747.871 708.342 750.187C705.481 750.197 691.462 749.932 689.704 750.653C689.465 751.752 690.089 757.189 690.155 758.908C692.687 759.282 696.508 758.726 698.718 759.445C698.76 762.589 698.752 765.732 698.693 768.876C692.618 768.876 686.117 769.035 680.089 768.835L680.107 740.934C683.082 740.641 686.523 740.927 689.663 740.796C689.838 737.924 689.719 734.006 689.707 731.049C686.501 731.042 683.315 731.056 680.111 730.913C680.04 727.673 680.087 724.363 680.027 721.114C679.981 718.675 679.032 713.812 679.881 711.713Z" fill="#9E2184"/> +<path d="M774.536 645.751C777.628 645.839 781.06 645.737 784.227 645.78C784.399 648.452 784.272 652.658 784.286 655.458C787.49 655.535 790.655 655.446 793.915 655.555C793.962 658.517 793.959 661.48 793.906 664.442C790.699 664.538 787.49 664.513 784.284 664.367C784.127 667.142 784.24 670.891 784.249 673.741C781.263 673.549 777.345 673.583 774.542 673.213C774.531 675.859 774.497 690.908 773.986 692.563C772.867 693.356 766.669 693.094 764.885 693.09C764.875 695.566 764.749 699.858 765.025 702.178C763.264 702.251 756.65 702.012 755.698 702.54C755.677 705.866 755.581 709.187 755.41 712.506C752.816 712.755 748.864 712.639 746.25 712.561C746.113 706.223 746.217 699.594 746.237 693.232C751.926 693.344 758.855 693.336 764.496 693.199C764.775 689.615 765.079 686.238 765.616 682.646C765.905 680.713 764.424 673.52 765.422 672.109C766.664 671.41 772.921 671.783 774.476 672.08C774.834 663.967 774.474 654.105 774.536 645.751Z" fill="#9E2184"/> +<path d="M1078.15 578.46C1079.27 578.515 1087.55 578.827 1087.85 578.084C1089.07 575.108 1087.3 561.468 1088.8 559.575C1090.14 559.116 1095.69 559.042 1096.95 559.664C1098.76 560.565 1096.57 575.507 1097.59 578.205C1097.73 578.555 1098.02 578.552 1098.34 578.68C1100.42 578.664 1105.31 578.115 1106.76 579.162C1107.65 580.466 1107.16 586.315 1107.15 588.541C1100.15 588.287 1092.22 588.536 1085.13 588.427C1081.49 588.371 1072.34 588.225 1069.06 588.602C1069.05 584.845 1069.02 581.019 1069.08 577.268C1069.13 574.271 1069.37 571.761 1069.26 568.738C1066.36 568.475 1062.81 568.722 1059.67 568.54C1059.62 566.747 1059.31 560.612 1060.01 559.39C1065.56 559.168 1072.93 559.249 1078.53 559.401C1078.85 562.731 1078.31 565.898 1078.16 569.215C1078.03 572.288 1078.07 575.386 1078.15 578.46Z" fill="#9E2184"/> +<path d="M1107.38 673.923C1110.46 673.954 1113.57 673.814 1116.62 674.13C1116.9 679.009 1116.71 683.93 1116.64 688.814C1116.62 690.156 1116.58 691.392 1116.94 692.699C1118.61 694.138 1131.81 692.454 1134.85 693.548C1135.96 694.816 1135.32 709.21 1135.23 711.823C1132.18 711.989 1129.12 711.941 1126.08 711.678C1117.22 711.761 1106.37 712.019 1097.6 711.681C1097.39 708.59 1097.63 705.695 1097.48 702.678C1100.7 702.669 1104.13 702.713 1107.33 702.568C1107.49 693.371 1107.59 683.096 1107.38 673.923Z" fill="#9E2184"/> +<path d="M974.387 502.087C976.392 501.923 982.089 501.91 984.037 502.135C984.223 508.51 983.917 515.03 984.094 521.326C985.648 521.331 991.836 520.83 992.566 521.676C993.981 523.312 993.103 529.228 992.253 531.192C990.34 531.21 986.016 530.908 984.777 531.927C984.193 532.975 984.484 538.964 984.41 541.042C984.408 550.775 984.73 550.489 974.359 549.486C974.371 546.762 974.511 542.497 974.322 539.901C971.1 539.973 967.89 540.074 964.668 539.999C964.668 537.395 964.532 533.155 964.7 530.683C967.104 530.566 972.737 531.142 974.014 529.985C974.843 528.421 974.345 523.239 974.274 521.161C971.17 521.091 967.752 521.196 964.728 521.057C964.62 517.758 964.663 514.488 964.689 511.188C966.892 511.501 971.921 511.387 974.32 511.366C974.435 508.31 974.392 505.154 974.387 502.087Z" fill="#9E2184"/> +<path d="M1088.26 511.118C1088.2 509.407 1087.72 503.394 1088.73 502.296C1090.66 501.78 1105.24 501.83 1107 502.326C1107.43 505.055 1106.96 508.599 1107.24 511.354C1110.22 511.372 1124.37 511.034 1126.03 511.739C1126.72 512.928 1126.8 520.693 1125.98 520.852C1123.35 521.362 1119.61 521.028 1116.84 521.091C1116.74 524.501 1117.13 537.496 1116.41 539.634C1115.14 540.346 1109.18 540.01 1107.36 540.016C1107.36 537.083 1107.47 533.406 1107.33 530.535C1105.41 530.503 1099.1 530.766 1097.88 530.03C1096.58 527.69 1098.23 515.427 1097.4 512.188C1096.98 510.521 1090.03 511.238 1088.26 511.118Z" fill="#9E2184"/> +<path d="M983.799 721.759C983.716 723.188 983.709 724.737 983.712 726.175C983.73 734.225 983.488 742.388 983.723 750.429C986.775 750.521 1000.12 750.07 1002.1 750.865C1002.89 752.499 1002.51 766.133 1002.47 768.89C999.568 768.802 996.321 769.023 993.251 768.966C993.262 765.82 993.255 762.672 993.225 759.526C988.84 759.111 979.45 759.422 974.597 759.374C974.634 753.091 974.288 747.057 974.329 740.724C971.412 740.597 967.759 740.729 964.719 740.687C964.546 737.79 964.663 734.154 964.707 731.245C967.715 731.16 971.004 731.236 974.034 731.252C974.235 728.242 974.159 724.889 974.15 721.842C977.077 721.895 980.93 721.953 983.799 721.759Z" fill="#9E2184"/> +<path d="M774.554 483.12C784.49 482.969 794.735 483.085 804.696 483.097C804.763 486.336 804.815 490.025 804.554 493.231C795.274 493.037 783.382 493.588 774.406 492.967C774.26 498.953 774.481 504.96 774.264 511.019C771.797 511.307 768.512 511.212 765.97 511.21C765.743 511.22 765.487 511.313 765.255 511.377C764.632 512.624 764.883 519.441 765.03 521.101C759.14 521.122 752.024 521.318 746.238 521.039C746.13 519.381 745.834 513.038 746.574 511.81C748.656 511.014 761.637 511.423 765.085 511.29C765.255 505.153 764.982 498.849 765.229 492.711C768.229 492.654 771.369 492.737 774.381 492.779C774.392 489.82 774.267 485.97 774.554 483.12Z" fill="#9E2184"/> +<path d="M889.253 711.738C894.071 711.717 899.81 711.441 904.539 711.736C915.33 712.411 926.012 712.208 936.826 712.19C936.913 716.062 936.616 718.804 936.18 722.662C935.929 724.891 936.392 728.512 935.593 730.602C933.965 731.333 929.335 731.061 927.349 731.04C926.844 730.69 927.086 723.63 927.093 722.508C922.532 722.185 913.094 722.515 908.236 722.533C908.082 725.29 908.065 728.281 908.003 731.058L898.426 731.072C898.27 728.173 898.321 724.661 898.292 721.713C895.273 721.505 892.394 721.955 889.089 721.563C889.003 719.837 888.767 713.063 889.253 711.738Z" fill="#9E2184"/> +<path d="M1050.09 483.093L1059.66 483.103C1059.73 486.59 1059.92 509.294 1059.26 510.843C1057.72 511.474 1051.92 511.143 1050 511.102C1049.72 514.382 1050.02 517.636 1049.69 521.064C1047.16 521.21 1042.55 521.254 1040.07 521.01C1039.87 514.773 1040.12 508.116 1039.99 501.79C1037.1 501.674 1034.06 501.757 1031.16 501.786C1031.25 500.697 1030.73 493.234 1031.6 492.879C1034.87 491.537 1046.96 493.686 1049.67 492.227C1050.42 490.852 1050.11 485.114 1050.09 483.093Z" fill="#9E2184"/> +<path d="M955.277 559.36C957.466 559.661 962.898 558.825 964.182 560.05C964.841 562.136 964.936 574.141 964.832 577.06C964.717 580.32 963.746 584.598 964.645 588.406L945.772 588.433L945.765 578.943C944.297 578.374 929.877 578.826 926.971 578.671C926.901 575.412 926.975 572.492 927.005 569.257C936.468 569.264 946.277 569.412 955.712 569.285C955.733 565.5 955.669 563.161 955.277 559.36Z" fill="#9E2184"/> +<path d="M813.609 617.043C816.459 617.017 819.393 617.113 822.249 617.172C822.259 620.204 822.2 623.632 822.407 626.622C825.383 626.758 829.018 626.648 832.07 626.704C834.57 626.75 839.049 626.895 841.379 626.631C841.404 629.532 841.371 632.474 841.364 635.379C837.078 635.533 832.844 635.688 828.556 635.531C825.03 635.402 816.905 634.415 813.601 635.02C813.114 635.678 813.162 635.711 813.056 636.498C812.881 638.911 812.735 643.033 812.957 645.454C807.09 645.072 800.364 645.729 794.06 645.296C793.905 643.201 793.347 638.238 794.524 636.694C795.907 635.794 801.039 636.134 803.234 636.092C803.597 633.74 803.537 629.876 803.558 627.372C806.028 627.252 809.151 627.377 811.52 627.312C815.241 627.209 811.558 619.503 813.609 617.043Z" fill="#9E2184"/> +<path d="M691.08 492.391L707.106 492.333C709.132 492.323 714.288 492.167 716.085 492.561C717.264 493.707 717.383 509.439 716.709 510.678C716.062 511.129 715.444 511.029 714.629 511.043C706.554 511.146 696.765 511.428 688.799 511.078C688.921 505.367 688.441 498.515 688.396 492.511L691.08 492.391Z" fill="#9E2184"/> +<path d="M698.553 521.324C707.901 521.117 717.339 521.389 726.696 521.282C729.948 521.245 733.27 521.255 736.516 521.366C736.545 523.498 736.966 528.431 735.965 529.895C734.644 530.799 728.485 530.351 726.287 530.356C724.176 530.393 719.547 530.045 717.945 530.646C716.657 531.961 717.214 537.402 717.086 539.911C712.83 540.24 702.68 540.135 698.307 539.97C698.173 537.35 697.862 522.982 698.553 521.324Z" fill="#9E2184"/> +<path d="M1078.5 539.768C1079.05 535.284 1079.27 531.684 1078.9 527.196C1078.83 526.322 1078.75 522.094 1079.24 521.569C1080.7 521.15 1086.57 521.087 1087.85 521.729C1088.51 522.971 1088.16 537.524 1088.14 540.112C1090.88 540.324 1095.06 540.184 1097.9 540.202C1100.41 540.219 1105.05 540.322 1107.37 540.016C1107.25 542.371 1107.69 547.121 1106.93 549.014C1105.75 549.52 1072.28 549.658 1069.52 549.277C1068.9 548.109 1068.85 542.218 1069.3 541.03C1069.99 539.186 1076.77 541.148 1078.5 539.768Z" fill="#9E2184"/> +<path d="M755.879 626.733C758.523 626.587 762.163 626.688 764.882 626.685L764.921 636.059C767.787 636.124 771.47 635.923 774.367 635.828C774.336 639.03 774.346 642.232 774.399 645.434C771.532 645.336 767.801 645.362 764.927 645.456C764.67 650.57 765.316 659.74 764.603 664.346C763.111 664.75 757.435 664.642 755.655 664.638C755.553 658.27 755.781 651.855 755.589 645.485C752.82 645.247 749.247 645.342 746.403 645.346C746.543 642.419 746.62 639.585 746.483 636.656C747.784 636.622 750.147 636.461 751.388 636.696C758.418 638.026 754.537 630.888 755.879 626.733Z" fill="#9E2184"/> +<path d="M1127.28 740.846C1129.26 740.786 1133.51 740.443 1135.15 741.153C1135.87 742.478 1135.38 774.495 1135.19 778.54C1131.28 778.606 1129.39 778.47 1125.62 778.086C1122.68 778.097 1119.76 778.083 1116.82 778.049C1116.8 772.059 1116.71 765.852 1116.83 759.883C1119.69 759.646 1123.24 759.791 1126.23 759.708C1126.52 754.769 1125.89 746.398 1126.52 741.353C1126.55 741.07 1126.95 740.994 1127.28 740.846Z" fill="#9E2184"/> +<path d="M1078.73 607.736C1081.84 607.693 1084.96 607.691 1088.07 607.732C1088.28 610.654 1087.99 614.079 1088.12 617.196C1090.25 617.223 1095.63 616.846 1096.96 617.776C1097.81 619.099 1097.43 624.495 1097.45 626.656C1099.84 626.735 1102.22 626.575 1104.6 626.615C1108.05 626.672 1107.48 629.408 1107.33 631.849C1107.24 633.318 1107.21 634.719 1106.97 636.181C1102.82 636.605 1092.74 636.299 1088.27 636.283L1088.22 626.664C1085.14 626.564 1081.67 626.633 1078.57 626.627C1078.42 624.044 1078.18 609.661 1078.73 607.736Z" fill="#9E2184"/> +<path d="M1119.86 636.198C1122.15 636.199 1134.09 635.826 1135.14 636.566C1135.83 638.386 1135.45 643.31 1135.17 645.319C1121.49 646.105 1128.26 643.916 1125.83 654.427C1125.71 654.925 1118.46 654.674 1117.57 654.966C1117.13 655.114 1114.55 655.448 1113.81 655.461C1108.41 655.5 1103.01 655.474 1097.61 655.385C1097.38 652.774 1097.46 648.453 1097.52 645.779C1103.69 645.575 1110.61 645.702 1116.76 645.8C1116.82 642.652 1116.85 639.505 1116.84 636.357C1117.77 636.268 1118.91 636.245 1119.86 636.198Z" fill="#9E2184"/> +<path d="M1002.88 483.177C1008.83 482.943 1015.62 483.092 1021.63 483.099C1021.64 486.08 1021.73 489.312 1021.5 492.265C1018.53 492.394 1015.07 492.274 1012.01 492.328C1011.85 495.205 1011.94 498.845 1011.93 501.782C1009.87 501.746 1004.33 501.558 1002.59 502.018C1002.35 504.632 1002.54 508.267 1002.37 511.185C999.366 511.25 996.363 511.247 993.36 511.174L993.323 510.704C993.182 508.685 992.936 493.804 993.733 492.895C995.515 492.219 1000.34 492.577 1002.43 492.641C1002.69 490.22 1002.24 484.91 1002.88 483.177Z" fill="#9E2184"/> +<path d="M946.162 750.464C949.2 750.397 952.237 750.448 955.27 750.616C955.409 756.663 955.289 763.027 955.254 769.093L964.482 769.102C964.655 772.144 964.374 775.223 964.604 778.194C962.074 778.113 957.195 778.47 955.137 777.666C954.54 777.392 947.683 777.323 946.427 777.23C946.397 774.465 946.416 771.697 946.478 768.931C943.579 768.756 939.686 768.908 936.593 768.825L936.565 759.63C939.578 759.724 942.661 759.669 945.68 759.653C945.796 757.624 945.409 751.775 946.162 750.464Z" fill="#9E2184"/> +<path d="M717.41 569.261C721.498 569.136 725.64 569.276 729.73 569.242C731.85 569.224 734.503 569.35 736.57 569.051C736.541 571.539 736.601 576.093 736.353 578.451C734.193 578.528 728.722 578.277 727.427 579.209C726.6 580.484 726.953 586.776 727.061 588.603C725.259 588.238 710.505 588.388 708.258 588.556C708.27 586.397 707.974 580.896 708.575 579.194C709.071 577.79 714.655 579.301 716.92 578.357C717.757 577.211 717.402 571.278 717.41 569.261Z" fill="#9E2184"/> +<path d="M689.695 549.664C692.217 549.657 706.929 549.232 708.054 550.209C708.576 552.3 708.232 556.627 708.134 558.935C705.644 559.049 701.469 558.68 699.339 559.281C697.661 561.394 700.104 567.924 697.866 568.641C691.916 568.839 686.041 568.683 680.094 568.515C680.101 558.243 677.706 556.907 689.359 558.945C689.49 556.445 688.991 551.624 689.695 549.664Z" fill="#9E2184"/> +<path d="M888.762 482.059L888.978 482.022C889.629 482.892 889.122 507.656 889.277 511.188C886.169 511.204 883.06 511.196 879.952 511.166C880.089 508.65 880.005 505.341 880.004 502.767L879.758 502.144C878.455 501.489 872.318 501.825 870.208 501.712C870.159 498.716 870.156 495.72 870.198 492.724C873.019 492.445 875.591 492.748 878.424 492.596C880.376 492.769 880.065 490.029 879.879 488.692C878.827 481.123 882.329 482.59 888.762 482.059Z" fill="#9E2184"/> +<path d="M793.962 597.809C799.041 597.919 808.492 597.497 812.982 598C813.024 600.115 813.367 605.485 812.635 607.208C811.06 608.303 805.424 606.823 803.866 607.98C803.107 608.543 803.384 615.368 803.308 616.471C802.408 616.461 799.07 616.39 798.407 616.595C795.961 617.353 796.857 617.661 794.078 617.679C793.965 619.794 794.255 624.608 793.423 626.037C792.008 627.23 786.428 626.637 784.231 626.589C784.167 623.622 784.848 623.098 784.768 620.582C784.734 619.529 784.447 619.542 784.845 618.414C785.859 618.166 792.461 617.632 793.916 617.529C794.35 611.852 793.944 603.748 793.962 597.809Z" fill="#9E2184"/> +<path d="M1107.56 607.79C1110.26 607.762 1124.13 608.076 1126 609.056C1126.7 610.444 1126.26 615.554 1126.47 617.6C1131.36 617.706 1135.91 615.772 1135.41 622.113C1135.29 623.612 1136.04 624.712 1135.42 626.488C1133.26 626.626 1118.41 626.83 1117.16 626.276C1116.1 624.473 1117.38 620.146 1116.63 617.836C1113.24 614.989 1106.26 621.152 1107.27 612.131C1107.43 610.712 1107.04 609.262 1107.56 607.79Z" fill="#9E2184"/> +<path d="M1040.97 645.527C1043.28 645.905 1048.36 645.137 1049.47 646.046C1049.84 648.585 1049.67 654.455 1049.64 657.202C1049.58 662.687 1049.67 668.415 1049.52 673.88C1046.7 674.013 1043.06 673.918 1040.17 673.925C1037.13 673.937 1034.12 673.981 1031.09 673.829C1030.94 671.285 1031.07 667.549 1031.09 664.92L1040.18 664.905C1040.34 663.749 1040.49 662.456 1040.46 661.288C1040.34 655.955 1041.08 650.86 1040.97 645.527Z" fill="#9E2184"/> +<path d="M726.157 482.121C729.602 482.496 733.294 482.935 736.734 483.15C736.603 486.687 736.827 510.64 736.246 511.476C733.625 511.809 728.8 512.395 726.358 512.564C726.413 502.585 726.202 492.136 726.157 482.121Z" fill="#9E2184"/> +<path d="M806.114 510.608C807.367 510.558 811.678 510.279 812.434 510.704C813.714 511.424 813.019 519.499 812.546 520.711C811.589 521.51 794.045 521.139 791.667 521.14L784.428 521.111C784.386 517.728 784.4 514.345 784.468 510.963C791.183 511.047 799.179 510.647 806.114 510.608Z" fill="#9E2184"/> +<path d="M917.457 588.599C926.136 588.778 937.031 588.772 945.685 588.582C945.468 591.756 945.719 595.153 945.491 598.477C941.776 598.555 937.646 598.243 933.869 598.132L917.194 597.806C917.102 595.624 916.888 590.48 917.457 588.599Z" fill="#9E2184"/> +<path d="M1109.15 723.093L1116.62 722.893C1116.65 729.251 1116.91 735.26 1116.77 741.644C1112.5 741.764 1109.32 741.121 1105.12 741.109C1102.48 741.132 1099.83 741.081 1097.19 740.964C1097.28 737.744 1097.27 734.389 1097.3 731.157C1099.34 731.22 1105.69 731.505 1107.27 730.872C1108.96 728.936 1106.08 724.306 1109.15 723.093Z" fill="#9E2184"/> +<path d="M1021.14 501.993C1023.85 502.001 1028.54 502.158 1031.09 501.952C1031.08 504.957 1031.13 508.162 1031.05 511.149C1027.92 511.211 1024.79 511.235 1021.66 511.222C1021.57 514.385 1021.43 517.958 1021.49 521.1C1018.9 520.788 1014.8 520.967 1012 520.886C1012.02 514.829 1012.16 507.958 1011.98 501.973L1021.14 501.993Z" fill="#9E2184"/> +<path d="M774.485 740.747C777.782 740.803 781.079 740.8 784.376 740.734C784.138 743.559 784.246 747.486 784.312 750.363C786.503 750.671 791.507 750.459 793.912 750.411C793.905 752.766 793.996 757.203 793.762 759.385L781.453 759.42C779.601 759.427 776.207 759.367 774.457 759.581C774.743 754.827 774.581 745.619 774.485 740.747Z" fill="#9E2184"/> +<path d="M1007.57 521.197C1009.09 521.226 1010.35 521.222 1011.87 521.154L1011.92 539.97L1002.51 539.992L1002.44 549.435L997.955 549.462C996.4 549.469 994.846 549.449 993.293 549.401C992.212 537.815 993.062 540.797 1002.31 540.065C1002.27 538.873 1002.26 537.729 1002.37 536.539C1002.84 531.489 1002.74 526.446 1002.74 521.376C1004.25 521.263 1006.03 521.247 1007.57 521.197Z" fill="#9E2184"/> +<path d="M812.402 750.482C815.672 750.503 819.005 750.452 822.281 750.436L822.313 765.444C822.315 767.56 822.43 772.485 822.02 774.377C820.069 774.426 815.731 774.654 814.081 774.304C813.643 773.774 813.496 773.405 813.514 772.66C813.635 767.514 813.441 762.289 812.854 757.177C812.575 754.741 812.28 752.928 812.402 750.482Z" fill="#9E2184"/> +<path d="M954.564 711.784L974.161 711.704V721.759C967.701 721.628 961.02 721.93 954.576 721.611C954.597 718.337 954.592 715.062 954.564 711.784Z" fill="#9E2184"/> +<path d="M1040.7 578.722C1046.78 578.546 1053.56 578.596 1059.64 578.689C1059.65 580.216 1059.79 587.753 1059.39 588.427C1053.19 588.224 1046.51 588.716 1040.32 588.352C1040.25 586.316 1039.77 580.053 1040.7 578.722Z" fill="#9E2184"/> +<path d="M927.141 674.121C929.925 674.14 943.825 673.507 945.099 674.705C945.661 676.592 945.578 682.113 945.076 683.948C940.414 684.485 932.467 683.908 927.689 683.793C926.369 683.762 926.655 675.452 927.141 674.121Z" fill="#9E2184"/> +<path d="M727.094 597.84C727.001 601.054 727.053 604.388 726.972 607.655C720.933 607.42 714.596 607.774 708.357 607.52C708.13 605.081 708.292 600.56 708.28 597.914C714.142 597.786 721.451 598.17 727.094 597.84Z" fill="#9E2184"/> +<path d="M917.674 626.937C920.591 626.836 923.763 626.885 926.699 626.879L926.685 637.197L936.549 637.026C936.574 639.076 936.837 643.555 936.074 645.437C935.959 645.721 935.521 645.752 935.132 645.867C931.043 645.884 930.734 647.05 925.913 646.384C926.259 644.339 926.362 639.539 926.468 637.247C924.226 637.253 921.004 637.636 918.99 636.898C918.598 635.869 918.294 633.81 918.169 632.66C917.98 630.916 916.876 628.466 917.674 626.937Z" fill="#9E2184"/> +<path d="M1059.72 588.574C1062.17 588.733 1066.32 588.595 1068.89 588.591C1069.02 594.85 1069 601.11 1068.85 607.367C1066.95 608.089 1061.83 607.784 1059.69 607.685C1059.44 602.739 1059.59 593.573 1059.72 588.574Z" fill="#9E2184"/> +<path d="M1069.97 483.138C1075.01 482.945 1081.82 483.049 1086.94 483.177C1087.21 483.254 1087.86 483.342 1087.91 483.679C1088.18 485.264 1088.99 491.663 1087.36 492.327C1083.77 492.521 1072.33 492.597 1069.12 492.246C1069.05 489.719 1068.9 486.831 1069.1 484.312C1069.16 483.561 1069.48 483.457 1069.97 483.138Z" fill="#9E2184"/> +<path d="M1107.32 588.616C1110.45 588.763 1124.88 588.068 1126.32 589.177C1126.93 591.024 1126.55 595.502 1126.46 597.613C1124.87 598.189 1110.07 597.842 1107.34 597.812L1107.32 588.616Z" fill="#9E2184"/> +<path d="M880.316 673.936C881.592 673.916 888.855 673.532 889.001 674.545C889.428 677.523 889.143 690.252 888.276 692.756C886.743 693.268 882 693.547 881.083 692.902C879.102 691.508 879.642 675.112 880.316 673.936Z" fill="#9E2184"/> +<path d="M927.033 655.688L945.553 655.68C945.542 657.488 945.772 663.352 945.051 664.477C939.787 664.567 932.062 664.79 926.909 664.442C926.849 662.315 926.653 657.567 927.033 655.688Z" fill="#9E2184"/> +<path d="M1097.6 759.321C1100.44 759.097 1104.2 759.136 1107.1 759.194C1107.44 761.552 1107.2 766.362 1107.12 768.897C1103.92 768.998 1100.72 769.049 1097.53 769.051C1097.67 765.716 1097.49 762.563 1097.6 759.321Z" fill="#9E2184"/> +<path d="M899.279 626.762C901.951 626.613 905.357 626.746 908.031 626.859C908.238 629.272 908.1 632.396 908.056 634.854C908.042 635.732 907.989 635.864 907.5 636.308C904.431 636.36 901.358 636.353 898.29 636.284C898.257 633.851 898.002 629.551 898.477 627.184C898.537 626.885 898.875 626.888 899.279 626.762Z" fill="#9E2184"/> +<path d="M898.638 483.082L908.021 483.094C908.054 485.282 908.249 491.068 907.749 492.957L907.459 492.995C896.97 494.292 898.551 492.346 898.638 483.082Z" fill="#9E2184"/> +<path d="M1123.52 549.286C1124.37 549.121 1125.48 549.039 1126.27 549.399C1126.83 550.619 1126.5 557.137 1126.46 558.955C1124.3 559.011 1121.92 558.957 1119.74 558.954C1118.78 558.95 1117.78 558.911 1116.82 558.887C1116.74 555.821 1116.74 552.754 1116.82 549.688C1119.23 549.534 1121.05 549.78 1123.52 549.286Z" fill="#9E2184"/> +<path d="M898.459 684.057C901.649 683.974 904.843 683.978 908.033 684.066C908.328 686.148 908.307 691.16 908.024 693.258C904.79 693.296 901.555 693.29 898.32 693.239C898.262 691.172 898.044 685.878 898.459 684.057Z" fill="#9E2184"/> +<path d="M1118.69 569.124C1121.43 569.089 1123.94 569.167 1126.68 569.267C1126.75 571.459 1127.03 575.65 1126.51 577.815C1126.38 578.344 1125.79 578.368 1125.39 578.438C1123.3 578.433 1119.06 578.716 1117.26 578.244C1116.48 576.527 1116.49 571.692 1117.04 569.767C1117.69 569.067 1117.49 569.29 1118.69 569.124Z" fill="#9E2184"/> +<path d="M945.827 731.273C948.948 731.151 952.112 731.236 955.24 731.28C955.279 733.704 955.422 738.468 955.136 740.74C951.986 740.773 948.833 740.766 945.68 740.717C945.615 738.256 945.445 733.575 945.827 731.273Z" fill="#9E2184"/> +<path d="M869.916 540.13C870.406 540.563 870.065 548.182 870.181 549.629L861.041 549.651C859.993 548.796 860.244 541.905 861.183 540.565C862.557 539.683 867.861 540.191 869.916 540.13Z" fill="#9E2184"/> +<path d="M784.423 731.167C787.549 731.282 790.821 731.243 793.961 731.25C793.924 734.414 793.905 737.578 793.906 740.743L784.375 740.734L784.423 731.167Z" fill="#9E2184"/> +<path d="M1049.94 540.225L1059.61 540.234C1060.02 551.824 1060.81 549.15 1049.87 549.497C1049.88 546.79 1049.73 542.785 1049.94 540.225Z" fill="#9E2184"/> +<path d="M879.937 597.888C882.99 597.832 886.044 597.831 889.098 597.884C889.26 600.989 889.153 604.429 889.114 607.566L879.852 607.536C879.923 604.571 879.731 600.647 879.937 597.888Z" fill="#9E2184"/> +<path d="M1011.99 540.066C1015.25 540.228 1018.42 540.166 1021.65 540.253L1021.62 549.594C1019.73 549.316 1014.19 549.441 1012.02 549.446C1012.01 546.352 1012.05 543.15 1011.99 540.066Z" fill="#9E2184"/> +<path d="M879.853 607.536C879.554 608.968 879.71 615.382 879.838 617.026C876.671 617 873.543 616.944 870.378 617.088C869.88 616.435 870.165 609.044 870.212 607.776C872.591 607.646 877.931 607.876 879.853 607.536Z" fill="#9E2184"/> +<path d="M1107.86 483.137C1110.84 483.085 1113.81 483.054 1116.79 483.045C1116.83 485.642 1116.99 488.981 1116.69 491.58C1116.62 492.157 1116.38 492.19 1115.98 492.441C1113.08 492.534 1110.17 492.547 1107.27 492.481C1107.18 490.623 1106.87 484.242 1107.86 483.137Z" fill="#9E2184"/> +<path d="M823.109 740.84C825.752 740.731 829.196 740.706 831.803 740.888C831.763 742.72 832.034 748.961 831.524 750.22L830.846 750.229C828.075 750.243 825.23 750.213 822.468 750.358C822.453 747.599 822.241 744.734 822.341 741.978C822.367 741.271 822.67 741.148 823.109 740.84Z" fill="#9E2184"/> +<path d="M974.385 483.113C977.499 483.052 980.753 483.099 983.88 483.099C983.924 486.003 984.025 489.466 983.797 492.315C980.73 492.497 977.432 492.486 974.339 492.524L974.385 483.113Z" fill="#9E2184"/> +<path d="M874.933 721.699C876.321 721.607 878.255 721.653 879.686 721.646C879.682 724.67 879.746 728.014 879.531 730.996C878.183 731.068 876.366 731.019 874.981 731.022L870.182 730.996C870.106 728.042 870.17 724.817 870.171 721.842L874.933 721.699Z" fill="#9E2184"/> +<path d="M727.975 740.849C730.626 740.724 733.774 740.793 736.471 740.796C736.484 742.409 736.824 749.422 735.828 750.194C732.919 750.27 730.009 750.247 727.102 750.13C726.998 747.88 726.842 743.605 727.218 741.337C727.272 741.012 727.56 741.012 727.975 740.849Z" fill="#9E2184"/> +<path d="M927.045 483.122C930.156 483.045 933.422 483.098 936.547 483.106C936.547 486.177 936.473 489.248 936.326 492.316L926.89 492.285C926.844 490.351 926.641 484.766 927.045 483.122Z" fill="#9E2184"/> +<path d="M899.126 502.085C901.285 502.038 906.148 501.557 907.632 502.538C908.678 504.018 908.058 509.028 907.959 511.161C904.91 511.252 901.598 511.193 898.529 511.193C898.502 508.572 898.443 505.767 898.548 503.15C898.579 502.375 898.637 502.49 899.126 502.085Z" fill="#9E2184"/> +<path d="M860.569 664.83L870 664.829C870.061 667.352 870.193 671.414 869.892 673.843C866.771 673.928 863.647 673.94 860.525 673.876C860.343 671.156 860.337 667.554 860.569 664.83Z" fill="#9E2184"/> +<path d="M870.222 759.634L879.662 759.692C879.693 762.734 879.666 765.776 879.581 768.816C876.455 768.869 873.328 768.876 870.202 768.837C870.147 765.836 870.211 762.649 870.222 759.634Z" fill="#9E2184"/> +<path d="M813.026 655.445C812.92 658.505 813.06 661.329 812.754 664.431C809.63 664.491 806.506 664.494 803.382 664.441C803.346 662.442 803.167 657.183 803.572 655.486L813.026 655.445Z" fill="#9E2184"/> +<path d="M889.203 607.627C890.767 607.819 896.622 607.72 898.575 607.745C898.588 610.006 898.698 614.737 898.373 616.793C897.064 617.112 890.929 616.989 889.302 616.982C889.341 613.863 889.308 610.744 889.203 607.627Z" fill="#9E2184"/> +<path d="M1031.4 684.088C1034.19 684.013 1037.64 683.974 1040.39 684.143C1040.56 686.147 1040.73 691.412 1040.2 693.19L1030.99 693.162C1030.99 691.228 1030.69 685.175 1031.4 684.088Z" fill="#9E2184"/> +<path d="M1126.93 721.895C1129.65 721.851 1132.68 721.775 1135.36 722.049C1135.49 723.84 1135.84 730.132 1134.95 731.259C1132.71 731.215 1128.36 731.812 1127.03 731.031C1125.86 729.616 1125.78 723.294 1126.93 721.895Z" fill="#9E2184"/> +<path d="M1021.49 521.1C1024.53 521.217 1027.99 521.117 1030.92 521.331C1030.9 523.483 1030.73 528.347 1030.94 530.345C1028.08 530.367 1024.4 530.482 1021.62 530.301C1021.61 527.306 1021.65 524.078 1021.49 521.1Z" fill="#9E2184"/> +<path d="M727.094 607.751L736.49 607.735C736.286 609.758 736.366 614.387 736.316 616.67C734.677 617.15 729.009 616.97 727.091 616.956C727.148 613.935 727.099 610.783 727.094 607.751Z" fill="#9E2184"/> +<path d="M1060.02 655.519C1063.03 655.478 1066.04 655.463 1069.04 655.474C1068.76 658.4 1069.34 660.965 1068.75 664.39C1066.86 664.613 1062.42 665.117 1060.7 664.45C1059 663.796 1059.28 656.66 1060.02 655.519Z" fill="#9E2184"/> +<path d="M955.47 540.24C958.443 540.115 961.538 540.249 964.599 540.127C964.421 542.935 964.834 546.73 964.304 549.409L955.274 549.435C955.318 547.224 955.076 542.128 955.47 540.24Z" fill="#9E2184"/> +<path d="M1002.49 693.211C1002.49 695.921 1002.6 699.604 1002.26 702.217C999.428 702.391 996.028 702.335 993.145 702.348C993.265 699.521 993.193 696.153 993.23 693.263C996.284 693.206 999.425 693.228 1002.49 693.211Z" fill="#9E2184"/> +<path d="M1126.06 664.878C1130.11 664.938 1136.2 663.297 1135.55 669.039C1135.36 670.685 1135.81 672.221 1135.17 673.899C1133.23 673.891 1128.47 674.417 1127.27 673.689C1126.5 672.745 1125.95 666.236 1126.06 664.878Z" fill="#9E2184"/> +<path d="M765.119 759.657C768.01 759.667 771.638 759.766 774.457 759.581C774.261 761.098 774.356 766.429 774.353 768.247C771.707 768.079 767.819 768.203 765.077 768.215C765.194 765.573 765.116 762.34 765.119 759.657Z" fill="#9E2184"/> +<path d="M680.078 597.61L691.091 597.891C693.139 597.956 696.913 598.171 698.798 597.883C698.74 604.113 698.728 610.343 698.76 616.573C698.762 619.261 698.608 624.234 698.811 626.713C702.158 626.909 705.82 626.741 709.2 626.75C711.738 626.756 714.862 626.893 717.331 626.593C717.38 623.46 717.398 620.327 717.387 617.194C720.618 617.151 723.849 617.16 727.08 617.22C726.811 619.089 727.035 624.573 727.08 626.733C733.078 626.883 740.264 626.44 746.064 626.876C746.135 629.74 745.926 633.947 746.143 636.522C745.007 636.445 743.467 636.319 742.333 636.43C737.309 636.92 732.357 636.89 727.313 636.923C727.246 639.716 727.087 642.978 727.121 645.734C731.112 645.798 735.105 645.815 739.097 645.786C740.85 645.78 744.429 645.833 746.019 645.617C746.011 651.783 745.84 658.761 746.03 664.859L755.55 664.893C755.529 667.74 755.571 671.059 755.388 673.873C752.004 673.964 739.009 673.608 736.926 674.347C736.192 675.359 736.521 682.236 736.54 684.008L745.99 684.049C746.022 687.035 746.03 690.022 746.015 693.008C740.417 692.946 732.313 692.722 726.891 693.04L726.875 702.637C729.847 702.646 733.611 702.552 736.519 702.704C736.548 704.799 736.999 709.864 735.919 711.277C734.58 712.146 729.227 711.717 727.085 711.805C727.011 715.087 726.819 719.132 726.961 722.349C730.918 722.379 734.883 722.42 738.84 722.513C740.811 722.559 743.444 722.31 745.32 722.63C746.422 723.942 746.248 738.83 745.578 740.468C744.056 740.989 738.522 740.685 736.538 740.743C736.588 737.592 736.712 734.195 736.518 731.068C732.654 731.024 710.725 731.393 708.833 730.602C706.935 728.394 709.769 721.478 707.074 721.457C704.552 721.436 701.366 721.644 698.699 721.598L698.709 711.768C701.515 711.872 704.512 711.745 707.249 711.957C707.251 708.751 707.301 705.4 707.226 702.208C704.278 702.259 701.221 702.272 698.284 702.381C698.288 704.979 698.174 708.98 698.35 711.464C695.464 711.473 692.578 711.466 689.692 711.446C689.797 705.451 689.676 699.487 689.74 693.511C692.447 693.814 695.273 693.442 698.06 693.672C698.043 690.914 698.113 687.515 697.813 684.844L697.77 684.448L697.741 684.21C695.05 684.367 692.44 684.28 689.748 684.228C689.512 687.057 689.555 690.353 689.528 693.23C682.685 693.168 675.843 693.156 669 693.196V684.042L689.843 684.041C690.142 680.705 690.213 678.299 690.228 674.965C687.089 674.707 682.808 674.821 679.567 674.826C679.944 668.026 680.405 662.031 680.126 655.126C679.994 651.863 679.6 648.546 679.62 645.362L689.468 645.319C689.396 648.708 689.371 652.098 689.393 655.487L700.461 655.496C702.467 655.502 705.45 655.632 707.362 655.363C708.55 654.315 708.037 652.491 708.402 651.054C708.799 649.496 709.619 646.471 708.669 645.002C705.326 645.634 693.748 645.362 689.736 645.345C689.882 642.82 689.78 639.571 689.761 636.986C686.581 637.133 683.259 637.059 680.063 637.034L680.086 626.682L689.454 626.68C689.666 620.867 689.591 613.44 689.492 607.611L680.073 607.541L680.078 597.61ZM717.179 683.984C713.933 684 710.268 683.934 707.057 684.054C706.829 686.55 706.531 700.019 707.197 701.807C708.732 702.418 714.242 702.094 716.389 702.195C716.829 701.981 717.1 701.975 717.137 701.601C717.628 696.592 717.323 688.97 717.336 684.04C720.259 684.027 724.13 684.125 726.977 683.96C727.11 680.58 727.043 677.247 727.001 673.865L717.445 673.854C716.955 675.672 717.152 681.852 717.179 683.984ZM698.942 664.472C698.489 665.905 698.343 672.357 698.734 673.698C699.541 674.361 706.432 674.084 707.957 674.07C708.667 672.663 708.254 666.338 708.222 664.404L698.942 664.472ZM736.526 655.252C733.391 655.185 730.255 655.165 727.119 655.192C726.59 657.063 726.835 662.761 726.883 664.933C729.988 664.914 733.305 664.955 736.391 664.863C736.692 662.446 736.555 657.828 736.526 655.252ZM709.69 646.465C712.5 646.325 715.058 646.307 717.87 646.307C717.902 642.552 717.84 638.538 717.956 634.816C715.723 634.707 710.994 635.119 709.577 633.916C709.601 637.316 709.408 643.327 709.69 646.465Z" fill="#9E2184"/> +<path d="M698.946 588.659C702.024 588.664 705.102 588.646 708.179 588.606L708.197 597.825C705.086 597.805 701.898 597.738 698.797 597.883C699.03 594.74 698.742 591.677 698.946 588.659Z" fill="#9E2184"/> +<path d="M1195.42 291.404C1197.5 291.409 1202.78 291.017 1204.11 291.982C1205.06 293.446 1204.55 298.456 1204.6 300.653L1215.87 300.639C1217.92 300.639 1221.66 300.544 1223.54 300.908C1223.55 303.729 1223.63 306.951 1223.41 309.733C1217.79 310.067 1210.42 309.881 1204.66 309.869L1204.61 329.473L1213.98 329.408C1214.01 332.6 1214.04 335.329 1213.83 338.507C1210.79 338.385 1207.61 338.47 1204.64 338.293C1204.52 344.474 1204.34 351.881 1204.53 357.996L1215.68 357.975C1218.12 357.979 1221.12 358.065 1223.51 357.899C1223.73 355.089 1223.59 351.245 1223.56 348.339C1232.7 348.3 1242.91 348.06 1251.97 348.35C1252.04 351.356 1251.92 354.55 1251.85 357.572C1245.61 357.661 1239.38 357.565 1233.15 357.615C1232.89 360.227 1232.98 364.223 1232.98 366.963C1228.77 366.634 1218.62 366.889 1214.08 366.995C1214.04 370.381 1214.03 373.767 1214.07 377.152L1223.52 377.173C1223.55 380.3 1223.53 383.43 1223.48 386.558C1221.37 386.253 1216.4 386.389 1214.09 386.419C1213.84 389.005 1214.02 393.285 1214.06 396.018C1217.21 396.078 1220.37 396.081 1223.52 396.028C1223.62 392.889 1223.59 389.759 1223.57 386.62C1226.67 386.615 1229.92 386.664 1232.99 386.599C1232.99 389.332 1232.88 393.343 1233.17 395.998C1236.33 396.104 1239.49 396.06 1242.65 396.037C1242.65 398.869 1242.74 402.499 1242.55 405.256C1244.81 405.511 1249.5 405.454 1251.91 405.396C1251.92 408.187 1252.01 411.506 1251.92 414.253C1246.4 414.324 1238.61 414.566 1233.23 414.251C1233.2 411.248 1233.19 408.245 1233.23 405.239C1228.61 405.219 1225.66 405.338 1221.09 406.009C1217.98 406.465 1214.3 406.223 1211.08 407.035C1209.62 407.242 1207.21 407.083 1205.68 407.042C1205.95 399.565 1204.83 392.379 1204.4 384.983C1204.07 379.325 1204.63 372.709 1204.31 366.917C1199.1 366.82 1190.84 366.719 1185.74 366.993C1185.77 364.043 1185.85 360.614 1185.68 357.673C1183.17 357.602 1179.25 357.595 1176.75 357.756C1176.75 354.661 1176.79 351.411 1176.71 348.33C1182.27 348.33 1189.74 348.565 1195.15 348.304C1195.17 344.027 1195.47 342.619 1196.06 338.466C1196.27 336.979 1196.15 331.443 1196.14 329.62L1185.73 329.669C1185.71 332.704 1185.75 335.615 1185.46 338.636C1182.96 338.636 1178.9 338.509 1176.53 338.671C1176.49 341.865 1176.48 345.059 1176.51 348.254C1173.57 347.956 1169.86 348.238 1166.73 348.076C1167.23 341.519 1166.73 335.573 1167.15 329.77C1173.24 329.491 1179.8 330.003 1185.68 329.724C1185.65 326.26 1185.46 321.289 1185.7 317.945C1187.46 317.892 1194.14 317.873 1195.25 317.26C1195.6 315.573 1195.56 308.279 1195.52 306.142C1195.43 301.662 1195.75 295.764 1195.42 291.404Z" fill="#9E2184"/> +<path d="M1166.88 252.713C1170.04 252.664 1173.26 252.685 1176.42 252.674L1176.56 262.95C1179 263.1 1182.91 263.029 1185.35 262.918C1185.11 268.38 1185.74 275.9 1185.81 281.775C1187.87 281.83 1193.05 281.487 1194.57 282.015C1196 283.361 1195.08 288.871 1195.34 291.187C1192.48 291.197 1178.46 290.932 1176.7 291.653C1176.47 292.752 1177.09 298.189 1177.16 299.908C1179.69 300.282 1183.51 299.726 1185.72 300.445C1185.76 303.589 1185.75 306.732 1185.69 309.876C1179.62 309.876 1173.12 310.035 1167.09 309.835L1167.11 281.934C1170.08 281.641 1173.52 281.927 1176.66 281.796C1176.84 278.924 1176.72 275.006 1176.71 272.049C1173.5 272.042 1170.31 272.056 1167.11 271.913C1167.04 268.673 1167.09 265.363 1167.03 262.114C1166.98 259.675 1166.03 254.812 1166.88 252.713Z" fill="#9E2184"/> +<path d="M1178.08 33.3913L1194.11 33.3325C1196.13 33.3234 1201.29 33.1667 1203.08 33.5606C1204.26 34.7065 1204.38 50.439 1203.71 51.6784C1203.06 52.129 1202.44 52.0292 1201.63 52.0428C1193.55 52.146 1183.76 52.4279 1175.8 52.0776C1175.92 46.3668 1175.44 39.5145 1175.4 33.5114L1178.08 33.3913Z" fill="#9E2184"/> +<path d="M1185.55 62.3238C1194.9 62.1166 1204.34 62.3892 1213.7 62.2818C1216.95 62.2447 1220.27 62.2546 1223.52 62.3657C1223.54 64.4985 1223.97 69.4312 1222.96 70.8951C1221.64 71.799 1215.49 71.351 1213.29 71.3561C1211.18 71.3927 1206.55 71.0447 1204.95 71.6465C1203.66 72.9608 1204.21 78.4022 1204.09 80.9106C1199.83 81.2402 1189.68 81.1346 1185.31 80.9698C1185.17 78.3496 1184.86 63.9818 1185.55 62.3238Z" fill="#9E2184"/> +<path d="M1172.7 405.594C1174.01 405.553 1175.31 405.539 1176.61 405.553C1176.37 410.715 1176.9 419.164 1176.23 423.907C1174.4 423.967 1168.48 423.661 1167.3 424.253C1166.62 426.295 1166.89 440.206 1166.82 443.58L1162.22 443.506C1160.61 442.877 1159.88 442.677 1158.17 442.308L1158.33 424.539C1158.34 421.61 1158 408.132 1158.84 406.067C1160.4 405.428 1170.22 405.67 1172.7 405.594Z" fill="#9E2184"/> +<path d="M1167.25 376.947C1170.02 376.848 1173.95 377.27 1176.46 376.896L1176.45 386.583C1180.22 386.809 1191.94 386.17 1194.6 387C1194.79 387.217 1195.01 387.505 1195.04 387.8C1196.24 398.63 1194.15 396.198 1185.92 396.387C1185.97 399.162 1185.79 402.591 1185.72 405.412C1183.78 405.232 1179.04 405.415 1176.73 405.368C1176.74 402.193 1176.73 399.017 1176.7 395.841C1173.61 395.617 1170.39 395.859 1167.11 395.62C1167.05 393.347 1166.9 378.457 1167.25 376.947Z" fill="#9E2184"/> +<path d="M1185.8 443.52C1188.87 443.615 1192.1 443.548 1195.19 443.527C1195.16 446.668 1195.17 449.81 1195.21 452.949L1204.59 453.022C1204.53 458.192 1204.51 463.359 1204.52 468.528C1204.56 471.329 1204.88 478.257 1204.43 480.743C1202.61 481.029 1197.76 481.121 1196.07 480.446C1195.34 479.252 1195.79 473.696 1195.62 471.992C1195.29 468.835 1194.87 465.638 1194.93 462.462C1192.85 462.322 1187.58 462.815 1186.21 462.052C1185.39 460.052 1185.75 446.443 1185.8 443.52Z" fill="#9E2184"/> +<path d="M1204.41 110.261C1208.5 110.136 1212.64 110.276 1216.73 110.242C1218.85 110.224 1221.5 110.35 1223.57 110.051C1223.54 112.539 1223.6 117.093 1223.35 119.451C1221.19 119.528 1215.72 119.277 1214.43 120.209C1213.6 121.484 1213.95 127.776 1214.06 129.603C1212.26 129.238 1197.5 129.388 1195.26 129.556C1195.27 127.397 1194.97 121.896 1195.58 120.194C1196.07 118.79 1201.66 120.301 1203.92 119.357C1204.76 118.211 1204.4 112.278 1204.41 110.261Z" fill="#9E2184"/> +<path d="M1176.7 90.6641C1179.22 90.6569 1193.93 90.2324 1195.05 91.2094C1195.58 93.2999 1195.23 97.627 1195.13 99.9351C1192.64 100.049 1188.47 99.6805 1186.34 100.281C1184.66 102.394 1187.1 108.924 1184.87 109.641C1178.92 109.839 1173.04 109.683 1167.09 109.515C1167.1 99.2426 1164.71 97.9075 1176.36 99.9446C1176.49 97.4447 1175.99 92.6235 1176.7 90.6641Z" fill="#9E2184"/> +<path d="M1214.09 138.84C1214 142.054 1214.05 145.388 1213.97 148.655C1207.93 148.42 1201.6 148.774 1195.36 148.52C1195.13 146.081 1195.29 141.56 1195.28 138.914C1201.14 138.786 1208.45 139.17 1214.09 138.84Z" fill="#9E2184"/> +<path d="M1195.58 414.557C1198.6 414.516 1201.54 414.454 1204.56 414.583C1204.68 416.383 1204.9 422.718 1204.12 423.949C1201.55 424.189 1197.84 424.122 1195.17 424.136C1195.19 422.428 1194.84 415.541 1195.58 414.557Z" fill="#9E2184"/> +<path d="M1195.2 433.827C1198.34 433.824 1201.48 433.848 1204.62 433.898C1204.64 436.998 1204.69 440.086 1204.57 443.184C1202.67 443.502 1197.31 443.364 1195.22 443.352C1195.27 440.178 1195.27 437.003 1195.2 433.827Z" fill="#9E2184"/> +<path d="M1185.91 424.38C1188.91 424.034 1191.97 424.255 1195 424.152C1195.1 427.369 1195.15 430.589 1195.13 433.806L1185.88 433.836C1185.96 430.655 1185.85 427.523 1185.91 424.38Z" fill="#9E2184"/> +<path d="M1176.7 433.88C1179.76 433.85 1182.82 433.834 1185.88 433.836C1185.65 435.394 1185.76 441.531 1185.75 443.419C1182.73 443.479 1179.71 443.513 1176.7 443.52C1176.62 440.319 1176.49 437.072 1176.7 433.88Z" fill="#9E2184"/> +<path d="M1176.27 443.894C1176.87 444.129 1176.5 451.713 1176.1 452.817C1174.65 453.511 1169.2 453.211 1167.35 453.186C1166.83 452.402 1167.06 445.382 1167.07 443.974C1170.09 443.99 1173.26 444.062 1176.27 443.894Z" fill="#9E2184"/> +<path d="M1167.13 358.032C1169.85 357.848 1173.75 357.968 1176.56 357.979C1176.55 360.547 1176.68 364.232 1176.93 366.788C1173.56 366.935 1170.44 367.083 1167.07 366.749C1167.06 363.873 1166.99 360.897 1167.13 358.032Z" fill="#9E2184"/> +<path d="M1167.09 462.912C1170.21 462.875 1173.34 462.877 1176.46 462.926C1176.65 464.767 1176.43 470.222 1175.91 472.002C1173.37 471.995 1170.61 472.128 1168.13 471.672C1167.36 471.506 1167.5 469.632 1167.41 469.01C1167.08 466.507 1166.08 465.477 1167.09 462.912Z" fill="#9E2184"/> +<path d="M1185.74 366.993C1185.75 369.823 1185.81 372.773 1185.62 375.587C1180.01 375.41 1181.52 375.901 1176.63 376.809C1176.62 372.854 1177.93 370.381 1177.67 367.048C1180.36 367.069 1183.05 367.051 1185.74 366.993Z" fill="#9E2184"/> +<path d="M1167.08 138.61L1178.09 138.891C1180.14 138.956 1183.91 139.171 1185.8 138.883C1185.74 145.113 1185.73 151.343 1185.76 157.573C1185.76 160.261 1185.61 165.234 1185.81 167.713C1189.16 167.909 1192.82 167.741 1196.2 167.75C1198.74 167.756 1201.86 167.893 1204.33 167.593C1204.38 164.46 1204.4 161.327 1204.39 158.194C1207.62 158.151 1210.85 158.16 1214.08 158.22C1213.81 160.089 1214.04 165.573 1214.08 167.733C1220.08 167.883 1227.26 167.44 1233.06 167.876C1233.14 170.74 1232.93 174.947 1233.14 177.522C1232.01 177.445 1230.47 177.319 1229.33 177.43C1224.31 177.92 1219.36 177.89 1214.31 177.923C1214.25 180.716 1214.09 183.978 1214.12 186.734C1218.11 186.798 1222.1 186.815 1226.1 186.786C1227.85 186.78 1231.43 186.833 1233.02 186.617C1233.01 192.783 1232.84 199.761 1233.03 205.859L1242.55 205.893C1242.53 208.74 1242.57 212.059 1242.39 214.873C1239 214.964 1226.01 214.608 1223.93 215.347C1223.19 216.359 1223.52 223.236 1223.54 225.008L1232.99 225.049C1233.02 228.035 1233.03 231.022 1233.01 234.008C1227.42 233.946 1219.31 233.722 1213.89 234.04L1213.87 243.637C1216.85 243.646 1220.61 243.552 1223.52 243.704C1223.55 245.799 1224 250.864 1222.92 252.277C1221.58 253.146 1216.23 252.717 1214.09 252.805C1214.01 256.087 1213.82 260.132 1213.96 263.349C1217.92 263.379 1221.88 263.42 1225.84 263.513C1227.81 263.559 1230.44 263.31 1232.32 263.63C1233.42 264.942 1233.25 279.83 1232.58 281.468C1231.06 281.989 1225.52 281.685 1223.54 281.743C1223.59 278.592 1223.71 275.195 1223.52 272.068C1219.65 272.024 1197.72 272.393 1195.83 271.602C1193.94 269.394 1196.77 262.478 1194.07 262.457C1191.55 262.436 1188.37 262.644 1185.7 262.598L1185.71 252.768C1188.52 252.872 1191.51 252.745 1194.25 252.957C1194.25 249.751 1194.3 246.4 1194.23 243.208C1191.28 243.259 1188.22 243.272 1185.28 243.381C1185.29 245.979 1185.17 249.98 1185.35 252.464C1182.46 252.473 1179.58 252.466 1176.69 252.446C1176.8 246.451 1176.68 240.487 1176.74 234.511C1179.45 234.814 1182.27 234.442 1185.06 234.672C1185.04 231.914 1185.11 228.515 1184.81 225.844L1184.77 225.448L1184.74 225.21C1182.05 225.367 1179.44 225.28 1176.75 225.228C1176.51 228.057 1176.56 231.353 1176.53 234.23C1169.69 234.168 1162.84 234.156 1156 234.196V225.042L1176.84 225.041C1177.14 221.705 1177.21 219.299 1177.23 215.965C1174.09 215.707 1169.81 215.821 1166.57 215.826C1166.94 209.026 1167.41 203.031 1167.13 196.126C1166.99 192.863 1166.6 189.546 1166.62 186.362L1176.47 186.319C1176.4 189.708 1176.37 193.098 1176.39 196.487L1187.46 196.496C1189.47 196.502 1192.45 196.632 1194.36 196.363C1195.55 195.315 1195.04 193.491 1195.4 192.054C1195.8 190.496 1196.62 187.471 1195.67 186.002C1192.33 186.634 1180.75 186.362 1176.74 186.345C1176.88 183.82 1176.78 180.571 1176.76 177.986C1173.58 178.133 1170.26 178.059 1167.06 178.034L1167.09 167.682L1176.45 167.68C1176.67 161.867 1176.59 154.44 1176.49 148.611L1167.07 148.541L1167.08 138.61ZM1204.18 224.984C1200.93 225 1197.27 224.934 1194.06 225.054C1193.83 227.55 1193.53 241.019 1194.2 242.807C1195.73 243.418 1201.24 243.094 1203.39 243.195C1203.83 242.981 1204.1 242.975 1204.14 242.601C1204.63 237.592 1204.32 229.97 1204.34 225.04C1207.26 225.027 1211.13 225.125 1213.98 224.96C1214.11 221.58 1214.04 218.247 1214 214.865L1204.44 214.854C1203.95 216.672 1204.15 222.852 1204.18 224.984ZM1185.94 205.472C1185.49 206.905 1185.34 213.357 1185.73 214.698C1186.54 215.361 1193.43 215.084 1194.96 215.07C1195.67 213.663 1195.25 207.338 1195.22 205.404L1185.94 205.472ZM1223.53 196.252C1220.39 196.185 1217.25 196.165 1214.12 196.192C1213.59 198.063 1213.83 203.761 1213.88 205.933C1216.99 205.914 1220.3 205.955 1223.39 205.863C1223.69 203.446 1223.56 198.828 1223.53 196.252ZM1196.69 187.465C1199.5 187.325 1202.06 187.307 1204.87 187.307C1204.9 183.552 1204.84 179.538 1204.96 175.816C1202.72 175.707 1197.99 176.119 1196.58 174.916C1196.6 178.316 1196.41 184.327 1196.69 187.465Z" fill="#9E2184"/> +<path d="M1185.95 129.659C1189.02 129.664 1192.1 129.646 1195.18 129.606L1195.2 138.825C1192.09 138.806 1188.9 138.738 1185.8 138.883C1186.03 135.74 1185.74 132.677 1185.95 129.659Z" fill="#9E2184"/> +<path d="M438.562 -183.925C435 -184.108 421.967 -183.6 419.449 -184.262C418.914 -185.216 418.944 -191.393 419.385 -192.6C420.639 -193.225 444.529 -192.958 447.847 -192.967C447.565 -190.646 447.643 -186.147 447.765 -183.78C450.73 -183.644 454.472 -183.732 457.511 -183.707C457.549 -180.586 457.513 -177.396 457.511 -174.271C454.296 -174.303 451.081 -174.299 447.866 -174.257C447.728 -172.105 447.184 -166.52 448.217 -165.013C449.617 -164.015 455.311 -164.543 457.51 -164.58C457.772 -167.525 457.619 -171.201 457.57 -174.227L481.946 -174.234C485.784 -174.234 491.834 -174.393 495.454 -174.008C495.594 -171.222 495.421 -167.352 495.36 -164.522C497.397 -164.587 503.486 -164.237 504.86 -164.799C505.482 -166.776 505.243 -180.724 505.236 -183.766C509.654 -183.919 520.126 -183.384 523.876 -183.895C523.883 -180.934 523.984 -177.189 523.717 -174.31C520.758 -174.186 517.232 -174.257 514.24 -174.255C514.074 -171.086 514.166 -167.737 514.208 -164.557C517.441 -164.52 530.815 -165.041 532.797 -163.953C533.846 -161.911 533.141 -158.032 533.613 -155.529C524.59 -155.887 514.975 -155.573 505.932 -155.442C503.929 -155.412 505.826 -148.23 504.6 -146.43C503.044 -145.787 497.308 -146.101 495.348 -146.135L495.352 -136.686C497.559 -136.493 501.152 -136.61 503.45 -136.615C506.946 -136.622 510.871 -136.566 514.335 -136.769C514.413 -133.886 514.15 -129.233 514.431 -126.702C508.81 -126.368 501.262 -126.573 495.504 -126.585C495.317 -123.639 495.389 -120.298 495.393 -117.313C497.75 -117.094 502.468 -117.276 504.978 -117.313C505.07 -114.209 505.065 -111.102 504.964 -107.995C502.304 -107.769 498.372 -107.928 495.453 -107.809C495.221 -105.202 495.33 -100.749 495.317 -98.009C500.974 -98.0251 508.916 -98.281 514.388 -97.9399C514.664 -88.5598 515.681 -88.8916 505.904 -89.3895C505.591 -88.4998 504.051 -82.0444 504.097 -81.3461C504.295 -78.3155 512.408 -80.6478 514.03 -79.3894C514.759 -77.7485 514.312 -71.807 514.429 -69.3664L523.883 -69.3871C524.27 -64.1324 523.652 -56.2135 523.689 -50.4633C526.863 -50.438 530.138 -50.5025 533.323 -50.5232C533.68 -53.2566 533.53 -59.9079 533.503 -62.8625C533.45 -68.2947 533.632 -74.1716 533.452 -79.5577C530.405 -79.613 527.199 -79.5231 524.102 -79.5577C524.019 -88.9332 524.014 -98.3063 524.088 -107.682C527.234 -107.739 530.382 -107.739 533.53 -107.679C533.712 -103.386 533.182 -100.162 532.585 -96.0224C532.383 -94.6303 532.472 -90.4819 532.477 -88.9124C539.145 -88.6981 545.766 -89.265 552.581 -88.5759C552.768 -91.6066 552.698 -94.9369 552.694 -97.9998C558.695 -98.1865 565.185 -98.0758 571.2 -98.032C571.295 -88.4906 571.293 -78.9469 571.189 -69.4032C580.286 -69.175 590.311 -69.3963 599.488 -69.3802C599.756 -65.7918 599.613 -54.1623 599.414 -50.7468C596.305 -50.514 593.183 -50.5509 590.067 -50.5854C590.21 -53.6368 590.2 -57.0777 590.145 -60.1315C587.488 -60.3135 583.542 -60.2398 580.848 -60.1983C580.717 -57.1262 580.627 -53.57 580.797 -50.5255C577.939 -50.7399 574.425 -50.4979 571.327 -50.65C571.376 -53.8281 571.383 -57.004 571.355 -60.1822C568.933 -60.4311 564.312 -60.2144 561.707 -60.1591C561.627 -56.9141 561.763 -53.7913 561.41 -50.5578C558.262 -50.5393 555.406 -50.0784 552.284 -49.629C552.214 -52.5444 552.583 -55.1556 552.65 -58.0065C552.735 -61.6433 552.692 -65.4023 552.685 -69.0483C555.183 -69.2673 559.345 -69.1543 561.97 -69.152C562.221 -73.0078 561.8 -76.0799 561.548 -79.9149C557.985 -79.9356 555.877 -79.8596 552.316 -80.3413C549.997 -80.1362 544.706 -81.2654 542.959 -80.2882C542.154 -77.9398 542.364 -51.3806 543.413 -50.1153C545.455 -49.2902 549.97 -49.5322 552.284 -49.629C552.261 -47.1745 552.159 -44.1231 552.249 -41.7239C547.098 -41.7331 537.84 -41.9913 533.051 -41.5418C532.917 -38.3199 532.917 -35.2731 532.926 -32.0465C536.116 -32.065 539.389 -32.1226 542.567 -31.9982C542.735 -27.8336 542.32 -23.7912 542.36 -19.6381C542.433 -11.71 542.175 -3.7957 541.933 4.12552C541.818 7.92595 541.977 11.8393 541.864 15.6582L533.367 15.6282C532.758 7.08705 533.865 -3.73344 533.549 -12.7102C530.997 -12.701 526.354 -12.8301 523.966 -12.6272C523.874 -9.74408 524.026 -5.46428 523.673 -2.81389L514.189 -2.80005C514.097 -6.12111 514.217 -9.56891 514.104 -12.7909C511.484 -12.7678 497.183 -12.9384 495.773 -12.3622C495.036 -10.7489 495.357 -5.38361 495.311 -3.26561C492.521 -3.51451 488.946 -3.44539 486.15 -3.27945L486.069 9.2189C486.061 10.7262 485.948 14.25 486.087 15.6328C479.823 15.4715 473.505 15.7481 467.219 15.566C467.151 13.4503 466.638 8.66576 467.694 7.1631C469.07 6.18591 474.584 6.61458 476.795 6.60767C477.047 0.530212 476.882 -6.55208 476.877 -12.7033C473.714 -12.7494 470.394 -12.6871 467.219 -12.6756C467.433 -15.727 467.411 -19.1034 467.448 -22.1894C461.264 -22.1848 454.005 -21.9981 447.92 -22.3162C447.669 -19.463 447.69 -15.356 447.723 -12.4728L467.163 -12.5005C467.156 -9.45367 467.091 -6.40918 466.97 -3.36699C465.05 -3.34856 459.694 -3.67584 458.283 -3.12964C457.02 -1.81827 457.582 3.73141 457.35 6.40486C454.257 6.43481 451.164 6.43713 448.072 6.4164C448.011 3.23822 448.058 -0.0252075 448.013 -3.23103C445.805 -3.55138 440.781 -3.34859 438.446 -3.27483C438.633 -6.18565 438.584 -9.81783 438.524 -12.7355C433.831 -12.8139 429.101 -12.6595 424.403 -12.7309C422.827 -12.754 421.201 -12.7794 419.639 -12.5742C418.95 -11.3228 419.298 -5.00102 419.171 -2.85767C417.645 -2.79083 413.819 -2.54886 412.504 -2.84155C408.591 -3.71272 406.377 -4.08607 402.376 -4.04459C401.644 -3.37624 401.277 -2.89687 400.645 -2.12248C400.563 -0.0897522 400.029 4.59569 400.913 6.04073C402.077 6.95338 407.947 6.60307 410.035 6.70448C410.262 8.99533 410.323 22.8304 409.65 24.5174C408.03 25.1835 375.72 24.8447 371.49 24.8124C371.729 19.1913 371.562 12.397 371.566 6.69063C374.816 6.5224 378.073 6.51781 381.324 6.68144C381.515 9.52312 381.352 13.0101 381.499 16.0684C384.318 16.179 388.07 16.1675 390.869 16.05C391.131 13.0401 390.984 8.80174 390.973 5.66968C390.934 -0.377823 390.934 -6.42763 390.972 -12.4751C392.914 -12.4636 398.181 -12.2931 399.692 -12.5904C401.634 -12.9729 399.683 -19.7418 400.776 -21.7492C402.394 -22.4567 407.841 -22.1226 410.085 -22.1341C410.31 -24.5724 410.745 -29.9262 410.729 -32.0926C414.641 -32.0327 414.967 -30.7052 419.498 -30.5785C422.614 -32.201 425.24 -31.846 428.744 -31.8553C428.804 -28.6333 428.753 -25.4183 428.822 -22.1871C431.534 -21.9843 435.554 -22.0695 438.367 -22.0511C438.639 -25.1163 438.537 -29.2556 438.516 -32.3439L428.967 -32.2793C428.788 -38.2623 428.999 -44.3536 428.742 -50.3135L419.521 -50.2951C419.446 -53.3442 419.491 -56.5753 419.485 -59.6383C416.338 -59.8157 413.585 -59.4677 410.133 -59.7765C409.92 -50.9035 410.079 -41.3506 410.085 -32.4153C407.603 -32.4199 406.902 -32.4568 404.599 -31.5764C401.599 -32.625 396.294 -32.4222 393.227 -32.0396C392.723 -31.9774 391.985 -32.1917 391.703 -32.6043C390.595 -34.2222 390.927 -39.5229 390.93 -41.5764C388.412 -41.7377 383.937 -41.7769 381.447 -41.5787C381.502 -44.8422 381.513 -48.1056 381.481 -51.3667C378.564 -51.346 374.355 -51.1916 371.539 -51.3667L371.555 -59.9217L381.261 -60.0024C381.257 -57.2345 381.197 -54.2822 381.25 -51.5304C387.456 -51.6664 394.365 -51.4221 400.368 -51.671C400.401 -54.432 400.449 -57.1538 400.368 -59.9171C394.025 -59.9702 387.756 -60.3136 381.437 -60.2052C381.462 -63.1898 381.56 -66.6192 381.43 -69.5623L362.12 -69.6199L362.301 -78.3754C366.86 -78.3615 370.88 -78.3615 375.444 -78.7994C377.183 -78.9654 379.572 -78.7603 381.401 -78.9262C381.737 -88.5114 381.464 -99.3065 381.511 -109.014C378.639 -108.802 374.283 -108.756 371.42 -108.977L371.551 -117.145C374.381 -117.428 378.056 -117.338 380.962 -117.297C381.098 -120.261 381.124 -123.225 381.04 -126.188C377.863 -126.112 374.685 -126.094 371.508 -126.128C371.537 -132.6 371.305 -140.012 371.567 -146.352C374.427 -146.421 378.575 -146.592 381.295 -146.066L381.208 -126.37C383.21 -126.354 389.229 -126.11 390.664 -126.758C391.616 -128.551 390.001 -136.048 391.604 -136.198C397.284 -136.73 403.648 -136.518 409.365 -136.334C410.543 -136.294 409.899 -127.527 409.922 -126.368C408.507 -126.477 406.928 -126.463 405.508 -126.407C400.684 -126.223 395.745 -126.583 390.938 -126.465C390.851 -119.302 390.847 -112.137 390.928 -104.971C390.959 -103.052 390.871 -99.7974 391.016 -98.0067L408.912 -97.9491C408.913 -100.715 408.782 -104.819 408.947 -107.477C411.76 -107.804 416.44 -107.668 419.397 -107.636C419.403 -104.43 419.365 -101.224 419.283 -98.0182C425.098 -98.009 432.742 -98.2441 438.371 -97.9583C438.438 -94.6879 438.783 -82.1113 437.992 -79.7951C437.211 -79.0599 433.846 -78.917 432.626 -78.6381C431.409 -78.3592 430.165 -77.8776 428.965 -77.7116C428.946 -75.0105 428.995 -72.2956 428.668 -69.6153C425.885 -69.6037 422.137 -69.6959 419.434 -69.5323C419.502 -72.7727 419.523 -76.0154 419.496 -79.2581C429.69 -79.4056 429.407 -77.5641 428.832 -88.622C428.824 -88.7879 428.813 -88.9516 428.798 -89.1175C425.977 -89.0945 422.267 -88.9815 419.498 -89.1313C419.498 -91.6665 419.589 -95.2641 419.366 -97.6817C416.131 -97.6979 412.913 -97.5711 409.68 -97.5434L409.597 -89.1867C403.447 -89.1267 397.079 -89.0276 390.936 -89.1452C390.929 -85.9831 390.823 -82.2104 390.949 -79.0991C395.897 -78.7349 404.537 -79.076 409.87 -79.0668C409.88 -76.5178 409.766 -71.7563 409.986 -69.3341C412.696 -69.2396 416.545 -69.2995 419.311 -69.3894L419.299 -60.0024C426.39 -59.8503 433.506 -60.0324 440.599 -59.9655C442.556 -59.9471 445.841 -60.1476 447.626 -59.5783C448.074 -58.154 447.909 -53.3764 447.756 -51.7862C447.577 -49.9217 440.18 -50.65 438.564 -50.4725C438.216 -45.204 438.448 -37.9972 438.401 -32.5305C441.211 -32.6411 444.023 -32.7103 446.835 -32.7379C447.427 -32.3185 448.176 -31.7492 448.774 -31.3759C450.82 -31.3874 456.913 -30.6937 458.209 -31.1293C461.665 -32.2908 463.903 -31.5395 467.191 -32.0258C467.037 -28.3867 467.096 -25.5658 467.885 -22.005C470.347 -21.9866 474.489 -21.8529 476.829 -22.1064C477.085 -24.4042 476.897 -29.6727 476.854 -32.0558C473.896 -32.1987 470.172 -32.0742 467.191 -32.0258C467.047 -41.3114 467.455 -50.9427 467.195 -60.1684C464.297 -60.3181 460.612 -60.2329 457.656 -60.2467C457.472 -62.8118 457.577 -66.6998 457.573 -69.3686C463.928 -69.4032 470.283 -69.4032 476.637 -69.3709C476.823 -66.8335 476.697 -62.6851 476.731 -59.9655C482.905 -59.9171 489.08 -59.9218 495.254 -59.9748C495.457 -63.365 495.729 -75.937 495.124 -78.9285C492.424 -79.212 489.446 -78.6888 486.7 -78.8801C480.168 -79.3295 473.759 -79.4332 467.226 -79.5761C466.975 -84.976 467.201 -92.5607 467.201 -98.1404C471.906 -97.8615 476.687 -98.281 481.393 -97.873C482.817 -97.7509 484.159 -97.6725 485.59 -97.7186C485.651 -95.6098 485.01 -90.1915 486.227 -88.7695C487.165 -87.6725 493.906 -87.843 494.962 -88.3961C495.618 -88.7395 495.445 -97.0157 495.446 -97.9721C493.394 -98.1196 487.671 -98.2326 485.749 -98.0205C485.801 -101.987 485.761 -105.419 486.356 -109.341C486.604 -110.975 486.673 -115.638 486.196 -117.175C485.09 -117.719 477.983 -117.668 477.149 -117.401C476.5 -116.147 476.671 -109.811 476.631 -107.903C473.663 -107.903 470.114 -107.981 467.204 -107.76C467.144 -105.084 466.937 -100.828 467.118 -98.2833C463.938 -98.4123 460.842 -98.2786 457.581 -98.4469C457.487 -101.487 457.533 -104.806 457.514 -107.871C454.488 -107.97 451.124 -107.924 448.075 -107.947C448.036 -110.987 448.069 -114.093 448.069 -117.14C451.06 -117.214 465.061 -116.838 466.82 -117.546C467.51 -119.148 467.215 -124.672 467.189 -126.677C463.87 -126.728 460.936 -126.606 457.548 -126.781C457.366 -129.498 457.402 -133.656 457.49 -136.38C459.408 -136.546 461.871 -136.375 463.855 -136.483C468.171 -136.719 472.354 -136.765 476.677 -136.725C476.69 -133.547 476.653 -130.182 476.801 -127.025C479.999 -127.055 483.03 -127.226 486.317 -127.226C486.558 -132.96 486.365 -140.24 486.368 -146.069C489.169 -146.207 492.501 -146.156 495.326 -146.172C494.842 -149.164 495.096 -160.701 495.119 -164.359C490.82 -164.407 486.526 -164.213 482.223 -164.29C478.253 -164.359 471.227 -165.363 467.472 -164.527C466.74 -163.089 467.006 -157.484 467.018 -155.596C463.898 -155.603 460.743 -155.647 457.628 -155.527C457.421 -152.99 457.517 -148.758 457.498 -146.092C454.188 -146.025 451.391 -146.013 448.088 -146.156L448.05 -155.571C441.825 -155.817 435.274 -155.414 428.951 -155.617C428.864 -158.528 428.894 -161.632 428.873 -164.559C430.669 -164.552 437.388 -164.239 438.34 -164.962C438.841 -167.154 438.612 -180.929 438.562 -183.925ZM486.644 -22.6457C491.954 -22.6342 497.421 -22.5443 502.691 -23.1689C506.204 -23.5837 509.366 -23.5515 512.89 -23.5238L513.745 -23.6275C514.819 -25.0495 513.878 -39.7258 514.235 -42.5582C514.36 -43.5654 514.229 -49.0713 514.093 -50.083C513.622 -50.5878 512.101 -50.6546 511.375 -50.6569C503.014 -50.6892 494.6 -50.567 486.24 -50.6799C485.635 -49.0482 485.906 -46.8634 485.751 -45.1441C485.208 -39.1219 485.337 -33.3602 486.234 -27.3703C486.464 -25.8377 486.359 -24.2221 486.644 -22.6457ZM523.779 -22.0811C526.851 -22.0742 529.921 -22.088 532.993 -22.1272C533.235 -24.8951 533.072 -29.1196 533.021 -31.9958C530.02 -32.0742 527.02 -32.1042 524.021 -32.088C523.756 -29.7649 523.708 -24.5264 523.779 -22.0811Z" fill="#9E2184"/> +<path d="M713.854 -79.4632C716.606 -79.2535 720.355 -79.4816 723.473 -79.3088C723.582 -76.1859 723.485 -72.5606 723.478 -69.4009L732.397 -69.3894C732.542 -67.0502 732.556 -62.4731 732.217 -60.2052L723.499 -60.1891C723.414 -57.0225 723.469 -53.6599 723.471 -50.4771C725.209 -50.431 730.895 -50.8113 732.012 -50.1891C732.865 -48.1748 732.489 -35.0219 732.169 -32.1134C727.062 -31.8737 718.998 -31.9152 713.865 -32.1065C713.798 -35.3146 713.909 -38.4513 713.789 -41.7032C709.931 -41.9083 698.101 -41.8691 694.469 -41.5926C694.391 -38.4236 694.444 -35.0473 694.441 -31.8645L704.11 -31.8C704.319 -25.5474 704.137 -18.8061 704.176 -12.489C707.389 -12.4521 710.604 -12.4659 713.819 -12.5304L713.826 -22.0903C716.871 -22.2171 720.348 -22.1387 723.427 -22.1295C723.483 -19.0135 723.266 -15.9114 723.381 -12.7402C720.194 -12.6849 717.004 -12.6641 713.817 -12.678C713.685 -9.78788 713.796 -6.19028 713.815 -3.2495C712.068 -3.54681 705.582 -3.71964 704.188 -2.51659C702.966 -1.46336 698.037 -1.9243 696.105 -1.97961C695.866 0.825188 695.85 3.81207 695.868 6.63531C701.911 6.64223 707.788 6.40025 713.803 6.39103C713.621 8.03197 713.52 14.1025 713.815 15.5821C711.657 15.2364 707.97 15.3309 705.762 15.3055C702.358 15.2664 705.372 22.2634 703.605 24.6073C702.093 25.1581 696.762 24.8608 694.9 24.817C694.28 19.2673 695.725 12.1089 695.594 6.43019C692.144 6.37488 688.691 6.37719 685.241 6.43941C685.077 10.415 685.587 21.2263 684.914 24.5266C684.033 25.2618 677.518 24.9046 675.981 24.8769C676.112 16.0384 675.955 6.99023 675.907 -1.86668L672.593 -1.91508C670.304 -3.51683 669.14 -3.24258 666.322 -3.21723C666.345 -6.38157 666.34 -9.54358 666.306 -12.7056C663.713 -12.8301 660.371 -12.754 657.732 -12.7586L656.774 -14.8513C654.817 -14.5102 649.848 -14.4226 647.493 -14.2544C647.237 -19.055 648.419 -38.3038 646.774 -41.3206C644.821 -42.0927 631.468 -41.6525 628.043 -41.7654C628.027 -44.6578 628.057 -47.5479 628.131 -50.438C632.807 -50.7076 642.662 -50.0323 646.704 -50.6477C647.518 -51.7862 647.207 -58.1932 647.191 -59.9494H675.301C675.412 -62.0951 675.119 -67.3659 675.79 -68.9884C677.179 -69.5554 692.939 -69.6683 694.172 -68.9653C694.948 -67.3728 694.469 -53.4525 694.501 -50.5025C696.767 -50.3481 699.936 -50.4518 702.296 -50.4449C706.041 -50.431 710.046 -50.3066 713.768 -50.4357C713.909 -53.4802 713.828 -57.0732 713.828 -60.1614C710.791 -60.2721 707.408 -60.226 704.352 -60.2444C704.31 -63.2474 704.299 -66.2504 704.322 -69.2534C706.737 -69.4862 711.148 -69.3802 713.75 -69.4194C713.911 -72.4777 713.831 -76.3426 713.854 -79.4632ZM685.269 -50.544C679.698 -50.6869 674.128 -50.7145 668.557 -50.6293C666.398 -50.6062 657.984 -50.862 656.681 -50.1729C655.34 -47.4557 657.069 -27.0431 657.126 -22.1871L673.137 -22.1433L685.225 -22.1087C685.384 -30.3549 685.672 -42.3831 685.269 -50.544ZM675.794 -2.3299C678.836 -2.38752 681.878 -2.40598 684.921 -2.38293C685.467 -3.26102 685.257 -11.014 685.248 -12.7033C682.478 -12.7102 678.979 -12.6296 676.299 -12.8808C675.142 -11.5026 675.663 -4.46404 675.794 -2.3299ZM656.866 -14.9458C656.87 -15.8216 656.983 -17.6307 656.679 -18.3521L656.299 -18.6333C656.287 -17.5063 656.186 -16.3447 656.497 -15.28L656.866 -14.9458Z" fill="#9E2184"/> +<path d="M581.016 -50.3112L589.848 -50.3089C589.822 -44.0194 590.249 -38.0872 590.175 -31.8553C586.172 -31.9198 574.535 -32.4891 571.293 -32.1365C571 -26.4139 571.182 -18.8315 571.154 -12.9891C573.786 -12.9868 577.024 -13.0698 579.613 -12.9614C579.742 -9.73718 579.935 -6.1972 579.905 -2.99138C586.464 -3.03056 593.024 -3.02363 599.583 -2.97062C599.546 -6.11191 599.576 -9.2532 599.675 -12.3922C602.71 -12.4752 605.745 -12.5051 608.781 -12.4821C609.085 -10.4171 608.949 -4.91809 608.677 -2.88996C605.619 -2.83696 602.558 -2.83927 599.5 -2.89688L599.52 6.87961C597.036 6.26656 584.102 6.39794 580.843 6.39794C580.615 9.54153 580.624 12.5007 580.61 15.6512C577.824 15.695 575.038 15.6881 572.251 15.6328C572.323 12.3025 572.346 9.88723 572.069 6.53622C571.8 3.30274 571.323 0.062336 571.336 -3.15501C567.937 -2.98907 564.74 -3.17806 561.346 -3.27255C558.32 -3.35552 555.347 -3.22185 552.327 -3.50533C552.21 -9.67728 552.355 -16.029 552.429 -22.2148C554.367 -22.2217 560.154 -21.9382 561.419 -22.6066C562 -23.8511 562.438 -32.2217 560.647 -32.6274C558.661 -33.0791 554.657 -32.7034 552.353 -32.7564C552.302 -35.7456 552.267 -38.7348 552.249 -41.7239C556.16 -41.7539 560.288 -41.7746 564.16 -41.7124C567.764 -41.6548 577.769 -40.4817 580.659 -41.4405C581.272 -42.9362 580.97 -48.3177 581.016 -50.3112Z" fill="#9E2184"/> +<path d="M334.156 -12.3945C335.514 -12.5512 341.769 -12.5973 342.865 -12.3807C343.776 -10.9426 342.965 3.84664 342.426 6.04762C341.666 6.67449 335.241 6.42096 333.582 6.43709C333.379 12.2772 333.85 19.0576 333.411 24.7547C331.704 25.0083 326.867 24.8746 324.987 24.8585C325.039 18.7764 322.947 -8.78074 324.611 -11.4334C326.258 -12.3991 331.258 -11.9405 333.826 -12.3415L334.156 -12.3945Z" fill="#9E2184"/> +<path d="M295.8 -12.4798C298.874 -12.3853 302.101 -12.4521 305.189 -12.4728C305.16 -9.33156 305.167 -6.19027 305.208 -3.05128L314.588 -2.97754C314.528 2.19187 314.507 7.35899 314.524 12.5284C314.56 15.3286 314.883 22.2565 314.431 24.7432C312.614 25.029 307.764 25.1212 306.065 24.4459C305.342 23.2521 305.794 17.6955 305.618 15.9924C305.29 12.8349 304.869 9.63831 304.931 6.46245C302.85 6.32186 297.581 6.81509 296.212 6.05223C295.389 4.05177 295.754 -9.55742 295.8 -12.4798Z" fill="#9E2184"/> +<path d="M637.626 6.50395C643.04 6.22278 651.507 6.94644 656.462 6.4325C656.504 9.44011 656.451 12.5468 656.437 15.5637C654.298 15.5222 648.608 14.946 647.368 15.8656C646.451 17.2622 646.789 21.9915 646.794 23.9873L646.642 24.5197C645.526 25.1328 630.633 24.8446 628.108 24.8124C628.091 18.97 627.978 12.6874 628.163 6.88193C631.366 6.63763 634.337 7.08934 637.626 6.50395Z" fill="#9E2184"/> +<path d="M610.104 6.97179C611.643 6.83351 617.101 6.74362 618.447 7.22761C619.083 8.76022 618.643 22.2588 618.615 24.8262C612.515 24.9414 606.112 24.8423 599.989 24.84C590.537 22.9617 591.129 26.1099 591.588 15.1857C593.353 15.1696 597.88 15.566 599.087 14.9829C600.138 13.872 599.733 9.08518 599.721 7.19764C602.784 7.16999 607.168 7.28753 610.104 6.97179Z" fill="#9E2184"/> +<path d="M486.087 15.6328C492.257 15.6812 498.428 15.6858 504.598 15.6512C507.124 15.6489 511.878 15.5268 514.213 15.8195C514.261 17.6102 514.531 23.3881 514.038 24.8377C513.621 24.9852 513.798 24.9921 513.512 24.9391C508.44 25.1489 502.664 24.8953 497.502 24.9691C494.852 25.006 488.574 25.1466 486.151 24.9207C486.221 21.9131 486.126 18.6612 486.087 15.6328Z" fill="#9E2184"/> +<path d="M428.942 -2.98908C431.901 -3.11584 435.411 -3.03286 438.412 -3.03517C438.435 0.424171 438.701 12.8995 438.261 15.642L428.953 15.6812C428.9 12.6252 428.275 -0.629083 428.942 -2.98908Z" fill="#9E2184"/> +<path d="M552.383 6.65836C555.278 6.47629 558.585 6.57539 561.482 6.65144C561.586 8.99531 561.448 23.07 560.959 24.8354C560.696 24.87 560.431 24.8999 560.166 24.9253C558.733 25.0613 553.333 25.4692 552.927 24.6072C551.743 22.0905 552.19 9.10363 552.383 6.65836Z" fill="#9E2184"/> +<path d="M495.396 -3.05129C498.596 -3.12734 501.797 -3.12506 504.996 -3.04439C505.04 -0.389393 505.148 3.53318 504.888 6.11213C502.108 6.22967 498.313 6.18358 495.542 6.06604C495.291 3.70143 495.39 -0.536871 495.396 -3.05129Z" fill="#9E2184"/> +<path d="M656.878 -2.98907C659.95 -3.07435 663.024 -3.05129 666.096 -2.91761C666.096 -0.311012 666.212 3.91808 665.806 6.32187C663.098 6.4855 659.413 6.39331 656.629 6.40022C656.608 4.4251 656.438 -1.33661 656.878 -2.98907Z" fill="#9E2184"/> +<path d="M713.814 15.5821C716.829 15.619 720.415 15.5729 723.386 15.7204C723.351 18.7234 723.271 21.8394 723.287 24.8354C720.254 24.8516 716.829 24.9391 713.831 24.8124C713.773 21.7356 713.766 18.6589 713.814 15.5821Z" fill="#9E2184"/> +<path d="M656.601 15.6167C659.639 15.6813 662.861 15.6282 665.915 15.6305C666.083 18.675 666.004 21.7172 665.894 24.7617C664.055 24.9968 658.659 24.8562 656.668 24.8424C656.528 21.95 656.601 18.5506 656.601 15.6167Z" fill="#9E2184"/> +<path d="M713.814 -3.24954C716.873 -3.19423 720.323 -3.2311 723.34 -3.04211C723.31 -1.18684 723.388 4.46655 723.04 5.93925C720.351 5.96229 716.481 5.88393 713.872 6.05448C713.886 2.95237 713.865 -0.147433 713.814 -3.24954Z" fill="#9E2184"/> +<path d="M277.088 6.91189C280.213 6.87502 283.339 6.87731 286.464 6.92571C286.646 8.76715 286.432 14.2223 285.911 16.0016C283.373 15.9947 280.613 16.1283 278.133 15.672C277.364 15.5061 277.496 13.6324 277.413 13.0101C277.08 10.5072 276.08 9.47701 277.088 6.91189Z" fill="#9E2184"/> +<path d="M353.108 6.67684C356.037 6.59157 358.969 6.58694 361.899 6.663C361.957 8.94925 362.227 14.1832 361.437 16.0892C359.562 16.0984 357.458 15.9025 355.598 15.7965C352.553 15.6259 352.582 13.2867 352.783 10.9405C352.911 9.45629 352.824 8.19563 353.108 6.67684Z" fill="#9E2184"/> +<path d="M73.4393 693.175V662.558H80.652L89.7572 680.243C89.9675 680.691 90.1568 681.147 90.325 681.609C90.5073 682.058 90.6685 682.507 90.8087 682.955H90.9348C90.9208 682.479 90.9068 682.002 90.8928 681.525C90.8928 681.049 90.8928 680.572 90.8928 680.095V662.558H96.9069V693.175H89.7572L80.5258 675.448C80.3155 675.028 80.1263 674.593 79.9581 674.144C79.7898 673.696 79.6426 673.247 79.5165 672.799H79.3693C79.3973 673.275 79.4113 673.745 79.4113 674.208C79.4253 674.656 79.4323 675.126 79.4323 675.616V693.175H73.4393ZM101.617 681.988V662.558H108.62V682.724C108.62 684.897 109.026 686.432 109.839 687.329C110.652 688.212 111.781 688.654 113.225 688.654C114.627 688.654 115.734 688.212 116.547 687.329C117.374 686.432 117.788 684.897 117.788 682.724V662.558H124.727V681.988C124.727 685.997 123.676 688.948 121.573 690.841C119.484 692.733 116.709 693.68 113.246 693.68C109.727 693.68 106.909 692.733 104.792 690.841C102.676 688.948 101.617 685.997 101.617 681.988ZM127.335 668.046V662.558H151.37V668.046H142.896V693.175H135.83V668.046H127.335ZM152.274 668.046V662.558H176.31V668.046H167.835V693.175H160.77V668.046H152.274ZM186.487 693.175V681.736L176.499 662.558H184.174L189.494 673.072C189.663 673.422 189.817 673.759 189.957 674.081C190.097 674.39 190.23 674.712 190.357 675.049H190.462C190.588 674.712 190.714 674.39 190.84 674.081C190.98 673.773 191.142 673.436 191.324 673.072L196.644 662.558H203.436L193.574 681.567V693.175H186.487ZM222.95 693.175V681.736L212.962 662.558H220.637L225.958 673.072C226.126 673.422 226.28 673.759 226.42 674.081C226.56 674.39 226.694 674.712 226.82 675.049H226.925C227.051 674.712 227.177 674.39 227.303 674.081C227.444 673.773 227.605 673.436 227.787 673.072L233.107 662.558H239.899L230.037 681.567V693.175H222.95ZM239.92 678.75V676.983C239.92 671.908 241.133 668.151 243.558 665.712C245.998 663.273 249.138 662.053 252.979 662.053C256.806 662.053 259.939 663.273 262.379 665.712C264.832 668.151 266.058 671.908 266.058 676.983V678.75C266.058 683.824 264.832 687.582 262.379 690.021C259.939 692.46 256.806 693.68 252.979 693.68C249.138 693.68 245.998 692.46 243.558 690.021C241.133 687.582 239.92 683.824 239.92 678.75ZM247.175 680.243C247.175 683.187 247.694 685.331 248.731 686.677C249.769 688.009 251.184 688.675 252.979 688.675C254.773 688.675 256.189 688.009 257.227 686.677C258.278 685.331 258.804 683.187 258.804 680.243V675.511C258.804 672.567 258.278 670.436 257.227 669.119C256.189 667.787 254.773 667.121 252.979 667.121C251.184 667.121 249.769 667.787 248.731 669.119C247.694 670.436 247.175 672.567 247.175 675.511V680.243ZM269.928 681.988V662.558H276.93V682.724C276.93 684.897 277.337 686.432 278.15 687.329C278.963 688.212 280.091 688.654 281.535 688.654C282.937 688.654 284.045 688.212 284.858 687.329C285.685 686.432 286.098 684.897 286.098 682.724V662.558H293.038V681.988C293.038 685.997 291.986 688.948 289.884 690.841C287.795 692.733 285.019 693.68 281.556 693.68C278.038 693.68 275.22 692.733 273.103 690.841C270.986 688.948 269.928 685.997 269.928 681.988Z" fill="white"/> +<path d="M73.208 634.343V607.327H84.0811C87.0127 607.327 89.2578 608.137 90.8164 609.758C92.375 611.366 93.1543 613.562 93.1543 616.345C93.1543 619.116 92.3812 621.317 90.835 622.95C89.3011 624.571 87.0251 625.381 84.0068 625.381H79.3682V634.343H73.208ZM79.3682 621.039H82.9492C84.4707 621.039 85.5283 620.612 86.1221 619.759C86.7158 618.893 87.0127 617.78 87.0127 616.419C87.0127 615.071 86.7158 613.976 86.1221 613.135C85.5283 612.281 84.4707 611.854 82.9492 611.854H79.3682V621.039ZM94.6201 625.474V624.88C94.6201 622.06 95.5046 619.802 97.2734 618.107C99.0423 616.413 101.362 615.565 104.231 615.565C107.076 615.565 109.291 616.369 110.874 617.978C112.457 619.586 113.249 621.806 113.249 624.639V626.457H98.1641V623.191H107.441V622.932C107.441 622.016 107.169 621.256 106.625 620.649C106.081 620.043 105.271 619.74 104.194 619.74C103.007 619.74 102.098 620.173 101.467 621.039C100.848 621.905 100.539 623.024 100.539 624.397V625.641C100.539 627.199 100.873 628.418 101.541 629.296C102.221 630.174 103.205 630.613 104.491 630.613C105.407 630.613 106.186 630.403 106.829 629.982C107.472 629.562 107.986 629.049 108.369 628.442L113.008 630.354C112.426 631.714 111.424 632.803 110.002 633.619C108.592 634.436 106.78 634.844 104.565 634.844C101.436 634.844 98.9928 634.003 97.2363 632.32C95.4922 630.626 94.6201 628.343 94.6201 625.474ZM115.197 629.036C115.197 627.106 115.952 625.616 117.461 624.564C118.982 623.513 120.949 622.981 123.361 622.969H127.443V621.874C127.443 621.058 127.239 620.414 126.831 619.944C126.423 619.474 125.73 619.239 124.753 619.239C123.776 619.239 123.058 619.437 122.601 619.833C122.143 620.229 121.914 620.755 121.914 621.41V621.744L116.292 621.726V621.354C116.292 619.66 117.09 618.281 118.686 617.217C120.294 616.141 122.434 615.603 125.105 615.603C127.802 615.603 129.855 616.116 131.266 617.143C132.688 618.169 133.399 619.802 133.399 622.041V630.205C133.399 630.947 133.461 631.659 133.585 632.339C133.721 633.007 133.913 633.582 134.16 634.064V634.343H128.297C128.136 634.046 127.994 633.681 127.87 633.248C127.759 632.815 127.685 632.376 127.647 631.931C127.239 632.623 126.509 633.248 125.458 633.805C124.419 634.361 123.108 634.64 121.524 634.64C119.644 634.64 118.117 634.17 116.941 633.229C115.779 632.289 115.197 630.892 115.197 629.036ZM121.116 628.572C121.116 629.352 121.339 629.964 121.784 630.409C122.229 630.842 122.91 631.059 123.825 631.059C124.815 631.059 125.662 630.731 126.367 630.075C127.085 629.407 127.443 628.634 127.443 627.756V626.197H124.809C123.547 626.197 122.613 626.389 122.007 626.772C121.413 627.156 121.116 627.756 121.116 628.572ZM137.37 634.343V616.104H143.159L143.215 618.386H143.289C143.759 617.582 144.477 616.932 145.441 616.438C146.419 615.93 147.563 615.677 148.874 615.677C150.754 615.677 152.282 616.202 153.457 617.254C154.632 618.305 155.22 620.093 155.22 622.616V634.343H149.264V623.136C149.264 622.047 149.029 621.28 148.559 620.835C148.101 620.377 147.451 620.148 146.61 620.148C145.893 620.148 145.243 620.359 144.662 620.779C144.081 621.2 143.635 621.763 143.326 622.468V634.343H137.37ZM158.801 627.7V616.104H164.775V627.273C164.775 628.424 165.01 629.228 165.48 629.686C165.951 630.131 166.6 630.354 167.429 630.354C168.159 630.354 168.808 630.131 169.377 629.686C169.946 629.24 170.385 628.684 170.694 628.016V616.104H176.65V634.343H170.88L170.806 632.042H170.75C170.23 632.871 169.482 633.533 168.505 634.027C167.54 634.522 166.396 634.77 165.072 634.77C163.217 634.77 161.708 634.225 160.545 633.137C159.382 632.036 158.801 630.224 158.801 627.7ZM178.691 620.408V616.104H191.03V620.408H178.691ZM181.475 628.758V617.532L181.586 617.161V610.927H187.356V627.867C187.356 628.931 187.517 629.636 187.839 629.982C188.16 630.329 188.643 630.502 189.286 630.502C189.595 630.502 189.892 630.477 190.177 630.428C190.461 630.366 190.74 630.279 191.012 630.168V634.287C190.69 634.411 190.214 634.528 189.583 634.64C188.952 634.751 188.204 634.807 187.338 634.807C185.495 634.807 184.054 634.33 183.015 633.378C181.988 632.413 181.475 630.873 181.475 628.758ZM202.979 634.343V607.327H213.853C216.784 607.327 219.029 608.137 220.588 609.758C222.146 611.366 222.926 613.562 222.926 616.345C222.926 619.116 222.153 621.317 220.606 622.95C219.073 624.571 216.797 625.381 213.778 625.381H209.14V634.343H202.979ZM209.14 621.039H212.721C214.242 621.039 215.3 620.612 215.894 619.759C216.487 618.893 216.784 617.78 216.784 616.419C216.784 615.071 216.487 613.976 215.894 613.135C215.3 612.281 214.242 611.854 212.721 611.854H209.14V621.039ZM225.635 634.343V616.104H231.665V634.343H225.635ZM225.245 610.37C225.245 609.504 225.542 608.774 226.136 608.181C226.729 607.575 227.577 607.271 228.678 607.271C229.766 607.271 230.601 607.568 231.183 608.162C231.764 608.756 232.055 609.492 232.055 610.37C232.055 611.236 231.758 611.972 231.164 612.578C230.57 613.184 229.729 613.487 228.641 613.487C227.54 613.487 226.699 613.184 226.117 612.578C225.536 611.972 225.245 611.236 225.245 610.37ZM234.708 625.492V624.898C234.708 622.066 235.617 619.802 237.436 618.107C239.254 616.4 241.647 615.547 244.616 615.547C247.585 615.547 249.972 616.4 251.778 618.107C253.597 619.802 254.506 622.066 254.506 624.898V625.492C254.506 628.325 253.597 630.595 251.778 632.302C249.972 633.996 247.585 634.844 244.616 634.844C241.635 634.844 239.235 633.996 237.417 632.302C235.611 630.595 234.708 628.325 234.708 625.492ZM240.757 624.639V625.733C240.757 627.243 241.085 628.424 241.74 629.277C242.408 630.118 243.361 630.539 244.598 630.539C245.847 630.539 246.799 630.118 247.455 629.277C248.123 628.424 248.457 627.243 248.457 625.733V624.639C248.457 623.142 248.123 621.979 247.455 621.15C246.787 620.309 245.835 619.889 244.598 619.889C243.373 619.889 242.427 620.309 241.759 621.15C241.091 621.979 240.757 623.142 240.757 624.639ZM257.493 634.343V616.104H263.282L263.338 618.386H263.412C263.882 617.582 264.6 616.932 265.564 616.438C266.542 615.93 267.686 615.677 268.997 615.677C270.877 615.677 272.405 616.202 273.58 617.254C274.755 618.305 275.343 620.093 275.343 622.616V634.343H269.387V623.136C269.387 622.047 269.152 621.28 268.682 620.835C268.224 620.377 267.575 620.148 266.733 620.148C266.016 620.148 265.367 620.359 264.785 620.779C264.204 621.2 263.758 621.763 263.449 622.468V634.343H257.493ZM278.163 625.474V624.88C278.163 622.06 279.048 619.802 280.816 618.107C282.585 616.413 284.905 615.565 287.774 615.565C290.619 615.565 292.834 616.369 294.417 617.978C296 619.586 296.792 621.806 296.792 624.639V626.457H281.707V623.191H290.984V622.932C290.984 622.016 290.712 621.256 290.168 620.649C289.624 620.043 288.813 619.74 287.737 619.74C286.55 619.74 285.641 620.173 285.01 621.039C284.391 621.905 284.082 623.024 284.082 624.397V625.641C284.082 627.199 284.416 628.418 285.084 629.296C285.764 630.174 286.748 630.613 288.034 630.613C288.95 630.613 289.729 630.403 290.372 629.982C291.015 629.562 291.529 629.049 291.912 628.442L296.551 630.354C295.969 631.714 294.967 632.803 293.545 633.619C292.135 634.436 290.323 634.844 288.108 634.844C284.979 634.844 282.536 634.003 280.779 632.32C279.035 630.626 278.163 628.343 278.163 625.474ZM298.685 625.474V624.88C298.685 622.06 299.569 619.802 301.338 618.107C303.107 616.413 305.426 615.565 308.296 615.565C311.141 615.565 313.355 616.369 314.938 617.978C316.522 619.586 317.313 621.806 317.313 624.639V626.457H302.229V623.191H311.506V622.932C311.506 622.016 311.234 621.256 310.689 620.649C310.145 620.043 309.335 619.74 308.259 619.74C307.071 619.74 306.162 620.173 305.531 621.039C304.913 621.905 304.604 623.024 304.604 624.397V625.641C304.604 627.199 304.938 628.418 305.605 629.296C306.286 630.174 307.269 630.613 308.556 630.613C309.471 630.613 310.25 630.403 310.894 629.982C311.537 629.562 312.05 629.049 312.434 628.442L317.072 630.354C316.491 631.714 315.489 632.803 314.066 633.619C312.656 634.436 310.844 634.844 308.63 634.844C305.5 634.844 303.057 634.003 301.301 632.32C299.557 630.626 298.685 628.343 298.685 625.474ZM320.134 634.343V616.104H325.997L326.071 618.367H326.127C326.56 617.6 327.147 616.963 327.89 616.456C328.632 615.949 329.467 615.695 330.395 615.695C330.716 615.695 331.025 615.72 331.322 615.77C331.619 615.819 331.829 615.868 331.953 615.918V620.612C331.73 620.538 331.471 620.482 331.174 620.445C330.889 620.408 330.568 620.39 330.209 620.39C329.38 620.39 328.601 620.643 327.871 621.15C327.141 621.658 326.578 622.319 326.183 623.136V634.343H320.134Z" fill="white"/> +<path d="M553.094 600.867H559.532L565.247 618.624C565.358 618.909 565.445 619.193 565.507 619.478C565.581 619.762 565.655 620.059 565.729 620.368H565.841C565.915 620.059 565.989 619.756 566.063 619.459C566.15 619.162 566.237 618.884 566.323 618.624L572.094 600.867H578.031L568.939 627.994H562.186L553.094 600.867ZM577.753 622.576C577.753 620.647 578.507 619.156 580.017 618.105C581.538 617.053 583.505 616.521 585.917 616.509H589.999V615.414C589.999 614.598 589.795 613.955 589.387 613.484C588.979 613.014 588.286 612.779 587.309 612.779C586.331 612.779 585.614 612.977 585.156 613.373C584.699 613.769 584.47 614.295 584.47 614.95V615.284L578.848 615.266V614.895C578.848 613.2 579.646 611.821 581.241 610.757C582.849 609.681 584.989 609.143 587.661 609.143C590.358 609.143 592.411 609.656 593.821 610.683C595.244 611.709 595.955 613.342 595.955 615.581V623.745C595.955 624.487 596.017 625.199 596.141 625.879C596.277 626.547 596.468 627.122 596.716 627.605V627.883H590.853C590.692 627.586 590.549 627.221 590.426 626.788C590.314 626.355 590.24 625.916 590.203 625.471C589.795 626.164 589.065 626.788 588.014 627.345C586.975 627.901 585.663 628.18 584.08 628.18C582.2 628.18 580.672 627.71 579.497 626.77C578.334 625.83 577.753 624.432 577.753 622.576ZM583.672 622.112C583.672 622.892 583.895 623.504 584.34 623.949C584.785 624.382 585.465 624.599 586.381 624.599C587.37 624.599 588.218 624.271 588.923 623.615C589.64 622.947 589.999 622.174 589.999 621.296V619.737H587.364C586.103 619.737 585.169 619.929 584.562 620.313C583.969 620.696 583.672 621.296 583.672 622.112ZM599.944 627.883V600.181H605.938V627.883H599.944ZM609.927 627.883V609.644H615.957V627.883H609.927ZM609.537 603.91C609.537 603.044 609.834 602.315 610.428 601.721C611.021 601.115 611.869 600.812 612.97 600.812C614.058 600.812 614.893 601.109 615.475 601.702C616.056 602.296 616.347 603.032 616.347 603.91C616.347 604.776 616.05 605.512 615.456 606.118C614.862 606.724 614.021 607.027 612.933 607.027C611.832 607.027 610.991 606.724 610.409 606.118C609.828 605.512 609.537 604.776 609.537 603.91ZM619 619.051V618.457C619 615.761 619.724 613.559 621.171 611.852C622.618 610.132 624.511 609.273 626.849 609.273C628.123 609.273 629.211 609.489 630.114 609.922C631.017 610.343 631.722 610.905 632.229 611.61V600.181H638.074V627.883H632.396L632.322 625.526H632.285C631.815 626.293 631.11 626.943 630.17 627.475C629.23 627.994 628.123 628.254 626.849 628.254C624.424 628.254 622.507 627.394 621.097 625.675C619.699 623.943 619 621.735 619 619.051ZM625.049 619.144C625.049 620.591 625.352 621.766 625.958 622.669C626.564 623.572 627.479 624.024 628.704 624.024C629.545 624.024 630.263 623.789 630.856 623.318C631.45 622.848 631.877 622.292 632.137 621.649V615.804C631.877 615.161 631.456 614.616 630.875 614.171C630.306 613.726 629.589 613.503 628.723 613.503C627.486 613.503 626.564 613.961 625.958 614.876C625.352 615.779 625.049 616.948 625.049 618.383V619.144Z" fill="white"/> +<path d="M554.601 681.651V672.231C554.601 668.782 555.533 666.07 557.397 664.093C559.262 662.116 561.876 661.128 565.241 661.128C568.605 661.128 571.227 662.109 573.105 664.072C574.984 666.02 575.923 668.74 575.923 672.231V681.651C575.923 685.184 574.956 687.925 573.021 689.874C571.087 691.808 568.493 692.768 565.241 692.754C561.862 692.754 559.241 691.787 557.376 689.853C555.526 687.904 554.601 685.17 554.601 681.651ZM561.666 682.787C561.666 684.343 561.953 685.57 562.528 686.467C563.117 687.35 564.028 687.792 565.262 687.792C566.496 687.792 567.4 687.35 567.975 686.467C568.563 685.57 568.858 684.343 568.858 682.787V671.2C568.858 669.616 568.563 668.383 567.975 667.499C567.4 666.602 566.496 666.154 565.262 666.154C564.028 666.154 563.117 666.602 562.528 667.499C561.953 668.383 561.666 669.616 561.666 671.2V682.787ZM578.194 679.591V678.35C578.194 673.079 579.694 668.915 582.694 665.859C585.694 662.789 589.998 661.254 595.606 661.254H596.888V666.784H595.774C592.325 666.784 589.655 667.717 587.762 669.581C585.884 671.432 584.944 674.67 584.944 679.296L585.134 679.969C585.134 683.081 585.519 685.177 586.29 686.257C587.075 687.322 588.106 687.855 589.381 687.855C590.629 687.855 591.582 687.427 592.241 686.572C592.914 685.703 593.251 684.189 593.251 682.03C593.251 680.306 592.928 678.988 592.283 678.077C591.638 677.151 590.664 676.689 589.36 676.689C588.169 676.689 587.159 677.144 586.332 678.056C585.519 678.953 585.113 680.144 585.113 681.63H583.536C583.536 678.827 584.3 676.577 585.828 674.88C587.356 673.17 589.304 672.315 591.673 672.315C594.323 672.315 596.419 673.184 597.961 674.922C599.503 676.647 600.274 679.044 600.274 682.114C600.274 685.366 599.272 687.953 597.267 689.874C595.262 691.794 592.627 692.754 589.36 692.754C586.01 692.754 583.311 691.71 581.264 689.621C579.218 687.532 578.194 684.189 578.194 679.591ZM598.907 694.878L610.767 661.633H616.634L604.753 694.878H598.907ZM615.877 679.591V678.35C615.877 673.079 617.377 668.915 620.377 665.859C623.377 662.789 627.681 661.254 633.288 661.254H634.571V666.784H633.457C630.008 666.784 627.337 667.717 625.445 669.581C623.566 671.432 622.627 674.67 622.627 679.296L622.816 679.969C622.816 683.081 623.202 685.177 623.973 686.257C624.758 687.322 625.788 687.855 627.064 687.855C628.312 687.855 629.265 687.427 629.924 686.572C630.597 685.703 630.933 684.189 630.933 682.03C630.933 680.306 630.611 678.988 629.966 678.077C629.321 677.151 628.347 676.689 627.043 676.689C625.851 676.689 624.842 677.144 624.015 678.056C623.202 678.953 622.795 680.144 622.795 681.63H621.218C621.218 678.827 621.982 676.577 623.51 674.88C625.038 673.17 626.987 672.315 629.356 672.315C632.006 672.315 634.102 673.184 635.644 674.922C637.186 676.647 637.957 679.044 637.957 682.114C637.957 685.366 636.954 687.953 634.95 689.874C632.945 691.794 630.309 692.754 627.043 692.754C623.693 692.754 620.994 691.71 618.947 689.621C616.9 687.532 615.877 684.189 615.877 679.591ZM639.513 671.726C639.513 668.488 640.515 665.915 642.52 664.009C644.539 662.088 647.181 661.128 650.448 661.128C653.784 661.128 656.476 662.172 658.522 664.261C660.583 666.35 661.614 669.693 661.614 674.292V675.532C661.614 680.719 660.114 684.834 657.114 687.876C654.113 690.904 649.81 692.439 644.202 692.481H642.898V687.035H644.034C647.469 687.035 650.118 686.109 651.983 684.259C653.861 682.409 654.8 679.212 654.8 674.67L654.674 673.913C654.674 670.927 654.296 668.88 653.539 667.773C652.782 666.665 651.73 666.112 650.384 666.112C649.151 666.112 648.198 666.539 647.525 667.394C646.866 668.235 646.536 669.707 646.536 671.81C646.536 673.605 646.859 674.943 647.504 675.827C648.148 676.71 649.116 677.151 650.405 677.151C651.625 677.151 652.642 676.717 653.455 675.848C654.282 674.964 654.695 673.78 654.695 672.294H656.167C656.167 675 655.431 677.215 653.959 678.939C652.501 680.663 650.56 681.525 648.134 681.525C645.485 681.525 643.382 680.656 641.826 678.918C640.284 677.179 639.513 674.782 639.513 671.726Z" fill="white"/> +<path d="M72.6781 526.108V523.111C72.6781 513.149 75.4881 505.318 81.1083 499.618C86.7285 493.892 94.5994 491.028 104.721 491.028H108.077V502.175H105.2C99.1541 502.175 94.5195 503.933 91.2965 507.449C88.0736 510.939 86.4621 517.198 86.4621 526.228L86.5021 527.106C86.5021 532.807 87.168 536.602 88.4998 538.493C89.8582 540.384 91.6161 541.33 93.7737 541.33C95.798 541.33 97.4228 540.598 98.648 539.133C99.8733 537.641 100.486 534.671 100.486 530.223C100.486 527 99.9132 524.603 98.7679 523.031C97.6492 521.433 95.9977 520.634 93.8136 520.634C91.7893 520.634 90.0713 521.406 88.6596 522.951C87.2479 524.47 86.542 526.547 86.542 529.184H84.1448C84.1448 523.99 85.6231 519.955 88.5797 517.078C91.5362 514.175 95.0522 512.723 99.1275 512.723C103.789 512.723 107.504 514.268 110.275 517.358C113.045 520.421 114.43 524.842 114.43 530.622C114.43 536.935 112.459 541.889 108.517 545.485C104.574 549.054 99.6202 550.839 93.6538 550.839C87.1546 550.839 82.0272 548.855 78.2716 544.886C74.5426 540.891 72.6781 534.631 72.6781 526.108ZM120.5 511.205C120.5 504.919 122.471 499.991 126.413 496.422C130.355 492.826 135.322 491.028 141.315 491.028C147.788 491.028 152.889 493.013 156.618 496.981C160.373 500.95 162.251 507.21 162.251 515.76V518.716C162.251 528.651 159.441 536.469 153.821 542.169C148.227 547.869 140.357 550.732 130.208 550.759H126.852V539.812H129.729C135.775 539.838 140.41 538.107 143.633 534.618C146.856 531.129 148.467 524.882 148.467 515.879L148.427 514.761C148.427 509.194 147.761 505.465 146.43 503.574C145.098 501.656 143.34 500.697 141.156 500.697C139.131 500.697 137.507 501.443 136.281 502.934C135.056 504.399 134.443 507.289 134.443 511.604C134.443 514.987 135.003 517.464 136.121 519.036C137.267 520.581 138.932 521.353 141.116 521.353C143.14 521.353 144.858 520.607 146.27 519.116C147.708 517.597 148.427 515.52 148.427 512.883H150.745C150.745 518.05 149.28 522.072 146.35 524.949C143.42 527.799 139.904 529.224 135.802 529.224C131.141 529.224 127.425 527.666 124.655 524.549C121.885 521.433 120.5 516.985 120.5 511.205ZM168.721 526.108V523.111C168.721 513.149 171.531 505.318 177.151 499.618C182.771 493.892 190.642 491.028 200.763 491.028H204.12V502.175H201.243C195.197 502.175 190.562 503.933 187.339 507.449C184.116 510.939 182.505 517.198 182.505 526.228L182.545 527.106C182.545 532.807 183.21 536.602 184.542 538.493C185.901 540.384 187.659 541.33 189.816 541.33C191.84 541.33 193.465 540.598 194.69 539.133C195.916 537.641 196.528 534.671 196.528 530.223C196.528 527 195.956 524.603 194.81 523.031C193.692 521.433 192.04 520.634 189.856 520.634C187.832 520.634 186.114 521.406 184.702 522.951C183.29 524.47 182.584 526.547 182.584 529.184H180.187C180.187 523.99 181.666 519.955 184.622 517.078C187.579 514.175 191.095 512.723 195.17 512.723C199.831 512.723 203.547 514.268 206.317 517.358C209.087 520.421 210.472 524.842 210.472 530.622C210.472 536.935 208.501 541.889 204.559 545.485C200.617 549.054 195.663 550.839 189.696 550.839C183.197 550.839 178.07 548.855 174.314 544.886C170.585 540.891 168.721 534.631 168.721 526.108ZM216.542 511.205C216.542 504.919 218.513 499.991 222.455 496.422C226.397 492.826 231.365 491.028 237.358 491.028C243.83 491.028 248.931 493.013 252.66 496.981C256.416 500.95 258.294 507.21 258.294 515.76V518.716C258.294 528.651 255.484 536.469 249.863 542.169C244.27 547.869 236.399 550.732 226.251 550.759H222.895V539.812H225.771C231.818 539.838 236.452 538.107 239.675 534.618C242.898 531.129 244.51 524.882 244.51 515.879L244.47 514.761C244.47 509.194 243.804 505.465 242.472 503.574C241.14 501.656 239.382 500.697 237.198 500.697C235.174 500.697 233.549 501.443 232.324 502.934C231.099 504.399 230.486 507.289 230.486 511.604C230.486 514.987 231.045 517.464 232.164 519.036C233.309 520.581 234.974 521.353 237.158 521.353C239.182 521.353 240.9 520.607 242.312 519.116C243.751 517.597 244.47 515.52 244.47 512.883H246.787C246.787 518.05 245.322 522.072 242.392 524.949C239.462 527.799 235.946 529.224 231.844 529.224C227.183 529.224 223.467 527.666 220.697 524.549C217.927 521.433 216.542 516.985 216.542 511.205ZM287.733 529.863V511.964C287.733 505.278 289.531 500.111 293.127 496.462C296.723 492.813 301.664 490.988 307.95 490.988C314.236 490.988 319.177 492.786 322.773 496.382C326.395 499.951 328.206 505.145 328.206 511.964V529.863C328.206 536.789 326.315 542.023 322.533 545.565C318.777 549.108 313.916 550.866 307.95 550.839C301.611 550.812 296.656 549.041 293.087 545.525C289.518 541.983 287.733 536.762 287.733 529.863ZM301.637 532.7C301.637 535.47 302.157 537.601 303.195 539.093C304.261 540.584 305.846 541.33 307.95 541.33C310.054 541.33 311.639 540.584 312.704 539.093C313.77 537.601 314.303 535.47 314.303 532.7V509.407C314.303 506.584 313.77 504.426 312.704 502.934C311.639 501.443 310.054 500.697 307.95 500.697C305.846 500.697 304.261 501.443 303.195 502.934C302.157 504.426 301.637 506.584 301.637 509.407V532.7ZM357.969 550V535.297L358.408 534.618V509.487H358.089L347.021 528.105H363.402L364.601 527.746H377.426V538.533H334.156V528.625L359.487 491.827H370.754V550H357.969ZM383.136 550V541.33L404.152 519.515C405.75 517.651 407.122 515.746 408.267 513.802C409.413 511.857 409.985 509.846 409.985 507.769C409.985 505.238 409.413 503.427 408.267 502.335C407.122 501.243 405.617 500.697 403.753 500.697C401.808 500.697 400.237 501.336 399.038 502.615C397.839 503.867 397.24 506.331 397.24 510.006V511.644H383.136V508.208C383.136 503.227 385.054 499.112 388.89 495.863C392.725 492.613 397.76 490.988 403.992 490.988C410.518 490.988 415.472 492.44 418.855 495.343C422.238 498.22 423.943 502.135 423.969 507.09C423.969 510.765 423.183 514.055 421.612 516.958C420.067 519.862 417.856 522.818 414.98 525.828L403.952 538.853H425.328V550H383.136ZM431.797 529.863V511.964C431.797 505.278 433.595 500.111 437.191 496.462C440.787 492.813 445.728 490.988 452.014 490.988C458.3 490.988 463.241 492.786 466.836 496.382C470.459 499.951 472.27 505.145 472.27 511.964V529.863C472.27 536.789 470.379 542.023 466.597 545.565C462.841 549.108 457.98 550.866 452.014 550.839C445.674 550.812 440.72 549.041 437.151 545.525C433.582 541.983 431.797 536.762 431.797 529.863ZM445.701 532.7C445.701 535.47 446.22 537.601 447.259 539.093C448.325 540.584 449.909 541.33 452.014 541.33C454.118 541.33 455.703 540.584 456.768 539.093C457.834 537.601 458.366 535.47 458.366 532.7V509.407C458.366 506.584 457.834 504.426 456.768 502.934C455.703 501.443 454.118 500.697 452.014 500.697C449.909 500.697 448.325 501.443 447.259 502.934C446.22 504.426 445.701 506.584 445.701 509.407V532.7ZM501.39 534.178C501.39 530.369 502.402 527.2 504.427 524.669C506.477 522.139 508.675 520.527 511.019 519.835V519.675C508.648 518.61 506.717 516.998 505.226 514.841C503.761 512.657 503.028 509.913 503.028 506.61C503.028 501.842 504.733 498.047 508.142 495.223C511.578 492.4 516.359 490.988 522.486 490.988C528.612 490.988 533.366 492.44 536.749 495.343C540.159 498.22 541.863 501.976 541.863 506.61C541.863 510.02 541.091 512.83 539.546 515.04C538.028 517.225 536.097 518.756 533.753 519.635V519.795C536.176 520.461 538.401 522.072 540.425 524.629C542.476 527.16 543.501 530.343 543.501 534.178C543.501 539.319 541.557 543.381 537.668 546.364C533.806 549.347 528.745 550.839 522.486 550.839C516.2 550.839 511.112 549.347 507.223 546.364C503.334 543.381 501.39 539.319 501.39 534.178ZM515.414 532.66C515.414 535.776 516.026 538.041 517.252 539.452C518.504 540.837 520.235 541.53 522.446 541.53C524.63 541.53 526.335 540.824 527.56 539.412C528.785 538.001 529.398 535.75 529.398 532.66C529.398 529.437 528.745 527.173 527.44 525.868C526.161 524.536 524.497 523.87 522.446 523.87C520.395 523.87 518.703 524.536 517.372 525.868C516.066 527.173 515.414 529.437 515.414 532.66ZM516.333 508.448C516.333 511.138 516.905 513.189 518.051 514.601C519.196 515.986 520.661 516.679 522.446 516.679C524.204 516.679 525.655 515.986 526.801 514.601C527.973 513.189 528.559 511.138 528.559 508.448C528.559 505.731 528.039 503.734 527 502.455C525.988 501.15 524.47 500.497 522.446 500.497C520.421 500.497 518.89 501.123 517.851 502.375C516.839 503.627 516.333 505.651 516.333 508.448ZM549.411 534.178C549.411 530.369 550.423 527.2 552.448 524.669C554.499 522.139 556.696 520.527 559.04 519.835V519.675C556.67 518.61 554.738 516.998 553.247 514.841C551.782 512.657 551.049 509.913 551.049 506.61C551.049 501.842 552.754 498.047 556.163 495.223C559.599 492.4 564.381 490.988 570.507 490.988C576.633 490.988 581.388 492.44 584.77 495.343C588.18 498.22 589.884 501.976 589.884 506.61C589.884 510.02 589.112 512.83 587.567 515.04C586.049 517.225 584.118 518.756 581.774 519.635V519.795C584.198 520.461 586.422 522.072 588.446 524.629C590.497 527.16 591.523 530.343 591.523 534.178C591.523 539.319 589.578 543.381 585.689 546.364C581.827 549.347 576.766 550.839 570.507 550.839C564.221 550.839 559.133 549.347 555.245 546.364C551.356 543.381 549.411 539.319 549.411 534.178ZM563.435 532.66C563.435 535.776 564.048 538.041 565.273 539.452C566.525 540.837 568.256 541.53 570.467 541.53C572.651 541.53 574.356 540.824 575.581 539.412C576.806 538.001 577.419 535.75 577.419 532.66C577.419 529.437 576.766 527.173 575.461 525.868C574.183 524.536 572.518 523.87 570.467 523.87C568.416 523.87 566.725 524.536 565.393 525.868C564.088 527.173 563.435 529.437 563.435 532.66ZM564.354 508.448C564.354 511.138 564.927 513.189 566.072 514.601C567.217 515.986 568.682 516.679 570.467 516.679C572.225 516.679 573.677 515.986 574.822 514.601C575.994 513.189 576.58 511.138 576.58 508.448C576.58 505.731 576.06 503.734 575.022 502.455C574.009 501.15 572.491 500.497 570.467 500.497C568.443 500.497 566.911 501.123 565.872 502.375C564.86 503.627 564.354 505.651 564.354 508.448ZM597.433 534.178C597.433 530.369 598.445 527.2 600.469 524.669C602.52 522.139 604.717 520.527 607.061 519.835V519.675C604.691 518.61 602.76 516.998 601.268 514.841C599.803 512.657 599.071 509.913 599.071 506.61C599.071 501.842 600.775 498.047 604.185 495.223C607.621 492.4 612.402 490.988 618.528 490.988C624.654 490.988 629.409 492.44 632.792 495.343C636.201 498.22 637.906 501.976 637.906 506.61C637.906 510.02 637.133 512.83 635.588 515.04C634.07 517.225 632.139 518.756 629.795 519.635V519.795C632.219 520.461 634.443 522.072 636.467 524.629C638.518 527.16 639.544 530.343 639.544 534.178C639.544 539.319 637.599 543.381 633.711 546.364C629.848 549.347 624.788 550.839 618.528 550.839C612.242 550.839 607.155 549.347 603.266 546.364C599.377 543.381 597.433 539.319 597.433 534.178ZM611.456 532.66C611.456 535.776 612.069 538.041 613.294 539.452C614.546 540.837 616.277 541.53 618.488 541.53C620.672 541.53 622.377 540.824 623.602 539.412C624.827 538.001 625.44 535.75 625.44 532.66C625.44 529.437 624.788 527.173 623.482 525.868C622.204 524.536 620.539 523.87 618.488 523.87C616.437 523.87 614.746 524.536 613.414 525.868C612.109 527.173 611.456 529.437 611.456 532.66ZM612.375 508.448C612.375 511.138 612.948 513.189 614.093 514.601C615.239 515.986 616.704 516.679 618.488 516.679C620.246 516.679 621.698 515.986 622.843 514.601C624.015 513.189 624.601 511.138 624.601 508.448C624.601 505.731 624.082 503.734 623.043 502.455C622.031 501.15 620.512 500.497 618.488 500.497C616.464 500.497 614.932 501.123 613.893 502.375C612.881 503.627 612.375 505.651 612.375 508.448ZM646.413 529.863V511.964C646.413 505.278 648.211 500.111 651.806 496.462C655.402 492.813 660.343 490.988 666.629 490.988C672.915 490.988 677.856 492.786 681.452 496.382C685.075 499.951 686.886 505.145 686.886 511.964V529.863C686.886 536.789 684.995 542.023 681.212 545.565C677.457 549.108 672.596 550.866 666.629 550.839C660.29 550.812 655.336 549.041 651.766 545.525C648.197 541.983 646.413 536.762 646.413 529.863ZM660.317 532.7C660.317 535.47 660.836 537.601 661.875 539.093C662.94 540.584 664.525 541.33 666.629 541.33C668.733 541.33 670.318 540.584 671.384 539.093C672.449 537.601 672.982 535.47 672.982 532.7V509.407C672.982 506.584 672.449 504.426 671.384 502.934C670.318 501.443 668.733 500.697 666.629 500.697C664.525 500.697 662.94 501.443 661.875 502.934C660.836 504.426 660.317 506.584 660.317 509.407V532.7ZM716.965 529.863V511.964C716.965 505.278 718.763 500.111 722.358 496.462C725.954 492.813 730.895 490.988 737.181 490.988C743.467 490.988 748.408 492.786 752.004 496.382C755.627 499.951 757.438 505.145 757.438 511.964V529.863C757.438 536.789 755.547 542.023 751.764 545.565C748.009 549.108 743.148 550.866 737.181 550.839C730.842 550.812 725.888 549.041 722.318 545.525C718.749 541.983 716.965 536.762 716.965 529.863ZM730.869 532.7C730.869 535.47 731.388 537.601 732.427 539.093C733.492 540.584 735.077 541.33 737.181 541.33C739.285 541.33 740.87 540.584 741.936 539.093C743.001 537.601 743.534 535.47 743.534 532.7V509.407C743.534 506.584 743.001 504.426 741.936 502.934C740.87 501.443 739.285 500.697 737.181 500.697C735.077 500.697 733.492 501.443 732.427 502.934C731.388 504.426 730.869 506.584 730.869 509.407V532.7ZM787.2 550V535.297L787.64 534.618V509.487H787.32L776.253 528.105H792.634L793.832 527.746H806.658V538.533H763.388V528.625L788.718 491.827H799.985V550H787.2ZM812.368 550V541.33L833.383 519.515C834.982 517.651 836.353 515.746 837.499 513.802C838.644 511.857 839.217 509.846 839.217 507.769C839.217 505.238 838.644 503.427 837.499 502.335C836.353 501.243 834.848 500.697 832.984 500.697C831.04 500.697 829.468 501.336 828.269 502.615C827.071 503.867 826.471 506.331 826.471 510.006V511.644H812.368V508.208C812.368 503.227 814.286 499.112 818.121 495.863C821.957 492.613 826.991 490.988 833.224 490.988C839.749 490.988 844.704 492.44 848.086 495.343C851.469 498.22 853.174 502.135 853.201 507.09C853.201 510.765 852.415 514.055 850.843 516.958C849.298 519.862 847.088 522.818 844.211 525.828L833.184 538.853H854.559V550H812.368ZM861.028 529.863V511.964C861.028 505.278 862.826 500.111 866.422 496.462C870.018 492.813 874.959 490.988 881.245 490.988C887.531 490.988 892.472 492.786 896.068 496.382C899.69 499.951 901.501 505.145 901.501 511.964V529.863C901.501 536.789 899.61 542.023 895.828 545.565C892.072 549.108 887.211 550.866 881.245 550.839C874.906 550.812 869.951 549.041 866.382 545.525C862.813 541.983 861.028 536.762 861.028 529.863ZM874.932 532.7C874.932 535.47 875.452 537.601 876.49 539.093C877.556 540.584 879.141 541.33 881.245 541.33C883.349 541.33 884.934 540.584 885.999 539.093C887.065 537.601 887.598 535.47 887.598 532.7V509.407C887.598 506.584 887.065 504.426 885.999 502.934C884.934 501.443 883.349 500.697 881.245 500.697C879.141 500.697 877.556 501.443 876.49 502.934C875.452 504.426 874.932 506.584 874.932 509.407V532.7Z" fill="white"/> +<path d="M958.701 286.92C958.83 286.847 958.963 286.763 959.096 286.67C959.188 286.605 959.28 286.532 959.375 286.458C959.409 286.432 959.441 286.406 959.476 286.38C961.15 284.993 963.031 282.098 964.37 278.587C964.376 278.57 964.383 278.553 964.389 278.535C964.485 278.284 964.577 278.03 964.668 277.771C966.65 272.051 967.265 264.751 963.927 258.782C961.828 255.027 958.834 251.88 955.36 249.677C952.38 247.756 950.566 244.511 950.491 240.968C950.435 236.85 949.321 232.652 947.222 228.897C943.914 222.987 937.306 219.688 931.355 218.374C929.273 217.914 927.107 217.631 924.973 217.702C923.494 217.752 921.828 217.873 920.508 218.612C915.98 221.144 909.315 236.078 915.282 246.75C917.382 250.506 920.375 253.652 923.85 255.856C926.829 257.777 928.643 261.022 928.719 264.564C928.775 268.683 929.889 272.88 931.988 276.636C937.955 287.308 954.171 289.45 958.699 286.918L958.701 286.92Z" fill="#FFC900"/> +<path d="M958.701 286.92C958.83 286.847 958.963 286.763 959.096 286.67C959.188 286.605 959.28 286.532 959.375 286.458C959.409 286.432 959.441 286.406 959.476 286.38C961.15 284.993 963.031 282.098 964.37 278.587C964.376 278.57 964.383 278.553 964.389 278.535C964.485 278.284 964.577 278.03 964.668 277.771C966.65 272.051 967.265 264.751 963.927 258.782C961.828 255.027 958.834 251.88 955.36 249.677C952.38 247.756 950.566 244.511 950.491 240.968C950.435 236.85 949.321 232.652 947.222 228.897C943.914 222.987 937.306 219.688 931.355 218.374C929.273 217.914 927.107 217.631 924.973 217.702C923.494 217.752 921.828 217.873 920.508 218.612C915.98 221.144 909.315 236.078 915.282 246.75C917.382 250.506 920.375 253.652 923.85 255.856C926.829 257.777 928.643 261.022 928.719 264.564C928.775 268.683 929.889 272.88 931.988 276.636C937.955 287.308 954.171 289.45 958.699 286.918L958.701 286.92ZM934.211 275.395C932.302 271.978 931.34 268.256 931.303 264.578C931.184 260.16 928.894 256.066 925.153 253.783C922.04 251.824 919.325 248.973 917.461 245.641C912.21 236.247 918.295 222.872 921.711 220.963C925.323 218.943 939.814 220.927 945.016 230.235C946.925 233.651 947.887 237.374 947.924 241.052C947.955 245.517 950.2 249.53 953.986 251.896C957.099 253.855 959.769 256.622 961.678 260.039C966.929 269.432 960.862 282.797 957.372 284.749C953.956 286.658 939.413 284.702 934.211 275.397L934.211 275.395Z" fill="black" stroke="black" stroke-width="0.187907"/> +<path d="M931.222 245.877L932.537 243.695" stroke="black" stroke-width="2.36476" stroke-miterlimit="10" stroke-linecap="round"/> +<path d="M926.489 241.979C929.444 241.969 931.832 239.566 931.823 236.611C931.813 233.656 929.41 231.268 926.455 231.277C923.5 231.287 921.112 233.69 921.121 236.645C921.131 239.6 923.534 241.988 926.489 241.979Z" fill="white" stroke="black" stroke-width="2.06698" stroke-miterlimit="10"/> +<path d="M935.866 236.899C938.821 236.89 941.209 234.487 941.2 231.532C941.191 228.577 938.788 226.189 935.833 226.198C932.878 226.207 930.489 228.61 930.499 231.566C930.508 234.521 932.911 236.909 935.866 236.899Z" fill="white" stroke="black" stroke-width="2.06698" stroke-miterlimit="10"/> +<path d="M935.356 226.423C934.065 228.139 933.993 230.564 935.336 232.378C936.482 233.927 938.357 234.62 940.138 234.33C941.429 232.615 941.501 230.19 940.158 228.375C939.012 226.827 937.137 226.134 935.356 226.423Z" fill="black"/> +<path d="M926.263 231.489C925.022 233.187 924.967 235.56 926.284 237.34C927.37 238.808 929.113 239.499 930.805 239.311C932.046 237.613 932.101 235.239 930.784 233.459C929.698 231.992 927.955 231.301 926.263 231.489Z" fill="black"/> +<path d="M932.85 245.048C934.07 245.376 935.486 245.307 936.663 244.886C937.849 244.461 939.317 243.276 939.963 242.177" stroke="black" stroke-width="2.36476" stroke-miterlimit="10" stroke-linecap="round"/> +<path d="M944.374 276.36C943.969 276.805 943.963 277.568 944.405 277.973C946.18 279.588 948.153 280.984 950.029 282.003C950.378 282.241 950.758 282.139 951.089 281.955C951.254 281.862 951.372 281.685 951.494 281.511C951.808 280.901 951.563 280.274 951.083 280.001C949.336 279.019 947.537 277.746 945.939 276.246C945.495 275.845 944.775 275.921 944.374 276.36Z" fill="black" stroke="black" stroke-width="0.375815" stroke-miterlimit="10"/> +<path d="M941.228 274.083L941.311 274.036C941.843 273.628 941.945 273.028 941.62 272.448C941.165 271.833 940.795 271.169 940.425 270.508C939.731 269.266 939.121 267.978 938.554 266.773C938.313 266.146 937.668 265.966 937.039 266.206C936.412 266.447 936.231 267.093 936.472 267.722C937 269.055 937.742 270.381 938.481 271.706C938.896 272.45 939.268 273.113 939.769 273.813C940.125 274.259 940.726 274.36 941.223 274.083L941.228 274.083Z" fill="black" stroke="black" stroke-width="0.375815" stroke-miterlimit="10"/> +<path d="M935.58 262.258L935.829 262.119C936.243 261.888 936.472 261.326 936.406 260.821C935.994 259.311 935.375 257.81 934.588 256.402C934.218 255.739 933.846 255.076 933.393 254.463C932.985 253.931 932.303 253.875 931.853 254.238C931.321 254.646 931.265 255.327 931.628 255.778C932.036 256.309 932.36 256.889 932.684 257.47C933.378 258.713 933.909 260.046 934.307 261.344C934.382 262.062 935.039 262.455 935.578 262.258L935.58 262.258Z" fill="black" stroke="black" stroke-width="0.375815" stroke-miterlimit="10"/> +<path d="M957.686 278.488C957.944 278.56 958.107 278.469 958.272 278.376C958.603 278.192 958.843 277.841 958.869 277.499C958.983 275.373 958.829 272.957 958.381 270.598C958.268 270.007 957.694 269.568 957.024 269.727C956.433 269.841 955.995 270.414 956.154 271.084C956.592 273.228 956.737 275.431 956.659 277.433C956.642 277.986 957.05 278.518 957.686 278.49L957.686 278.488Z" fill="black" stroke="black" stroke-width="0.375815" stroke-miterlimit="10"/> +<path d="M944.835 247.031C944.208 247.272 944.027 247.918 944.22 248.461C944.506 249.172 944.878 249.835 945.245 250.494C946.032 251.901 946.985 253.214 948.059 254.355C948.374 254.721 948.972 254.82 949.468 254.544L949.717 254.405C950.122 253.961 950.173 253.279 949.813 252.831C948.836 251.858 948.056 250.663 947.362 249.421C947.038 248.841 946.715 248.262 946.473 247.633C946.065 247.101 945.457 246.787 944.833 247.029L944.835 247.031Z" fill="black" stroke="black" stroke-width="0.375815" stroke-miterlimit="10"/> +<path d="M952.762 257.799C952.23 258.207 952.174 258.888 952.453 259.386C953.265 260.452 953.959 261.695 954.655 262.935C955.025 263.598 955.396 264.261 955.68 264.968C955.921 265.595 956.566 265.775 957.196 265.535L957.279 265.487C957.777 265.208 957.96 264.563 957.763 264.02C957.477 263.309 957.059 262.566 956.642 261.819C955.901 260.493 955.077 259.217 954.302 258.022C953.944 257.571 953.214 257.436 952.764 257.799L952.762 257.799Z" fill="black" stroke="black" stroke-width="0.375815" stroke-miterlimit="10"/> +<path d="M945.343 263.216C945.922 262.891 946.105 262.246 945.781 261.668L942.261 255.374C941.937 254.795 941.291 254.612 940.714 254.936C940.137 255.261 939.952 255.906 940.276 256.483L943.796 262.778C944.116 263.359 944.761 263.54 945.343 263.216Z" fill="black" stroke="black" stroke-width="0.375815" stroke-miterlimit="10"/> +<path d="M952.383 275.802C952.962 275.478 953.145 274.832 952.821 274.255L949.301 267.961C948.977 267.381 948.331 267.198 947.754 267.523C947.177 267.847 946.992 268.493 947.316 269.07L950.836 275.364C951.156 275.946 951.801 276.126 952.383 275.802Z" fill="black" stroke="black" stroke-width="0.375815" stroke-miterlimit="10"/> +<path d="M135.11 143.72L143.378 94.9783H156.599L148.328 143.72H135.11ZM196.034 96.0475C192.24 94.6665 188.232 93.9736 184.196 94.0009C171.149 94.0009 161.957 100.603 161.878 110.068C161.806 117.064 168.441 120.966 173.45 123.293C178.591 125.681 180.318 127.202 180.293 129.334C180.261 132.596 176.188 134.086 172.394 134.086C167.107 134.086 164.301 133.34 159.962 131.532L158.262 130.759L156.408 141.656C159.492 143.014 165.197 144.192 171.117 144.252C184.998 144.252 194.009 137.727 194.113 127.62C194.163 122.082 190.648 117.867 183.026 114.393C178.41 112.155 175.584 110.638 175.613 108.357C175.613 106.336 178.007 104.172 183.177 104.172C186.564 104.096 189.93 104.731 193.059 106.037L194.242 106.599L196.034 96.0475ZM229.999 94.9783H219.827C216.677 94.9783 214.318 95.8437 212.935 99.002L193.383 143.471H207.299C207.299 143.471 209.527 137.558 210.039 136.259L226.712 136.279C227.101 137.961 228.296 143.471 228.296 143.471H240.651L229.999 94.9783ZM213.826 126.312C214.917 123.507 219.087 112.704 219.087 112.704C219.008 112.834 220.171 109.884 220.837 108.056L221.73 112.254C221.73 112.254 224.26 123.875 224.787 126.312H213.826ZM123.891 94.9783L110.992 128.1L109.618 121.368C107.218 113.61 99.7362 105.204 91.3711 100.996L103.166 143.471L117.105 143.456L137.847 94.9783H123.827" fill="white"/> +<path d="M98.373 94.9777H77.1708L77 95.9898C93.5668 100.021 104.528 109.759 109.079 121.457L104.449 99.0759C103.649 95.9948 101.333 95.0746 98.4646 94.9677" fill="white"/> +</g> +<defs> +<linearGradient id="paint0_linear_17007_2405" x1="3.00001" y1="333.901" x2="1211" y2="385.21" gradientUnits="userSpaceOnUse"> +<stop stop-color="white" stop-opacity="0.29"/> +<stop offset="1" stop-color="white" stop-opacity="0.12"/> +</linearGradient> +</defs> +</svg> diff --git a/src/assets/cards/index.ts b/src/assets/cards/index.ts new file mode 100644 index 000000000..1b79ed297 --- /dev/null +++ b/src/assets/cards/index.ts @@ -0,0 +1,4 @@ +export { default as CARD_GRADIENT_4 } from './Cart Gradient 4.svg' +export { default as CARD_GRADIENT_5 } from './Cart Gradient 5.png' +export { default as CARD_GRADIENT_9 } from './Cart Gradient 9.svg' +export { default as CARD_GRADIENT_10 } from './Cart Gradient 10.svg' diff --git a/src/assets/index.ts b/src/assets/index.ts index 6cadbffb7..9fee1067e 100644 --- a/src/assets/index.ts +++ b/src/assets/index.ts @@ -1,5 +1,6 @@ export * from './badges' export * from './bg' +export * from './cards' export * from './chains' export * from './exchanges' export * from './icons' diff --git a/src/components/AddMoney/UserDetailsForm.tsx b/src/components/AddMoney/UserDetailsForm.tsx deleted file mode 100644 index 01412bb3f..000000000 --- a/src/components/AddMoney/UserDetailsForm.tsx +++ /dev/null @@ -1,112 +0,0 @@ -'use client' -import { forwardRef, useEffect, useImperativeHandle, useState } from 'react' -import { useForm, Controller } from 'react-hook-form' -import BaseInput from '@/components/0_Bruddle/BaseInput' -import ErrorAlert from '@/components/Global/ErrorAlert' - -export type UserDetailsFormData = { - fullName: string - email: string -} - -interface UserDetailsFormProps { - onSubmit: (data: UserDetailsFormData) => Promise<{ error?: string }> - isSubmitting: boolean - onValidChange?: (isValid: boolean) => void - initialData?: Partial<UserDetailsFormData> -} - -export const UserDetailsForm = forwardRef<{ handleSubmit: () => void }, UserDetailsFormProps>( - ({ onSubmit, onValidChange, initialData }, ref) => { - const [submissionError, setSubmissionError] = useState<string | null>(null) - - const { - control, - handleSubmit, - formState: { errors, isValid }, - } = useForm<UserDetailsFormData>({ - defaultValues: { - fullName: initialData?.fullName ?? '', - email: initialData?.email ?? '', - }, - mode: 'all', - }) - - useEffect(() => { - onValidChange?.(isValid) - }, [isValid, onValidChange]) - - useImperativeHandle(ref, () => ({ - handleSubmit: handleSubmit(async (data) => { - setSubmissionError(null) - const result = await onSubmit(data) - if (result?.error) { - setSubmissionError(result.error) - } - }), - })) - - const renderInput = ( - name: keyof UserDetailsFormData, - placeholder: string, - rules: any, - type: string = 'text' - ) => { - return ( - <div className="w-full"> - <div className="relative"> - <Controller - name={name} - control={control} - rules={rules} - render={({ field }) => ( - <BaseInput - {...field} - type={type} - placeholder={placeholder} - className="h-12 w-full rounded-sm border border-n-1 bg-white px-4 text-sm" - /> - )} - /> - </div> - <div className="mt-2 w-fit text-start"> - {errors[name] && <ErrorAlert description={errors[name]?.message ?? ''} />} - </div> - </div> - ) - } - return ( - <div className="my-auto flex w-full flex-col justify-center space-y-4"> - <div className="space-y-4"> - <form - onSubmit={(e) => { - e.preventDefault() - handleSubmit(async (data) => { - setSubmissionError(null) - const result = await onSubmit(data) - if (result?.error) { - setSubmissionError(result.error) - } - })() - }} - className="space-y-4" - > - <div className="w-full space-y-4"> - {renderInput('fullName', 'Full Name', { required: 'Full name is required' })} - {renderInput('email', 'E-mail', { - required: 'Email is required', - pattern: { - value: /^[A-Z0-9._%+-]+@[A-Z0-9.-]+\.[A-Z]{2,}$/i, - message: 'Invalid email address', - }, - })} - </div> - {submissionError && <ErrorAlert description={submissionError} />} - </form> - </div> - </div> - ) - } -) - -UserDetailsForm.displayName = 'UserDetailsForm' diff --git a/src/components/AddMoney/components/AddMoneyBankDetails.tsx b/src/components/AddMoney/components/AddMoneyBankDetails.tsx index 58adcebd2..fe8631a4c 100644 --- a/src/components/AddMoney/components/AddMoneyBankDetails.tsx +++ b/src/components/AddMoney/components/AddMoneyBankDetails.tsx @@ -135,11 +135,12 @@ export default function AddMoneyBankDetails({ flow = 'add-money' }: IAddMoneyBan return formatCurrencyAmount(amount, onrampCurrency) }, [amount, onrampCurrency, flow]) + const isUk = currentCountryDetails?.id === 'GB' || currentCountryDetails?.iso3 === 'GBR' + const generateBankDetails = async () => { const formattedAmount = formattedCurrencyAmount const isMexico = currentCountryDetails?.id === 'MX' const isUs = currentCountryDetails?.id === 'US' - const isEuro = !isUs && !isMexico let bankDetails = `Bank Transfer Details: Amount: ${formattedAmount} @@ -152,7 +153,7 @@ Beneficiary Address: ${onrampData?.depositInstructions?.bankBeneficiaryAddress} ` } - if (isEuro || isMexico) { + if (!isUs && !isMexico && !isUk) { bankDetails += ` Account Holder Name: ${onrampData?.depositInstructions?.accountHolderName} ` @@ -161,11 +162,19 @@ Account Holder Name: ${onrampData?.depositInstructions?.accountHolderName} // for mexico, include clabe if (isMexico) { bankDetails += ` +Account Holder Name: ${onrampData?.depositInstructions?.accountHolderName} CLABE: ${onrampData?.depositInstructions?.clabe || 'Loading...'}` } - // only include bank address and account details for non-mexico countries - if (!isMexico) { + // uk faster payments + if (isUk) { + bankDetails += ` +Sort Code: ${onrampData?.depositInstructions?.sortCode || 'Loading...'} +Account Number: ${onrampData?.depositInstructions?.accountNumber || 'Loading...'}` + } + + // us and sepa countries + if (!isMexico && !isUk) { bankDetails += ` Bank Address: ${onrampData?.depositInstructions?.bankAddress || 'Loading...'}` @@ -297,45 +306,60 @@ Please use these details to complete your bank transfer.` allowCopy={!!onrampData?.depositInstructions?.clabe} hideBottomBorder /> + ) : isUk ? ( + <> + <PaymentInfoRow + label="Sort Code" + value={onrampData?.depositInstructions?.sortCode || 'N/A'} + allowCopy={!!onrampData?.depositInstructions?.sortCode} + hideBottomBorder + /> + <PaymentInfoRow + label="Account Number" + value={onrampData?.depositInstructions?.accountNumber || 'N/A'} + allowCopy={!!onrampData?.depositInstructions?.accountNumber} + hideBottomBorder + /> + </> ) : ( - <PaymentInfoRow - label={onrampData?.depositInstructions?.bankAccountNumber ? 'Account Number' : 'IBAN'} - value={ - onrampData?.depositInstructions?.bankAccountNumber || - (onrampData?.depositInstructions?.iban - ? formatBankAccountDisplay(onrampData.depositInstructions.iban, 'iban') - : null) || - 'N/A' - } - allowCopy={ - !!( + <> + <PaymentInfoRow + label={onrampData?.depositInstructions?.bankAccountNumber ? 'Account Number' : 'IBAN'} + value={ + onrampData?.depositInstructions?.bankAccountNumber || + (onrampData?.depositInstructions?.iban + ? formatBankAccountDisplay(onrampData.depositInstructions.iban, 'iban') + : null) || + 'N/A' + } + allowCopy={ + !!( + onrampData?.depositInstructions?.bankAccountNumber || + onrampData?.depositInstructions?.iban + ) + } + copyValue={ onrampData?.depositInstructions?.bankAccountNumber || onrampData?.depositInstructions?.iban - ) - } - copyValue={ - onrampData?.depositInstructions?.bankAccountNumber || - onrampData?.depositInstructions?.iban - } - hideBottomBorder - /> - )} - {currentCountryDetails?.id !== 'MX' && ( - <PaymentInfoRow - label={onrampData?.depositInstructions?.bankRoutingNumber ? 'Routing Number' : 'BIC'} - value={ - onrampData?.depositInstructions?.bankRoutingNumber || - onrampData?.depositInstructions?.bic || - 'N/A' - } - allowCopy={ - !!( + } + hideBottomBorder + /> + <PaymentInfoRow + label={onrampData?.depositInstructions?.bankRoutingNumber ? 'Routing Number' : 'BIC'} + value={ onrampData?.depositInstructions?.bankRoutingNumber || - onrampData?.depositInstructions?.bic - ) - } - hideBottomBorder - /> + onrampData?.depositInstructions?.bic || + 'N/A' + } + allowCopy={ + !!( + onrampData?.depositInstructions?.bankRoutingNumber || + onrampData?.depositInstructions?.bic + ) + } + hideBottomBorder + /> + </> )} {isNonUsdCurrency && ( <PaymentInfoRow diff --git a/src/components/AddMoney/components/MantecaAddMoney.tsx b/src/components/AddMoney/components/MantecaAddMoney.tsx index f7e902f18..c5f88bf6b 100644 --- a/src/components/AddMoney/components/MantecaAddMoney.tsx +++ b/src/components/AddMoney/components/MantecaAddMoney.tsx @@ -2,18 +2,18 @@ import { type FC, useEffect, useMemo, useState, useCallback } from 'react' import MantecaDepositShareDetails from '@/components/AddMoney/components/MantecaDepositShareDetails' import InputAmountStep from '@/components/AddMoney/components/InputAmountStep' -import { useParams, useRouter } from 'next/navigation' +import { useParams } from 'next/navigation' import { type CountryData, countryData } from '@/components/AddMoney/consts' import { type MantecaDepositResponseData } from '@/types/manteca.types' -import { MantecaGeoSpecificKycModal } from '@/components/Kyc/InitiateMantecaKYCModal' -import { useMantecaKycFlow } from '@/hooks/useMantecaKycFlow' import { useCurrency } from '@/hooks/useCurrency' import { useAuth } from '@/context/authContext' -import { useWebSocket } from '@/hooks/useWebSocket' import { mantecaApi } from '@/services/manteca' import { parseUnits } from 'viem' import { useQueryClient } from '@tanstack/react-query' import useKycStatus from '@/hooks/useKycStatus' +import { useMultiPhaseKycFlow } from '@/hooks/useMultiPhaseKycFlow' +import { SumsubKycModals } from '@/components/Kyc/SumsubKycModals' +import { InitiateKycModal } from '@/components/Kyc/InitiateKycModal' import { MIN_MANTECA_DEPOSIT_AMOUNT } from '@/constants/payment.consts' import { PEANUT_WALLET_TOKEN_DECIMALS } from '@/constants/zerodev.consts' import { TRANSACTIONS } from '@/constants/query.consts' @@ -28,7 +28,6 @@ type CurrencyDenomination = 'USD' | 'ARS' | 'BRL' | 'MXN' | 'EUR' const MantecaAddMoney: FC = () => { const params = useParams() - const router = useRouter() const queryClient = useQueryClient() // URL state - persisted in query params @@ -57,16 +56,20 @@ const MantecaAddMoney: FC = () => { const [isCreatingDeposit, setIsCreatingDeposit] = useState(false) const [error, setError] = useState<string | null>(null) const [depositDetails, setDepositDetails] = useState<MantecaDepositResponseData>() - const [isKycModalOpen, setIsKycModalOpen] = useState(false) const selectedCountryPath = params.country as string const selectedCountry = useMemo(() => { return countryData.find((country) => country.type === 'country' && country.path === selectedCountryPath) }, [selectedCountryPath]) - const { isMantecaKycRequired } = useMantecaKycFlow({ country: selectedCountry as CountryData }) - const { isUserBridgeKycApproved } = useKycStatus() + const { isUserMantecaKycApproved } = useKycStatus() const currencyData = useCurrency(selectedCountry?.currency ?? 'ARS') - const { user, fetchUser } = useAuth() + const { user } = useAuth() + + // inline sumsub kyc flow for manteca users who need LATAM verification + // regionIntent is NOT passed here to avoid creating a backend record on mount. + // intent is passed at call time: handleInitiateKyc('LATAM') + const sumsubFlow = useMultiPhaseKycFlow({}) + const [showKycModal, setShowKycModal] = useState(false) // validates deposit amount against user's limits // currency comes from country config - hook normalizes it internally @@ -76,18 +79,6 @@ const MantecaAddMoney: FC = () => { currency: selectedCountry?.currency, }) - useWebSocket({ - username: user?.user.username ?? undefined, - autoConnect: !!user?.user.username, - onMantecaKycStatusUpdate: (newStatus) => { - // listen for manteca kyc status updates, either when the user is approved or when the widget is finished to continue with the flow - if (newStatus === 'ACTIVE' || newStatus === 'WIDGET_FINISHED') { - fetchUser() - setIsKycModalOpen(false) - } - }, - }) - // Validate USD amount (min check only - max is handled by limits validation) useEffect(() => { // if user hasn't entered any amount yet, don't show error @@ -118,13 +109,6 @@ const MantecaAddMoney: FC = () => { } }, [step, queryClient]) - const handleKycCancel = () => { - setIsKycModalOpen(false) - if (selectedCountry?.path) { - router.push(`/add-money/${selectedCountry.path}`) - } - } - // Handle displayed amount change - save to URL // This is called by AmountInput with the currently DISPLAYED value const handleDisplayedAmountChange = useCallback( @@ -156,14 +140,8 @@ const MantecaAddMoney: FC = () => { if (!selectedCountry?.currency) return if (isCreatingDeposit) return - // check if we still need to determine KYC status - if (isMantecaKycRequired === null) { - // still loading/determining KYC status, don't proceed yet - return - } - - if (isMantecaKycRequired === true) { - setIsKycModalOpen(true) + if (!isUserMantecaKycApproved) { + setShowKycModal(true) return } @@ -191,14 +169,14 @@ const MantecaAddMoney: FC = () => { } finally { setIsCreatingDeposit(false) } - }, [currentDenomination, selectedCountry, displayedAmount, isMantecaKycRequired, isCreatingDeposit, setUrlState]) - - // handle verification modal opening - useEffect(() => { - if (isMantecaKycRequired) { - setIsKycModalOpen(true) - } - }, [isMantecaKycRequired]) + }, [ + currentDenomination, + selectedCountry, + displayedAmount, + isUserMantecaKycApproved, + isCreatingDeposit, + setUrlState, + ]) // Redirect to inputAmount if depositDetails is accessed without required data (deep link / back navigation) useEffect(() => { @@ -212,6 +190,16 @@ const MantecaAddMoney: FC = () => { if (step === 'inputAmount') { return ( <> + <InitiateKycModal + visible={showKycModal} + onClose={() => setShowKycModal(false)} + onVerify={async () => { + setShowKycModal(false) + await sumsubFlow.handleInitiateKyc('LATAM') + }} + isLoading={sumsubFlow.isLoading} + /> + <SumsubKycModals flow={sumsubFlow} /> <InputAmountStep tokenAmount={displayedAmount} setTokenAmount={handleUsdAmountChange} @@ -226,21 +214,6 @@ const MantecaAddMoney: FC = () => { limitsValidation={limitsValidation} limitsCurrency={limitsValidation.currency} /> - {isKycModalOpen && ( - <MantecaGeoSpecificKycModal - isUserBridgeKycApproved={isUserBridgeKycApproved} - isMantecaModalOpen={isKycModalOpen} - setIsMantecaModalOpen={setIsKycModalOpen} - onClose={handleKycCancel} - onManualClose={handleKycCancel} - onKycSuccess={() => { - // close the modal and let the user continue with amount input - setIsKycModalOpen(false) - fetchUser() - }} - selectedCountry={selectedCountry} - /> - )} </> ) } diff --git a/src/components/AddMoney/components/MantecaDepositShareDetails.tsx b/src/components/AddMoney/components/MantecaDepositShareDetails.tsx index 6f1e2d4af..ab5323573 100644 --- a/src/components/AddMoney/components/MantecaDepositShareDetails.tsx +++ b/src/components/AddMoney/components/MantecaDepositShareDetails.tsx @@ -10,6 +10,7 @@ import { PaymentInfoRow } from '@/components/Payment/PaymentInfoRow' import { Icon } from '@/components/Global/Icons/Icon' import Image from 'next/image' import { Card } from '@/components/0_Bruddle/Card' +import InfoCard from '@/components/Global/InfoCard' import { MANTECA_ARG_DEPOSIT_CUIT, MANTECA_ARG_DEPOSIT_NAME, @@ -110,6 +111,12 @@ const MantecaDepositShareDetails = ({ </div> </div> </Card> + <InfoCard + variant="warning" + icon="alert" + title="Send only from your own account" + description="Deposits from third-party accounts are not supported and funds may be lost." + /> <h2 className="font-bold">Account details</h2> <Card className="space-y-0 rounded-sm px-4"> {depositAddress && ( diff --git a/src/components/AddMoney/consts/index.ts b/src/components/AddMoney/consts/index.ts index 2858c4019..b368d057e 100644 --- a/src/components/AddMoney/consts/index.ts +++ b/src/components/AddMoney/consts/index.ts @@ -2843,7 +2843,9 @@ export const NON_EUR_SEPA_ALPHA2 = new Set( !!c.iso3 && BRIDGE_ALPHA3_TO_ALPHA2[c.iso3] && // exclude usa explicitly; bridge map includes it but it's not sepa - c.iso3 !== 'USA' + c.iso3 !== 'USA' && + // exclude uk explicitly; uses faster payments, not sepa + c.iso3 !== 'GBR' ) .map((c) => ({ alpha2: BRIDGE_ALPHA3_TO_ALPHA2[c.iso3!], currency: c.currency })) .filter((x) => x.alpha2 && x.currency && x.currency !== 'EUR') diff --git a/src/components/AddWithdraw/AddWithdrawCountriesList.tsx b/src/components/AddWithdraw/AddWithdrawCountriesList.tsx index de668ef0d..639b02fd2 100644 --- a/src/components/AddWithdraw/AddWithdrawCountriesList.tsx +++ b/src/components/AddWithdraw/AddWithdrawCountriesList.tsx @@ -12,7 +12,7 @@ import EmptyState from '../Global/EmptyStates/EmptyState' import { useAuth } from '@/context/authContext' import { useEffect, useMemo, useRef, useState } from 'react' import { DynamicBankAccountForm, type IBankAccountDetails } from './DynamicBankAccountForm' -import { addBankAccount, updateUserById } from '@/app/actions/users' +import { addBankAccount } from '@/app/actions/users' import { type BridgeKycStatus } from '@/utils/bridge-accounts.utils' import { type AddBankAccountPayload } from '@/app/actions/types/users.types' import { useWebSocket } from '@/hooks/useWebSocket' @@ -22,11 +22,12 @@ import { getCountryCodeForWithdraw } from '@/utils/withdraw.utils' import { DeviceType, useDeviceType } from '@/hooks/useGetDeviceType' import { useAppDispatch } from '@/redux/hooks' import { bankFormActions } from '@/redux/slices/bank-form-slice' -import { InitiateBridgeKYCModal } from '../Kyc/InitiateBridgeKYCModal' import useKycStatus from '@/hooks/useKycStatus' import KycVerifiedOrReviewModal from '../Global/KycVerifiedOrReviewModal' import { ActionListCard } from '@/components/ActionListCard' import TokenAndNetworkConfirmationModal from '../Global/TokenAndNetworkConfirmationModal' +import { useMultiPhaseKycFlow } from '@/hooks/useMultiPhaseKycFlow' +import { SumsubKycModals } from '@/components/Kyc/SumsubKycModals' interface AddWithdrawCountriesListProps { flow: 'add' | 'withdraw' @@ -48,6 +49,17 @@ const AddWithdrawCountriesList = ({ flow }: AddWithdrawCountriesListProps) => { const { setSelectedBankAccount, amountToWithdraw, setSelectedMethod, setAmountToWithdraw } = useWithdrawFlow() const dispatch = useAppDispatch() + // inline sumsub kyc flow for bridge bank users who need verification + // regionIntent is NOT passed here to avoid creating a backend record on mount. + // intent is passed at call time: handleInitiateKyc('STANDARD') + const sumsubFlow = useMultiPhaseKycFlow({ + onKycSuccess: () => { + setIsKycModalOpen(false) + setView('form') + }, + onManualClose: () => setIsKycModalOpen(false), + }) + // component level states const [view, setView] = useState<'list' | 'form'>(flow === 'withdraw' && amountToWithdraw ? 'form' : 'list') const [isKycModalOpen, setIsKycModalOpen] = useState(false) @@ -135,53 +147,14 @@ const AddWithdrawCountriesList = ({ flow }: AddWithdrawCountriesListProps) => { } // scenario (2): if the user hasn't completed kyc yet + // name and email are now collected by sumsub sdk — no need to save them beforehand if (!isUserKycVerified) { - // update user's name and email if they are not present - const hasNameOnLoad = !!user?.user.fullName - const hasEmailOnLoad = !!user?.user.email - - if (!hasNameOnLoad || !hasEmailOnLoad) { - if (user?.user.userId) { - // Build update payload to only update missing fields - const updatePayload: Record<string, any> = { userId: user.user.userId } - - if (!hasNameOnLoad && rawData.accountOwnerName) { - updatePayload.fullName = rawData.accountOwnerName.trim() - } - - if (!hasEmailOnLoad && rawData.email) { - updatePayload.email = rawData.email.trim() - } - - // Only call update if we have fields to update - if (Object.keys(updatePayload).length > 1) { - const result = await updateUserById(updatePayload) - if (result.error) { - return { error: result.error } - } - try { - await fetchUser() - } catch (err) { - console.error('Failed to refresh user data after update:', err) - } - } - } - } - - setIsKycModalOpen(true) + await sumsubFlow.handleInitiateKyc('STANDARD') } return {} } - const handleKycSuccess = () => { - // only transition to form if this component initiated the KYC modal - if (isKycModalOpen) { - setIsKycModalOpen(false) - setView('form') - } - } - const handleWithdrawMethodClick = (method: SpecificPaymentMethod) => { // preserve method param only if coming from bank send flow (not crypto) const methodQueryParam = isBankFromSend ? `?method=${methodParam}` : '' @@ -312,11 +285,7 @@ const AddWithdrawCountriesList = ({ flow }: AddWithdrawCountriesListProps) => { initialData={{}} error={null} /> - <InitiateBridgeKYCModal - isOpen={isKycModalOpen} - onClose={() => setIsKycModalOpen(false)} - onKycSuccess={handleKycSuccess} - /> + <SumsubKycModals flow={sumsubFlow} /> </div> ) } @@ -431,11 +400,7 @@ const AddWithdrawCountriesList = ({ flow }: AddWithdrawCountriesListProps) => { isKycApprovedModalOpen={showKycStatusModal} onClose={() => setShowKycStatusModal(false)} /> - <InitiateBridgeKYCModal - isOpen={isKycModalOpen} - onClose={() => setIsKycModalOpen(false)} - onKycSuccess={handleKycSuccess} - /> + <SumsubKycModals flow={sumsubFlow} /> </div> ) } diff --git a/src/components/AddWithdraw/AddWithdrawRouterView.tsx b/src/components/AddWithdraw/AddWithdrawRouterView.tsx index 649ebba9b..375479a18 100644 --- a/src/components/AddWithdraw/AddWithdrawRouterView.tsx +++ b/src/components/AddWithdraw/AddWithdrawRouterView.tsx @@ -98,6 +98,7 @@ export const AddWithdrawRouterView: FC<AddWithdrawRouterViewProps> = ({ acc.type === AccountType.IBAN || acc.type === AccountType.US || acc.type === AccountType.CLABE || + acc.type === AccountType.GB || acc.type === AccountType.MANTECA ) ?? [] diff --git a/src/components/AddWithdraw/DynamicBankAccountForm.tsx b/src/components/AddWithdraw/DynamicBankAccountForm.tsx index a2ffab55d..c94b48157 100644 --- a/src/components/AddWithdraw/DynamicBankAccountForm.tsx +++ b/src/components/AddWithdraw/DynamicBankAccountForm.tsx @@ -8,7 +8,13 @@ import BaseInput from '@/components/0_Bruddle/BaseInput' import BaseSelect from '@/components/0_Bruddle/BaseSelect' import { BRIDGE_ALPHA3_TO_ALPHA2, ALL_COUNTRIES_ALPHA3_TO_ALPHA2 } from '@/components/AddMoney/consts' import { useParams, useRouter } from 'next/navigation' -import { validateIban, validateBic, isValidRoutingNumber } from '@/utils/bridge-accounts.utils' +import { + validateIban, + validateBic, + isValidRoutingNumber, + isValidSortCode, + isValidUKAccountNumber, +} from '@/utils/bridge-accounts.utils' import ErrorAlert from '@/components/Global/ErrorAlert' import { getBicFromIban } from '@/app/actions/ibanToBic' import PeanutActionDetailsCard, { type PeanutActionDetailsCardProps } from '../Global/PeanutActionDetailsCard' @@ -35,6 +41,7 @@ export type IBankAccountDetails = { accountNumber: string bic: string routingNumber: string + sortCode: string // uk bank accounts clabe: string street: string city: string @@ -71,7 +78,8 @@ export const DynamicBankAccountForm = forwardRef<{ handleSubmit: () => void }, D ) => { const isMx = country.toUpperCase() === 'MX' const isUs = country.toUpperCase() === 'USA' - const isIban = isUs || isMx ? false : isIBANCountry(country) + const isUk = country.toUpperCase() === 'GB' || country.toUpperCase() === 'GBR' + const isIban = isUs || isMx || isUk ? false : isIBANCountry(country) const { user } = useAuth() const dispatch = useAppDispatch() const [isSubmitting, setIsSubmitting] = useState(false) @@ -107,6 +115,7 @@ export const DynamicBankAccountForm = forwardRef<{ handleSubmit: () => void }, D accountNumber: '', bic: '', routingNumber: '', + sortCode: '', // uk bank accounts clabe: '', street: '', city: '', @@ -162,12 +171,14 @@ export const DynamicBankAccountForm = forwardRef<{ handleSubmit: () => void }, D const isUs = country.toUpperCase() === 'USA' const isMx = country.toUpperCase() === 'MX' - const isIban = isUs || isMx ? false : isIBANCountry(country) + const isUk = country.toUpperCase() === 'GB' || country.toUpperCase() === 'GBR' + const isIban = isUs || isMx || isUk ? false : isIBANCountry(country) let accountType: BridgeAccountType if (isIban) accountType = BridgeAccountType.IBAN else if (isUs) accountType = BridgeAccountType.US else if (isMx) accountType = BridgeAccountType.CLABE + else if (isUk) accountType = BridgeAccountType.GB else throw new Error('Unsupported country') const accountNumber = isMx ? data.clabe : data.accountNumber @@ -193,9 +204,14 @@ export const DynamicBankAccountForm = forwardRef<{ handleSubmit: () => void }, D let bic = data.bic || getValues('bic') const iban = data.iban || getValues('iban') + // uk account numbers may be 6-7 digits, pad to 8 for bridge api + const cleanedAccountNumber = isUk + ? accountNumber.replace(/\s/g, '').padStart(8, '0') + : accountNumber.replace(/\s/g, '') + const payload: Partial<AddBankAccountPayload> = { accountType, - accountNumber: accountNumber.replace(/\s/g, ''), + accountNumber: cleanedAccountNumber, countryCode: isUs ? 'USA' : country.toUpperCase(), countryName: selectedCountry, accountOwnerType: BridgeAccountOwnerType.INDIVIDUAL, @@ -217,11 +233,16 @@ export const DynamicBankAccountForm = forwardRef<{ handleSubmit: () => void }, D payload.routingNumber = data.routingNumber } + if (isUk && data.sortCode) { + payload.sortCode = data.sortCode.replace(/[-\s]/g, '') + } + const result = await onSuccess(payload as AddBankAccountPayload, { ...data, iban: isIban ? data.accountNumber || iban || '' : '', accountNumber: isIban ? '' : data.accountNumber, bic: bic, + sortCode: isUk ? data.sortCode : '', country, firstName: firstName.trim(), lastName: lastName.trim(), @@ -458,16 +479,27 @@ export const DynamicBankAccountForm = forwardRef<{ handleSubmit: () => void }, D } } ) - : renderInput( - 'accountNumber', - 'Account Number', - { - required: 'Account number is required', - validate: async (value: string) => - validateUSBankAccount(value).isValid || 'Invalid account number', - }, - 'text' - )} + : isUk + ? renderInput( + 'accountNumber', + 'Account Number', + { + required: 'Account number is required', + validate: (value: string) => + isValidUKAccountNumber(value) || 'Account number must be 6-8 digits', + }, + 'text' + ) + : renderInput( + 'accountNumber', + 'Account Number', + { + required: 'Account number is required', + validate: async (value: string) => + validateUSBankAccount(value).isValid || 'Invalid account number', + }, + 'text' + )} {isIban && renderInput( @@ -503,8 +535,13 @@ export const DynamicBankAccountForm = forwardRef<{ handleSubmit: () => void }, D validate: async (value: string) => (await isValidRoutingNumber(value)) || 'Invalid routing number', })} + {isUk && + renderInput('sortCode', 'Sort Code', { + required: 'Sort code is required', + validate: (value: string) => isValidSortCode(value) || 'Sort code must be 6 digits', + })} - {!isIban && ( + {!isIban && !isUk && ( <> {renderInput( 'street', diff --git a/src/components/Auth/auth.e2e.test.ts b/src/components/Auth/auth.e2e.test.ts new file mode 100644 index 000000000..a80979f24 --- /dev/null +++ b/src/components/Auth/auth.e2e.test.ts @@ -0,0 +1,106 @@ +import { test, expect } from '@playwright/test' + +/** + * Authentication Flow E2E Tests + * + * Tests basic auth UI flows without actual wallet connections. + * Does NOT test MetaMask/WalletConnect popups (external dependencies). + * + * Focus: UI rendering, navigation, error states + */ + +test.describe('Auth UI Flow', () => { + test('should show auth options when not logged in', async ({ page }) => { + await page.goto('/') + + // look for common auth UI elements + // adjust selectors based on actual implementation + const authElements = [ + page.getByRole('button', { name: /connect|sign in|log in/i }), + page.locator('text=/wallet|authenticate/i'), + ] + + // Check if any auth element is visible + let foundAuthElement = false + for (const el of authElements) { + const visible = await el.isVisible().catch(() => false) + if (visible) { + foundAuthElement = true + break + } + } + + // If no auth UI visible, user might already be logged in or auth is elsewhere + // This is a soft assertion - real implementation varies + // We just log and don't fail since auth UI location varies by implementation + }) + + test('should open auth modal/drawer when connect clicked', async ({ page }) => { + await page.goto('/') + + // find and click connect button + const connectButton = page.getByRole('button', { name: /connect|sign in|log in/i }).first() + + if (await connectButton.isVisible()) { + await connectButton.click() + + // should show modal or drawer with wallet options + // look for common wallet names + await expect(page.locator('text=/metamask|walletconnect|coinbase|rainbow/i').first()).toBeVisible({ + timeout: 5000, + }) + } + }) + + test('should close auth modal when close button clicked', async ({ page }) => { + await page.goto('/') + + // open auth modal + const connectButton = page.getByRole('button', { name: /connect|sign in|log in/i }).first() + + if (await connectButton.isVisible()) { + await connectButton.click() + + // wait for modal to appear + await page.waitForSelector('text=/metamask|walletconnect/i', { timeout: 5000 }) + + // find and click close button + const closeButton = page.getByRole('button', { name: /close|cancel|×/i }).first() + + if (await closeButton.isVisible()) { + await closeButton.click() + + // modal should be closed + await expect(page.locator('text=/metamask|walletconnect/i').first()).not.toBeVisible() + } + } + }) +}) + +test.describe('Auth State Persistence', () => { + test('should maintain auth state across page navigation', async ({ page }) => { + // this test requires actual auth - skip for now + // real auth requires wallet connection which is external dependency + test.skip() + }) + + test('should handle auth state on page refresh', async ({ page }) => { + // skip - requires actual wallet connection + test.skip() + }) +}) + +test.describe('Protected Routes', () => { + test('should redirect unauthenticated users from protected routes', async ({ page }) => { + // try to access a protected route + // adjust route based on actual protected pages + await page.goto('/profile') + + // wait for client-side redirect to occur (useEffect-based auth redirect) + await page.waitForURL(/\/setup|\/home|^\/$/, { timeout: 10000 }) + + // verify user is NOT on the protected route + const url = page.url() + expect(url).not.toContain('/profile') + }) +}) diff --git a/src/components/Badges/badge.utils.ts b/src/components/Badges/badge.utils.ts index 65c82761f..58461b552 100644 --- a/src/components/Badges/badge.utils.ts +++ b/src/components/Badges/badge.utils.ts @@ -13,6 +13,7 @@ const CODE_TO_PATH: Record<string, string> = { BIGGEST_REQUEST_POT: '/badges/biggest_request_pot.svg', SEEDLING_DEVCONNECT_BA_2025: '/badges/seedlings_devconnect.svg', ARBIVERSE_DEVCONNECT_BA_2025: '/badges/arbiverse_devconnect.svg', + CARD_PIONEER: '/badges/peanut-pioneer.png', } // public-facing descriptions for badges (third-person perspective) @@ -28,6 +29,7 @@ const PUBLIC_DESCRIPTIONS: Record<string, string> = { BIGGEST_REQUEST_POT: 'High Roller or Master Beggar? They created the pot with the highest number of contributors.', SEEDLING_DEVCONNECT_BA_2025: 'Peanut Ambassador. They spread the word and brought others into the ecosystem.', ARBIVERSE_DEVCONNECT_BA_2025: 'Peanut 🤝 Arbiverse. They joined us at the amazing Arbiverse booth.', + CARD_PIONEER: 'A true Card Pioneer. Among the first to pay everywhere with Peanut.', } export function getBadgeIcon(code?: string) { diff --git a/src/components/Badges/index.tsx b/src/components/Badges/index.tsx index b97b044eb..b63dfa4f7 100644 --- a/src/components/Badges/index.tsx +++ b/src/components/Badges/index.tsx @@ -9,18 +9,25 @@ import { getCardPosition } from '../Global/Card/card.utils' import EmptyState from '../Global/EmptyStates/EmptyState' import { Icon } from '../Global/Icons/Icon' import ActionModal from '../Global/ActionModal' -import { useMemo, useState } from 'react' +import { useMemo, useState, useEffect } from 'react' import { useUserStore } from '@/redux/hooks' import { ActionListCard } from '../ActionListCard' +import { useAuth } from '@/context/authContext' type BadgeView = { title: string; description: string; logo: string | StaticImageData } export const Badges = () => { const router = useRouter() const { user: authUser } = useUserStore() + const { fetchUser } = useAuth() const [isBadgeModalOpen, setIsBadgeModalOpen] = useState(false) const [selectedBadge, setSelectedBadge] = useState<BadgeView | null>(null) + // TODO: fetchUser from context may not be memoized - could cause unnecessary re-renders + useEffect(() => { + fetchUser() + }, [fetchUser]) + // map api badges to view badges const badges: BadgeView[] = useMemo(() => { // get badges from user object and map to card fields diff --git a/src/components/Card/CardDetailsScreen.tsx b/src/components/Card/CardDetailsScreen.tsx new file mode 100644 index 000000000..42c556c52 --- /dev/null +++ b/src/components/Card/CardDetailsScreen.tsx @@ -0,0 +1,94 @@ +'use client' + +import { Button } from '@/components/0_Bruddle/Button' +import Card from '@/components/Global/Card' +import NavHeader from '@/components/Global/NavHeader' +import Image from 'next/image' +import chillPeanutAnim from '@/animations/GIF_ALPHA_BACKGORUND/512X512_ALPHA_GIF_konradurban_01.gif' + +interface CardDetailsScreenProps { + price: number + currentTier: number + onContinue: () => void + onBack: () => void +} + +const CardDetailsScreen = ({ price, currentTier, onContinue, onBack }: CardDetailsScreenProps) => { + const isDiscounted = currentTier >= 2 + const originalPrice = 10 + + return ( + <div className="flex min-h-[inherit] flex-col gap-8"> + <NavHeader title="How does it work?" onPrev={onBack} /> + + <div className="relative my-auto flex flex-col items-center gap-6"> + {/* Peanut mascot background - matches PaymentSuccessView sizing */} + <Image + src={chillPeanutAnim.src} + alt="" + width={20} + height={20} + className="absolute -top-32 left-1/2 -z-10 h-60 w-60 -translate-x-1/2" + /> + + {/* Steps */} + <div className="relative z-10 w-full space-y-0"> + <Card position="first" className="py-3"> + <p className="text-sm text-black"> + <span className="font-bold">1.</span> You deposit{' '} + {isDiscounted ? ( + <> + <span className="line-through">${originalPrice}</span>{' '} + <span className="font-bold text-purple-1">${price}</span> + </> + ) : ( + <span className="font-bold">${price}</span> + )}{' '} + now to reserve your card + {isDiscounted && ( + <span className="ml-1 text-xs text-purple-1">(because you're tier {currentTier})</span> + )} + </p> + </Card> + <Card position="middle" className="py-3"> + <p className="text-sm text-black"> + <span className="font-bold">2.</span> You'll be first to get your card on April 14th + </p> + </Card> + <Card position="middle" className="py-3"> + <p className="text-sm text-black"> + <span className="font-bold">3.</span> Once you get your Peanut Card, the ${price} becomes + your starter balance! + </p> + </Card> + <Card position="last" className="py-3"> + <p className="text-sm text-black"> + <span className="font-bold">4.</span> Invite people: you get rewarded for every person you + invite, now and forever. + </p> + </Card> + </div> + + {/* FAQ Link */} + <p className="text-sm"> + For full conditions,{' '} + <a + href="https://peanut.me/lp/card#faq" + target="_blank" + rel="noopener noreferrer" + className="text-black underline" + > + read the FAQ + </a> + </p> + + {/* CTA Button */} + <Button variant="purple" shadowSize="4" onClick={onContinue} className="w-full"> + Continue + </Button> + </div> + </div> + ) +} + +export default CardDetailsScreen diff --git a/src/components/Card/CardGeoScreen.tsx b/src/components/Card/CardGeoScreen.tsx new file mode 100644 index 000000000..2f1b9de66 --- /dev/null +++ b/src/components/Card/CardGeoScreen.tsx @@ -0,0 +1,155 @@ +'use client' + +import { Button } from '@/components/0_Bruddle/Button' +import NavHeader from '@/components/Global/NavHeader' +import { Icon } from '@/components/Global/Icons/Icon' +import Card from '@/components/Global/Card' +import InfoCard from '@/components/Global/InfoCard' +import { useRouter } from 'next/navigation' +import { saveRedirectUrl } from '@/utils/general.utils' + +interface CardGeoScreenProps { + isEligible: boolean + eligibilityReason?: string + onContinue: () => void + onInitiatePurchase: () => void + onBack: () => void + purchaseError?: string | null +} + +const CardGeoScreen = ({ + isEligible, + eligibilityReason, + onContinue, + onInitiatePurchase, + onBack, + purchaseError, +}: CardGeoScreenProps) => { + const router = useRouter() + + // State 3: KYC approved but couldn't fetch country - show warning but allow proceeding + const hasKycButNoCountry = !isEligible && eligibilityReason === 'KYC_APPROVED_NO_COUNTRY' + + // State 1 & 2: No KYC or KYC in progress - show verification prompt + // TODO: Replace string matching with structured eligibility codes from backend (e.g., NEEDS_KYC, KYC_IN_PROGRESS) + const needsKycVerification = + !isEligible && + !hasKycButNoCountry && + (eligibilityReason?.toLowerCase().includes('country information not available') || + eligibilityReason?.toLowerCase().includes('please complete kyc')) + + const handleStartVerification = () => { + saveRedirectUrl() + // TODO: Path says "europe" but Bridge covers all regions - consider renaming route or using generic path + router.push('/profile/identity-verification/europe/bridge') + } + + return ( + <div className="flex min-h-[inherit] flex-col gap-8"> + <NavHeader title="Eligibility" onPrev={onBack} /> + + <div className="my-auto flex flex-col gap-6"> + {isEligible ? ( + <> + {/* Eligible State */} + <Card className="flex flex-col items-center gap-4 p-6"> + <div className="flex size-8 items-center justify-center rounded-full bg-success-1"> + <Icon name="check" size={16} /> + </div> + <div className="text-center"> + <h2 className="font-bold">You're Eligible!</h2> + <p className="mt-2 text-sm text-black"> + Great news! Card Pioneers is available in your region. Continue to see how the + program works. + </p> + </div> + </Card> + </> + ) : hasKycButNoCountry ? ( + <> + {/* State 3: KYC approved but couldn't fetch country - show warning but allow proceeding */} + <Card className="flex flex-col items-center gap-4 p-6"> + <div className="flex size-8 items-center justify-center rounded-full bg-success-1"> + <Icon name="check" size={16} /> + </div> + <div className="text-center"> + <h2 className="font-bold">Verification Complete</h2> + <p className="mt-2 text-sm text-black"> + Your identity has been verified. You can proceed with your card reservation. + </p> + </div> + </Card> + + {/* Warning banner - country data not synced yet */} + <InfoCard + variant="warning" + icon="alert" + description="We're still syncing your location data. If you're in an eligible region, you'll be able to complete your purchase." + /> + </> + ) : needsKycVerification ? ( + <> + {/* Needs KYC Verification State */} + <Card className="flex flex-col items-center gap-4 p-6"> + <div className="flex size-8 items-center justify-center rounded-full bg-primary-1"> + <Icon name="shield" size={16} /> + </div> + <div className="text-center"> + <h1 className="font-bold">Verification Required</h1> + <p className="mt-2 text-sm text-black">Card Purchare requires identity verification.</p> + </div> + </Card> + + {/* <div className="flex items-center gap-2"> + <Icon name="info" className="size-4 flex-shrink-0" /> + <p className="text-sm">Verification helps us determine your region eligibility.</p> + </div> */} + </> + ) : ( + <> + {/* Not Eligible State */} + <Card className="flex flex-col items-center gap-4 p-6"> + <div className="flex size-8 items-center justify-center rounded-full bg-yellow-1"> + <Icon name="globe-lock" size={16} /> + </div> + <div className="text-center"> + <h1 className="font-bold">Not Available Yet</h1> + <p className="mt-2 text-sm text-black"> + Card Pioneers isn't available in your region yet. We're working hard to expand + coverage. + </p> + </div> + </Card> + + <div className="flex items-center gap-2"> + <Icon name="info" className="size-4 flex-shrink-0" /> + <p className="text-sm"> + We'll notify you when we launch in your area. In the meantime, keep using Peanut to earn + points! + </p> + </div> + </> + )} + + {purchaseError && <InfoCard variant="error" icon="alert" description={purchaseError} />} + + {/* CTA Buttons */} + {isEligible || hasKycButNoCountry ? ( + <Button variant="purple" shadowSize="4" onClick={onInitiatePurchase} className="w-full"> + Reserve my card + </Button> + ) : needsKycVerification ? ( + <Button variant="purple" shadowSize="4" onClick={handleStartVerification} className="w-full"> + Start Verification + </Button> + ) : ( + <Button variant="stroke" shadowSize="4" onClick={onBack} className="w-full"> + Go Back + </Button> + )} + </div> + </div> + ) +} + +export default CardGeoScreen diff --git a/src/components/Card/CardInfoScreen.tsx b/src/components/Card/CardInfoScreen.tsx new file mode 100644 index 000000000..07bfe5e93 --- /dev/null +++ b/src/components/Card/CardInfoScreen.tsx @@ -0,0 +1,189 @@ +'use client' + +import { Button } from '@/components/0_Bruddle/Button' +import NavHeader from '@/components/Global/NavHeader' +import PioneerCard3D from '@/components/LandingPage/PioneerCard3D' +import { useRouter } from 'next/navigation' +import { useEffect, useState, useRef } from 'react' + +interface CardInfoScreenProps { + onContinue: () => void + hasPurchased: boolean + slotsRemaining?: number + recentPurchases?: number +} + +// Rolling digit component - animates a single digit sliding down using CSS keyframes +const RollingDigit = ({ digit, duration = 400 }: { digit: string; duration?: number }) => { + const [currentDigit, setCurrentDigit] = useState(digit) + const [prevDigit, setPrevDigit] = useState<string | null>(null) + const [animationKey, setAnimationKey] = useState(0) + const prevDigitRef = useRef(digit) + + useEffect(() => { + if (digit !== prevDigitRef.current) { + setPrevDigit(prevDigitRef.current) + setCurrentDigit(digit) + setAnimationKey((k) => k + 1) + prevDigitRef.current = digit + + // Clear prevDigit after animation + const timer = setTimeout(() => { + setPrevDigit(null) + }, duration) + + return () => clearTimeout(timer) + } + }, [digit, duration]) + + const animationStyle = ` + @keyframes slideOut { + from { transform: translateY(0); opacity: 1; } + to { transform: translateY(-100%); opacity: 0; } + } + @keyframes slideIn { + from { transform: translateY(100%); opacity: 0; } + to { transform: translateY(0); opacity: 1; } + } + ` + + return ( + <span className="relative inline-block h-[1.2em] w-[0.65em] overflow-hidden"> + <style>{animationStyle}</style> + {/* Previous digit - slides out */} + {prevDigit !== null && ( + <span + key={`out-${animationKey}`} + className="absolute inset-0 flex items-center justify-center" + style={{ + animation: `slideOut ${duration}ms ease-out forwards`, + }} + > + {prevDigit} + </span> + )} + {/* Current digit - slides in (or static if no animation) */} + <span + key={`in-${animationKey}`} + className="absolute inset-0 flex items-center justify-center" + style={{ + animation: prevDigit !== null ? `slideIn ${duration}ms ease-out forwards` : 'none', + }} + > + {currentDigit} + </span> + </span> + ) +} + +// Rolling number display - splits number into digits and animates each +const RollingNumber = ({ value, duration = 400 }: { value: number; duration?: number }) => { + const digits = String(value).split('') + + return ( + <span className="inline-flex tabular-nums"> + {digits.map((digit, index) => ( + <RollingDigit key={`${digits.length}-${index}`} digit={digit} duration={duration} /> + ))} + </span> + ) +} + +const CardInfoScreen = ({ onContinue, hasPurchased, slotsRemaining, recentPurchases }: CardInfoScreenProps) => { + const router = useRouter() + const [displayValue, setDisplayValue] = useState<number | null>(null) + const timeoutRef = useRef<NodeJS.Timeout | null>(null) + const hasAnimated = useRef(false) + + // Realistic slot decrement: first tick after 4-12s, then every 15-40s + useEffect(() => { + if (slotsRemaining === undefined) return + + // Update display value on refetch without re-triggering the animation + if (hasAnimated.current) { + setDisplayValue(slotsRemaining) + return + } + + hasAnimated.current = true + setDisplayValue(slotsRemaining) + + const scheduleTick = (isFirst: boolean) => { + const delay = isFirst + ? 2000 + Math.random() * 3000 // 2-5 seconds for first tick + : 8000 + Math.random() * 12000 // 8-20 seconds for subsequent ticks + timeoutRef.current = setTimeout(() => { + setDisplayValue((prev) => { + if (prev === null || prev <= 1) return prev + return prev - 1 + }) + scheduleTick(false) + }, delay) + } + + scheduleTick(true) + + return () => { + if (timeoutRef.current) { + clearTimeout(timeoutRef.current) + } + } + }, [slotsRemaining]) + + return ( + <div className="flex min-h-[inherit] flex-col gap-8"> + <NavHeader title="Join Peanut Pioneers" onPrev={() => router.back()} /> + + <div className="my-auto flex flex-col gap-6"> + {/* Description and FAQ link */} + <div> + <p className="text-sm"> + Get access to the best card in the world. Spend globally at the best rates, and get rewarded for + every spend of you and your friends. + </p> + <a + href="https://peanut.to/card/faq" + target="_blank" + rel="noopener noreferrer" + className="mt-2 inline-block text-sm text-black underline" + > + Have a question? Read the FAQ + </a> + </div> + + {/* Card Hero with 3D effect */} + <div className="flex flex-1 flex-col items-center justify-center"> + <PioneerCard3D /> + </div> + + {/* Slots remaining counter */} + {displayValue !== null && ( + <div className="space-y-1 text-center"> + <div className="flex items-center justify-center text-2xl font-bold text-black dark:text-white"> + <RollingNumber value={displayValue} duration={350} /> + <span className="ml-1">slots left</span> + </div> + <p className="text-xs text-black"> + {recentPurchases && recentPurchases > 0 + ? `${recentPurchases} ${recentPurchases === 1 ? 'person' : 'people'} joined in the last 24h` + : 'Join the pioneers today'} + </p> + </div> + )} + + {/* CTA Button */} + {hasPurchased ? ( + <Button variant="purple" shadowSize="4" disabled className="w-full"> + Already a Pioneer + </Button> + ) : ( + <Button variant="purple" shadowSize="4" onClick={onContinue} className="w-full"> + Join Now + </Button> + )} + </div> + </div> + ) +} + +export default CardInfoScreen diff --git a/src/components/Card/CardPioneerModal.tsx b/src/components/Card/CardPioneerModal.tsx new file mode 100644 index 000000000..9e76f1952 --- /dev/null +++ b/src/components/Card/CardPioneerModal.tsx @@ -0,0 +1,94 @@ +'use client' + +import { useEffect, useState } from 'react' +import { useRouter } from 'next/navigation' +import { Button } from '@/components/0_Bruddle/Button' +import BaseModal from '@/components/Global/Modal' +import PioneerCard3D from '@/components/LandingPage/PioneerCard3D' + +const STORAGE_KEY = 'card-pioneer-modal-dismissed' +const DISMISS_DURATION_DAYS = 3 + +interface CardPioneerModalProps { + hasPurchased: boolean +} + +/** + * Popup modal shown to eligible users who haven't purchased Card Pioneer yet. + * Shown on app open, can be dismissed by closing the modal (re-shows after X days). + */ +const CardPioneerModal = ({ hasPurchased }: CardPioneerModalProps) => { + const router = useRouter() + const [isVisible, setIsVisible] = useState(false) + + // Check if modal should be shown + useEffect(() => { + // Don't show if already purchased + // Note: Eligibility check happens during the flow (geo screen), not here + if (hasPurchased) { + return + } + + // Check localStorage for dismissal + const dismissedAt = localStorage.getItem(STORAGE_KEY) + if (dismissedAt) { + const dismissedDate = new Date(dismissedAt) + const now = new Date() + const daysSinceDismissed = (now.getTime() - dismissedDate.getTime()) / (1000 * 60 * 60 * 24) + + if (daysSinceDismissed < DISMISS_DURATION_DAYS) { + return + } + } + + // Show modal with a small delay for better UX + const timer = setTimeout(() => { + setIsVisible(true) + }, 1000) + + return () => clearTimeout(timer) + }, [hasPurchased]) + + const handleDismiss = () => { + localStorage.setItem(STORAGE_KEY, new Date().toISOString()) + setIsVisible(false) + } + + const handleJoinNow = () => { + setIsVisible(false) + router.push('/card') + } + + return ( + <BaseModal + visible={isVisible} + onClose={handleDismiss} + className="items-center justify-center md:mx-auto md:max-w-md" + classWrap="sm:m-auto sm:self-center self-center m-4 bg-white rounded-none !border-0 z-50 max-w-[85%]" + > + <div className="flex flex-col items-center gap-4 p-6 text-center"> + {/* Title */} + <h3 className="text-base font-bold text-black dark:text-white">Become a Pioneer</h3> + + {/* Description */} + <p className="text-sm text-black dark:text-white"> + Join the Peanut Card Pioneers now to earn rewards for every purchase of you and your friends! + </p> + + {/* Card Hero - scaled down for popup */} + <div className="w-full max-w-[240px]"> + <PioneerCard3D /> + </div> + + {/* CTA */} + <div className="w-full space-y-4"> + <Button variant="purple" shadowSize="4" onClick={handleJoinNow} className="w-full"> + Get Early Access + </Button> + </div> + </div> + </BaseModal> + ) +} + +export default CardPioneerModal diff --git a/src/components/Card/CardPurchaseScreen.tsx b/src/components/Card/CardPurchaseScreen.tsx new file mode 100644 index 000000000..4c1b7f7ca --- /dev/null +++ b/src/components/Card/CardPurchaseScreen.tsx @@ -0,0 +1,216 @@ +'use client' + +import { useState, useEffect, useCallback, useRef } from 'react' +import { Button } from '@/components/0_Bruddle/Button' +import NavHeader from '@/components/Global/NavHeader' +import { Icon } from '@/components/Global/Icons/Icon' +import Card from '@/components/Global/Card' +import { cardApi, CardPurchaseError } from '@/services/card' +import Loading from '@/components/Global/Loading' + +interface CardPurchaseScreenProps { + price: number + existingChargeUuid?: string | null + existingPaymentUrl?: string | null + onPurchaseInitiated: (chargeUuid: string, paymentUrl: string) => void + onPurchaseComplete: () => void + onBack: () => void +} + +type PurchaseState = 'idle' | 'creating' | 'awaiting_payment' | 'error' + +const CardPurchaseScreen = ({ + price, + existingChargeUuid, + existingPaymentUrl, + onPurchaseInitiated, + onPurchaseComplete, + onBack, +}: CardPurchaseScreenProps) => { + const [purchaseState, setPurchaseState] = useState<PurchaseState>(existingChargeUuid ? 'awaiting_payment' : 'idle') + const [chargeUuid, setChargeUuid] = useState<string | null>(existingChargeUuid || null) + const [paymentUrl, setPaymentUrl] = useState<string | null>(existingPaymentUrl || null) + const [error, setError] = useState<string | null>(null) + + // Guard against double-submit race condition (React state updates are async, + // so rapid clicks could trigger multiple API calls before state updates) + const isInitiatingRef = useRef(false) + + // Initialize purchase with debounce guard + const initiatePurchase = useCallback(async () => { + if (isInitiatingRef.current) return + isInitiatingRef.current = true + + setPurchaseState('creating') + setError(null) + + try { + const response = await cardApi.purchase() + setChargeUuid(response.chargeUuid) + setPaymentUrl(response.paymentUrl) + onPurchaseInitiated(response.chargeUuid, response.paymentUrl) + setPurchaseState('awaiting_payment') + } catch (err) { + if (err instanceof CardPurchaseError) { + if (err.code === 'ALREADY_PURCHASED') { + // User already purchased, redirect to success + onPurchaseComplete() + return + } + setError(err.message) + } else { + setError('Failed to initiate purchase. Please try again.') + } + setPurchaseState('error') + } finally { + isInitiatingRef.current = false + } + }, [onPurchaseInitiated, onPurchaseComplete]) + + // Open payment URL in new tab + const openPaymentUrl = useCallback(() => { + if (paymentUrl) { + window.open(paymentUrl, '_blank', 'noopener,noreferrer') + } + }, [paymentUrl]) + + // Poll for payment completion with timeout + useEffect(() => { + if (purchaseState !== 'awaiting_payment' || !chargeUuid) return + + let attempts = 0 + const maxAttempts = 40 // 40 attempts * 3s = 2 minutes max + + const pollInterval = setInterval(async () => { + attempts++ + + // Check for timeout + if (attempts > maxAttempts) { + clearInterval(pollInterval) + setError('Payment verification timed out. Please check your transaction status.') + setPurchaseState('error') + return + } + + try { + const info = await cardApi.getInfo() + if (info.hasPurchased) { + clearInterval(pollInterval) + onPurchaseComplete() + } + } catch { + // Ignore polling errors - will retry on next interval + } + }, 3000) + + return () => clearInterval(pollInterval) + }, [purchaseState, chargeUuid, onPurchaseComplete]) + + return ( + <div className="flex min-h-[inherit] flex-col gap-6"> + <NavHeader title="Complete Purchase" onPrev={onBack} /> + + <div className="my-auto flex flex-col gap-6"> + {purchaseState === 'idle' && ( + <> + <Card className="flex flex-col items-center gap-4 p-6"> + <div className="flex size-16 items-center justify-center rounded-full bg-purple-1"> + <Icon name="wallet" size={32} /> + </div> + <div className="text-center"> + <h2 className="text-xl font-bold">Confirm Purchase</h2> + <p className="mt-2 text-sm text-black"> + You're about to reserve your Card Pioneer spot for ${price}. This amount will become + your starter balance when the card launches. + </p> + </div> + </Card> + + {/* Price Summary */} + <Card className="p-4"> + <div className="flex items-center justify-between"> + <span className="text-black">Pioneer Reservation</span> + <span className="text-xl font-bold">${price}</span> + </div> + </Card> + </> + )} + + {purchaseState === 'creating' && ( + <Card className="flex flex-col items-center gap-4 p-6"> + <Loading className="size-12" /> + <div className="text-center"> + <h2 className="text-xl font-bold">Creating Payment...</h2> + <p className="mt-2 text-sm text-black">Setting up your purchase. Please wait.</p> + </div> + </Card> + )} + + {purchaseState === 'awaiting_payment' && ( + <> + <Card className="flex flex-col items-center gap-4 p-6"> + <div className="flex size-16 items-center justify-center rounded-full bg-yellow-1"> + <Icon name="clock" size={32} /> + </div> + <div className="text-center"> + <h2 className="text-xl font-bold">Complete Payment</h2> + <p className="mt-2 text-sm text-black"> + Click below to open the payment page and complete your Pioneer reservation. + </p> + </div> + </Card> + + <Button + variant="stroke" + size="large" + icon="external-link" + onClick={openPaymentUrl} + className="w-full" + > + Open Payment Page + </Button> + + <div className="flex items-center justify-center gap-2 text-sm text-black"> + <Loading className="size-4" /> + <span>Waiting for payment confirmation...</span> + </div> + </> + )} + + {purchaseState === 'error' && ( + <Card className="flex flex-col items-center gap-4 p-6"> + <div className="flex size-16 items-center justify-center rounded-full bg-error-1"> + <Icon name="cancel" size={32} /> + </div> + <div className="text-center"> + <h2 className="text-xl font-bold">Something Went Wrong</h2> + <p className="mt-2 text-sm text-black"> + {error || 'An error occurred while processing your purchase.'} + </p> + </div> + </Card> + )} + + {/* CTA Buttons */} + {purchaseState === 'idle' && ( + <Button variant="purple" shadowSize="4" onClick={initiatePurchase} className="w-full"> + Pay ${price} + </Button> + )} + + {purchaseState === 'error' && ( + <div className="space-y-3"> + <Button variant="purple" shadowSize="4" onClick={initiatePurchase} className="w-full"> + Try Again + </Button> + <Button variant="stroke" onClick={onBack} className="w-full"> + Go Back + </Button> + </div> + )} + </div> + </div> + ) +} + +export default CardPurchaseScreen diff --git a/src/components/Card/CardSuccessScreen.tsx b/src/components/Card/CardSuccessScreen.tsx new file mode 100644 index 000000000..bf8c3bd3c --- /dev/null +++ b/src/components/Card/CardSuccessScreen.tsx @@ -0,0 +1,144 @@ +'use client' + +import { useEffect, useState } from 'react' +import { useRouter } from 'next/navigation' +import { Button } from '@/components/0_Bruddle/Button' +import Card from '@/components/Global/Card' +import { Icon } from '@/components/Global/Icons/Icon' +import InviteFriendsModal from '@/components/Global/InviteFriendsModal' +import { SoundPlayer } from '@/components/Global/SoundPlayer' +import { shootStarConfetti } from '@/utils/confetti' +import { useAuth } from '@/context/authContext' +import Image from 'next/image' +import chillPeanutAnim from '@/animations/GIF_ALPHA_BACKGORUND/512X512_ALPHA_GIF_konradurban_01.gif' + +interface CardSuccessScreenProps { + onViewBadges: () => void +} + +const CardSuccessScreen = ({ onViewBadges }: CardSuccessScreenProps) => { + const [showConfetti, setShowConfetti] = useState(false) + const [isInviteModalOpen, setIsInviteModalOpen] = useState(false) + const { user } = useAuth() + const router = useRouter() + + // Trigger star confetti on mount + useEffect(() => { + if (!showConfetti) { + setShowConfetti(true) + const duration = 2000 + const end = Date.now() + duration + let cancelled = false + + const frame = () => { + if (cancelled) return + + shootStarConfetti({ + particleCount: 20, + origin: { x: 0, y: 0.8 }, + spread: 55, + startVelocity: 30, + ticks: 100, + }) + shootStarConfetti({ + particleCount: 20, + origin: { x: 1, y: 0.8 }, + spread: 55, + startVelocity: 30, + ticks: 100, + }) + + if (Date.now() < end) { + requestAnimationFrame(frame) + } + } + frame() + + return () => { + cancelled = true + } + } + }, [showConfetti]) + + return ( + <> + <div className="flex min-h-[inherit] flex-col justify-between gap-8"> + <SoundPlayer sound="success" /> + + <div className="relative z-10 my-auto flex h-full flex-col justify-center space-y-4"> + {/* Peanut mascot background - matches PaymentSuccessView */} + <Image + src={chillPeanutAnim.src} + alt="Peanut Mascot" + width={20} + height={20} + className="absolute -top-32 left-1/2 -z-10 h-60 w-60 -translate-x-1/2" + /> + + {/* Success card */} + <Card className="flex items-center gap-3 p-4"> + <div className="flex h-12 w-12 min-w-12 items-center justify-center rounded-full bg-success-3 font-bold"> + <Icon name="check" size={24} /> + </div> + <div className="space-y-1"> + <h1 className="text-sm font-normal text-grey-1">You're a Pioneer!</h1> + <h2 className="text-lg font-extrabold">Card Reserved</h2> + </div> + </Card> + + {/* What you unlocked */} + <div className="space-y-0"> + <Card position="first" className="flex items-center gap-3 py-3"> + <div className="flex size-8 items-center justify-center rounded-full bg-purple-1"> + <Icon name="badge" size={16} /> + </div> + <span className="text-sm text-black">Pioneer badge added to your profile</span> + </Card> + <Card position="middle" className="flex items-center gap-3 py-3"> + <div className="flex size-8 items-center justify-center rounded-full bg-purple-1"> + <Icon name="bell" size={16} /> + </div> + <span className="text-sm text-black">Priority access during launch</span> + </Card> + <Card position="middle" className="flex items-center gap-3 py-3"> + <div className="flex size-8 items-center justify-center rounded-full bg-purple-1"> + <Icon name="gift" size={16} /> + </div> + <span className="text-sm text-black">$5 for every friend who joins</span> + </Card> + <Card position="last" className="flex items-center gap-3 py-3"> + <div className="flex size-8 items-center justify-center rounded-full bg-purple-1"> + <Icon name="dollar" size={16} /> + </div> + <span className="text-sm text-black">Earn forever on every purchase</span> + </Card> + </div> + + {/* CTAs */} + <div className="w-full space-y-3"> + <Button + variant="purple" + shadowSize="4" + onClick={() => setIsInviteModalOpen(true)} + className="w-full" + > + <Icon name="share" size={16} className="mr-2" /> + Share Invite Link + </Button> + <Button variant="stroke" onClick={onViewBadges} className="w-full"> + View Your Badges + </Button> + </div> + </div> + </div> + + <InviteFriendsModal + visible={isInviteModalOpen} + onClose={() => setIsInviteModalOpen(false)} + username={user?.user?.username ?? ''} + /> + </> + ) +} + +export default CardSuccessScreen diff --git a/src/components/Claim/Link/MantecaFlowManager.tsx b/src/components/Claim/Link/MantecaFlowManager.tsx index b27e54a4d..e014c639b 100644 --- a/src/components/Claim/Link/MantecaFlowManager.tsx +++ b/src/components/Claim/Link/MantecaFlowManager.tsx @@ -12,9 +12,9 @@ import MantecaReviewStep from './views/MantecaReviewStep' import { Button } from '@/components/0_Bruddle/Button' import { useRouter } from 'next/navigation' import useKycStatus from '@/hooks/useKycStatus' -import { MantecaGeoSpecificKycModal } from '@/components/Kyc/InitiateMantecaKYCModal' -import { useAuth } from '@/context/authContext' -import { type CountryData } from '@/components/AddMoney/consts' +import { useMultiPhaseKycFlow } from '@/hooks/useMultiPhaseKycFlow' +import { SumsubKycModals } from '@/components/Kyc/SumsubKycModals' +import { InitiateKycModal } from '@/components/Kyc/InitiateKycModal' interface MantecaFlowManagerProps { claimLinkData: ClaimLinkData @@ -27,33 +27,23 @@ const MantecaFlowManager: FC<MantecaFlowManagerProps> = ({ claimLinkData, amount const [currentStep, setCurrentStep] = useState<MercadoPagoStep>(MercadoPagoStep.DETAILS) const router = useRouter() const [destinationAddress, setDestinationAddress] = useState('') - const [isKYCModalOpen, setIsKYCModalOpen] = useState(false) - const argentinaCountryData = { - id: 'AR', - type: 'country', - title: 'Argentina', - currency: 'ARS', - path: 'argentina', - iso2: 'AR', - iso3: 'ARG', - } as CountryData + const { isUserMantecaKycApproved } = useKycStatus() - const { isUserMantecaKycApproved, isUserBridgeKycApproved } = useKycStatus() - const { fetchUser } = useAuth() + // inline sumsub kyc flow for manteca users who need LATAM verification + // regionIntent is NOT passed here to avoid creating a backend record on mount. + // intent is passed at call time: handleInitiateKyc('LATAM') + const sumsubFlow = useMultiPhaseKycFlow({}) + const [showKycModal, setShowKycModal] = useState(false) const isSuccess = currentStep === MercadoPagoStep.SUCCESS const selectedCurrency = selectedCountry?.currency || 'ARS' const regionalMethodLogo = regionalMethodType === 'mercadopago' ? MERCADO_PAGO : PIX const logo = selectedCountry?.id ? undefined : regionalMethodLogo - const handleKycCancel = () => { - setIsKYCModalOpen(false) - onPrev() - } - + // show confirmation modal if user hasn't completed manteca verification useEffect(() => { if (!isUserMantecaKycApproved) { - setIsKYCModalOpen(true) + setShowKycModal(true) } }, [isUserMantecaKycApproved]) @@ -125,23 +115,17 @@ const MantecaFlowManager: FC<MantecaFlowManagerProps> = ({ claimLinkData, amount /> {renderStepDetails()} - - {isKYCModalOpen && ( - <MantecaGeoSpecificKycModal - isUserBridgeKycApproved={isUserBridgeKycApproved} - isMantecaModalOpen={isKYCModalOpen} - setIsMantecaModalOpen={setIsKYCModalOpen} - onClose={handleKycCancel} - onManualClose={handleKycCancel} - onKycSuccess={() => { - // close the modal and let the user continue with amount input - setIsKYCModalOpen(false) - fetchUser() - }} - selectedCountry={selectedCountry || argentinaCountryData} - /> - )} </div> + <InitiateKycModal + visible={showKycModal} + onClose={() => setShowKycModal(false)} + onVerify={async () => { + setShowKycModal(false) + await sumsubFlow.handleInitiateKyc('LATAM') + }} + isLoading={sumsubFlow.isLoading} + /> + <SumsubKycModals flow={sumsubFlow} /> </div> ) } diff --git a/src/components/Claim/Link/views/BankFlowManager.view.tsx b/src/components/Claim/Link/views/BankFlowManager.view.tsx index f19e1ccd5..6d601ac8e 100644 --- a/src/components/Claim/Link/views/BankFlowManager.view.tsx +++ b/src/components/Claim/Link/views/BankFlowManager.view.tsx @@ -18,7 +18,7 @@ import { type TCreateOfframpRequest, type TCreateOfframpResponse } from '@/servi import { getOfframpCurrencyConfig } from '@/utils/bridge.utils' import { getBridgeChainName, getBridgeTokenName } from '@/utils/bridge-accounts.utils' import peanut from '@squirrel-labs/peanut-sdk' -import { addBankAccount, getUserById, updateUserById } from '@/app/actions/users' +import { addBankAccount, getUserById } from '@/app/actions/users' import SavedAccountsView from '../../../Common/SavedAccountsView' import { BankClaimType, useDetermineBankClaimType } from '@/hooks/useDetermineBankClaimType' import useSavedAccounts from '@/hooks/useSavedAccounts' @@ -31,8 +31,9 @@ import { getCountryCodeForWithdraw } from '@/utils/withdraw.utils' import { useAppDispatch } from '@/redux/hooks' import { bankFormActions } from '@/redux/slices/bank-form-slice' import { sendLinksApi } from '@/services/sendLinks' -import { InitiateBridgeKYCModal } from '@/components/Kyc/InitiateBridgeKYCModal' import { useSearchParams } from 'next/navigation' +import { useMultiPhaseKycFlow } from '@/hooks/useMultiPhaseKycFlow' +import { SumsubKycModals } from '@/components/Kyc/SumsubKycModals' type BankAccountWithId = IBankAccountDetails & ( @@ -76,6 +77,20 @@ export const BankFlowManager = (props: IClaimScreenProps) => { const { claimLink } = useClaimLink() const dispatch = useAppDispatch() + // inline sumsub kyc flow for users who need verification + // regionIntent is NOT passed here to avoid creating a backend record on mount. + // intent is passed at call time: handleInitiateKyc('STANDARD') + const sumsubFlow = useMultiPhaseKycFlow({ + onKycSuccess: async () => { + if (justCompletedKyc) return + setIsKycModalOpen(false) + await fetchUser() + setJustCompletedKyc(true) + setClaimBankFlowStep(ClaimBankFlowStep.BankDetailsForm) + }, + onManualClose: () => setIsKycModalOpen(false), + }) + // local states for this component const [localBankDetails, setLocalBankDetails] = useState<BankAccountWithId | null>(null) const [receiverFullName, setReceiverFullName] = useState<string>('') @@ -241,23 +256,9 @@ export const BankFlowManager = (props: IClaimScreenProps) => { setError(null) // scenario 1: receiver needs KYC + // name and email are now collected by sumsub sdk — no need to save them beforehand if (bankClaimType === BankClaimType.ReceiverKycNeeded && !justCompletedKyc) { - // update user's name and email if they are not present - const hasNameOnLoad = !!user?.user.fullName - const hasEmailOnLoad = !!user?.user.email - if (!hasNameOnLoad || !hasEmailOnLoad) { - if (user?.user.userId && rawData.firstName && rawData.lastName && rawData.email) { - const result = await updateUserById({ - userId: user.user.userId, - fullName: `${rawData.firstName} ${rawData.lastName}`.trim(), - email: rawData.email, - }) - if (result.error) return { error: result.error } - await fetchUser() - } - } - - setIsKycModalOpen(true) + await sumsubFlow.handleInitiateKyc('STANDARD') return {} } @@ -286,7 +287,7 @@ export const BankFlowManager = (props: IClaimScreenProps) => { ? addBankAccountResponse.data.identifier || '' : '', accountNumber: - addBankAccountResponse.data.type === 'us' + addBankAccountResponse.data.type === 'us' || addBankAccountResponse.data.type === 'gb' ? addBankAccountResponse.data.identifier || '' : '', country: addBankAccountResponse.data.details.countryCode, @@ -294,6 +295,7 @@ export const BankFlowManager = (props: IClaimScreenProps) => { bridgeAccountId: addBankAccountResponse.data.bridgeAccountId, bic: addBankAccountResponse.data.bic ?? '', routingNumber: addBankAccountResponse.data.routingNumber ?? '', + sortCode: addBankAccountResponse.data.sortCode ?? '', firstName: addBankAccountResponse.data.firstName || rawData.firstName, lastName: addBankAccountResponse.data.lastName || rawData.lastName, email: user?.user.email ?? '', @@ -365,6 +367,7 @@ export const BankFlowManager = (props: IClaimScreenProps) => { accountNumber: externalAccountResponse.account_number ?? rawData.accountNumber, bic: externalAccountResponse?.iban?.bic ?? rawData.bic, routingNumber: externalAccountResponse?.account?.routing_number ?? rawData.routingNumber, + sortCode: externalAccountResponse?.account?.sort_code ?? rawData.sortCode ?? '', clabe: externalAccountResponse?.clabe?.account_number ?? rawData.clabe, street: externalAccountResponse?.address?.street_line_1 ?? rawData.street, city: externalAccountResponse?.address?.city ?? rawData.city, @@ -389,19 +392,6 @@ export const BankFlowManager = (props: IClaimScreenProps) => { return {} } - /** - * @name handleKycSuccess - * @description callback for when the KYC process is successfully completed. - */ - const handleKycSuccess = useCallback(async () => { - if (justCompletedKyc) return - - setIsKycModalOpen(false) - await fetchUser() - setJustCompletedKyc(true) - setClaimBankFlowStep(ClaimBankFlowStep.BankDetailsForm) - }, [fetchUser, setClaimBankFlowStep, setIsKycModalOpen, setJustCompletedKyc, justCompletedKyc]) - // main render logic based on the current flow step switch (claimBankFlowStep) { case ClaimBankFlowStep.SavedAccountsList: @@ -420,12 +410,14 @@ export const BankFlowManager = (props: IClaimScreenProps) => { name: account.details.accountOwnerName || user?.user.fullName || '', iban: account.type === 'iban' ? account.identifier || '' : '', clabe: account.type === 'clabe' ? account.identifier || '' : '', - accountNumber: account.type === 'us' ? account.identifier || '' : '', + accountNumber: + account.type === 'us' || account.type === 'gb' ? account.identifier || '' : '', country: account.details.countryCode, id: account.id, bridgeAccountId: account.bridgeAccountId, bic: account.bic ?? '', routingNumber: account.routingNumber ?? '', + sortCode: account.sortCode ?? '', firstName: firstName, lastName: lastName, email: user?.user.email ?? '', @@ -488,11 +480,7 @@ export const BankFlowManager = (props: IClaimScreenProps) => { initialData={{}} error={error} /> - <InitiateBridgeKYCModal - isOpen={isKycModalOpen} - onClose={() => setIsKycModalOpen(false)} - onKycSuccess={handleKycSuccess} - /> + <SumsubKycModals flow={sumsubFlow} /> </div> ) case ClaimBankFlowStep.BankConfirmClaim: diff --git a/src/components/Global/BackendErrorScreen/index.tsx b/src/components/Global/BackendErrorScreen/index.tsx new file mode 100644 index 000000000..12ad64952 --- /dev/null +++ b/src/components/Global/BackendErrorScreen/index.tsx @@ -0,0 +1,103 @@ +'use client' + +import { useAuth } from '@/context/authContext' +import { Button } from '@/components/0_Bruddle/Button' + +// inline peanut icon svg to ensure it works without needing to fetch external assets +const PeanutIcon = ({ className }: { className?: string }) => ( + <svg + xmlns="http://www.w3.org/2000/svg" + viewBox="0 0 291 389" + fill="none" + aria-label="Peanut Logo" + className={className} + > + {/* peanut shape */} + <path + d="M60.3258 45.632C64.7897 43.0841 70.8696 42.4485 77.6753 42.1648L77.6751 42.1639C86.6738 41.7919 95.9563 42.9122 105.073 44.8494C131.211 50.4032 159.276 64.4612 173.241 88.947L173.241 88.948C182.385 105.004 187.299 122.974 187.679 140.59L187.68 140.615L187.681 140.639C188.214 158.799 197.656 175.377 213.007 185.103L213.027 185.115L213.048 185.129C227.987 194.435 240.944 207.825 250.088 223.88L250.089 223.881C264.205 248.652 262.114 279.714 253.648 304.817C253.251 305.963 252.866 307.057 252.469 308.126L252.46 308.151L252.45 308.178C252.436 308.216 252.422 308.255 252.408 308.294C252.395 308.33 252.381 308.367 252.367 308.403C246.631 323.792 238.741 335.81 232.382 341.201C232.326 341.246 232.276 341.285 232.239 341.315C232.158 341.378 232.121 341.409 232.087 341.434L232.052 341.462L232.017 341.489C231.506 341.893 231.256 342.093 231.002 342.275C230.703 342.487 230.41 342.68 230.129 342.856L229.759 343.068C226.058 345.176 218.929 346.766 209.112 346.794C199.522 346.822 188.125 345.356 176.457 342.08C153.35 335.592 130.193 322.32 117.448 300.794L116.849 299.762C107.705 283.706 102.79 265.736 102.41 248.12L102.409 248.096L102.409 248.072C101.876 229.912 92.433 213.335 77.0818 203.609L77.0617 203.595L77.0418 203.583L75.6472 202.699C61.7596 193.736 49.6638 181.222 40.8698 166.328L40.0013 164.831L39.4191 163.79C27.402 141.848 27.7929 115.163 33.9934 91.9808C37.1244 80.275 41.6741 69.7248 46.5873 61.491C51.6171 53.0618 56.6207 47.7423 60.3214 45.6342L60.3258 45.632Z" + fill="#FFC900" + stroke="black" + strokeWidth="12.6195" + /> + + {/* eye lines */} + <path d="M106.78 163.414L112.666 153.471" stroke="black" strokeWidth="8.41298" strokeLinecap="round" /> + + {/* left eye */} + <path + d="M85.1709 145.907C98.5727 145.757 109.316 134.772 109.167 121.37C109.017 107.968 98.0318 97.2252 84.63 97.3746C71.2282 97.524 60.485 108.509 60.6344 121.911C60.7838 135.313 71.7691 146.056 85.1709 145.907Z" + fill="white" + stroke="black" + strokeWidth="8.41298" + /> + + {/* right eye */} + <path + d="M127.511 122.531C140.913 122.382 151.656 111.396 151.507 97.9945C151.357 84.5927 140.372 73.8495 126.97 73.9989C113.569 74.1482 102.825 85.1336 102.975 98.5354C103.124 111.937 114.109 122.68 127.511 122.531Z" + fill="white" + stroke="black" + strokeWidth="8.41298" + /> + + {/* right pupil */} + <path + d="M124.817 75.0371C119.025 82.8635 118.786 93.8654 124.943 102.046C130.198 109.028 138.726 112.102 146.794 110.725C152.587 102.898 152.825 91.8966 146.669 83.7158C141.413 76.7341 132.886 73.66 124.817 75.0371Z" + fill="black" + /> + + {/* left pupil */} + <path + d="M83.7629 98.3403C78.1936 106.086 78.0308 116.853 84.0684 124.879C89.0469 131.494 96.9795 134.564 104.643 133.65C110.213 125.904 110.376 115.137 104.338 107.111C99.3594 100.497 91.4268 97.426 83.7629 98.3403Z" + fill="black" + /> + + {/* smile */} + <path + d="M114.128 159.598C119.673 161.038 126.095 160.674 131.417 158.723C136.777 156.752 143.396 151.325 146.285 146.32" + stroke="black" + strokeWidth="8.41298" + strokeLinecap="round" + /> + </svg> +) + +/** + * full-page error screen shown when backend requests fail after retries + * displays peanut logo and options to retry or log out + */ +export default function BackendErrorScreen() { + const { logoutUser, isLoggingOut } = useAuth() + + const handleRetry = () => { + window.location.reload() + } + + const handleForceLogout = () => { + // Use skipBackendCall since backend is likely down (that's why we're on this screen) + logoutUser({ skipBackendCall: true }) + } + + return ( + <div className="flex h-[100dvh] w-full flex-col items-center justify-center gap-6 bg-background p-6"> + <div className="h-32 w-32 opacity-50 grayscale"> + <PeanutIcon className="h-full w-full" /> + </div> + <div className="flex flex-col items-center gap-2 text-center"> + <h1 className="text-2xl font-bold text-gray-800">Something went wrong</h1> + <p className="max-w-md text-sm text-gray-600">We're having trouble connecting to our servers.</p> + </div> + <div className="flex flex-col items-center gap-6"> + <Button shadowSize="4" icon="retry" size="medium" className="w-fit rounded-full" onClick={handleRetry}> + Try Again + </Button> + <button + onClick={handleForceLogout} + disabled={isLoggingOut} + className="text-sm text-gray-600 underline hover:text-gray-800 disabled:opacity-50" + > + {isLoggingOut ? 'Logging out...' : 'Log out'} + </button> + </div> + </div> + ) +} diff --git a/src/components/Global/Badges/StatusBadge.tsx b/src/components/Global/Badges/StatusBadge.tsx index 8eaf7335d..0aebee174 100644 --- a/src/components/Global/Badges/StatusBadge.tsx +++ b/src/components/Global/Badges/StatusBadge.tsx @@ -41,6 +41,10 @@ const StatusBadge: React.FC<StatusBadgeProps> = ({ status, className, size = 'sm } const getStatusText = () => { + // customText overrides the default label for any status type, + // allowing callers to use a specific status style with custom text + if (customText) return customText + switch (status) { case 'completed': return 'Completed' @@ -59,7 +63,7 @@ const StatusBadge: React.FC<StatusBadgeProps> = ({ status, className, size = 'sm case 'closed': return 'Closed' case 'custom': - return customText + return 'Custom' default: return status } diff --git a/src/components/Global/Banner/index.tsx b/src/components/Global/Banner/index.tsx index 1204c9b1e..0330cac21 100644 --- a/src/components/Global/Banner/index.tsx +++ b/src/components/Global/Banner/index.tsx @@ -18,8 +18,9 @@ export function Banner() { return <MaintenanceBanner /> } - // don't show beta feedback banner on landing page, setup page, or quests pages - if (pathname === '/' || pathname === '/setup' || pathname.startsWith('/quests')) return null + // don't show beta feedback banner on landing pages, setup page, or quests pages + if (pathname === '/' || pathname === '/setup' || pathname.startsWith('/quests') || pathname.startsWith('/lp')) + return null // show beta feedback banner when not in maintenance return <FeedbackBanner /> diff --git a/src/components/Global/FAQs/index.tsx b/src/components/Global/FAQs/index.tsx index de73f8c00..406353b48 100644 --- a/src/components/Global/FAQs/index.tsx +++ b/src/components/Global/FAQs/index.tsx @@ -53,7 +53,7 @@ export function FAQsPanel({ heading, questions }: FAQsProps) { return ( <div className="w-full overflow-x-hidden bg-background"> - <div className="relative px-6 py-20 md:px-8 md:py-36"> + <div className="relative px-6 py-12 md:px-8 md:py-16"> <motion.div initial={{ opacity: 0, translateY: 20 }} animate={{ opacity: 1, translateY: 0 }} diff --git a/src/components/Global/Icons/Icon.tsx b/src/components/Global/Icons/Icon.tsx index 4128a277d..faf8bafb9 100644 --- a/src/components/Global/Icons/Icon.tsx +++ b/src/components/Global/Icons/Icon.tsx @@ -18,6 +18,7 @@ import { CurrencyExchangeRounded, LocalOfferOutlined, CardGiftcardRounded, + CreditCardRounded, HomeRounded, SearchRounded, AccountBalanceWalletRounded, @@ -150,6 +151,7 @@ export type IconName = | 'upload-cloud' | 'alert-filled' | 'paste' + | 'credit-card' export interface IconProps extends SVGProps<SVGSVGElement> { name: IconName size?: number | string @@ -290,6 +292,7 @@ const iconComponents: Record<IconName, ComponentType<SVGProps<SVGSVGElement>>> = 'invite-heart': InviteHeartIcon, 'alert-filled': (props) => <MaterialIconWrapper Icon={WarningRounded} {...props} />, paste: (props) => <MaterialIconWrapper Icon={ContentPasteRounded} {...props} />, + 'credit-card': (props) => <MaterialIconWrapper Icon={CreditCardRounded} {...props} />, } export const Icon: FC<IconProps> = ({ name, size = 24, width, height, ...props }) => { diff --git a/src/components/Global/IframeWrapper/StartVerificationView.tsx b/src/components/Global/IframeWrapper/StartVerificationView.tsx index 5285ec405..abec9c2ea 100644 --- a/src/components/Global/IframeWrapper/StartVerificationView.tsx +++ b/src/components/Global/IframeWrapper/StartVerificationView.tsx @@ -33,10 +33,11 @@ const StartVerificationView = ({ <h1 className="text-3xl font-extrabold">Secure Verification. Limited Data Use.</h1> <div> <p className="mt-2 text-lg font-medium"> - The verification is done by Persona, which only shares a yes/no with Peanut. + The verification is done using a trusted provider, which shares your verification status with + Peanut. </p> <p className="text-lg font-medium"> - Persona is trusted by millions and it operates under strict security and privacy standards. + It operates under industry-standard security and privacy practices. </p> <p className="text-lg font-bold">Peanut never sees or stores your verification data.</p> </div> diff --git a/src/components/Global/IframeWrapper/index.tsx b/src/components/Global/IframeWrapper/index.tsx index f41e820d3..e33a74c9b 100644 --- a/src/components/Global/IframeWrapper/index.tsx +++ b/src/components/Global/IframeWrapper/index.tsx @@ -12,14 +12,15 @@ export type IFrameWrapperProps = { visible: boolean onClose: (source?: 'manual' | 'completed' | 'tos_accepted') => void closeConfirmMessage?: string + skipStartView?: boolean } -const IframeWrapper = ({ src, visible, onClose, closeConfirmMessage }: IFrameWrapperProps) => { +const IframeWrapper = ({ src, visible, onClose, closeConfirmMessage, skipStartView }: IFrameWrapperProps) => { const enableConfirmationPrompt = closeConfirmMessage !== undefined const [isHelpModalOpen, setIsHelpModalOpen] = useState(false) const [modalVariant, setModalVariant] = useState<'stop-verification' | 'trouble'>('trouble') const [copied, setCopied] = useState(false) - const [isVerificationStarted, setIsVerificationStarted] = useState(false) + const [isVerificationStarted, setIsVerificationStarted] = useState(skipStartView ?? false) const router = useRouter() const { setIsSupportModalOpen } = useModalsContext() diff --git a/src/components/Global/InviteFriendsModal/index.tsx b/src/components/Global/InviteFriendsModal/index.tsx new file mode 100644 index 000000000..85c45468c --- /dev/null +++ b/src/components/Global/InviteFriendsModal/index.tsx @@ -0,0 +1,63 @@ +'use client' + +import ActionModal from '@/components/Global/ActionModal' +import Card from '@/components/Global/Card' +import CopyToClipboard from '@/components/Global/CopyToClipboard' +import ShareButton from '@/components/Global/ShareButton' +import { generateInviteCodeLink, generateInvitesShareText } from '@/utils/general.utils' +import QRCode from 'react-qr-code' + +interface InviteFriendsModalProps { + visible: boolean + onClose: () => void + username: string +} + +/** + * Shared modal for inviting friends to Peanut. + * Shows QR code, invite code, and share button. + * + * Used in: CardSuccessScreen, Profile, PointsPage + */ +export default function InviteFriendsModal({ visible, onClose, username }: InviteFriendsModalProps) { + const { inviteCode, inviteLink } = generateInviteCodeLink(username) + + return ( + <ActionModal + visible={visible} + onClose={onClose} + title="Invite friends!" + description="Invite friends to Peanut and help them skip ahead on the waitlist. Once they're onboarded and start using the app, you'll earn rewards from their activity too." + icon="user-plus" + content={ + <> + {inviteLink && ( + <div className="my-2 size-44"> + <QRCode + value={inviteLink} + size={120} + style={{ height: 'auto', maxWidth: '100%', width: '100%' }} + viewBox="0 0 120 120" + level="H" + /> + </div> + )} + <div className="flex w-full items-center justify-between gap-3"> + <Card className="flex items-center justify-between py-2"> + <p className="overflow-hidden text-ellipsis whitespace-nowrap text-sm font-bold"> + {inviteCode} + </p> + <CopyToClipboard textToCopy={inviteCode} iconSize="4" /> + </Card> + </div> + <ShareButton + generateText={() => Promise.resolve(generateInvitesShareText(inviteLink))} + title="Share your invite link" + > + Share Invite Link + </ShareButton> + </> + } + /> + ) +} diff --git a/src/components/Global/InvitesGraph/index.tsx b/src/components/Global/InvitesGraph/index.tsx index 736d19e51..60dfddc9c 100644 --- a/src/components/Global/InvitesGraph/index.tsx +++ b/src/components/Global/InvitesGraph/index.tsx @@ -184,7 +184,7 @@ export default function InvitesGraph(props: InvitesGraphProps) { const { width, height, - backgroundColor = '#f9fafb', + backgroundColor = '#FAF4F0', showUsernames: initialShowUsernames = true, topNodes: initialTopNodes = DEFAULT_TOP_NODES, activityFilter: initialActivityFilter = DEFAULT_ACTIVITY_FILTER, @@ -253,6 +253,12 @@ export default function InvitesGraph(props: InvitesGraphProps) { // topNodes: limit to top N by points (0 = all). Backend-filtered, triggers refetch. const [topNodes, setTopNodes] = useState(initialTopNodes) + // Particle arrival popups for user mode (+1 pt animations) + // Map: linkId → { timestamp, x, y, nodeId } + const particleArrivalsRef = useRef<Map<string, { timestamp: number; x: number; y: number; nodeId: string }>>( + new Map() + ) + // Use passed data in minimal mode, fetched data otherwise // Note: topNodes filtering is now done by backend, no client-side pruning needed // Performance mode: frontend filter to top 1000 without refetch @@ -564,6 +570,17 @@ export default function InvitesGraph(props: InvitesGraphProps) { return map }, [filteredGraphData]) + // Build set of inviter node IDs (nodes that have outgoing invite edges) + // Used in minimal/user mode to show heart icon next to inviter usernames + const inviterNodes = useMemo(() => { + if (!filteredGraphData) return new Set<string>() + const set = new Set<string>() + filteredGraphData.edges.forEach((edge) => { + set.add(edge.source) // source = inviter + }) + return set + }, [filteredGraphData]) + // Build set of node IDs that participate in P2P (for payment mode coloring) // A node is "P2P active" if it's the source or target of any P2P edge const p2pActiveNodes = useMemo(() => { @@ -893,6 +910,7 @@ export default function InvitesGraph(props: InvitesGraphProps) { visibilityConfig, externalNodesConfig, p2pActiveNodes, + inviterNodes, }) useEffect(() => { displaySettingsRef.current = { @@ -904,6 +922,7 @@ export default function InvitesGraph(props: InvitesGraphProps) { visibilityConfig, externalNodesConfig, p2pActiveNodes, + inviterNodes, } }, [ showUsernames, @@ -914,6 +933,7 @@ export default function InvitesGraph(props: InvitesGraphProps) { visibilityConfig, externalNodesConfig, p2pActiveNodes, + inviterNodes, ]) // Helper to determine user activity status @@ -967,11 +987,11 @@ export default function InvitesGraph(props: InvitesGraphProps) { // Colors by type const colors: Record<string, string> = { - WALLET: '#f59e0b', // Orange/amber - BANK: '#3b82f6', // Blue - MERCHANT: '#10b981', // Green/emerald + WALLET: '#FFC900', // secondary-1 (yellow) + BANK: '#90A8ED', // secondary-3 (blue) + MERCHANT: '#BA8BFF', // primary-4 (purple) } - const fillColor = colors[node.externalType] || '#6b7280' + const fillColor = colors[node.externalType] || '#9CA3AF' ctx.globalAlpha = 0.8 ctx.fillStyle = fillColor @@ -1063,23 +1083,23 @@ export default function InvitesGraph(props: InvitesGraphProps) { const { p2pActiveNodes: p2pNodes } = displaySettingsRef.current if (currentMode === 'user') { - // User mode: all nodes same pleasant purple - fillColor = 'rgba(139, 92, 246, 0.9)' // Solid purple for all + // User mode: all nodes same pink (primary-1 #FF90E8), fully opaque + fillColor = 'rgb(255, 144, 232)' // primary-1 } else if (currentMode === 'payment') { // Payment mode: color by P2P participation (sending or receiving) const hasP2PActivity = p2pNodes.has(node.id) fillColor = hasP2PActivity - ? 'rgba(139, 92, 246, 0.85)' // Purple for P2P active + ? 'rgba(255, 144, 232, 0.85)' // primary-1 for P2P active : 'rgba(156, 163, 175, 0.5)' // Grey for no P2P } else if (!filter.enabled) { // No filter - simple active/inactive by access - fillColor = hasAccess ? 'rgba(139, 92, 246, 0.85)' : 'rgba(156, 163, 175, 0.85)' + fillColor = hasAccess ? 'rgba(255, 144, 232, 0.85)' : 'rgba(156, 163, 175, 0.85)' } else { // Activity filter enabled - three states if (activityStatus === 'new') { - fillColor = 'rgba(16, 185, 129, 0.85)' // Green for new signups + fillColor = 'rgba(144, 168, 237, 0.85)' // secondary-3 #90A8ED for new signups } else if (activityStatus === 'active') { - fillColor = 'rgba(139, 92, 246, 0.85)' // Purple for active + fillColor = 'rgba(255, 144, 232, 0.85)' // primary-1 for active } else { // Inactive - exponential time bands with distinct shades const now = Date.now() @@ -1120,7 +1140,7 @@ export default function InvitesGraph(props: InvitesGraphProps) { ctx.globalAlpha = 1 if (isSelected) { // Selected: golden outline - ctx.strokeStyle = '#fbbf24' + ctx.strokeStyle = '#FFC900' ctx.lineWidth = 3 ctx.stroke() } else if (!hasAccess) { @@ -1136,11 +1156,76 @@ export default function InvitesGraph(props: InvitesGraphProps) { if (showNames && (minimal || globalScale > 1.2)) { const label = node.username const fontSize = minimal ? 4 : 12 / globalScale + const { inviterNodes: inviterNodesSet } = displaySettingsRef.current + const isInviter = inviterNodesSet && inviterNodesSet.has(node.id) + ctx.font = `600 ${fontSize}px Inter, system-ui, -apple-system, sans-serif` ctx.textAlign = 'center' ctx.textBaseline = 'middle' ctx.fillStyle = activityStatus === 'inactive' && filter.enabled ? 'rgba(17, 24, 39, 0.3)' : '#111827' - ctx.fillText(label, node.x, node.y + size + fontSize + 2) + + const labelY = node.y + size + fontSize + 2 + + // Render username + ctx.fillText(label, node.x, labelY) + + // Add heart icon for inviters in minimal/user mode + if (minimal && isInviter) { + // Measure text to position heart after it + const textWidth = ctx.measureText(label).width + const heartX = node.x + textWidth / 2 + fontSize * 0.6 + const heartY = labelY + const heartSize = fontSize * 0.7 + + // Draw simple heart shape (pink/magenta) + ctx.save() + ctx.fillStyle = '#FF90E8' + ctx.beginPath() + // Heart shape using two circles and a triangle + const topY = heartY - heartSize * 0.3 + ctx.arc(heartX - heartSize * 0.25, topY, heartSize * 0.3, 0, Math.PI, true) + ctx.arc(heartX + heartSize * 0.25, topY, heartSize * 0.3, 0, Math.PI, true) + ctx.lineTo(heartX + heartSize * 0.5, topY) + ctx.lineTo(heartX, heartY + heartSize * 0.3) + ctx.lineTo(heartX - heartSize * 0.5, topY) + ctx.closePath() + ctx.fill() + ctx.restore() + } + } + + // Render "+1" popups for particle arrivals in user mode + // currentMode is already defined above, reuse it + if (currentMode === 'user' && minimal) { + const now = performance.now() + const popupDuration = 1500 // 1.5 seconds + const arrivals = particleArrivalsRef.current + + // Clean up old arrivals and render active ones + const toDelete: string[] = [] + arrivals.forEach((arrival, linkId) => { + const age = now - arrival.timestamp + if (age > popupDuration) { + toDelete.push(linkId) + } else { + // Render popup with fade-out - start from node center, rise up + const progress = age / popupDuration + const alpha = 1 - progress + const yOffset = -progress * 15 // Rise up 15px from node center + + ctx.save() + ctx.globalAlpha = alpha + ctx.font = 'bold 5px Inter, system-ui, -apple-system, sans-serif' + ctx.fillStyle = '#fbbf24' // Gold color + ctx.textAlign = 'center' + ctx.textBaseline = 'middle' + ctx.fillText('+1 point', arrival.x, arrival.y + yOffset) + ctx.restore() + } + }) + + // Clean up expired arrivals + toDelete.forEach((linkId) => arrivals.delete(linkId)) } }, [getUserActivityStatus] @@ -1211,14 +1296,14 @@ export default function InvitesGraph(props: InvitesGraphProps) { // Get target node type for color const extType = target.externalType || 'WALLET' const lineColors: Record<string, string> = { - WALLET: 'rgba(245, 158, 11, 0.25)', // Orange - BANK: 'rgba(59, 130, 246, 0.25)', // Blue - MERCHANT: 'rgba(16, 185, 129, 0.25)', // Green + WALLET: 'rgba(255, 201, 0, 0.25)', // secondary-1 + BANK: 'rgba(144, 168, 237, 0.25)', // secondary-3 + MERCHANT: 'rgba(186, 139, 255, 0.25)', // primary-4 } const particleColors: Record<string, string> = { - WALLET: 'rgba(245, 158, 11, 0.8)', // Orange - BANK: 'rgba(59, 130, 246, 0.8)', // Blue - MERCHANT: 'rgba(16, 185, 129, 0.8)', // Green + WALLET: 'rgba(255, 201, 0, 0.8)', // secondary-1 + BANK: 'rgba(144, 168, 237, 0.8)', // secondary-3 + MERCHANT: 'rgba(186, 139, 255, 0.8)', // primary-4 } // Convert frequency/volume labels to numeric values for rendering @@ -1233,7 +1318,7 @@ export default function InvitesGraph(props: InvitesGraphProps) { const lineWidth = Math.min(0.4 + txCount * 0.25, 3.0) // Draw base line - ctx.strokeStyle = lineColors[extType] || 'rgba(107, 114, 128, 0.25)' + ctx.strokeStyle = lineColors[extType] || 'rgba(156, 163, 175, 0.25)' ctx.lineWidth = lineWidth ctx.beginPath() ctx.moveTo(source.x, source.y) @@ -1280,7 +1365,7 @@ export default function InvitesGraph(props: InvitesGraphProps) { // P2P: Draw line with animated particles (scaled by activity & volume) // Supports both full mode (count/totalUsd) and anonymized mode (frequency/volume labels) const baseAlpha = inactive ? 0.08 : 0.25 - ctx.strokeStyle = `rgba(6, 182, 212, ${baseAlpha})` + ctx.strokeStyle = `rgba(144, 168, 237, ${baseAlpha})` // Convert frequency/volume labels to numeric values for rendering // Full mode: use actual values; Anonymized mode: map labels to ranges @@ -1314,7 +1399,7 @@ export default function InvitesGraph(props: InvitesGraphProps) { const particleSize = 1.5 + logUsd * 2.25 const isBidirectional = link.bidirectional === true - ctx.fillStyle = 'rgba(6, 182, 212, 0.85)' + ctx.fillStyle = 'rgba(144, 168, 237, 0.85)' for (let i = 0; i < particleCount; i++) { // Forward direction (source → target) @@ -1339,7 +1424,7 @@ export default function InvitesGraph(props: InvitesGraphProps) { } else { // Invite: Draw line with multiple arrows along the edge const isDirect = link.type === 'DIRECT' - const baseColor = isDirect ? [139, 92, 246] : [236, 72, 153] + const baseColor = isDirect ? [255, 144, 232] : [186, 139, 255] const alpha = inactive ? 0.12 : 0.35 const arrowAlpha = inactive ? 0.2 : 0.6 const { mode: currentMode } = displaySettingsRef.current @@ -1362,7 +1447,7 @@ export default function InvitesGraph(props: InvitesGraphProps) { const particleSize = 3 // Gold color for points - ctx.fillStyle = 'rgba(251, 191, 36, 0.9)' // #fbbf24 with alpha + ctx.fillStyle = 'rgba(255, 201, 0, 0.9)' // secondary-1 #FFC900 with alpha for (let i = 0; i < particleCount; i++) { // Flow direction: source → target (invitee → inviter) @@ -1372,6 +1457,22 @@ export default function InvitesGraph(props: InvitesGraphProps) { const t = (time * baseSpeed + i / particleCount) % 1 const px = source.x + (target.x - source.x) * t const py = source.y + (target.y - source.y) * t + + // Detect arrival: when particle is close to target (t > 0.95) + // Track arrival to show "+1 pt" popup + if (t > 0.95 && t < 0.99) { + const linkId = `${link.source.id}_${link.target.id}_${i}` + const arrivals = particleArrivalsRef.current + if (!arrivals.has(linkId)) { + arrivals.set(linkId, { + timestamp: time, + x: target.x, + y: target.y, + nodeId: link.target.id, + }) + } + } + ctx.beginPath() ctx.arc(px, py, particleSize, 0, 2 * Math.PI) ctx.fill() @@ -1465,7 +1566,13 @@ export default function InvitesGraph(props: InvitesGraphProps) { return } - // User node → Select (camera follows) - click again to open Grafana + // User mode: Navigate to user profile in new tab + if (isMinimal && node.username) { + window.open(`/${node.username}`, '_blank') + return + } + + // Full/Payment mode: User node → Select (camera follows) - click again to open Grafana if (selectedUserId === node.id) { // Already selected - open Grafana const username = node.username || node.id @@ -1478,7 +1585,7 @@ export default function InvitesGraph(props: InvitesGraphProps) { setSelectedUserId(node.id) } }, - [selectedUserId] + [selectedUserId, isMinimal] ) // Right-click selects the node (camera follows) @@ -1796,6 +1903,34 @@ export default function InvitesGraph(props: InvitesGraphProps) { return () => clearTimeout(timeout) }, [filteredGraphData]) + // Continuous zoom tracking in minimal mode during simulation settling + useEffect(() => { + if (!isMinimal || !filteredGraphData || !graphRef.current) return + + let frameId: number | null = null + const startTime = Date.now() + const trackDuration = 4000 // Track for 4 seconds (simulation should settle by then) + + const continuousZoom = () => { + const elapsed = Date.now() - startTime + if (elapsed > trackDuration || !graphRef.current) return + + // Zoom to fit every frame during settling - fast animation + graphRef.current.zoomToFit(100, 40) + frameId = requestAnimationFrame(continuousZoom) + } + + // Start tracking immediately after graph mounts + const timeout = setTimeout(() => { + frameId = requestAnimationFrame(continuousZoom) + }, 100) + + return () => { + if (frameId) cancelAnimationFrame(frameId) + clearTimeout(timeout) + } + }, [isMinimal, filteredGraphData]) + // Center on selected node - track continuously as it moves useEffect(() => { if (!selectedUserId || !graphRef.current) return @@ -1998,8 +2133,8 @@ export default function InvitesGraph(props: InvitesGraphProps) { enableZoomInteraction={true} cooldownTicks={Infinity} warmupTicks={0} - d3AlphaDecay={0.005} - d3VelocityDecay={0.6} + d3AlphaDecay={isMinimal ? 0.03 : 0.005} + d3VelocityDecay={isMinimal ? 0.8 : 0.6} d3AlphaMin={0.001} onEngineStop={handleEngineStop} backgroundColor={backgroundColor} @@ -2346,7 +2481,7 @@ export default function InvitesGraph(props: InvitesGraphProps) { d3VelocityDecay={0.6} d3AlphaMin={0.001} onEngineStop={handleEngineStop} - backgroundColor="#f9fafb" + backgroundColor="#FAF4F0" width={graphWidth} height={graphHeight} autoPauseRedraw={false} diff --git a/src/components/Global/NavHeader/index.tsx b/src/components/Global/NavHeader/index.tsx index 043c75029..31b80098a 100644 --- a/src/components/Global/NavHeader/index.tsx +++ b/src/components/Global/NavHeader/index.tsx @@ -62,7 +62,7 @@ const NavHeader = ({ {showLogoutBtn && ( <Button - onClick={logoutUser} + onClick={() => logoutUser()} loading={isLoggingOut} variant="stroke" icon="logout" diff --git a/src/components/Home/HomeCarouselCTA/CarouselCTA.tsx b/src/components/Home/HomeCarouselCTA/CarouselCTA.tsx index 70794417e..88d185867 100644 --- a/src/components/Home/HomeCarouselCTA/CarouselCTA.tsx +++ b/src/components/Home/HomeCarouselCTA/CarouselCTA.tsx @@ -23,6 +23,8 @@ interface CarouselCTAProps { isPermissionDenied?: boolean secondaryIcon?: StaticImageData | string iconSize?: number + // Perk claim indicator - shows pink dot instead of X close button + isPerkClaim?: boolean } const CarouselCTA = ({ @@ -37,6 +39,7 @@ const CarouselCTA = ({ secondaryIcon, iconSize = 22, logoSize = 36, + isPerkClaim, }: CarouselCTAProps) => { const [showPermissionDeniedModal, setShowPermissionDeniedModal] = useState(false) const { triggerHaptic } = useHaptic() @@ -80,18 +83,24 @@ const CarouselCTA = ({ onClick={handleClick} className="embla__slide relative flex flex-row items-center justify-around px-2 py-2 md:py-3" > - {/* Close button - consistent positioning and size */} - <button - type="button" - aria-label={getAriaLabel()} - onClick={handleClose} - className={twMerge( - CAROUSEL_CLOSE_BUTTON_POSITION, - 'z-10 cursor-pointer p-0 text-black outline-none' - )} - > - <Icon name="cancel" size={CAROUSEL_CLOSE_ICON_SIZE} /> - </button> + {/* Close button or pink dot indicator for perk claims */} + {isPerkClaim ? ( + <div className={twMerge(CAROUSEL_CLOSE_BUTTON_POSITION, 'z-10')} aria-label="Claimable perk"> + <div className="h-2.5 w-2.5 rounded-full bg-primary-1" /> + </div> + ) : ( + <button + type="button" + aria-label={getAriaLabel()} + onClick={handleClose} + className={twMerge( + CAROUSEL_CLOSE_BUTTON_POSITION, + 'z-10 cursor-pointer p-0 text-black outline-none' + )} + > + <Icon name="cancel" size={CAROUSEL_CLOSE_ICON_SIZE} /> + </button> + )} {/* Icon container */} <div diff --git a/src/components/Home/HomeCarouselCTA/index.tsx b/src/components/Home/HomeCarouselCTA/index.tsx index 28315ad12..b7867765d 100644 --- a/src/components/Home/HomeCarouselCTA/index.tsx +++ b/src/components/Home/HomeCarouselCTA/index.tsx @@ -1,42 +1,136 @@ 'use client' +import { useState, useCallback, useMemo, useEffect } from 'react' +import { useQuery, useQueryClient } from '@tanstack/react-query' import Carousel from '@/components/Global/Carousel' import CarouselCTA from './CarouselCTA' import { type IconName } from '@/components/Global/Icons/Icon' -import { useHomeCarouselCTAs } from '@/hooks/useHomeCarouselCTAs' +import { useHomeCarouselCTAs, type CarouselCTA as CarouselCTAType } from '@/hooks/useHomeCarouselCTAs' +import { perksApi, type PendingPerk } from '@/services/perks' +import { useAuth } from '@/context/authContext' +import { useWebSocket } from '@/hooks/useWebSocket' +import { extractInviteeName } from '@/utils/general.utils' +import PerkClaimModal from '../PerkClaimModal' +import underMaintenanceConfig from '@/config/underMaintenance.config' const HomeCarouselCTA = () => { const { carouselCTAs, setCarouselCTAs } = useHomeCarouselCTAs() + const { user } = useAuth() + const queryClient = useQueryClient() + + // Perk claim modal state + const [selectedPerk, setSelectedPerk] = useState<PendingPerk | null>(null) + const [claimedPerkIds, setClaimedPerkIds] = useState<Set<string>>(new Set()) + + useEffect(() => { + setClaimedPerkIds(new Set()) + }, [user?.user.userId]) + + // Fetch pending perks + const { data: pendingPerksData } = useQuery({ + queryKey: ['pendingPerks', user?.user.userId], + queryFn: () => perksApi.getPendingPerks(), + enabled: !!user?.user.userId, + }) + + // Listen for real-time perk notifications via WebSocket + useWebSocket({ + username: user?.user.username ?? undefined, + onPendingPerk: useCallback(() => { + queryClient.invalidateQueries({ queryKey: ['pendingPerks'] }) + }, [queryClient]), + }) + + // Filter for Card Pioneer inviter rewards that haven't been claimed + const cardPioneerPerks = useMemo(() => { + if (underMaintenanceConfig.disableCardPioneers) return [] + return ( + pendingPerksData?.perks?.filter( + (p) => p.name === 'Card Pioneer Inviter Reward' && !claimedPerkIds.has(p.id) + ) || [] + ) + }, [pendingPerksData?.perks, claimedPerkIds]) + + // Convert perks to carousel CTAs (these come first!) + const perkCTAs: CarouselCTAType[] = useMemo(() => { + return cardPioneerPerks.map((perk) => { + const inviteeName = extractInviteeName(perk.reason) + return { + id: `perk-${perk.id}`, + title: ( + <p> + <b>+${perk.amountUsd}</b> reward ready! + </p> + ), + description: ( + <p> + <b>{inviteeName}</b> joined Pioneers. Tap to claim. + </p> + ), + icon: 'gift' as IconName, + iconContainerClassName: 'bg-primary-1', + onClick: () => setSelectedPerk(perk), + isPerkClaim: true, + iconSize: 16, + } + }) + }, [cardPioneerPerks]) + + // Combine perk CTAs (first) with regular CTAs + const allCTAs = useMemo(() => { + return [...perkCTAs, ...carouselCTAs] + }, [perkCTAs, carouselCTAs]) + + const handlePerkClaimed = useCallback((perkId: string) => { + setClaimedPerkIds((prev) => new Set(prev).add(perkId)) + }, []) + + const handleModalClose = useCallback(() => { + setSelectedPerk(null) + }, []) // don't render carousel if there are no CTAs - if (!carouselCTAs.length) return null + if (!allCTAs.length) return null return ( - <Carousel> - {carouselCTAs.map((cta) => ( - <CarouselCTA - key={cta.id} - title={cta.title} - description={cta.description} - icon={cta.icon as IconName} - onClose={() => { - // Use cta.onClose if provided (for notification prompt), otherwise filter from list - if (cta.onClose) { - cta.onClose() - } else { - setCarouselCTAs((prev) => prev.filter((c) => c.id !== cta.id)) - } - }} - onClick={cta.onClick} - logo={cta.logo} - iconContainerClassName={cta.iconContainerClassName} - isPermissionDenied={cta.isPermissionDenied} - secondaryIcon={cta.secondaryIcon} - iconSize={16} - logoSize={cta.logoSize} + <> + <Carousel> + {allCTAs.map((cta) => ( + <CarouselCTA + key={cta.id} + title={cta.title} + description={cta.description} + icon={cta.icon as IconName} + onClose={() => { + // Use cta.onClose if provided (for notification prompt), otherwise filter from list + if (cta.onClose) { + cta.onClose() + } else { + setCarouselCTAs((prev) => prev.filter((c) => c.id !== cta.id)) + } + }} + onClick={cta.onClick} + logo={cta.logo} + iconContainerClassName={cta.iconContainerClassName} + isPermissionDenied={cta.isPermissionDenied} + secondaryIcon={cta.secondaryIcon} + iconSize={16} + logoSize={cta.logoSize} + isPerkClaim={cta.isPerkClaim} + /> + ))} + </Carousel> + + {/* Perk Claim Modal */} + {selectedPerk && ( + <PerkClaimModal + perk={selectedPerk} + visible={!!selectedPerk} + onClose={handleModalClose} + onClaimed={handlePerkClaimed} /> - ))} - </Carousel> + )} + </> ) } diff --git a/src/components/Home/HomeHistory.tsx b/src/components/Home/HomeHistory.tsx index e73e916c7..9a5a67c57 100644 --- a/src/components/Home/HomeHistory.tsx +++ b/src/components/Home/HomeHistory.tsx @@ -13,8 +13,10 @@ import { twMerge } from 'tailwind-merge' import Card from '../Global/Card' import { type CardPosition, getCardPosition } from '../Global/Card/card.utils' import EmptyState from '../Global/EmptyStates/EmptyState' -import { KycStatusItem } from '../Kyc/KycStatusItem' -import { isKycStatusItem, type KycHistoryEntry } from '@/hooks/useBridgeKycFlow' +import { KycStatusItem, isKycStatusItem, type KycHistoryEntry } from '../Kyc/KycStatusItem' +import { groupKycByRegion } from '@/utils/kyc-grouping.utils' +import { BridgeTosReminder } from '../Kyc/BridgeTosReminder' +import { useBridgeTosStatus } from '@/hooks/useBridgeTosStatus' import { useWallet } from '@/hooks/wallet/useWallet' import { BadgeStatusItem } from '@/components/Badges/BadgeStatusItem' import { isBadgeHistoryItem } from '@/components/Badges/badge.types' @@ -43,6 +45,7 @@ const HomeHistory = ({ username, hideTxnAmount = false }: { username?: string; h const { fetchBalance } = useWallet() const { triggerHaptic } = useHaptic() const { fetchUser } = useAuth() + const { needsBridgeTos } = useBridgeTosStatus() const isViewingOwnHistory = useMemo( () => (isLoggedIn && !username) || (isLoggedIn && username === user?.user.username), @@ -177,32 +180,10 @@ const HomeHistory = ({ username, hideTxnAmount = false }: { username?: string; h } } - // Add KYC status item if applicable and the user is - // viewing their own history - if (isViewingOwnHistory) { - if (user?.user?.bridgeKycStatus && user.user.bridgeKycStatus !== 'not_started') { - // Use appropriate timestamp based on KYC status - const bridgeKycTimestamp = (() => { - const status = user.user.bridgeKycStatus - if (status === 'approved') return user.user.bridgeKycApprovedAt - if (status === 'rejected') return user.user.bridgeKycRejectedAt - return user.user.bridgeKycStartedAt - })() - entries.push({ - isKyc: true, - timestamp: bridgeKycTimestamp ?? user.user.createdAt ?? new Date().toISOString(), - uuid: 'bridge-kyc-status-item', - bridgeKycStatus: user.user.bridgeKycStatus, - }) - } - user?.user.kycVerifications?.forEach((verification) => { - entries.push({ - isKyc: true, - timestamp: verification.approvedAt ?? verification.updatedAt ?? verification.createdAt, - uuid: verification.providerUserId ?? `${verification.provider}-${verification.mantecaGeo}`, - verification, - }) - }) + // add one kyc entry per region (STANDARD, LATAM) + if (isViewingOwnHistory && user?.user) { + const regionEntries = groupKycByRegion(user.user) + entries.push(...regionEntries) } // Check cancellation before setting state @@ -270,39 +251,31 @@ const HomeHistory = ({ username, hideTxnAmount = false }: { username?: string; h return ( <div className="mx-auto mt-6 w-full space-y-3 md:max-w-2xl"> <h2 className="text-base font-bold">Activity</h2> + {isViewingOwnHistory && needsBridgeTos && <BridgeTosReminder />} {isViewingOwnHistory && - ((user?.user.bridgeKycStatus && user?.user.bridgeKycStatus !== 'not_started') || - (user?.user.kycVerifications && user?.user.kycVerifications.length > 0)) && ( - <div className="space-y-3"> - {user?.user.bridgeKycStatus && user?.user.bridgeKycStatus !== 'not_started' && ( - <KycStatusItem - position="single" - bridgeKycStatus={user.user.bridgeKycStatus} - bridgeKycStartedAt={user.user.bridgeKycStartedAt} - /> - )} - {user?.user.kycVerifications?.map((verification) => ( - <KycStatusItem - key={ - verification.providerUserId ?? - `${verification.provider}-${verification.mantecaGeo}` - } - position="single" - verification={verification} - /> - ))} - </div> - )} - - {isViewingOwnHistory && - !user?.user.bridgeKycStatus && - (!user?.user.kycVerifications || user?.user.kycVerifications.length === 0) && ( - <EmptyState - icon="txn-off" - title="No activity yet!" - description="Start by sending or requesting money" - /> - )} + user?.user && + (() => { + const regionEntries = groupKycByRegion(user.user) + return regionEntries.length > 0 ? ( + <div className="space-y-3"> + {regionEntries.map((entry) => ( + <KycStatusItem + key={entry.uuid} + position="single" + verification={entry.verification} + bridgeKycStatus={entry.bridgeKycStatus} + region={entry.region} + /> + ))} + </div> + ) : ( + <EmptyState + icon="txn-off" + title="No activity yet!" + description="Start by sending or requesting money" + /> + ) + })()} {!isViewingOwnHistory && ( <EmptyState @@ -317,6 +290,9 @@ const HomeHistory = ({ username, hideTxnAmount = false }: { username?: string; h return ( <div className={twMerge('mx-auto w-full space-y-3 md:max-w-2xl md:space-y-3', isLoggedIn ? 'pb-4' : 'pb-0')}> + {/* bridge ToS reminder for users who haven't accepted yet */} + {isViewingOwnHistory && needsBridgeTos && <BridgeTosReminder />} + {/* link to the full history page */} {pendingRequests.length > 0 && ( <> @@ -380,6 +356,7 @@ const HomeHistory = ({ username, hideTxnAmount = false }: { username?: string; h bridgeKycStartedAt={ item.bridgeKycStatus ? user?.user.bridgeKycStartedAt : undefined } + region={item.region} /> ) } diff --git a/src/components/Home/KycCompletedModal/index.tsx b/src/components/Home/KycCompletedModal/index.tsx index 1377b3a50..80cd086bc 100644 --- a/src/components/Home/KycCompletedModal/index.tsx +++ b/src/components/Home/KycCompletedModal/index.tsx @@ -13,14 +13,17 @@ const KycCompletedModal = ({ isOpen, onClose }: { isOpen: boolean; onClose: () = const { user } = useAuth() const [approvedCountryData, setApprovedCountryData] = useState<CountryData | null>(null) - const { isUserBridgeKycApproved, isUserMantecaKycApproved } = useKycStatus() + const { isUserBridgeKycApproved, isUserMantecaKycApproved, isUserSumsubKycApproved } = useKycStatus() const { getVerificationUnlockItems } = useIdentityVerification() const kycApprovalType = useMemo(() => { + // sumsub covers all regions, treat as 'all' + if (isUserSumsubKycApproved) { + return 'all' + } if (isUserBridgeKycApproved && isUserMantecaKycApproved) { return 'all' } - if (isUserBridgeKycApproved) { return 'bridge' } @@ -28,7 +31,7 @@ const KycCompletedModal = ({ isOpen, onClose }: { isOpen: boolean; onClose: () = return 'manteca' } return 'none' - }, [isUserBridgeKycApproved, isUserMantecaKycApproved]) + }, [isUserBridgeKycApproved, isUserMantecaKycApproved, isUserSumsubKycApproved]) const items = useMemo(() => { return getVerificationUnlockItems(approvedCountryData?.title) diff --git a/src/components/Home/PerkClaimModal.tsx b/src/components/Home/PerkClaimModal.tsx new file mode 100644 index 000000000..5a694fdce --- /dev/null +++ b/src/components/Home/PerkClaimModal.tsx @@ -0,0 +1,350 @@ +'use client' + +import { useState, useCallback, useRef, useEffect } from 'react' +import { useQueryClient } from '@tanstack/react-query' +import { perksApi, type PendingPerk } from '@/services/perks' +import { Icon } from '@/components/Global/Icons/Icon' +import { useHoldToClaim } from '@/hooks/useHoldToClaim' +import { getShakeClass } from '@/utils/perk.utils' +import { extractInviteeName } from '@/utils/general.utils' +import { shootDoubleStarConfetti } from '@/utils/confetti' +import { SoundPlayer } from '@/components/Global/SoundPlayer' +import { useHaptic } from 'use-haptic' +import ActionModal from '@/components/Global/ActionModal' + +type ClaimPhase = 'idle' | 'holding' | 'opening' | 'revealed' | 'exiting' + +interface PerkClaimModalProps { + perk: PendingPerk + visible: boolean + onClose: () => void + onClaimed: (perkId: string) => void +} + +/** + * Modal for claiming perks with gift box animation. + * Contains the shake/hold interaction, confetti, and success state. + * Uses ActionModal for consistent styling with other modals. + */ +export function PerkClaimModal({ perk, visible, onClose, onClaimed }: PerkClaimModalProps) { + const queryClient = useQueryClient() + const [claimPhase, setClaimPhase] = useState<ClaimPhase>('idle') + const [lastClaimedPerk, setLastClaimedPerk] = useState<PendingPerk | null>(null) + const apiCallRef = useRef<Promise<void> | null>(null) + const revealTimerRef = useRef<ReturnType<typeof setTimeout> | null>(null) + const dismissTimerRef = useRef<ReturnType<typeof setTimeout> | null>(null) + + // Cleanup timers on unmount + useEffect(() => { + return () => { + if (revealTimerRef.current) clearTimeout(revealTimerRef.current) + if (dismissTimerRef.current) clearTimeout(dismissTimerRef.current) + } + }, []) + + // Reset state when modal opens with new perk + useEffect(() => { + if (visible) { + setClaimPhase('idle') + setLastClaimedPerk(null) + } + }, [visible, perk.id]) + + // Optimistic claim: trigger animation immediately, API call in background + const handleHoldComplete = useCallback(async () => { + // Phase 1: Opening animation (gift shakes on its own, builds anticipation) + setClaimPhase('opening') + + // Fire API call in background - don't await it + apiCallRef.current = (async () => { + try { + const result = await perksApi.claimPerk(perk.id) + if (result.success) { + onClaimed(perk.id) + queryClient.invalidateQueries({ queryKey: ['pendingPerks'] }) + queryClient.invalidateQueries({ queryKey: ['transactions'] }) + } + } catch (error) { + console.error('Failed to claim perk:', error) + } + })() + + // Phase 2: After 600ms of autonomous shaking, burst into confetti + revealTimerRef.current = setTimeout(() => { + // Haptic burst feedback + if ('vibrate' in navigator) { + navigator.vibrate([100, 50, 100, 50, 200]) + } + + // Confetti explosion! + shootDoubleStarConfetti({ origin: { x: 0.5, y: 0.4 } }) + + // Phase 3: Show revealed state + setLastClaimedPerk(perk) + setClaimPhase('revealed') + }, 600) + }, [perk, queryClient, onClaimed]) + + // Handle dismissing the success message + const handleDismissSuccess = useCallback(() => { + setClaimPhase('exiting') + dismissTimerRef.current = setTimeout(() => { + onClose() + }, 400) + }, [onClose]) + + // Handle modal close based on current phase + const handleModalClose = useCallback(() => { + if (claimPhase === 'revealed') { + handleDismissSuccess() + } else if (claimPhase === 'idle') { + onClose() + } + // Don't allow closing during opening/exiting phases + }, [claimPhase, handleDismissSuccess, onClose]) + + if (!visible) return null + + const isSuccessPhase = (claimPhase === 'revealed' || claimPhase === 'exiting') && !!lastClaimedPerk + + // Use ActionModal's native props for success phase, custom content for gift box phase + if (isSuccessPhase) { + return ( + <SuccessModal + perk={lastClaimedPerk!} + claimPhase={claimPhase} + onClose={handleModalClose} + onDismiss={handleDismissSuccess} + /> + ) + } + + return ( + <ActionModal + visible={visible} + onClose={handleModalClose} + title="" + preventClose={claimPhase === 'opening'} + content={<GiftBoxContent perk={perk} onHoldComplete={handleHoldComplete} claimPhase={claimPhase} />} + /> + ) +} + +interface SuccessModalProps { + perk: PendingPerk + claimPhase: ClaimPhase + onClose: () => void + onDismiss: () => void +} + +/** + * Success modal using ActionModal's native layout for consistent design system styling. + * Uses icon/title/description props for standard vertical centered layout. + */ +function SuccessModal({ perk, claimPhase, onClose, onDismiss }: SuccessModalProps) { + const inviteeName = extractInviteeName(perk.reason) + const { triggerHaptic } = useHaptic() + const [canDismiss, setCanDismiss] = useState(false) + const isExiting = claimPhase === 'exiting' + + useEffect(() => { + triggerHaptic() + const dismissTimer = setTimeout(() => setCanDismiss(true), 2000) + return () => clearTimeout(dismissTimer) + }, [triggerHaptic]) + + return ( + <ActionModal + visible={true} + onClose={onClose} + hideModalCloseButton + preventClose={isExiting} + icon="check" + iconProps={{ className: 'text-white' }} + iconContainerClassName="bg-success-3" + title="" + description={ + <div className={isExiting ? 'animate-gift-exit' : 'animate-gift-revealed'}> + <p className="text-3xl font-extrabold text-black">+${perk.amountUsd}</p> + <p className="mt-1 flex items-center justify-center gap-1 text-sm text-grey-1"> + <Icon name="invite-heart" size={14} /> + <span className="font-medium">{inviteeName}</span> + <span>joined Pioneers</span> + </p> + </div> + } + ctas={canDismiss ? [{ text: 'Done', onClick: onDismiss, variant: 'purple' as const }] : undefined} + content={<SoundPlayer sound="success" />} + /> + ) +} + +interface GiftBoxContentProps { + perk: PendingPerk + onHoldComplete: () => void + claimPhase: ClaimPhase +} + +/** + * Gift box with hold-to-claim interaction + */ +function GiftBoxContent({ perk, onHoldComplete, claimPhase }: GiftBoxContentProps) { + const { holdProgress, isShaking, shakeIntensity, buttonProps } = useHoldToClaim({ + onComplete: onHoldComplete, + disabled: claimPhase !== 'idle', + enableTapMode: true, + tapProgress: 12, + holdProgressPerSec: 80, + decayRate: 8, + }) + + // Ribbon opens outward based on hold progress (max 30deg spread) + const ribbonSpread = (holdProgress / 100) * 30 + + // Determine animation classes based on phase + const getAnimationClass = () => { + if (claimPhase === 'opening') { + return 'animate-gift-opening' + } + if (isShaking) { + return getShakeClass(isShaking, shakeIntensity) + } + return '' + } + + const inviteeName = extractInviteeName(perk.reason) + + return ( + <div className="flex flex-col items-center"> + {/* Title */} + <p className="mb-6 text-center text-sm text-grey-1"> + <Icon name="invite-heart" size={14} className="mr-1 inline" /> + <span className="font-medium">{inviteeName}</span> joined Pioneers! + </p> + + {/* Gift box wrapper - only this shakes */} + <div className={`relative ${getAnimationClass()}`}> + {/* Glow effect behind gift */} + <div + className="pointer-events-none absolute inset-0 -m-6 rounded-3xl bg-primary-1 blur-2xl transition-opacity" + style={{ opacity: (holdProgress / 100) * 0.3 }} + /> + + {/* Gift box container */} + <div {...buttonProps} className="relative cursor-pointer touch-none select-none"> + {/* Gift box */} + <div + className={`gift-box-shine relative h-32 w-44 overflow-hidden rounded-xl border-4 border-primary-1 bg-gradient-to-br from-primary-1/20 via-white to-primary-2/20 shadow-xl transition-transform ${holdProgress > 0 ? 'scale-[0.98]' : ''}`} + > + {/* Vertical ribbon */} + <div className="absolute bottom-0 left-1/2 top-0 w-5 -translate-x-1/2 bg-gradient-to-r from-primary-1/50 via-primary-1/70 to-primary-1/50" /> + + {/* Horizontal ribbon */} + <div className="absolute left-0 right-0 top-1/2 h-5 -translate-y-1/2 bg-gradient-to-b from-primary-1/50 via-primary-1/70 to-primary-1/50" /> + + {/* Light rays from center */} + <div + className="pointer-events-none absolute inset-0" + style={{ + background: `radial-gradient(circle at center, rgba(255,255,255,${0.4 * (holdProgress / 100)}) 0%, transparent 70%)`, + }} + /> + + {/* Cracks appearing with progress */} + {holdProgress > 20 && ( + <div className="absolute left-4 top-4 h-8 w-0.5 rotate-45 bg-primary-1/40" /> + )} + {holdProgress > 40 && ( + <div className="absolute bottom-6 right-6 h-10 w-0.5 -rotate-[30deg] bg-primary-1/40" /> + )} + {holdProgress > 60 && ( + <div className="absolute bottom-4 left-8 h-6 w-0.5 rotate-12 bg-primary-1/40" /> + )} + + {/* Gift icon */} + <div className="absolute inset-0 flex items-center justify-center"> + <div + className={`rounded-full bg-primary-1 p-3 shadow-lg transition-transform ${holdProgress > 30 ? 'animate-bounce' : ''}`} + > + <Icon name="gift" size={28} className="text-white" /> + </div> + </div> + </div> + + {/* Ribbon bow */} + <div className="absolute -top-3 left-1/2 -translate-x-1/2"> + <div className="relative"> + {/* Left ribbon tail */} + <div + className="absolute left-1/2 top-2 h-4 w-2 -translate-x-[10px] bg-primary-1 transition-transform" + style={{ + transform: `translateX(-10px) rotate(${-20 - ribbonSpread * 0.5}deg)`, + borderRadius: '0 0 2px 2px', + }} + /> + {/* Right ribbon tail */} + <div + className="absolute left-1/2 top-2 h-4 w-2 translate-x-[2px] bg-primary-1 transition-transform" + style={{ + transform: `translateX(2px) rotate(${20 + ribbonSpread * 0.5}deg)`, + borderRadius: '0 0 2px 2px', + }} + /> + {/* Left loop */} + <div + className="absolute -left-5 -top-1 h-4 w-6 rounded-full bg-primary-1 shadow-sm transition-transform" + style={{ transform: `rotate(${-25 - ribbonSpread}deg)` }} + /> + {/* Right loop */} + <div + className="absolute -right-5 -top-1 h-4 w-6 rounded-full bg-primary-1 shadow-sm transition-transform" + style={{ transform: `rotate(${25 + ribbonSpread}deg)` }} + /> + {/* Center knot */} + <div className="relative z-10 h-4 w-4 rounded-sm bg-primary-1 shadow-md" /> + </div> + </div> + + {/* Particles flying out */} + {holdProgress > 30 && ( + <> + <div + className="absolute -right-4 top-2 animate-ping text-lg" + style={{ animationDuration: '1s' }} + > + ✨ + </div> + <div + className="absolute -left-4 bottom-4 animate-ping text-lg" + style={{ animationDuration: '1.2s', animationDelay: '0.2s' }} + > + ✨ + </div> + </> + )} + {holdProgress > 60 && ( + <> + <div + className="absolute -top-2 right-2 animate-ping text-sm" + style={{ animationDuration: '0.8s', animationDelay: '0.3s' }} + > + ⭐ + </div> + <div + className="absolute -bottom-2 left-2 animate-ping text-sm" + style={{ animationDuration: '1s', animationDelay: '0.1s' }} + > + ⭐ + </div> + </> + )} + </div> + </div> + + {/* Instructions */} + <p className="mt-6 text-center text-sm text-grey-1">Hold to unwrap your reward</p> + </div> + ) +} + +export default PerkClaimModal diff --git a/src/components/IdentityVerification/StartVerificationModal.tsx b/src/components/IdentityVerification/StartVerificationModal.tsx index 54b53b841..045760bf8 100644 --- a/src/components/IdentityVerification/StartVerificationModal.tsx +++ b/src/components/IdentityVerification/StartVerificationModal.tsx @@ -3,71 +3,76 @@ import ActionModal from '../Global/ActionModal' import InfoCard from '../Global/InfoCard' import { Icon } from '../Global/Icons/Icon' -import { MantecaSupportedExchanges } from '../AddMoney/consts' -import { useMemo } from 'react' -import { useIdentityVerification } from '@/hooks/useIdentityVerification' +import { type Region } from '@/hooks/useIdentityVerification' +import React from 'react' + +// unlock benefits shown per region +const REGION_UNLOCK_ITEMS: Record<string, Array<string | React.ReactNode>> = { + latam: [ + <p key="bank"> + Bank transfers to your own accounts in <b>LATAM</b> + </p>, + <p key="qr"> + QR Payments in <b>Argentina and Brazil</b> + </p>, + ], + europe: [ + <p key="sepa"> + <b>Europe</b> SEPA transfers (+30 countries) + </p>, + <p key="qr"> + QR Payments in <b>Argentina and Brazil</b> + </p>, + ], + 'north-america': [ + <p key="ach"> + <b>United States</b> ACH and Wire transfers + </p>, + <p key="mx"> + <b>Mexico</b> SPEI transfers + </p>, + <p key="qr"> + QR Payments in <b>Argentina and Brazil</b> + </p>, + ], + 'rest-of-the-world': [ + <p key="qr"> + QR Payments in <b>Argentina and Brazil</b> + </p>, + ], +} + +const DEFAULT_UNLOCK_ITEMS = [<p key="bank">Bank transfers and local payment methods</p>] interface StartVerificationModalProps { visible: boolean onClose: () => void onStartVerification: () => void - selectedIdentityCountry: { id: string; title: string } - selectedCountry: { id: string; title: string } + selectedRegion: Region | null + isLoading?: boolean } const StartVerificationModal = ({ visible, onClose, onStartVerification, - selectedIdentityCountry, - selectedCountry, + selectedRegion, + isLoading, }: StartVerificationModalProps) => { - const { getVerificationUnlockItems } = useIdentityVerification() - - const items = useMemo(() => { - return getVerificationUnlockItems(selectedIdentityCountry.title) - }, [getVerificationUnlockItems, selectedIdentityCountry.title]) - - const isIdentityMantecaCountry = useMemo( - () => Object.prototype.hasOwnProperty.call(MantecaSupportedExchanges, selectedIdentityCountry.id.toUpperCase()), - [selectedIdentityCountry.id] - ) - - const isSelectedCountryMantecaCountry = useMemo( - () => Object.prototype.hasOwnProperty.call(MantecaSupportedExchanges, selectedCountry.id.toUpperCase()), - [selectedCountry] - ) - - const getDescription = () => { - if (isSelectedCountryMantecaCountry && isIdentityMantecaCountry) { - return ( - <p> - To send and receive money <b>locally,</b> you'll need to verify your identity with a - government-issued ID from <b>{selectedCountry.title}.</b> - </p> - ) - } - - if (isSelectedCountryMantecaCountry && !isIdentityMantecaCountry) { - return `Without an ${selectedCountry.title} Issued ID, you can still pay in stores using QR codes but you won't be able to transfer money directly to bank accounts.` - } - - return ( - <p> - To make <b>international</b> money transfers, you must verify your identity using a government-issued - ID. - </p> - ) - } + const unlockItems = selectedRegion + ? (REGION_UNLOCK_ITEMS[selectedRegion.path] ?? DEFAULT_UNLOCK_ITEMS) + : DEFAULT_UNLOCK_ITEMS return ( <ActionModal visible={visible} onClose={onClose} - title={ - isSelectedCountryMantecaCountry ? `Unlock ${selectedCountry.title}` : 'Unlock International Transfers' + title={`Unlock ${selectedRegion?.name ?? 'Region'}`} + description={ + <p> + To send and receive money in this region, verify your identity with a <b>government-issued ID.</b> + </p> } - description={getDescription()} descriptionClassName="text-black" icon="shield" iconContainerClassName="bg-primary-1" @@ -76,8 +81,9 @@ const StartVerificationModal = ({ { shadowSize: '4', icon: 'check-circle', - text: 'Verify now', + text: isLoading ? 'Loading...' : 'Verify now', onClick: onStartVerification, + disabled: isLoading, }, ]} content={ @@ -88,11 +94,8 @@ const StartVerificationModal = ({ itemIcon="check" itemIconSize={12} itemIconClassName="text-secondary-7" - items={items - .filter((item) => item.type === (isIdentityMantecaCountry ? 'manteca' : 'bridge')) - .map((item) => item.title)} + items={unlockItems} /> - <div className="flex items-center gap-2"> <Icon name="info" size={12} className="text-gray-1" /> <p className="text-xs text-gray-1">Peanut doesn't store any of your documents.</p> diff --git a/src/components/Kyc/BridgeTosReminder.tsx b/src/components/Kyc/BridgeTosReminder.tsx new file mode 100644 index 000000000..7db489a4b --- /dev/null +++ b/src/components/Kyc/BridgeTosReminder.tsx @@ -0,0 +1,55 @@ +'use client' + +import { useState, useCallback } from 'react' +import Card from '@/components/Global/Card' +import { Icon } from '@/components/Global/Icons/Icon' +import { BridgeTosStep } from '@/components/Kyc/BridgeTosStep' +import { useAuth } from '@/context/authContext' +import { type CardPosition } from '@/components/Global/Card/card.utils' + +interface BridgeTosReminderProps { + position?: CardPosition +} + +// shown in the activity feed when user has bridge rails needing ToS acceptance. +// clicking opens the bridge ToS flow. +export const BridgeTosReminder = ({ position = 'single' }: BridgeTosReminderProps) => { + const { fetchUser } = useAuth() + const [showTosStep, setShowTosStep] = useState(false) + const [tosJustAccepted, setTosJustAccepted] = useState(false) + + const handleClick = useCallback(() => { + setShowTosStep(true) + }, []) + + const handleComplete = useCallback(async () => { + setShowTosStep(false) + setTosJustAccepted(true) // optimistically hide — backend rail transition is async + await fetchUser() + }, [fetchUser]) + + const handleSkip = useCallback(() => { + setShowTosStep(false) + }, []) + + if (tosJustAccepted) return null + + return ( + <> + <Card position={position} onClick={handleClick} className="cursor-pointer"> + <div className="flex items-center gap-3 p-3"> + <div className="flex size-10 items-center justify-center rounded-full bg-yellow-1"> + <Icon name="alert" className="size-5 text-black" /> + </div> + <div className="flex-1"> + <p className="text-sm font-bold">Accept terms of service</p> + <p className="text-xs text-grey-1">Required to enable bank transfers</p> + </div> + <Icon name="chevron-up" className="size-4 rotate-90 text-grey-1" /> + </div> + </Card> + + <BridgeTosStep visible={showTosStep} onComplete={handleComplete} onSkip={handleSkip} /> + </> + ) +} diff --git a/src/components/Kyc/BridgeTosStep.tsx b/src/components/Kyc/BridgeTosStep.tsx new file mode 100644 index 000000000..12152dbb3 --- /dev/null +++ b/src/components/Kyc/BridgeTosStep.tsx @@ -0,0 +1,128 @@ +'use client' + +import { useState, useCallback, useEffect } from 'react' +import ActionModal from '@/components/Global/ActionModal' +import IframeWrapper from '@/components/Global/IframeWrapper' +import { type IconName } from '@/components/Global/Icons/Icon' +import { getBridgeTosLink, confirmBridgeTos } from '@/app/actions/users' +import { useAuth } from '@/context/authContext' + +interface BridgeTosStepProps { + visible: boolean + onComplete: () => void + onSkip: () => void +} + +// shown immediately after sumsub kyc approval when bridge rails need ToS acceptance. +// displays a prompt, then opens the bridge ToS iframe. +export const BridgeTosStep = ({ visible, onComplete, onSkip }: BridgeTosStepProps) => { + const { fetchUser } = useAuth() + const [showIframe, setShowIframe] = useState(false) + const [tosLink, setTosLink] = useState<string | null>(null) + const [isLoading, setIsLoading] = useState(false) + const [error, setError] = useState<string | null>(null) + + // auto-fetch ToS link when step becomes visible so the iframe opens directly + // (skips the intermediate "Accept Terms" confirmation modal) + useEffect(() => { + if (visible) { + handleAcceptTerms() + } else { + setShowIframe(false) + setTosLink(null) + setError(null) + } + }, [visible]) // eslint-disable-line react-hooks/exhaustive-deps + + const handleAcceptTerms = useCallback(async () => { + setIsLoading(true) + setError(null) + + try { + const response = await getBridgeTosLink() + + if (response.error || !response.data?.tosLink) { + // if we can't get the tos link (e.g. bridge customer not created yet), + // skip this step — the activity feed will show a reminder later + setError(response.error || 'Could not load terms. You can accept them later from your activity feed.') + return + } + + setTosLink(response.data.tosLink) + setShowIframe(true) + } catch { + setError('Something went wrong. You can accept terms later from your activity feed.') + } finally { + setIsLoading(false) + } + }, []) + + const handleIframeClose = useCallback( + async (source?: 'manual' | 'completed' | 'tos_accepted') => { + setShowIframe(false) + + if (source === 'tos_accepted') { + // confirm with backend that bridge actually accepted the ToS + const result = await confirmBridgeTos() + + if (result.data?.accepted) { + await fetchUser() + onComplete() + return + } + + // bridge hasn't registered acceptance yet — poll once after a short delay + await new Promise((resolve) => setTimeout(resolve, 2000)) + const retry = await confirmBridgeTos() + + if (retry.data?.accepted) { + await fetchUser() + onComplete() + } else { + // will be caught by poller/webhook eventually + await fetchUser() + onComplete() + } + } else { + // user closed without accepting — skip, activity feed will remind them + onSkip() + } + }, + [fetchUser, onComplete, onSkip] + ) + + if (!visible) return null + + return ( + <> + {/* only show modal on error — normal flow goes straight to iframe */} + {error && !showIframe && ( + <ActionModal + visible={true} + onClose={onSkip} + icon={'alert' as IconName} + title="Could not load terms" + description={error} + ctas={[ + { + text: 'Try again', + onClick: handleAcceptTerms, + disabled: isLoading, + variant: 'purple', + className: 'w-full', + shadowSize: '4', + }, + { + text: 'Skip for now', + onClick: onSkip, + variant: 'transparent' as const, + className: 'underline text-sm font-medium w-full h-fit mt-3', + }, + ]} + /> + )} + + {tosLink && <IframeWrapper src={tosLink} visible={showIframe} onClose={handleIframeClose} skipStartView />} + </> + ) +} diff --git a/src/components/Kyc/InitiateBridgeKYCModal.tsx b/src/components/Kyc/InitiateBridgeKYCModal.tsx deleted file mode 100644 index dfd8b1887..000000000 --- a/src/components/Kyc/InitiateBridgeKYCModal.tsx +++ /dev/null @@ -1,96 +0,0 @@ -import ActionModal from '@/components/Global/ActionModal' -import { useBridgeKycFlow } from '@/hooks/useBridgeKycFlow' -import IframeWrapper from '@/components/Global/IframeWrapper' -import { KycVerificationInProgressModal } from './KycVerificationInProgressModal' -import { type IconName } from '@/components/Global/Icons/Icon' -import { saveRedirectUrl } from '@/utils/general.utils' -import useClaimLink from '../Claim/useClaimLink' -import { useEffect } from 'react' - -interface BridgeKycModalFlowProps { - isOpen: boolean - onClose: () => void - onKycSuccess?: () => void - onManualClose?: () => void - flow?: 'add' | 'withdraw' | 'request_fulfillment' -} - -export const InitiateBridgeKYCModal = ({ - isOpen, - onClose, - onKycSuccess, - onManualClose, - flow, -}: BridgeKycModalFlowProps) => { - const { - isLoading, - error, - iframeOptions, - isVerificationProgressModalOpen, - handleInitiateKyc, - handleIframeClose, - closeVerificationProgressModal, - resetError, - } = useBridgeKycFlow({ onKycSuccess, flow, onManualClose }) - const { addParamStep } = useClaimLink() - - // Reset error when modal opens to ensure clean state - useEffect(() => { - if (isOpen) { - resetError() - } - }, [isOpen, resetError]) - - const handleVerifyClick = async () => { - // Only add step param for claim flows (not add-money flow which has its own URL state) - if (flow !== 'add') { - addParamStep('bank') - } - const result = await handleInitiateKyc() - if (result?.success) { - saveRedirectUrl() - onClose() - } - } - - return ( - <> - <ActionModal - visible={isOpen} - onClose={onManualClose ? onManualClose : onClose} - title="Verify your identity first" - description="To continue, you need to complete identity verification. This usually takes just a few minutes." - icon={'badge' as IconName} - modalPanelClassName="max-w-full m-2" - ctaClassName="grid grid-cols-1 gap-3" - ctas={[ - { - text: isLoading ? 'Loading...' : 'Verify now', - onClick: handleVerifyClick, - variant: 'purple', - disabled: isLoading, - shadowSize: '4', - icon: 'check-circle', - className: 'h-11', - }, - ...(error - ? [ - { - text: error, - onClick: onClose, - variant: 'transparent' as const, - className: - 'underline text-xs md:text-sm !font-normal w-full !transform-none !pt-2 text-error-3 px-0', - }, - ] - : []), - ]} - /> - <IframeWrapper {...iframeOptions} onClose={handleIframeClose} /> - <KycVerificationInProgressModal - isOpen={isVerificationProgressModalOpen} - onClose={closeVerificationProgressModal} - /> - </> - ) -} diff --git a/src/components/Kyc/InitiateKycModal.tsx b/src/components/Kyc/InitiateKycModal.tsx new file mode 100644 index 000000000..3d9a8ea55 --- /dev/null +++ b/src/components/Kyc/InitiateKycModal.tsx @@ -0,0 +1,38 @@ +import ActionModal from '@/components/Global/ActionModal' +import { type IconName } from '@/components/Global/Icons/Icon' +import { PeanutDoesntStoreAnyPersonalInformation } from '@/components/Kyc/PeanutDoesntStoreAnyPersonalInformation' + +interface InitiateKycModalProps { + visible: boolean + onClose: () => void + onVerify: () => void + isLoading?: boolean +} + +// confirmation modal shown before starting KYC. +// user must click "Start Verification" to proceed to the sumsub SDK. +export const InitiateKycModal = ({ visible, onClose, onVerify, isLoading }: InitiateKycModalProps) => { + return ( + <ActionModal + visible={visible} + onClose={onClose} + title="Verify your identity" + description="To continue, you need to complete identity verification. This usually takes just a few minutes." + icon={'badge' as IconName} + modalPanelClassName="max-w-full m-2" + ctaClassName="grid grid-cols-1 gap-3" + ctas={[ + { + text: isLoading ? 'Loading...' : 'Start Verification', + onClick: onVerify, + variant: 'purple', + disabled: isLoading, + shadowSize: '4', + icon: 'check-circle', + className: 'h-11', + }, + ]} + footer={<PeanutDoesntStoreAnyPersonalInformation className="w-full justify-center" />} + /> + ) +} diff --git a/src/components/Kyc/InitiateMantecaKYCModal.tsx b/src/components/Kyc/InitiateMantecaKYCModal.tsx deleted file mode 100644 index d72f425cc..000000000 --- a/src/components/Kyc/InitiateMantecaKYCModal.tsx +++ /dev/null @@ -1,164 +0,0 @@ -'use client' - -import ActionModal from '@/components/Global/ActionModal' -import IframeWrapper from '@/components/Global/IframeWrapper' -import { type IconName } from '@/components/Global/Icons/Icon' -import { useMantecaKycFlow } from '@/hooks/useMantecaKycFlow' -import { type CountryData } from '@/components/AddMoney/consts' -import { Button } from '@/components/0_Bruddle/Button' -import { PeanutDoesntStoreAnyPersonalInformation } from './KycVerificationInProgressModal' -import { useEffect } from 'react' - -interface Props { - isOpen: boolean - onClose: () => void - onKycSuccess?: () => void - onManualClose?: () => void - country: CountryData - title?: string | React.ReactNode - description?: string | React.ReactNode - ctaText?: string - footer?: React.ReactNode - autoStartKyc?: boolean -} - -const InitiateMantecaKYCModal = ({ - isOpen, - onClose, - onKycSuccess, - onManualClose, - country, - title, - description, - ctaText, - footer, - autoStartKyc, -}: Props) => { - const { isLoading, iframeOptions, openMantecaKyc, handleIframeClose } = useMantecaKycFlow({ - onClose: onManualClose, // any non-success close from iframe is a manual close in case of Manteca KYC - onSuccess: onKycSuccess, - onManualClose, - country, - }) - - useEffect(() => { - const handleMessage = (event: MessageEvent) => { - if (event.data.source === 'peanut-kyc-success') { - onKycSuccess?.() - } - } - - window.addEventListener('message', handleMessage) - - return () => { - window.removeEventListener('message', handleMessage) - } - }, []) - - useEffect(() => { - if (autoStartKyc) { - openMantecaKyc(country) - } - }, [autoStartKyc]) - - const isAutoStarting = autoStartKyc && isLoading - const displayTitle = isAutoStarting ? 'Starting verification...' : (title ?? 'Verify your identity first') - const displayDescription = isAutoStarting - ? 'Please wait while we start your verification...' - : (description ?? - 'To continue, you need to complete identity verification. This usually takes just a few minutes.') - - return ( - <> - <ActionModal - visible={isOpen && !iframeOptions.visible} - onClose={onClose} - title={displayTitle} - description={displayDescription} - icon={'badge' as IconName} - modalPanelClassName="max-w-full m-4" - ctaClassName="grid grid-cols-1 gap-3" - ctas={[ - { - text: isLoading ? 'Loading...' : (ctaText ?? 'Verify now'), - onClick: () => openMantecaKyc(country), - variant: 'purple', - disabled: isLoading, - shadowSize: '4', - icon: 'check-circle', - className: 'h-11', - }, - ]} - footer={footer} - /> - <IframeWrapper {...iframeOptions} onClose={handleIframeClose} /> - </> - ) -} - -export const MantecaGeoSpecificKycModal = ({ - isUserBridgeKycApproved, - selectedCountry, - setIsMantecaModalOpen, - isMantecaModalOpen, - onKycSuccess, - onClose, - onManualClose, -}: { - isUserBridgeKycApproved: boolean - selectedCountry: { id: string; title: string } - setIsMantecaModalOpen: (isOpen: boolean) => void - isMantecaModalOpen: boolean - onKycSuccess: () => void - onClose?: () => void - onManualClose?: () => void -}) => { - return ( - <InitiateMantecaKYCModal - autoStartKyc={!isUserBridgeKycApproved} - title={isUserBridgeKycApproved ? `${selectedCountry.title} check required` : 'Verify your identity'} - description={ - isUserBridgeKycApproved ? ( - <p> - You're already verified in Europe, USA, and Mexico, but to use features in{' '} - {selectedCountry.title} you need to complete a separate verification. <br /> Since{' '} - <b>we don't keep personal data</b>, your previous KYC can't be reused. - </p> - ) : ( - <p> - Verify your identity to start using features like Mercado Pago payments in{' '} - {selectedCountry.title}.{' '} - </p> - ) - } - footer={ - isUserBridgeKycApproved ? ( - <Button - variant="transparent" - className="h-6 p-0 pt-2 text-xs underline" - onClick={() => setIsMantecaModalOpen(false)} - > - Not now - </Button> - ) : ( - <PeanutDoesntStoreAnyPersonalInformation className="w-full justify-center" /> - ) - } - ctaText="Start Verification" - isOpen={isMantecaModalOpen} - onClose={() => { - setIsMantecaModalOpen(false) - onClose?.() - }} - onKycSuccess={() => { - setIsMantecaModalOpen(false) - onKycSuccess?.() - }} - onManualClose={() => { - setIsMantecaModalOpen(false) - onManualClose?.() - }} - country={{ id: selectedCountry.id, title: selectedCountry.title, type: 'country', path: '' }} - /> - ) -} diff --git a/src/components/Kyc/KYCStatusDrawerItem.tsx b/src/components/Kyc/KYCStatusDrawerItem.tsx index 0d2cae261..f377c2ad0 100644 --- a/src/components/Kyc/KYCStatusDrawerItem.tsx +++ b/src/components/Kyc/KYCStatusDrawerItem.tsx @@ -2,13 +2,13 @@ import Card from '@/components/Global/Card' import StatusBadge, { type StatusType } from '../Global/Badges/StatusBadge' import { KYCStatusIcon } from './KYCStatusIcon' -export const KYCStatusDrawerItem = ({ status }: { status: StatusType }) => { +export const KYCStatusDrawerItem = ({ status, customText }: { status: StatusType; customText?: string }) => { return ( <Card position="single" className="flex items-center gap-4"> <KYCStatusIcon /> <div className="flex flex-col gap-2"> <h3 className="text-lg font-extrabold">Identity verification</h3> - <StatusBadge status={status} className="w-fit" size="small" /> + <StatusBadge status={status} customText={customText} className="w-fit" size="small" /> </div> </Card> ) diff --git a/src/components/Kyc/KycFlow.tsx b/src/components/Kyc/KycFlow.tsx index 88795f515..0ac66bd38 100644 --- a/src/components/Kyc/KycFlow.tsx +++ b/src/components/Kyc/KycFlow.tsx @@ -1,22 +1,22 @@ -import { Button, type ButtonProps } from '@/components/0_Bruddle/Button' -import IframeWrapper from '@/components/Global/IframeWrapper' -import { useBridgeKycFlow } from '@/hooks/useBridgeKycFlow' +import { type ButtonProps } from '@/components/0_Bruddle/Button' +import { SumsubKycFlow } from '@/components/Kyc/SumsubKycFlow' +import { type KYCRegionIntent } from '@/app/actions/types/sumsub.types' -// this component is the main entry point for the kyc flow -// it renders a button that, when clicked, initiates the process of fetching -// tos/kyc links, showing them in an iframe, and then displaying a status modal -export const KycFlow = (props: ButtonProps) => { - const { isLoading, error, iframeOptions, handleInitiateKyc, handleIframeClose } = useBridgeKycFlow() +interface KycFlowProps extends ButtonProps { + regionIntent?: KYCRegionIntent + onKycSuccess?: () => void + onManualClose?: () => void +} +// main entry point for the kyc flow. +// renders SumsubKycFlow with an optional region intent for context-aware verification. +export const KycFlow = ({ regionIntent, onKycSuccess, onManualClose, ...buttonProps }: KycFlowProps) => { return ( - <> - <Button onClick={handleInitiateKyc} disabled={isLoading} {...props}> - {isLoading ? 'Loading...' : (props.children ?? 'Start Verification')} - </Button> - - {error && <p className="text-red-500 mt-2 text-sm">{error}</p>} - - <IframeWrapper {...iframeOptions} onClose={handleIframeClose} /> - </> + <SumsubKycFlow + regionIntent={regionIntent} + onKycSuccess={onKycSuccess} + onManualClose={onManualClose} + {...buttonProps} + /> ) } diff --git a/src/components/Kyc/KycStatusDrawer.tsx b/src/components/Kyc/KycStatusDrawer.tsx index e8a80f9fd..25f2249a9 100644 --- a/src/components/Kyc/KycStatusDrawer.tsx +++ b/src/components/Kyc/KycStatusDrawer.tsx @@ -1,41 +1,27 @@ +import { KycActionRequired } from './states/KycActionRequired' import { KycCompleted } from './states/KycCompleted' import { KycFailed } from './states/KycFailed' import { KycProcessing } from './states/KycProcessing' +import { KycRequiresDocuments } from './states/KycRequiresDocuments' +import { SumsubKycModals } from '@/components/Kyc/SumsubKycModals' import { Drawer, DrawerContent, DrawerTitle } from '../Global/Drawer' import { type BridgeKycStatus } from '@/utils/bridge-accounts.utils' -import { type IUserKycVerification, MantecaKycStatus } from '@/interfaces' +import { type IUserKycVerification } from '@/interfaces' import { useUserStore } from '@/redux/hooks' -import { useBridgeKycFlow } from '@/hooks/useBridgeKycFlow' -import { useMantecaKycFlow } from '@/hooks/useMantecaKycFlow' -import { type CountryData, countryData } from '@/components/AddMoney/consts' -import IFrameWrapper from '@/components/Global/IframeWrapper' - -// a helper to categorize the kyc status from the user object -const getKycStatusCategory = (status: BridgeKycStatus | MantecaKycStatus): 'processing' | 'completed' | 'failed' => { - switch (status) { - case 'approved': - case MantecaKycStatus.ACTIVE: - return 'completed' - case 'rejected': - case MantecaKycStatus.INACTIVE: - return 'failed' - case 'under_review': - case 'incomplete': - case MantecaKycStatus.ONBOARDING: - default: - return 'processing' - } -} +import { useMultiPhaseKycFlow } from '@/hooks/useMultiPhaseKycFlow' +import { getKycStatusCategory, isKycStatusNotStarted } from '@/constants/kyc.consts' +import { type KYCRegionIntent } from '@/app/actions/types/sumsub.types' interface KycStatusDrawerProps { isOpen: boolean onClose: () => void verification?: IUserKycVerification bridgeKycStatus?: BridgeKycStatus + region?: 'STANDARD' | 'LATAM' } // this component determines which kyc state to show inside the drawer and fetches rejection reasons if the kyc has failed. -export const KycStatusDrawer = ({ isOpen, onClose, verification, bridgeKycStatus }: KycStatusDrawerProps) => { +export const KycStatusDrawer = ({ isOpen, onClose, verification, bridgeKycStatus, region }: KycStatusDrawerProps) => { const { user } = useUserStore() const status = verification ? verification.status : bridgeKycStatus @@ -43,39 +29,62 @@ export const KycStatusDrawer = ({ isOpen, onClose, verification, bridgeKycStatus const countryCode = verification ? verification.mantecaGeo || verification.bridgeGeo : null const isBridgeKyc = !verification && !!bridgeKycStatus const provider = verification ? verification.provider : 'BRIDGE' + // derive region intent from sumsub verification metadata so token uses correct level + const sumsubRegionIntent = ( + verification?.provider === 'SUMSUB' ? verification?.metadata?.regionIntent : undefined + ) as KYCRegionIntent | undefined - const { - handleInitiateKyc: initiateBridgeKyc, - iframeOptions: bridgeIframeOptions, - handleIframeClose: handleBridgeIframeClose, - isLoading: isBridgeLoading, - } = useBridgeKycFlow({ onKycSuccess: onClose, onManualClose: onClose }) - - const country = countryCode ? countryData.find((c) => c.id.toUpperCase() === countryCode.toUpperCase()) : undefined - - const { - openMantecaKyc, - iframeOptions: mantecaIframeOptions, - handleIframeClose: handleMantecaIframeClose, - isLoading: isMantecaLoading, - } = useMantecaKycFlow({ - onSuccess: onClose, - onClose: onClose, + const sumsubFlow = useMultiPhaseKycFlow({ + onKycSuccess: onClose, onManualClose: onClose, - country: country as CountryData, + // don't pass regionIntent for completed kyc — prevents the mount effect + // in useSumsubKycFlow from calling initiateSumsubKyc(), which triggers + // the undefined->APPROVED transition that auto-closes the drawer + regionIntent: statusCategory === 'completed' ? undefined : sumsubRegionIntent, }) + // all kyc retries now go through sumsub const onRetry = async () => { - if (provider === 'MANTECA') { - await openMantecaKyc(country as CountryData) - } else { - await initiateBridgeKyc() - } + await sumsubFlow.handleInitiateKyc() } - const isLoadingKyc = isBridgeLoading || isMantecaLoading + // check if any bridge rail needs additional documents + const bridgeRailsNeedingDocs = (user?.rails ?? []).filter( + (r) => r.status === 'REQUIRES_EXTRA_INFORMATION' && r.rail.provider.code === 'BRIDGE' + ) + const needsAdditionalDocs = bridgeRailsNeedingDocs.length > 0 + // aggregate requirements across all rails and deduplicate + const additionalRequirements: string[] = needsAdditionalDocs + ? [ + ...new Set( + bridgeRailsNeedingDocs.flatMap((r) => { + const reqs = r.metadata?.additionalRequirements + return Array.isArray(reqs) ? reqs : [] + }) + ), + ] + : [] + + // count sumsub rejections for failure lockout. + const sumsubFailureCount = + user?.user?.kycVerifications?.filter((v) => v.provider === 'SUMSUB' && v.status === 'REJECTED').length ?? 0 + + const handleSubmitAdditionalDocs = async () => { + await sumsubFlow.handleInitiateKyc(undefined, 'peanut-additional-docs') + } const renderContent = () => { + // bridge additional document requirement — but don't mask terminal kyc states + if (needsAdditionalDocs && statusCategory !== 'failed' && statusCategory !== 'action_required') { + return ( + <KycRequiresDocuments + requirements={additionalRequirements} + onSubmitDocuments={handleSubmitAdditionalDocs} + isLoading={sumsubFlow.isLoading} + /> + ) + } + switch (statusCategory) { case 'processing': return ( @@ -91,17 +100,34 @@ export const KycStatusDrawer = ({ isOpen, onClose, verification, bridgeKycStatus bridgeKycApprovedAt={verification?.approvedAt ?? user?.user?.bridgeKycApprovedAt} countryCode={countryCode ?? undefined} isBridge={isBridgeKyc} + rails={user?.rails?.filter((r) => { + if (region === 'STANDARD') return r.rail.provider.code === 'BRIDGE' + if (region === 'LATAM') return r.rail.provider.code === 'MANTECA' + return true + })} + /> + ) + case 'action_required': + return ( + <KycActionRequired + onResume={onRetry} + isLoading={sumsubFlow.isLoading} + rejectLabels={verification?.rejectLabels} /> ) case 'failed': return ( <KycFailed - reason={user?.user?.bridgeKycRejectionReasonString ?? ''} + rejectLabels={verification?.rejectLabels} + bridgeReason={user?.user?.bridgeKycRejectionReasonString} + isSumsub={provider === 'SUMSUB'} + rejectType={verification?.rejectType} + failureCount={sumsubFailureCount} bridgeKycRejectedAt={verification?.updatedAt ?? user?.user?.bridgeKycRejectedAt} countryCode={countryCode ?? undefined} isBridge={isBridgeKyc} onRetry={onRetry} - isLoading={isLoadingKyc} + isLoading={sumsubFlow.isLoading} /> ) default: @@ -109,8 +135,9 @@ export const KycStatusDrawer = ({ isOpen, onClose, verification, bridgeKycStatus } } - // don't render the drawer if the kyc status is unknown or not started - if (status === 'not_started' || !status) { + // don't render the drawer if the kyc status is unknown or not started. + // if a verification record exists, the user has initiated KYC — show the drawer. + if (!verification && isKycStatusNotStarted(status)) { return null } @@ -120,10 +147,12 @@ export const KycStatusDrawer = ({ isOpen, onClose, verification, bridgeKycStatus <DrawerContent className="p-5 pb-12"> <DrawerTitle className="sr-only">KYC Status</DrawerTitle> {renderContent()} + {sumsubFlow.error && provider === 'SUMSUB' && ( + <p className="text-red-500 mt-3 text-center text-sm">{sumsubFlow.error}</p> + )} </DrawerContent> </Drawer> - <IFrameWrapper {...bridgeIframeOptions} onClose={handleBridgeIframeClose} /> - <IFrameWrapper {...mantecaIframeOptions} onClose={handleMantecaIframeClose} /> + <SumsubKycModals flow={sumsubFlow} autoStartSdk /> </> ) } diff --git a/src/components/Kyc/KycStatusItem.tsx b/src/components/Kyc/KycStatusItem.tsx index 1ca8536ed..359e53a1f 100644 --- a/src/components/Kyc/KycStatusItem.tsx +++ b/src/components/Kyc/KycStatusItem.tsx @@ -10,6 +10,27 @@ import { twMerge } from 'tailwind-merge' import { type IUserKycVerification } from '@/interfaces' import StatusPill from '../Global/StatusPill' import { KYCStatusIcon } from './KYCStatusIcon' +import { + isKycStatusApproved, + isKycStatusPending, + isKycStatusFailed, + isKycStatusNotStarted, + isKycStatusActionRequired, +} from '@/constants/kyc.consts' + +// kyc history entry type + type guard — used by HomeHistory and history page +export interface KycHistoryEntry { + isKyc: true + uuid: string + timestamp: string + verification?: IUserKycVerification + bridgeKycStatus?: BridgeKycStatus + region?: 'STANDARD' | 'LATAM' +} + +export const isKycStatusItem = (entry: object): entry is KycHistoryEntry => { + return 'isKyc' in entry && entry.isKyc === true +} // this component shows the current kyc status and opens a drawer with more details on click export const KycStatusItem = ({ @@ -18,12 +39,14 @@ export const KycStatusItem = ({ verification, bridgeKycStatus, bridgeKycStartedAt, + region, }: { position?: CardPosition className?: HTMLAttributes<HTMLDivElement>['className'] verification?: IUserKycVerification bridgeKycStatus?: BridgeKycStatus bridgeKycStartedAt?: string + region?: 'STANDARD' | 'LATAM' }) => { const { user } = useUserStore() const [isDrawerOpen, setIsDrawerOpen] = useState(false) @@ -45,23 +68,31 @@ export const KycStatusItem = ({ const finalBridgeKycStatus = wsBridgeKycStatus || bridgeKycStatus || user?.user?.bridgeKycStatus const kycStatus = verification ? verification.status : finalBridgeKycStatus - // Check if KYC is approved to show points earned - const isApproved = kycStatus === 'approved' || kycStatus === 'ACTIVE' - - const isPending = kycStatus === 'under_review' || kycStatus === 'incomplete' || kycStatus === 'ONBOARDING' - const isRejected = kycStatus === 'rejected' || kycStatus === 'INACTIVE' + const isApproved = isKycStatusApproved(kycStatus) + const isPending = isKycStatusPending(kycStatus) + const isRejected = isKycStatusFailed(kycStatus) + const isActionRequired = isKycStatusActionRequired(kycStatus) + // if a verification record exists with NOT_STARTED, the user has initiated KYC + // (backend creates the record on initiation). only hide for bridge's default state. + const isInitiatedButNotStarted = !!verification && isKycStatusNotStarted(kycStatus) const subtitle = useMemo(() => { - if (isPending) { - return 'Under review' - } - if (isApproved) { - return 'Approved' - } - return 'Rejected' - }, [isPending, isApproved, isRejected]) + if (isInitiatedButNotStarted) return 'In progress' + if (isActionRequired) return 'Action needed' + if (isPending) return 'Under review' + if (isApproved) return 'Approved' + if (isRejected) return 'Rejected' + return 'Unknown' + }, [isInitiatedButNotStarted, isActionRequired, isPending, isApproved, isRejected]) + + const title = useMemo(() => { + if (region === 'LATAM') return 'LATAM verification' + return 'Identity verification' + }, [region]) - if (!kycStatus || kycStatus === 'not_started') { + // only hide for bridge's default "not_started" state. + // if a verification record exists, the user has initiated KYC — show it. + if (!verification && isKycStatusNotStarted(kycStatus)) { return null } @@ -78,22 +109,33 @@ export const KycStatusItem = ({ <div className="flex items-center gap-4"> <KYCStatusIcon /> <div className="flex-1"> - <p className="font-semibold">Identity verification</p> + <p className="font-semibold">{title}</p> <div className="flex items-center gap-2"> <p className="text-sm text-grey-1">{subtitle}</p> - <StatusPill status={isPending ? 'pending' : isRejected ? 'cancelled' : 'completed'} /> + <StatusPill + status={ + isInitiatedButNotStarted || isActionRequired || isPending + ? 'pending' + : isRejected + ? 'cancelled' + : 'completed' + } + /> </div> </div> </div> </div> </Card> - <KycStatusDrawer - isOpen={isDrawerOpen} - onClose={handleCloseDrawer} - verification={verification} - bridgeKycStatus={finalBridgeKycStatus} - /> + {isDrawerOpen && ( + <KycStatusDrawer + isOpen={isDrawerOpen} + onClose={handleCloseDrawer} + verification={verification} + bridgeKycStatus={finalBridgeKycStatus} + region={region} + /> + )} </> ) } diff --git a/src/components/Kyc/KycVerificationInProgressModal.tsx b/src/components/Kyc/KycVerificationInProgressModal.tsx index 401aa0ba9..40095eeea 100644 --- a/src/components/Kyc/KycVerificationInProgressModal.tsx +++ b/src/components/Kyc/KycVerificationInProgressModal.tsx @@ -1,16 +1,34 @@ import { useRouter } from 'next/navigation' import ActionModal from '@/components/Global/ActionModal' -import { Icon, type IconName } from '@/components/Global/Icons/Icon' -import { twMerge } from 'tailwind-merge' +import { type IconName } from '@/components/Global/Icons/Icon' +import { PeanutDoesntStoreAnyPersonalInformation } from '@/components/Kyc/PeanutDoesntStoreAnyPersonalInformation' +import { type KycModalPhase } from '@/interfaces' interface KycVerificationInProgressModalProps { isOpen: boolean onClose: () => void + phase?: KycModalPhase + onAcceptTerms?: () => void + onSkipTerms?: () => void + onContinue?: () => void + tosError?: string | null + isLoadingTos?: boolean + preparingTimedOut?: boolean } -// this modal is shown after the user submits their kyc information. -// it waits for a final status from the websocket before disappearing. -export const KycVerificationInProgressModal = ({ isOpen, onClose }: KycVerificationInProgressModalProps) => { +// multi-phase modal shown during and after kyc verification. +// phase transitions are controlled by the parent orchestrator (SumsubKycFlow). +export const KycVerificationInProgressModal = ({ + isOpen, + onClose, + phase = 'verifying', + onAcceptTerms, + onSkipTerms, + onContinue, + tosError, + isLoadingTos, + preparingTimedOut, +}: KycVerificationInProgressModalProps) => { const router = useRouter() const handleGoHome = () => { @@ -18,42 +36,114 @@ export const KycVerificationInProgressModal = ({ isOpen, onClose }: KycVerificat router.push('/home') } - const descriptionWithInfo = ( - <p> - This usually takes less than a minute. You can stay here while we finish, or return to the home screen and - we'll notify you when it's done. - </p> - ) + if (phase === 'verifying') { + return ( + <ActionModal + visible={isOpen} + onClose={onClose} + icon={'clock' as IconName} + iconContainerClassName="bg-yellow-1 text-black" + title="We're verifying your identity" + description={ + <p> + This usually takes less than a minute. You can stay here while we finish, or return to the home + screen and we'll notify you when it's done. + </p> + } + ctas={[ + { + text: 'Go to Home', + onClick: handleGoHome, + variant: 'purple', + className: 'w-full', + shadowSize: '4', + }, + ]} + preventClose + hideModalCloseButton + footer={<PeanutDoesntStoreAnyPersonalInformation />} + /> + ) + } + + if (phase === 'preparing') { + return ( + <ActionModal + visible={isOpen} + onClose={onClose} + isLoadingIcon + iconContainerClassName="bg-yellow-1 text-black" + title="Identity verified!" + description={ + preparingTimedOut + ? "This is taking longer than expected. You can continue and we'll notify you when it's ready." + : 'Preparing your account...' + } + ctas={ + preparingTimedOut + ? [ + { + text: 'Go to Home', + onClick: handleGoHome, + variant: 'purple', + className: 'w-full', + shadowSize: '4', + }, + ] + : [] + } + preventClose + hideModalCloseButton + /> + ) + } + + if (phase === 'bridge_tos') { + const description = + tosError || 'One more step: accept terms of service to enable bank transfers in the US, Europe, and Mexico.' + return ( + <ActionModal + visible={isOpen} + onClose={onClose} + icon={'check' as IconName} + iconContainerClassName="bg-success-1 text-white" + title="Identity verified!" + description={description} + ctas={[ + { + text: tosError ? 'Continue' : 'Accept Terms', + onClick: tosError ? onClose : (onAcceptTerms ?? onClose), + disabled: isLoadingTos, + variant: 'purple', + className: 'w-full', + shadowSize: '4', + }, + ]} + preventClose + hideModalCloseButton + /> + ) + } + + // phase === 'complete' return ( <ActionModal visible={isOpen} onClose={onClose} - icon={'clock' as IconName} - iconContainerClassName="bg-yellow-1 text-black" - title="We're verifying your identity" - description={descriptionWithInfo} + icon={'check' as IconName} + iconContainerClassName="bg-success-1 text-white" + title="All set!" + description="Your account is ready to go." ctas={[ { - text: 'Go to Home', - onClick: handleGoHome, + text: 'Continue', + onClick: onContinue ?? onClose, variant: 'purple', className: 'w-full', shadowSize: '4', }, ]} - preventClose - hideModalCloseButton - footer={<PeanutDoesntStoreAnyPersonalInformation />} /> ) } - -export const PeanutDoesntStoreAnyPersonalInformation = ({ className }: { className?: string }) => { - return ( - <div className={twMerge('flex items-center gap-2 text-[11px] text-grey-1', className)}> - <Icon name="info" className="h-3 w-3" /> - <span>Peanut doesn't store any of your documents</span> - </div> - ) -} diff --git a/src/components/Kyc/PeanutDoesntStoreAnyPersonalInformation.tsx b/src/components/Kyc/PeanutDoesntStoreAnyPersonalInformation.tsx new file mode 100644 index 000000000..3922f0c00 --- /dev/null +++ b/src/components/Kyc/PeanutDoesntStoreAnyPersonalInformation.tsx @@ -0,0 +1,11 @@ +import { Icon } from '@/components/Global/Icons/Icon' +import { twMerge } from 'tailwind-merge' + +export const PeanutDoesntStoreAnyPersonalInformation = ({ className }: { className?: string }) => { + return ( + <div className={twMerge('flex items-center gap-2 text-[11px] text-grey-1', className)}> + <Icon name="info" className="h-3 w-3" /> + <span>Peanut doesn't store any of your documents</span> + </div> + ) +} diff --git a/src/components/Kyc/RejectLabelsList.tsx b/src/components/Kyc/RejectLabelsList.tsx new file mode 100644 index 000000000..69bfb63c5 --- /dev/null +++ b/src/components/Kyc/RejectLabelsList.tsx @@ -0,0 +1,32 @@ +import { useMemo } from 'react' +import InfoCard from '@/components/Global/InfoCard' +import { getRejectLabelInfo } from '@/constants/sumsub-reject-labels.consts' + +// renders sumsub reject labels as individual InfoCards, with a generic fallback +// when no labels are provided. shared between drawer states and modals. +export const RejectLabelsList = ({ rejectLabels }: { rejectLabels?: string[] | null }) => { + const labels = rejectLabels?.length ? rejectLabels : null + + const reasons = useMemo(() => { + if (!labels) return null + return labels.map((label) => getRejectLabelInfo(label)) + }, [labels]) + + if (!reasons) { + return ( + <InfoCard + variant="info" + icon="alert" + description="We need more information to complete your verification. Please provide the requested details to continue." + /> + ) + } + + return ( + <div className="space-y-2"> + {reasons.map((reason, i) => ( + <InfoCard key={i} variant="info" icon="alert" title={reason.title} description={reason.description} /> + ))} + </div> + ) +} diff --git a/src/components/Kyc/SumsubKycFlow.tsx b/src/components/Kyc/SumsubKycFlow.tsx new file mode 100644 index 000000000..2c1ab001c --- /dev/null +++ b/src/components/Kyc/SumsubKycFlow.tsx @@ -0,0 +1,32 @@ +import { Button, type ButtonProps } from '@/components/0_Bruddle/Button' +import { SumsubKycModals } from '@/components/Kyc/SumsubKycModals' +import { useMultiPhaseKycFlow } from '@/hooks/useMultiPhaseKycFlow' +import { type KYCRegionIntent } from '@/app/actions/types/sumsub.types' + +interface SumsubKycFlowProps extends ButtonProps { + onKycSuccess?: () => void + onManualClose?: () => void + regionIntent?: KYCRegionIntent +} + +/** + * entry point for the kyc flow. + * renders a button that initiates kyc, the sumsub sdk wrapper modal, + * and a multi-phase verification modal that handles: + * verifying → preparing → bridge_tos (if applicable) → complete + */ +export const SumsubKycFlow = ({ onKycSuccess, onManualClose, regionIntent, ...buttonProps }: SumsubKycFlowProps) => { + const flow = useMultiPhaseKycFlow({ onKycSuccess, onManualClose, regionIntent }) + + return ( + <> + <Button onClick={() => flow.handleInitiateKyc()} disabled={flow.isLoading} {...buttonProps}> + {flow.isLoading ? 'Loading...' : (buttonProps.children ?? 'Start Verification')} + </Button> + + {flow.error && <p className="text-red-500 mt-2 text-sm">{flow.error}</p>} + + <SumsubKycModals flow={flow} /> + </> + ) +} diff --git a/src/components/Kyc/SumsubKycModals.tsx b/src/components/Kyc/SumsubKycModals.tsx new file mode 100644 index 000000000..a38672b94 --- /dev/null +++ b/src/components/Kyc/SumsubKycModals.tsx @@ -0,0 +1,52 @@ +import { SumsubKycWrapper } from '@/components/Kyc/SumsubKycWrapper' +import { KycVerificationInProgressModal } from '@/components/Kyc/KycVerificationInProgressModal' +import IframeWrapper from '@/components/Global/IframeWrapper' +import { type useMultiPhaseKycFlow } from '@/hooks/useMultiPhaseKycFlow' + +interface SumsubKycModalsProps { + flow: ReturnType<typeof useMultiPhaseKycFlow> + autoStartSdk?: boolean +} + +/** + * shared modal rendering for the multi-phase kyc flow. + * renders the sumsub SDK wrapper, the multi-phase verification modal, + * and the bridge ToS iframe. + * + * pair with useMultiPhaseKycFlow hook for the logic. + */ +export const SumsubKycModals = ({ flow, autoStartSdk }: SumsubKycModalsProps) => { + return ( + <> + <SumsubKycWrapper + visible={flow.showWrapper} + accessToken={flow.accessToken} + onClose={flow.handleSdkClose} + onComplete={flow.handleSdkComplete} + onRefreshToken={flow.refreshToken} + autoStart={autoStartSdk} + /> + + <KycVerificationInProgressModal + isOpen={flow.isModalOpen} + onClose={flow.handleModalClose} + phase={flow.modalPhase} + onAcceptTerms={flow.handleAcceptTerms} + onSkipTerms={flow.handleSkipTerms} + onContinue={flow.completeFlow} + tosError={flow.tosError} + isLoadingTos={flow.isLoadingTos} + preparingTimedOut={flow.preparingTimedOut} + /> + + {flow.tosLink && ( + <IframeWrapper + src={flow.tosLink} + visible={flow.showTosIframe} + onClose={flow.handleTosIframeClose} + skipStartView + /> + )} + </> + ) +} diff --git a/src/components/Kyc/SumsubKycWrapper.tsx b/src/components/Kyc/SumsubKycWrapper.tsx new file mode 100644 index 000000000..8fcf0bc57 --- /dev/null +++ b/src/components/Kyc/SumsubKycWrapper.tsx @@ -0,0 +1,288 @@ +'use client' + +import { useEffect, useMemo, useState, useRef, useCallback } from 'react' +import Modal from '@/components/Global/Modal' +import ActionModal from '@/components/Global/ActionModal' +import { Icon, type IconName } from '@/components/Global/Icons/Icon' +import { Button, type ButtonVariant } from '@/components/0_Bruddle/Button' +import { useModalsContext } from '@/context/ModalsContext' +import StartVerificationView from '../Global/IframeWrapper/StartVerificationView' + +// todo: move to consts +const SUMSUB_SDK_URL = 'https://static.sumsub.com/idensic/static/sns-websdk-builder.js' + +interface SumsubKycWrapperProps { + visible: boolean + accessToken: string | null + onClose: () => void + onComplete: () => void + onError?: (error: unknown) => void + onRefreshToken: () => Promise<string> + /** skip StartVerificationView and launch SDK immediately (for re-submissions) */ + autoStart?: boolean +} + +export const SumsubKycWrapper = ({ + visible, + accessToken, + onClose, + onComplete, + onError, + onRefreshToken, + autoStart, +}: SumsubKycWrapperProps) => { + const [isVerificationStarted, setIsVerificationStarted] = useState(false) + const [sdkLoaded, setSdkLoaded] = useState(false) + const [sdkLoadError, setSdkLoadError] = useState(false) + const [isHelpModalOpen, setIsHelpModalOpen] = useState(false) + const [modalVariant, setModalVariant] = useState<'stop-verification' | 'trouble'>('trouble') + const sdkContainerRef = useRef<HTMLDivElement>(null) + const sdkInstanceRef = useRef<SnsWebSdkInstance | null>(null) + const { setIsSupportModalOpen } = useModalsContext() + + // callback refs to avoid stale closures in sdk init effect + const onCompleteRef = useRef(onComplete) + const onErrorRef = useRef(onError) + const onRefreshTokenRef = useRef(onRefreshToken) + + useEffect(() => { + onCompleteRef.current = onComplete + onErrorRef.current = onError + onRefreshTokenRef.current = onRefreshToken + }, [onComplete, onError, onRefreshToken]) + + // stable wrappers that read from refs + const stableOnComplete = useCallback(() => onCompleteRef.current(), []) + const stableOnError = useCallback((error: unknown) => onErrorRef.current?.(error), []) + const stableOnRefreshToken = useCallback(() => onRefreshTokenRef.current(), []) + + // load sumsub websdk script + useEffect(() => { + const existingScript = document.getElementById('sumsub-websdk') + if (existingScript) { + setSdkLoaded(true) + return + } + + const script = document.createElement('script') + script.id = 'sumsub-websdk' + script.src = SUMSUB_SDK_URL + script.async = true + script.onload = () => setSdkLoaded(true) + script.onerror = () => { + console.error('[sumsub] failed to load websdk script') + setSdkLoadError(true) + } + document.head.appendChild(script) + }, []) + + // initialize sdk when verification starts and all deps are ready + useEffect(() => { + if (!isVerificationStarted || !accessToken || !sdkLoaded || !sdkContainerRef.current) return + + // clean up previous instance + if (sdkInstanceRef.current) { + try { + sdkInstanceRef.current.destroy() + } catch { + // ignore cleanup errors + } + } + + try { + const handleSubmitted = () => { + console.log('[sumsub] onApplicantSubmitted fired') + stableOnComplete() + } + const handleResubmitted = () => { + console.log('[sumsub] onApplicantResubmitted fired') + stableOnComplete() + } + const handleStatusChanged = (payload: { + reviewStatus?: string + reviewResult?: { reviewAnswer?: string } + }) => { + console.log('[sumsub] onApplicantStatusChanged fired', payload) + // auto-close when sumsub shows success screen + if (payload?.reviewStatus === 'completed' && payload?.reviewResult?.reviewAnswer === 'GREEN') { + stableOnComplete() + } + } + + const sdk = window.snsWebSdk + .init(accessToken, stableOnRefreshToken) + .withConf({ lang: 'en', theme: 'light' }) + .withOptions({ addViewportTag: false, adaptIframeHeight: true }) + .on('onApplicantSubmitted', handleSubmitted) + .on('onApplicantResubmitted', handleResubmitted) + .on('onApplicantStatusChanged', handleStatusChanged) + // also listen for idCheck-prefixed events (some sdk versions use these) + .on('idCheck.onApplicantSubmitted', handleSubmitted) + .on('idCheck.onApplicantResubmitted', handleResubmitted) + .on('idCheck.onApplicantStatusChanged', handleStatusChanged) + .on('onError', (error: unknown) => { + console.error('[sumsub] sdk error', error) + stableOnError(error) + }) + .build() + + sdk.launch(sdkContainerRef.current) + sdkInstanceRef.current = sdk + } catch (error) { + console.error('[sumsub] failed to initialize sdk', error) + stableOnError(error) + } + + return () => { + if (sdkInstanceRef.current) { + try { + sdkInstanceRef.current.destroy() + } catch { + // ignore cleanup errors + } + sdkInstanceRef.current = null + } + } + }, [isVerificationStarted, accessToken, sdkLoaded, stableOnComplete, stableOnError, stableOnRefreshToken]) + + // reset state when modal closes, auto-start on re-submission + useEffect(() => { + if (!visible) { + setIsVerificationStarted(false) + setSdkLoadError(false) + if (sdkInstanceRef.current) { + try { + sdkInstanceRef.current.destroy() + } catch { + // ignore cleanup errors + } + sdkInstanceRef.current = null + } + } else if (autoStart) { + // skip StartVerificationView on re-submission (user already consented) + setIsVerificationStarted(true) + } + }, [visible, autoStart]) + + const modalDetails = useMemo(() => { + if (modalVariant === 'trouble') { + return { + title: 'Having trouble verifying?', + description: + "If the verification isn't loading or working properly, please contact our support team for help.", + icon: 'question-mark' as IconName, + iconContainerClassName: 'bg-primary-1', + ctas: [ + { + text: 'Chat with support', + icon: 'peanut-support' as IconName, + onClick: () => setIsSupportModalOpen(true), + variant: 'purple' as ButtonVariant, + shadowSize: '4' as const, + }, + ], + } + } + + return { + title: 'Stop verification?', + description: "If you exit now, your verification won't be completed and you'll need to start again later.", + icon: 'alert' as IconName, + iconContainerClassName: 'bg-secondary-1', + ctas: [ + { + text: 'Stop verification', + onClick: () => { + setIsHelpModalOpen(false) + onClose() + }, + variant: 'purple' as ButtonVariant, + shadowSize: '4' as const, + }, + { + text: 'Continue verifying', + onClick: () => setIsHelpModalOpen(false), + variant: 'transparent' as ButtonVariant, + className: 'underline text-sm font-medium w-full h-fit mt-3', + }, + ], + } + }, [modalVariant, onClose, setIsSupportModalOpen]) + + return ( + <> + <Modal + visible={visible} + onClose={onClose} + classWrap="h-full w-full !max-w-none sm:!max-w-[600px] border-none sm:m-auto m-0" + classOverlay={`bg-black bg-opacity-50 ${isHelpModalOpen ? 'pointer-events-none' : ''}`} + video={false} + className={`z-[100] !p-0 md:!p-6 ${isHelpModalOpen ? 'pointer-events-none' : ''}`} + classButtonClose="hidden" + preventClose={true} + hideOverlay={false} + > + {!isVerificationStarted ? ( + <StartVerificationView + onClose={onClose} + onStartVerification={() => setIsVerificationStarted(true)} + /> + ) : sdkLoadError ? ( + <div className="flex h-full flex-col items-center justify-center gap-4 p-8"> + <Icon name="alert" className="text-red-500 h-12 w-12" /> + <p className="text-center text-lg font-medium"> + Failed to load verification. Please check your connection and try again. + </p> + <Button variant="purple" shadowSize="4" onClick={onClose}> + Close + </Button> + </div> + ) : ( + <div className="flex h-full flex-col gap-2 p-0"> + <div className="relative h-full w-full flex-grow"> + <div ref={sdkContainerRef} className="w-full overflow-auto p-4" style={{ height: '85%' }} /> + <div className="absolute bottom-0 flex h-[12%] w-full flex-col items-center justify-center gap-2 px-5 shadow-md"> + <Button + variant="transparent" + className="h-8 max-w-md font-normal underline" + onClick={() => { + setModalVariant('stop-verification') + setIsHelpModalOpen(true) + }} + shadowType="primary" + > + Stop verification process + </Button> + <button + onClick={() => { + setModalVariant('trouble') + setIsHelpModalOpen(true) + }} + className="flex items-center gap-1" + > + <Icon name="peanut-support" size={16} className="text-grey-1" /> + <p className="text-xs font-medium text-grey-1 underline">Having trouble?</p> + </button> + </div> + </div> + </div> + )} + </Modal> + {/* rendered outside the outer Modal to avoid pointer-events-none blocking clicks */} + <ActionModal + visible={isHelpModalOpen} + onClose={() => setIsHelpModalOpen(false)} + title={modalDetails.title} + description={modalDetails.description} + icon={modalDetails.icon} + iconContainerClassName={modalDetails.iconContainerClassName} + modalPanelClassName="max-w-full" + ctaClassName="grid grid-cols-1 gap-3" + contentContainerClassName="px-6 py-6" + modalClassName="!z-[10001]" + preventClose={true} + ctas={modalDetails.ctas} + /> + </> + ) +} diff --git a/src/components/Kyc/modals/KycActionRequiredModal.tsx b/src/components/Kyc/modals/KycActionRequiredModal.tsx new file mode 100644 index 000000000..707f5ead6 --- /dev/null +++ b/src/components/Kyc/modals/KycActionRequiredModal.tsx @@ -0,0 +1,44 @@ +import ActionModal from '@/components/Global/ActionModal' +import { RejectLabelsList } from '../RejectLabelsList' + +interface KycActionRequiredModalProps { + visible: boolean + onClose: () => void + onResubmit: () => void + isLoading?: boolean + rejectLabels?: string[] | null +} + +// shown when user clicks a locked region while their kyc needs resubmission (soft reject) +export const KycActionRequiredModal = ({ + visible, + onClose, + onResubmit, + isLoading, + rejectLabels, +}: KycActionRequiredModalProps) => { + return ( + <ActionModal + visible={visible} + onClose={onClose} + icon="alert" + iconContainerClassName="bg-yellow-1" + title="Action needed" + description="We need more information to verify your identity." + content={ + <div className="w-full"> + <RejectLabelsList rejectLabels={rejectLabels} /> + </div> + } + ctas={[ + { + text: isLoading ? 'Loading...' : 'Re-submit verification', + icon: 'retry', + onClick: onResubmit, + disabled: isLoading, + shadowSize: '4', + }, + ]} + /> + ) +} diff --git a/src/components/Kyc/modals/KycProcessingModal.tsx b/src/components/Kyc/modals/KycProcessingModal.tsx new file mode 100644 index 000000000..c904bd12d --- /dev/null +++ b/src/components/Kyc/modals/KycProcessingModal.tsx @@ -0,0 +1,27 @@ +import ActionModal from '@/components/Global/ActionModal' + +interface KycProcessingModalProps { + visible: boolean + onClose: () => void +} + +// shown when user clicks a locked region while their kyc is pending/in review +export const KycProcessingModal = ({ visible, onClose }: KycProcessingModalProps) => { + return ( + <ActionModal + visible={visible} + onClose={onClose} + icon="clock" + iconContainerClassName="bg-purple-3" + title="Verification in progress" + description="We're reviewing your identity. This usually takes less than a minute." + ctas={[ + { + text: 'Got it', + onClick: onClose, + shadowSize: '4', + }, + ]} + /> + ) +} diff --git a/src/components/Kyc/modals/KycRejectedModal.tsx b/src/components/Kyc/modals/KycRejectedModal.tsx new file mode 100644 index 000000000..9d2aece39 --- /dev/null +++ b/src/components/Kyc/modals/KycRejectedModal.tsx @@ -0,0 +1,79 @@ +import { useMemo } from 'react' +import ActionModal from '@/components/Global/ActionModal' +import InfoCard from '@/components/Global/InfoCard' +import { RejectLabelsList } from '../RejectLabelsList' +import { isTerminalRejection } from '@/constants/sumsub-reject-labels.consts' +import { useModalsContext } from '@/context/ModalsContext' + +interface KycRejectedModalProps { + visible: boolean + onClose: () => void + onRetry: () => void + isLoading?: boolean + rejectLabels?: string[] | null + rejectType?: 'RETRY' | 'FINAL' | null + failureCount?: number +} + +// shown when user clicks a locked region while their kyc is rejected +export const KycRejectedModal = ({ + visible, + onClose, + onRetry, + isLoading, + rejectLabels, + rejectType, + failureCount, +}: KycRejectedModalProps) => { + const { setIsSupportModalOpen } = useModalsContext() + + const isTerminal = useMemo( + () => isTerminalRejection({ rejectType, failureCount, rejectLabels }), + [rejectType, failureCount, rejectLabels] + ) + + return ( + <ActionModal + visible={visible} + onClose={onClose} + icon={isTerminal ? 'lock' : 'alert'} + iconContainerClassName={isTerminal ? 'bg-red-1' : 'bg-yellow-1'} + title={isTerminal ? 'Verification failed' : 'Verification unsuccessful'} + description={ + isTerminal + ? 'Your verification cannot be retried.' + : 'Your verification was not successful. You can try again.' + } + content={ + <div className="w-full space-y-3"> + <RejectLabelsList rejectLabels={rejectLabels} /> + {isTerminal && ( + <InfoCard + variant="error" + icon="lock" + description="Your verification cannot be retried. Please contact support for help." + /> + )} + </div> + } + ctas={[ + isTerminal + ? { + text: 'Contact support', + onClick: () => { + onClose() + setIsSupportModalOpen(true) + }, + shadowSize: '4', + } + : { + text: isLoading ? 'Loading...' : 'Retry verification', + icon: 'retry', + onClick: onRetry, + disabled: isLoading, + shadowSize: '4', + }, + ]} + /> + ) +} diff --git a/src/components/Kyc/states/KycActionRequired.tsx b/src/components/Kyc/states/KycActionRequired.tsx new file mode 100644 index 000000000..418f28842 --- /dev/null +++ b/src/components/Kyc/states/KycActionRequired.tsx @@ -0,0 +1,34 @@ +import { KYCStatusDrawerItem } from '../KYCStatusDrawerItem' +import { RejectLabelsList } from '../RejectLabelsList' +import { Button } from '@/components/0_Bruddle/Button' +import type { IconName } from '@/components/Global/Icons/Icon' + +// this component shows the kyc status when sumsub requires additional action from the user. +// displays specific rejection reasons when available (e.g. bad photo quality, expired doc). +export const KycActionRequired = ({ + onResume, + isLoading, + rejectLabels, +}: { + onResume: () => void + isLoading?: boolean + rejectLabels?: string[] | null +}) => { + return ( + <div className="space-y-4 p-1"> + <KYCStatusDrawerItem status="pending" customText="Action needed" /> + + <RejectLabelsList rejectLabels={rejectLabels} /> + + <Button + icon={'retry' as IconName} + className="w-full" + shadowSize="4" + onClick={onResume} + disabled={isLoading} + > + {isLoading ? 'Loading...' : 'Re-submit verification'} + </Button> + </div> + ) +} diff --git a/src/components/Kyc/states/KycCompleted.tsx b/src/components/Kyc/states/KycCompleted.tsx index 0c59259b9..f1fc3a79d 100644 --- a/src/components/Kyc/states/KycCompleted.tsx +++ b/src/components/Kyc/states/KycCompleted.tsx @@ -6,6 +6,8 @@ import { formatDate } from '@/utils/general.utils' import { CountryRegionRow } from '../CountryRegionRow' import Image from 'next/image' import { STAR_STRAIGHT_ICON } from '@/assets' +import { type IUserRail } from '@/interfaces' +import { getCurrencyFlagUrl } from '@/constants/countryCurrencyMapping' // @dev TODO: Remove hardcoded KYC points - this should come from backend // See comment in KycStatusItem.tsx for proper implementation plan @@ -16,10 +18,12 @@ export const KycCompleted = ({ bridgeKycApprovedAt, countryCode, isBridge, + rails, }: { bridgeKycApprovedAt?: string countryCode?: string | null isBridge?: boolean + rails?: IUserRail[] }) => { const verifiedOn = useMemo(() => { if (!bridgeKycApprovedAt) return 'N/A' @@ -31,6 +35,8 @@ export const KycCompleted = ({ } }, [bridgeKycApprovedAt]) + const enabledRails = useMemo(() => (rails ?? []).filter((r) => r.status === 'ENABLED'), [rails]) + return ( <div className="space-y-4"> <KYCStatusDrawerItem status="completed" /> @@ -48,6 +54,32 @@ export const KycCompleted = ({ /> <PaymentInfoRow label="Status" value="You are now verified. Enjoy Peanut!" hideBottomBorder /> </Card> + {enabledRails.length > 0 && ( + <Card position="single"> + {enabledRails.map((r, index) => ( + <PaymentInfoRow + key={r.id} + label={ + <div className="flex items-center gap-2"> + {getCurrencyFlagUrl(r.rail.method.currency) && ( + <Image + src={getCurrencyFlagUrl(r.rail.method.currency)!} + alt={`${r.rail.method.currency} flag`} + width={80} + height={80} + className="h-4 w-4 rounded-full object-cover object-center" + loading="lazy" + /> + )} + <span>{r.rail.method.name}</span> + </div> + } + value={r.rail.method.currency} + hideBottomBorder={index === enabledRails.length - 1} + /> + ))} + </Card> + )} </div> ) } diff --git a/src/components/Kyc/states/KycFailed.tsx b/src/components/Kyc/states/KycFailed.tsx index 6c7a45fe6..991ff9a3f 100644 --- a/src/components/Kyc/states/KycFailed.tsx +++ b/src/components/Kyc/states/KycFailed.tsx @@ -1,47 +1,64 @@ import { Button } from '@/components/0_Bruddle/Button' import { PaymentInfoRow } from '@/components/Payment/PaymentInfoRow' import { KYCStatusDrawerItem } from '../KYCStatusDrawerItem' +import { RejectLabelsList } from '../RejectLabelsList' import Card from '@/components/Global/Card' +import InfoCard from '@/components/Global/InfoCard' import { useMemo } from 'react' import { formatDate } from '@/utils/general.utils' import { CountryRegionRow } from '../CountryRegionRow' +import { isTerminalRejection } from '@/constants/sumsub-reject-labels.consts' +import { useModalsContext } from '@/context/ModalsContext' // this component shows the kyc status when it's failed/rejected. -// it displays the reason for the failure and provides a retry button. +// for sumsub: maps reject labels to human-readable reasons, handles terminal vs retryable states. +// for bridge: shows raw reason string as before. export const KycFailed = ({ - reason, + rejectLabels, + bridgeReason, + isSumsub, + rejectType, + failureCount, bridgeKycRejectedAt, countryCode, isBridge, onRetry, isLoading, }: { - reason: string | null + rejectLabels?: string[] | null + bridgeReason?: string | null + isSumsub?: boolean + rejectType?: 'RETRY' | 'FINAL' | null + failureCount?: number bridgeKycRejectedAt?: string countryCode?: string | null isBridge?: boolean onRetry: () => void isLoading?: boolean }) => { + const { setIsSupportModalOpen } = useModalsContext() + const rejectedOn = useMemo(() => { if (!bridgeKycRejectedAt) return 'N/A' try { return formatDate(new Date(bridgeKycRejectedAt)) } catch (error) { - console.error('Failed to parse bridgeKycRejectedAt date:', error) + console.error('failed to parse bridgeKycRejectedAt date:', error) return 'N/A' } }, [bridgeKycRejectedAt]) - const formattedReason = useMemo(() => { - const reasonText = reason || 'There was an issue. Contact Support.' - // Split by actual newline characters (\n) or the escaped sequence (\\n) - const lines = reasonText.split(/\\n|\n/).filter((line) => line.trim() !== '') - - if (lines.length === 1) { - return reasonText - } + // only sumsub verifications can be terminal — bridge rejections always allow retry + const isTerminal = useMemo( + () => (isSumsub ? isTerminalRejection({ rejectType, failureCount, rejectLabels }) : false), + [isSumsub, rejectType, failureCount, rejectLabels] + ) + // formatted bridge reason (legacy display) + const formattedBridgeReason = useMemo(() => { + const reasonText = bridgeReason || 'There was an issue. Contact Support.' + const lines = reasonText.split(/\\n|\n/).filter((line) => line.trim() !== '') + if (lines.length === 1) return reasonText return ( <ul className="list-disc space-y-1 pl-4"> {lines.map((line, index) => ( @@ -49,28 +66,49 @@ export const KycFailed = ({ ))} </ul> ) - }, [reason]) + }, [bridgeReason]) return ( <div className="space-y-4"> <KYCStatusDrawerItem status="failed" /> + <Card position="single"> <PaymentInfoRow label="Rejected on" value={rejectedOn} /> - <CountryRegionRow countryCode={countryCode} isBridge={isBridge} /> - - <PaymentInfoRow label="Reason" value={formattedReason} hideBottomBorder /> + {!isSumsub && <PaymentInfoRow label="Reason" value={formattedBridgeReason} hideBottomBorder />} </Card> - <Button - icon="retry" - variant="purple" - className="w-full" - shadowSize="4" - onClick={onRetry} - disabled={isLoading} - > - {isLoading ? 'Loading...' : 'Retry verification'} - </Button> + + {isSumsub && <RejectLabelsList rejectLabels={rejectLabels} />} + + {isTerminal ? ( + <div className="space-y-3"> + <InfoCard + variant="error" + icon="lock" + description="Your verification cannot be retried. Please contact support for help." + /> + {/* TODO: auto-create crisp support ticket on terminal rejection */} + <Button + variant="purple" + className="w-full" + shadowSize="4" + onClick={() => setIsSupportModalOpen(true)} + > + Contact support + </Button> + </div> + ) : ( + <Button + icon="retry" + variant="purple" + className="w-full" + shadowSize="4" + onClick={onRetry} + disabled={isLoading} + > + {isLoading ? 'Loading...' : 'Retry verification'} + </Button> + )} </div> ) } diff --git a/src/components/Kyc/states/KycRequiresDocuments.tsx b/src/components/Kyc/states/KycRequiresDocuments.tsx new file mode 100644 index 000000000..16407bcea --- /dev/null +++ b/src/components/Kyc/states/KycRequiresDocuments.tsx @@ -0,0 +1,45 @@ +import { KYCStatusDrawerItem } from '../KYCStatusDrawerItem' +import { Button } from '@/components/0_Bruddle/Button' +import { getRequirementLabel } from '@/constants/bridge-requirements.consts' + +// shows when a payment provider (bridge) needs additional documents from the user. +// displays the specific requirements with human-readable descriptions. +export const KycRequiresDocuments = ({ + requirements, + onSubmitDocuments, + isLoading, +}: { + requirements: string[] + onSubmitDocuments: () => void + isLoading?: boolean +}) => { + return ( + <div className="space-y-4 p-1"> + <KYCStatusDrawerItem status="pending" customText="Additional documents needed" /> + + <div className="space-y-3"> + <p className="text-sm text-gray-1">Your payment provider requires additional verification documents.</p> + {requirements.length > 0 ? ( + requirements.map((req) => { + const label = getRequirementLabel(req) + return ( + <div key={req} className="border border-n-1 p-3"> + <p className="text-sm font-bold">{label.title}</p> + <p className="mt-1 text-xs text-gray-1">{label.description}</p> + </div> + ) + }) + ) : ( + <div className="border border-n-1 p-3"> + <p className="text-sm font-bold">Additional Document</p> + <p className="mt-1 text-xs text-gray-1">Please provide the requested document.</p> + </div> + )} + </div> + + <Button icon="docs" className="w-full" shadowSize="4" onClick={onSubmitDocuments} disabled={isLoading}> + {isLoading ? 'Loading...' : 'Submit documents'} + </Button> + </div> + ) +} diff --git a/src/components/LandingPage/CardPioneers.tsx b/src/components/LandingPage/CardPioneers.tsx new file mode 100644 index 000000000..5862e2f5f --- /dev/null +++ b/src/components/LandingPage/CardPioneers.tsx @@ -0,0 +1,113 @@ +'use client' +import { motion } from 'framer-motion' +import { Button } from '@/components/0_Bruddle/Button' +import { Star } from '@/assets' + +import { useRouter } from 'next/navigation' +import PioneerCard3D from './PioneerCard3D' +import { useEffect, useState } from 'react' +import { Icon } from '@/components/Global/Icons/Icon' + +const CardPioneers = () => { + const router = useRouter() + const [screenWidth, setScreenWidth] = useState(1200) + + useEffect(() => { + const handleResize = () => setScreenWidth(window.innerWidth) + handleResize() // Set actual width on mount + window.addEventListener('resize', handleResize) + return () => window.removeEventListener('resize', handleResize) + }, []) + + const isMobile = screenWidth < 768 + + const handleCTA = () => { + router.push('/lp/card') + } + + return ( + <section id="card-pioneers" className="relative overflow-hidden bg-secondary-1 py-16 text-n-1 md:py-24"> + {!isMobile && <Stars />} + <div className="relative mx-auto flex max-w-7xl flex-col items-center gap-8 px-4 md:flex-row md:gap-12 md:px-8 lg:gap-20"> + {/* Card on left */} + <div className="flex w-full justify-center md:w-1/2"> + <PioneerCard3D /> + </div> + + {/* Copy on right */} + <div className="w-full text-center md:w-1/2 md:text-left"> + <h1 className="font-roboto-flex-extrabold text-[2.25rem] font-extraBlack leading-tight md:text-5xl lg:text-6xl"> + PAY EVERYWHERE. + </h1> + + <p className="font-roboto-flex mt-4 text-lg md:text-xl"> + Get the Peanut Card and pay anywhere in the world. + </p> + + <ul className="font-roboto-flex mt-6 space-y-3 text-base md:text-lg"> + <li className="flex items-center justify-center gap-3 md:justify-start"> + <Icon name="check-circle" className="h-6 w-6 flex-shrink-0 text-n-1" /> + Best rates - no hidden fees + </li> + <li className="flex items-center justify-center gap-3 md:justify-start"> + <Icon name="check-circle" className="h-6 w-6 flex-shrink-0 text-n-1" /> + Earn forever for every invite + </li> + <li className="flex items-center justify-center gap-3 md:justify-start"> + <Icon name="check-circle" className="h-6 w-6 flex-shrink-0 text-n-1" /> + Self-custodial - your funds, your control + </li> + </ul> + + <div className="mt-8 flex flex-col items-center gap-4"> + <Button + shadowSize="4" + onClick={handleCTA} + className="w-full px-10 py-4 text-lg font-extrabold md:w-auto" + > + GET MY CARD + </Button> + </div> + </div> + </div> + </section> + ) +} + +// Animated stars - matches Manteca.tsx pattern +const Stars = () => ( + <> + <motion.img + src={Star.src} + alt="Star" + width={50} + height={50} + className="absolute left-12 top-10" + initial={{ opacity: 0, translateY: 20, translateX: 5, rotate: 22 }} + whileInView={{ opacity: 1, translateY: 0, translateX: 0, rotate: 22 }} + transition={{ type: 'spring', damping: 5, delay: 0.2 }} + /> + <motion.img + src={Star.src} + alt="Star" + width={40} + height={40} + className="absolute bottom-16 right-16" + initial={{ opacity: 0, translateY: 20, translateX: 5, rotate: -15 }} + whileInView={{ opacity: 1, translateY: 0, translateX: 0, rotate: -15 }} + transition={{ type: 'spring', damping: 5, delay: 0.4 }} + /> + <motion.img + src={Star.src} + alt="Star" + width={35} + height={35} + className="absolute right-1/3 top-8" + initial={{ opacity: 0, translateY: 20, rotate: 10 }} + whileInView={{ opacity: 1, translateY: 0, rotate: 10 }} + transition={{ type: 'spring', damping: 5, delay: 0.6 }} + /> + </> +) + +export { CardPioneers } diff --git a/src/components/LandingPage/Manteca.tsx b/src/components/LandingPage/Manteca.tsx index 3b574e500..22ad4d9ee 100644 --- a/src/components/LandingPage/Manteca.tsx +++ b/src/components/LandingPage/Manteca.tsx @@ -30,6 +30,7 @@ const Manteca = () => { return ( <section + id="qr-pay" className="relative overflow-hidden py-20 text-n-1 md:h-[850px] lg:h-[750px]" style={{ backgroundColor: '#F9F4F0' }} > diff --git a/src/components/LandingPage/PioneerCard3D.tsx b/src/components/LandingPage/PioneerCard3D.tsx new file mode 100644 index 000000000..dd53dcc05 --- /dev/null +++ b/src/components/LandingPage/PioneerCard3D.tsx @@ -0,0 +1,158 @@ +'use client' +import { motion, useMotionValue, useTransform, useSpring, useMotionTemplate } from 'framer-motion' +import Image from 'next/image' +import { CARD_GRADIENT_4, CARD_GRADIENT_5, CARD_GRADIENT_9, CARD_GRADIENT_10 } from '@/assets/cards' +import { useRef, useState, useEffect, useCallback } from 'react' + +const CARD_BACKGROUNDS = [CARD_GRADIENT_4, CARD_GRADIENT_9, CARD_GRADIENT_10, CARD_GRADIENT_5] +const CYCLE_INTERVAL = 3000 + +interface PioneerCard3DProps { + className?: string +} + +const PioneerCard3D = ({ className }: PioneerCard3DProps) => { + const cardRef = useRef<HTMLDivElement>(null) + const [activeIndex, setActiveIndex] = useState(0) + const timerRef = useRef<NodeJS.Timeout | null>(null) + + const x = useMotionValue(0) + const y = useMotionValue(0) + const isInteractingRef = useRef(false) + const resumeTimerRef = useRef<ReturnType<typeof setTimeout> | null>(null) + + const rotateX = useTransform(y, [-100, 100], [12, -12]) + const rotateY = useTransform(x, [-100, 100], [-12, 12]) + + const shadowX = useTransform(x, [-100, 100], [14, -2]) + const shadowY = useTransform(y, [-100, 100], [14, -2]) + + const springRotateX = useSpring(rotateX, { stiffness: 200, damping: 25 }) + const springRotateY = useSpring(rotateY, { stiffness: 200, damping: 25 }) + const springShadowX = useSpring(shadowX, { stiffness: 200, damping: 25 }) + const springShadowY = useSpring(shadowY, { stiffness: 200, damping: 25 }) + + const boxShadow = useMotionTemplate`${springShadowX}px ${springShadowY}px 0 #000000` + + const advance = useCallback(() => { + setActiveIndex((prev) => (prev + 1) % CARD_BACKGROUNDS.length) + }, []) + + const resetTimer = useCallback(() => { + if (timerRef.current) clearInterval(timerRef.current) + timerRef.current = setInterval(advance, CYCLE_INTERVAL) + }, [advance]) + + useEffect(() => { + resetTimer() + return () => { + if (timerRef.current) clearInterval(timerRef.current) + } + }, [resetTimer]) + + // Mobile auto-oscillation: slow sine wave to show off parallax without interaction + // Pauses when user touches/clicks the card and resumes 2s after release + useEffect(() => { + const isMobile = window.matchMedia('(max-width: 768px)').matches + if (!isMobile) return + + let frame: number + const startTime = Date.now() + + const animate = () => { + if (!isInteractingRef.current) { + const elapsed = (Date.now() - startTime) / 1000 + // gentle figure-8 pattern using offset sine waves + x.set(Math.sin(elapsed * 0.4) * 60) + y.set(Math.sin(elapsed * 0.3 + 1) * 40) + } + frame = requestAnimationFrame(animate) + } + + frame = requestAnimationFrame(animate) + return () => cancelAnimationFrame(frame) + }, [x, y]) + + const pauseOscillation = useCallback(() => { + isInteractingRef.current = true + if (resumeTimerRef.current) clearTimeout(resumeTimerRef.current) + }, []) + + const resumeOscillation = useCallback(() => { + if (resumeTimerRef.current) clearTimeout(resumeTimerRef.current) + resumeTimerRef.current = setTimeout(() => { + isInteractingRef.current = false + }, 2000) + }, []) + + useEffect(() => { + return () => { + if (resumeTimerRef.current) clearTimeout(resumeTimerRef.current) + } + }, []) + + const handleClick = () => { + advance() + resetTimer() + } + + const handlePointerDown = (e: React.PointerEvent<HTMLDivElement>) => { + pauseOscillation() + if (!cardRef.current) return + const rect = cardRef.current.getBoundingClientRect() + x.set(e.clientX - rect.left - rect.width / 2) + y.set(e.clientY - rect.top - rect.height / 2) + } + + const handlePointerMove = (e: React.PointerEvent<HTMLDivElement>) => { + if (!cardRef.current) return + const rect = cardRef.current.getBoundingClientRect() + x.set(e.clientX - rect.left - rect.width / 2) + y.set(e.clientY - rect.top - rect.height / 2) + } + + const handlePointerLeave = () => { + x.set(0) + y.set(0) + resumeOscillation() + } + + return ( + <div + ref={cardRef} + className={`inline-block w-full max-w-96 ${className || ''}`} + onPointerDown={handlePointerDown} + onPointerMove={handlePointerMove} + onPointerLeave={handlePointerLeave} + style={{ perspective: '1000px' }} + > + <motion.div + className="relative aspect-[384/240] w-full cursor-pointer overflow-hidden" + style={{ + rotateX: springRotateX as unknown as number, + rotateY: springRotateY as unknown as number, + transformStyle: 'preserve-3d', + borderRadius: '5.35%', + border: '2px solid #000000', + backgroundColor: '#000000', + boxShadow, + }} + onClick={handleClick} + > + {/* All card images layered, only the active one is visible */} + {CARD_BACKGROUNDS.map((bg, i) => ( + <motion.div + key={i} + className="absolute -inset-px" + animate={{ opacity: i === activeIndex ? 1 : 0 }} + transition={{ duration: 0.6, ease: 'easeInOut' }} + > + <Image src={bg} alt="Card design" fill className="object-cover" priority /> + </motion.div> + ))} + </motion.div> + </div> + ) +} + +export default PioneerCard3D diff --git a/src/components/LandingPage/RegulatedRails.tsx b/src/components/LandingPage/RegulatedRails.tsx index 655b8415d..8ccea37f5 100644 --- a/src/components/LandingPage/RegulatedRails.tsx +++ b/src/components/LandingPage/RegulatedRails.tsx @@ -59,7 +59,11 @@ export function RegulatedRails() { } } return ( - <section className="relative overflow-hidden py-20 text-n-1" style={{ backgroundColor: bgColor }}> + <section + id="regulated-rails" + className="relative overflow-hidden py-20 text-n-1" + style={{ backgroundColor: bgColor }} + > <div className="absolute left-0 top-0 h-full w-full overflow-hidden"> {/* Animated clouds */} <motion.img diff --git a/src/components/LandingPage/TweetCarousel.tsx b/src/components/LandingPage/TweetCarousel.tsx index 5db714d10..452c2455c 100644 --- a/src/components/LandingPage/TweetCarousel.tsx +++ b/src/components/LandingPage/TweetCarousel.tsx @@ -334,7 +334,7 @@ const TweetCarousel = () => { if (columns.length === 0) return null return ( - <section className="w-full bg-primary-1 pb-10 pt-12 md:pb-14 md:pt-16"> + <section id="testimonials" className="w-full bg-primary-1 pb-10 pt-12 md:pb-14 md:pt-16"> <div className="mx-auto max-w-7xl px-4 pb-8"> <h2 className="font-roboto-flex-extrabold text-center text-[4rem] font-extraBlack text-n-1 lg:text-headingMedium"> WALL OF LOVE diff --git a/src/components/LandingPage/dropLink.tsx b/src/components/LandingPage/dropLink.tsx index 0f10006ce..a7fbea951 100644 --- a/src/components/LandingPage/dropLink.tsx +++ b/src/components/LandingPage/dropLink.tsx @@ -12,6 +12,7 @@ const businessBgColor = '#90A8ED' export function DropLink() { return ( <section + id="drop-link" className="flex min-h-[500px] items-center justify-center px-4 py-16 text-n-1 md:min-h-[700px]" style={{ backgroundColor: businessBgColor }} > diff --git a/src/components/LandingPage/faq.tsx b/src/components/LandingPage/faq.tsx index 27ec5e5de..2bf3313d5 100644 --- a/src/components/LandingPage/faq.tsx +++ b/src/components/LandingPage/faq.tsx @@ -14,6 +14,7 @@ type LocalFAQsProps = FAQsProps & { export function FAQs({ heading, questions, marquee = { visible: false } }: LocalFAQsProps) { return ( <div + id="faq" className="bg-secondary overflow-x-hidden" style={{ backgroundImage: `url(${PeanutsBG.src})`, diff --git a/src/components/LandingPage/hero.tsx b/src/components/LandingPage/hero.tsx index eb851376d..0085fb2cb 100644 --- a/src/components/LandingPage/hero.tsx +++ b/src/components/LandingPage/hero.tsx @@ -60,44 +60,6 @@ const renderSparkle = (variant: 'primary' | 'secondary') => /> ) -const renderArrows = (variant: 'primary' | 'secondary', arrowOpacity: number, buttonVisible?: boolean) => - variant === 'primary' && ( - <> - <Image - src="/arrows/small-arrow.svg" - alt="Arrow pointing to button" - width={32} - height={16} - className="absolute -left-8 -top-5 block -translate-y-1/2 transform md:hidden" - style={{ opacity: buttonVisible ? arrowOpacity : 0, rotate: '8deg' }} - /> - <Image - src="/arrows/small-arrow.svg" - alt="Arrow pointing to button" - width={32} - height={16} - className="absolute -right-8 -top-5 block -translate-y-1/2 scale-x-[-1] transform md:hidden" - style={{ opacity: buttonVisible ? arrowOpacity : 0, rotate: '-8deg' }} - /> - <Image - src="/arrows/small-arrow.svg" - alt="Arrow pointing to button" - width={40} - height={20} - className="absolute -left-10 -top-6 hidden -translate-y-1/2 transform md:block" - style={{ opacity: buttonVisible ? arrowOpacity : 0, rotate: '8deg' }} - /> - <Image - src="/arrows/small-arrow.svg" - alt="Arrow pointing to button" - width={40} - height={20} - className="absolute -right-10 -top-6 hidden -translate-y-1/2 scale-x-[-1] transform md:block" - style={{ opacity: buttonVisible ? arrowOpacity : 0, rotate: '-8deg' }} - /> - </> - ) - export function Hero({ primaryCta, secondaryCta, buttonVisible, buttonScale = 1 }: HeroProps) { const [screenWidth, setScreenWidth] = useState(typeof window !== 'undefined' ? window.innerWidth : 1200) @@ -115,8 +77,6 @@ export function Hero({ primaryCta, secondaryCta, buttonVisible, buttonScale = 1 }, []) const renderCTAButton = (cta: CTAButton, variant: 'primary' | 'secondary') => { - const arrowOpacity = 1 // Always visible - return ( <motion.div className={getButtonContainerClasses(variant)} @@ -142,14 +102,15 @@ export function Hero({ primaryCta, secondaryCta, buttonVisible, buttonScale = 1 {cta.subtext && ( <span className="mt-2 block text-center text-sm italic text-n-1 md:text-base">{cta.subtext}</span> )} - - {renderArrows(variant, arrowOpacity, buttonVisible)} </motion.div> ) } return ( - <section className="relative flex min-h-[85vh] w-full flex-col items-center justify-between bg-primary-1 px-4 py-4 xl:h-fit xl:justify-center"> + <section + id="hero" + className="relative flex min-h-[85vh] w-full flex-col items-center justify-between bg-primary-1 px-4 py-4 xl:h-fit xl:justify-center" + > <CloudImages screenWidth={screenWidth} /> <div className="relative mt-10 w-full md:mt-0"> <img diff --git a/src/components/LandingPage/index.ts b/src/components/LandingPage/index.ts index 3288a182e..417673b2a 100644 --- a/src/components/LandingPage/index.ts +++ b/src/components/LandingPage/index.ts @@ -7,3 +7,4 @@ export * from './securityBuiltIn' export * from './sendInSeconds' export * from './yourMoney' export * from './RegulatedRails' +export * from './CardPioneers' diff --git a/src/components/LandingPage/noFees.tsx b/src/components/LandingPage/noFees.tsx index 4b830ac6c..11ed75983 100644 --- a/src/components/LandingPage/noFees.tsx +++ b/src/components/LandingPage/noFees.tsx @@ -63,7 +63,10 @@ export function NoFees({ className }: { className?: string }) { } return ( - <section className={twMerge('relative overflow-hidden bg-secondary-3 px-4 py-24 md:py-14', className)}> + <section + id="no-fees" + className={twMerge('relative overflow-hidden bg-secondary-3 px-4 py-24 md:py-14', className)} + > <div className="absolute left-0 top-0 h-full w-full overflow-hidden"> {/* Animated clouds */} <motion.img diff --git a/src/components/LandingPage/securityBuiltIn.tsx b/src/components/LandingPage/securityBuiltIn.tsx index 5f48b8d82..b139439e6 100644 --- a/src/components/LandingPage/securityBuiltIn.tsx +++ b/src/components/LandingPage/securityBuiltIn.tsx @@ -48,7 +48,7 @@ const features: Feature[] = [ export function SecurityBuiltIn() { return ( - <section className="bg-primary-1 px-4 py-16 text-n-1 md:py-40"> + <section id="security" className="bg-primary-1 px-4 py-16 text-n-1 md:py-40"> <div className="mx-auto max-w-7xl"> <div className="mb-12 text-center md:mb-16 md:text-left"> <h1 className="font-roboto-flex-extrabold text-left text-heading font-extraBlack md:text-6xl lg:text-heading"> diff --git a/src/components/LandingPage/sendInSeconds.tsx b/src/components/LandingPage/sendInSeconds.tsx index a83c36602..84707ff6b 100644 --- a/src/components/LandingPage/sendInSeconds.tsx +++ b/src/components/LandingPage/sendInSeconds.tsx @@ -72,41 +72,8 @@ export function SendInSeconds() { /> ) - const renderArrows = () => ( - <> - <Image - src="/arrows/small-arrow.svg" - alt="Arrow pointing to button" - width={48} - height={24} - className="absolute -left-13 -top-7 block -translate-y-1/2 transform md:hidden" - /> - <Image - src="/arrows/small-arrow.svg" - alt="Arrow pointing to button" - width={48} - height={24} - className="absolute -right-13 -top-7 block -translate-y-1/2 scale-x-[-1] transform md:hidden" - /> - <Image - src="/arrows/small-arrow.svg" - alt="Arrow pointing to button" - width={64} - height={32} - className="absolute -left-18 -top-7 hidden -translate-y-1/2 transform md:block" - /> - <Image - src="/arrows/small-arrow.svg" - alt="Arrow pointing to button" - width={64} - height={32} - className="absolute -right-18 -top-7 hidden -translate-y-1/2 scale-x-[-1] transform md:block" - /> - </> - ) - return ( - <section className="relative overflow-hidden bg-secondary-1 px-4 py-16 text-n-1 md:py-32"> + <section id="send-in-seconds" className="relative overflow-hidden bg-secondary-1 px-4 py-16 text-n-1 md:py-32"> {/* Decorative clouds, stars, and exclamations */} <div className="absolute left-0 top-0 h-full w-full overflow-hidden"> {/* Animated clouds */} @@ -239,8 +206,6 @@ export function SendInSeconds() { </Button> </a> </motion.div> - - {renderArrows()} </div> </div> </section> diff --git a/src/components/LandingPage/yourMoney.tsx b/src/components/LandingPage/yourMoney.tsx index a5875c6c5..8d26169da 100644 --- a/src/components/LandingPage/yourMoney.tsx +++ b/src/components/LandingPage/yourMoney.tsx @@ -4,7 +4,7 @@ import { Button } from '@/components/0_Bruddle/Button' export function YourMoney() { return ( - <section className="bg-secondary-1 px-4 py-12 text-n-1 md:py-16"> + <section id="global-cash" className="bg-secondary-1 px-4 py-12 text-n-1 md:py-16"> <div className="mx-auto flex max-w-7xl flex-col items-center justify-between gap-7 md:flex-row"> <div className="mb-12 mt-4 w-full space-y-6 text-center md:mb-20 md:mt-6 md:w-1/2 md:text-left"> <h1 className="font-roboto-flex-extrabold text-6xl font-extraBlack md:text-6xl lg:text-headingMedium"> diff --git a/src/components/Points/CashCard.tsx b/src/components/Points/CashCard.tsx new file mode 100644 index 000000000..0f19fd97f --- /dev/null +++ b/src/components/Points/CashCard.tsx @@ -0,0 +1,31 @@ +'use client' + +import { Icon } from '@/components/Global/Icons/Icon' +import { Tooltip } from '@/components/Tooltip' + +interface CashCardProps { + cashbackAllowance: number | null + lifetimeEarned: number +} + +export const CashCard = ({ cashbackAllowance, lifetimeEarned }: CashCardProps) => { + return ( + <div className="flex flex-col gap-1.5"> + {/* cashback allowance display with tooltip */} + {cashbackAllowance !== null && ( + <div className="flex items-center gap-1.5"> + <h2 className="text-xl font-bold text-black">Cashback left: ${cashbackAllowance.toFixed(2)}</h2> + <Tooltip + content="You earn cashback on payments and withdrawals. Use Peanut more and invite friends to unlock a higher cashback allowance." + position="bottom" + > + <Icon name="info" className="size-4 flex-shrink-0 text-grey-1" /> + </Tooltip> + </div> + )} + + {/* lifetime earned - subtle */} + <p className="text-sm text-grey-1">Lifetime earned: ${lifetimeEarned.toFixed(2)}</p> + </div> + ) +} diff --git a/src/components/Points/PerkClaimCard.tsx b/src/components/Points/PerkClaimCard.tsx new file mode 100644 index 000000000..c81b801ae --- /dev/null +++ b/src/components/Points/PerkClaimCard.tsx @@ -0,0 +1,61 @@ +'use client' + +import { Button } from '@/components/0_Bruddle/Button' +import Card from '@/components/Global/Card' +import { useHoldToClaim } from '@/hooks/useHoldToClaim' +import { Icon } from '@/components/Global/Icons/Icon' +import { getShakeClass } from '@/utils/perk.utils' +import { extractInviteeName } from '@/utils/general.utils' +import type { PendingPerk } from '@/services/perks' + +interface PerkClaimCardProps { + perk: PendingPerk + onClaim: () => void + isClaiming: boolean +} + +export function PerkClaimCard({ perk, onClaim, isClaiming }: PerkClaimCardProps) { + const { holdProgress, isShaking, shakeIntensity, buttonProps } = useHoldToClaim({ + onComplete: onClaim, + disabled: isClaiming, + }) + + const inviteeName = extractInviteeName(perk.reason) + + return ( + <div className={getShakeClass(isShaking, shakeIntensity)}> + <Card className="border-2 border-primary-1 bg-gradient-to-r from-primary-1/10 to-primary-2/10"> + <div className="mb-3 flex items-center gap-3"> + <div className="flex items-center justify-center rounded-full bg-primary-1 p-2"> + <Icon name="gift" className="size-5 text-white" /> + </div> + <div className="flex-1"> + <p className="font-bold text-black">You earned ${perk.amountUsd}!</p> + <p className="text-sm text-grey-1">{inviteeName} became a Card Pioneer</p> + </div> + </div> + + <Button + {...buttonProps} + variant="dark" + shadowSize="4" + disabled={isClaiming} + loading={isClaiming} + className={`${buttonProps.className} w-full`} + > + {/* Progress fill from left to right */} + <div + className="absolute inset-0 bg-primary-1 transition-all duration-100" + style={{ + width: `${holdProgress}%`, + left: 0, + }} + /> + <span className="relative z-10"> + {isClaiming ? 'Claiming...' : `Hold to claim $${perk.amountUsd}`} + </span> + </Button> + </Card> + </div> + ) +} diff --git a/src/components/Profile/components/IdentityVerificationCountryList.tsx b/src/components/Profile/components/IdentityVerificationCountryList.tsx deleted file mode 100644 index 4146a8dad..000000000 --- a/src/components/Profile/components/IdentityVerificationCountryList.tsx +++ /dev/null @@ -1,154 +0,0 @@ -'use client' -import { Icon } from '@/components/Global/Icons/Icon' -import { SearchInput } from '@/components/SearchInput' -import { getCountriesForRegion } from '@/utils/identityVerification' -import { MantecaSupportedExchanges } from '@/components/AddMoney/consts' -import StatusBadge from '@/components/Global/Badges/StatusBadge' -import { Button } from '@/components/0_Bruddle/Button' -import * as Accordion from '@radix-ui/react-accordion' -import { useRouter } from 'next/navigation' -import { useState } from 'react' -import CountryListSection from './CountryListSection' -import ActionModal from '@/components/Global/ActionModal' - -const IdentityVerificationCountryList = ({ region }: { region: string }) => { - const [searchTerm, setSearchTerm] = useState('') - const router = useRouter() - const [isUnavailableModalOpen, setIsUnavailableModalOpen] = useState(false) - const [selectedUnavailableCountry, setSelectedUnavailableCountry] = useState<string | null>(null) - - const { supportedCountries, limitedAccessCountries, unsupportedCountries } = getCountriesForRegion(region) - - // Filter both arrays based on search term - const filteredSupportedCountries = supportedCountries.filter((country) => - country.title.toLowerCase().includes(searchTerm.toLowerCase()) - ) - - const filteredLimitedAccessCountries = limitedAccessCountries.filter((country) => - country.title.toLowerCase().includes(searchTerm.toLowerCase()) - ) - - const filteredUnsupportedCountries = unsupportedCountries.filter((country) => - country.title.toLowerCase().includes(searchTerm.toLowerCase()) - ) - - const isLatam = region === 'latam' - - return ( - <div className="flex h-full w-full flex-1 flex-col justify-start gap-4"> - <div className="space-y-2"> - <SearchInput - value={searchTerm} - onChange={(e) => setSearchTerm(e.target.value)} - onClear={() => setSearchTerm('')} - placeholder="Search by country name" - /> - </div> - - <Accordion.Root - type="multiple" - defaultValue={['available-countries', 'limited-access']} - className="space-y-4" - > - <CountryListSection - value="available-countries" - title="Available countries in this region" - description="Choose the one you want to move money on." - countries={filteredSupportedCountries} - onCountryClick={(country) => { - if (isLatam) { - router.push(`/profile/identity-verification/${region}/${encodeURIComponent(country.id)}`) - } else { - router.push(`/profile/identity-verification/${region}/${encodeURIComponent('bridge')}`) - } - }} - rightContent={() => (isLatam ? undefined : <Icon name="check" className="size-4 text-success-1" />)} - defaultOpen - /> - - <CountryListSection - value="limited-access" - title="Limited access" - description="These countries support verification, but don't have full payment support yet." - countries={filteredLimitedAccessCountries} - onCountryClick={(country) => { - // Check if country is in MantecaSupportedExchanges - const countryCode = country.iso2?.toUpperCase() - const isMantecaSupported = - countryCode && Object.prototype.hasOwnProperty.call(MantecaSupportedExchanges, countryCode) - - if (isMantecaSupported && isLatam) { - // Route to Manteca-specific KYC - router.push(`/profile/identity-verification/${region}/${encodeURIComponent(country.id)}`) - } else { - // Route to Bridge KYC for all other countries - router.push(`/profile/identity-verification/${region}/${encodeURIComponent('bridge')}`) - } - }} - rightContent={() => ( - <div className="flex items-center gap-2"> - <StatusBadge status="custom" customText="Limited access" /> - <Button - shadowSize="4" - size="small" - className="h-6 w-6 rounded-full p-0 shadow-[0.12rem_0.12rem_0_#000000]" - > - <div className="flex size-7 items-center justify-center"> - <Icon name="chevron-up" className="h-9 rotate-90" /> - </div> - </Button> - </div> - )} - defaultOpen - /> - - {filteredUnsupportedCountries.length > 0 && ( - <CountryListSection - value="unsupported-countries" - title="Not available" - description="Verification not supported in these countries yet." - countries={filteredUnsupportedCountries} - onCountryClick={(country) => { - setSelectedUnavailableCountry(country.title) - setIsUnavailableModalOpen(true) - }} - rightContent={() => ( - <div className="flex items-center gap-2"> - <StatusBadge - status="custom" - className="border border-error-2 bg-error-1 text-error" - customText="Unavailable" - /> - </div> - )} - defaultOpen - /> - )} - </Accordion.Root> - - <ActionModal - icon="alert" - iconContainerClassName="bg-secondary-1" - title={`Verification not available in ${selectedUnavailableCountry}`} - description="We're unable to verify users from this region at this time. If you have legal residence in another country, please select that instead." - visible={isUnavailableModalOpen} - onClose={() => { - setSelectedUnavailableCountry(null) - setIsUnavailableModalOpen(false) - }} - ctas={[ - { - text: 'I Understand', - shadowSize: '4', - onClick: () => { - setSelectedUnavailableCountry(null) - setIsUnavailableModalOpen(false) - }, - }, - ]} - /> - </div> - ) -} - -export default IdentityVerificationCountryList diff --git a/src/components/Profile/components/ProfileMenuItem.tsx b/src/components/Profile/components/ProfileMenuItem.tsx index 3294cf965..8cc30b28a 100644 --- a/src/components/Profile/components/ProfileMenuItem.tsx +++ b/src/components/Profile/components/ProfileMenuItem.tsx @@ -20,6 +20,7 @@ interface ProfileMenuItemProps { endIconClassName?: string showTooltip?: boolean toolTipText?: string + badge?: string } const ProfileMenuItem: React.FC<ProfileMenuItemProps> = ({ @@ -34,6 +35,7 @@ const ProfileMenuItem: React.FC<ProfileMenuItemProps> = ({ endIconClassName, showTooltip = false, toolTipText, + badge, }) => { const content = ( <div className="flex items-center justify-between py-1"> @@ -46,6 +48,7 @@ const ProfileMenuItem: React.FC<ProfileMenuItemProps> = ({ </div> )} <span className="text-base font-medium">{label}</span> + {badge && <StatusBadge status="custom" customText={badge} />} {showTooltip && ( <Tooltip content={toolTipText}> <Icon name="info" size={14} fill="black" /> diff --git a/src/components/Profile/index.tsx b/src/components/Profile/index.tsx index 7f1722aaf..09086deed 100644 --- a/src/components/Profile/index.tsx +++ b/src/components/Profile/index.tsx @@ -7,18 +7,16 @@ import NavHeader from '../Global/NavHeader' import ProfileHeader from './components/ProfileHeader' import ProfileMenuItem from './components/ProfileMenuItem' import { useRouter } from 'next/navigation' -import { checkIfInternalNavigation, generateInviteCodeLink, generateInvitesShareText } from '@/utils/general.utils' -import ActionModal from '../Global/ActionModal' +import { checkIfInternalNavigation } from '@/utils/general.utils' import { useState } from 'react' import useKycStatus from '@/hooks/useKycStatus' +import underMaintenanceConfig from '@/config/underMaintenance.config' import Card from '../Global/Card' import ShowNameToggle from './components/ShowNameToggle' -import ShareButton from '../Global/ShareButton' -import CopyToClipboard from '../Global/CopyToClipboard' import KycVerifiedOrReviewModal from '../Global/KycVerifiedOrReviewModal' +import InviteFriendsModal from '../Global/InviteFriendsModal' import { STAR_STRAIGHT_ICON } from '@/assets' import Image from 'next/image' -import QRCode from 'react-qr-code' export const Profile = () => { const { logoutUser, isLoggingOut, user } = useAuth() @@ -35,8 +33,6 @@ export const Profile = () => { // respect user's showFullName preference: use fullName only if showFullName is true, otherwise use username const displayName = user?.user.showFullName && user?.user.fullName ? user.user.fullName : username - const inviteData = generateInviteCodeLink(user?.user.username ?? '') - return ( <div className="h-full w-full bg-background"> <NavHeader @@ -63,6 +59,10 @@ export const Profile = () => { href="/dummy" // Dummy link, wont be called position="single" /> + {/* Card Pioneer Entry */} + {!underMaintenanceConfig.disableCardPioneers && ( + <ProfileMenuItem icon="wallet" label="My Card" href="/card" position="single" badge="NEW" /> + )} {/* Menu Items - First Group */} <div> <ProfileMenuItem icon="achievements" label="Your Badges" href="/badges" position="first" /> @@ -141,40 +141,10 @@ export const Profile = () => { onClose={() => setIsKycApprovedModalOpen(false)} /> - <ActionModal + <InviteFriendsModal visible={isInviteFriendsModalOpen} onClose={() => setIsInviteFriendsModalOpen(false)} - title="Invite friends!" - description="Invite friends to Peanut and help them skip ahead on the waitlist. Once they're onboarded and start using the app, you'll earn rewards from their activity too." - icon="user-plus" - content={ - <> - {inviteData.inviteLink && ( - <div className="my-2 size-44"> - <QRCode - value={inviteData.inviteLink} - size={120} - style={{ height: 'auto', maxWidth: '100%', width: '100%' }} - viewBox={`0 0 120 120`} - level="H" // Highest error correction level to allow for logo - /> - </div> - )} - <div className="flex w-full items-center justify-between gap-3"> - <Card className="flex items-center justify-between py-2"> - <p className="overflow-hidden text-ellipsis whitespace-nowrap text-sm font-bold ">{`${inviteData.inviteCode}`}</p> - - <CopyToClipboard textToCopy={`${inviteData.inviteCode}`} iconSize="4" /> - </Card> - </div> - <ShareButton - generateText={() => Promise.resolve(generateInvitesShareText(inviteData.inviteLink))} - title="Share your invite link" - > - Share Invite link - </ShareButton> - </> - } + username={user?.user.username ?? ''} /> </div> ) diff --git a/src/components/Profile/views/IdentityVerification.view.tsx b/src/components/Profile/views/IdentityVerification.view.tsx deleted file mode 100644 index 91c402a04..000000000 --- a/src/components/Profile/views/IdentityVerification.view.tsx +++ /dev/null @@ -1,243 +0,0 @@ -'use client' -import { updateUserById } from '@/app/actions/users' -import { Button } from '@/components/0_Bruddle/Button' -import { countryData } from '@/components/AddMoney/consts' -import { UserDetailsForm, type UserDetailsFormData } from '@/components/AddMoney/UserDetailsForm' -import { CountryList } from '@/components/Common/CountryList' -import ErrorAlert from '@/components/Global/ErrorAlert' -import IframeWrapper from '@/components/Global/IframeWrapper' -import NavHeader from '@/components/Global/NavHeader' -import { - KycVerificationInProgressModal, - PeanutDoesntStoreAnyPersonalInformation, -} from '@/components/Kyc/KycVerificationInProgressModal' -import { MantecaGeoSpecificKycModal } from '@/components/Kyc/InitiateMantecaKYCModal' -import { useAuth } from '@/context/authContext' -import { useBridgeKycFlow } from '@/hooks/useBridgeKycFlow' -import { useParams, useRouter } from 'next/navigation' -import { useCallback, useEffect, useMemo, useRef, useState } from 'react' -import useKycStatus from '@/hooks/useKycStatus' -import { getRedirectUrl, clearRedirectUrl } from '@/utils/general.utils' -import StartVerificationModal from '@/components/IdentityVerification/StartVerificationModal' -import { useIdentityVerification } from '@/hooks/useIdentityVerification' - -const IdentityVerificationView = () => { - const router = useRouter() - const formRef = useRef<{ handleSubmit: () => void }>(null) - const [isUserDetailsFormValid, setIsUserDetailsFormValid] = useState(false) - const [isUpdatingUser, setIsUpdatingUser] = useState(false) - const [userUpdateError, setUserUpdateError] = useState<string | null>(null) - const [showUserDetailsForm, setShowUserDetailsForm] = useState(false) - const [isMantecaModalOpen, setIsMantecaModalOpen] = useState(false) - const [selectedCountry, setSelectedCountry] = useState<{ id: string; title: string } | null>(null) - const [userClickedCountry, setUserClickedCountry] = useState<{ id: string; title: string } | null>(null) - const { isUserBridgeKycApproved } = useKycStatus() - const { user, fetchUser } = useAuth() - const [isStartVerificationModalOpen, setIsStartVerificationModalOpen] = useState(false) - const params = useParams() - const countryParam = params.country as string - const { isMantecaSupportedCountry, isBridgeSupportedCountry } = useIdentityVerification() - - const handleRedirect = () => { - const redirectUrl = getRedirectUrl() - if (redirectUrl) { - clearRedirectUrl() - router.push(redirectUrl) - } else { - router.push('/profile') - } - } - - const handleBridgeKycSuccess = useCallback(async () => { - await fetchUser() - handleRedirect() - }, []) - - const { - iframeOptions, - handleInitiateKyc, - isVerificationProgressModalOpen, - handleIframeClose, - closeVerificationProgressModal, - error: kycError, - isLoading: isKycLoading, - } = useBridgeKycFlow({ - onKycSuccess: handleBridgeKycSuccess, - }) - - const initialUserDetails: Partial<UserDetailsFormData> = useMemo( - () => ({ - fullName: user?.user.fullName ?? '', - email: user?.user.email ?? '', - }), - [user] - ) - - const handleUserDetailsSubmit = useCallback( - async (data: UserDetailsFormData) => { - setIsUpdatingUser(true) - setUserUpdateError(null) - try { - if (!user?.user.userId) throw new Error('User not found') - const result = await updateUserById({ - userId: user.user.userId, - fullName: data.fullName, - email: data.email, - }) - if (result.error) { - throw new Error(result.error) - } - await fetchUser() - await handleInitiateKyc() - } catch (error: any) { - setUserUpdateError(error.message) - return { error: error.message } - } finally { - setIsUpdatingUser(false) - } - return {} - }, - [user] - ) - - const handleBack = useCallback(() => { - if (showUserDetailsForm) { - setShowUserDetailsForm(false) - } else { - handleRedirect() - } - }, [showUserDetailsForm]) - - // Bridge country object for all bridge supported countries - const bridgeCountryObject = useMemo( - () => ({ title: 'Bridge', id: 'bridge', type: 'bridge', description: '', path: 'bridge' }), - [] - ) - - // Memoized country lookup from URL param - const selectedCountryParams = useMemo(() => { - if (countryParam) { - const country = countryData.find((country) => country.id.toUpperCase() === countryParam.toUpperCase()) - if (country) { - return country - } else { - return bridgeCountryObject - } - } - return null - }, [countryParam, bridgeCountryObject]) - - // Skip country selection if coming from a supported bridge country - useEffect(() => { - if (selectedCountryParams && (isBridgeSupportedCountry(countryParam) || countryParam === 'bridge')) { - setUserClickedCountry({ title: selectedCountryParams.title, id: selectedCountryParams.id }) - setIsStartVerificationModalOpen(true) - } - }, [countryParam, isBridgeSupportedCountry, selectedCountryParams]) - - useEffect(() => { - return () => { - setIsStartVerificationModalOpen(false) - } - }, []) - - return ( - <div className="flex min-h-[inherit] flex-col space-y-8"> - <NavHeader title="Identity Verification" onPrev={handleBack} /> - - {showUserDetailsForm ? ( - <div className="my-auto pt-[25%]"> - <h1 className="mb-3 font-bold">Provide information to begin verification</h1> - - <UserDetailsForm - ref={formRef} - onSubmit={handleUserDetailsSubmit} - isSubmitting={isUpdatingUser} - onValidChange={setIsUserDetailsFormValid} - initialData={initialUserDetails} - /> - - <Button - onClick={() => formRef.current?.handleSubmit()} - loading={isUpdatingUser || isKycLoading} - variant="purple" - shadowSize="4" - className="mt-3 w-full" - disabled={!isUserDetailsFormValid || isUpdatingUser || isKycLoading} - icon="check-circle" - > - Verify now - </Button> - - <PeanutDoesntStoreAnyPersonalInformation className="mt-3 w-full justify-center" /> - - {(userUpdateError || kycError) && <ErrorAlert description={userUpdateError ?? kycError ?? ''} />} - - <IframeWrapper {...iframeOptions} onClose={handleIframeClose} /> - - <KycVerificationInProgressModal - isOpen={isVerificationProgressModalOpen} - onClose={() => { - closeVerificationProgressModal() - handleRedirect() - }} - /> - </div> - ) : ( - <div className="my-auto"> - <CountryList - inputTitle="Which country issued your ID?" - inputDescription="Select a country where you have a valid ID to verify." - viewMode="general-verification" - onCountryClick={(country) => { - const { id, title } = country - setUserClickedCountry({ id, title }) - setIsStartVerificationModalOpen(true) - }} - showLoadingState={false} // we don't want to show loading state when clicking a country, here because there is no async operation when clicking a country - /> - </div> - )} - - {selectedCountry && ( - <MantecaGeoSpecificKycModal - isUserBridgeKycApproved={isUserBridgeKycApproved} - selectedCountry={selectedCountry} - setIsMantecaModalOpen={setIsMantecaModalOpen} - isMantecaModalOpen={isMantecaModalOpen} - onKycSuccess={handleRedirect} - /> - )} - - {userClickedCountry && selectedCountryParams && ( - <StartVerificationModal - visible={isStartVerificationModalOpen} - onClose={() => { - // we dont show ID issuer country list for bridge countries - if ( - isBridgeSupportedCountry(selectedCountryParams.id) || - selectedCountryParams.id === 'bridge' - ) { - handleRedirect() - } else { - setIsStartVerificationModalOpen(false) - } - }} - onStartVerification={() => { - setIsStartVerificationModalOpen(false) - if (isMantecaSupportedCountry(userClickedCountry.id)) { - setSelectedCountry(userClickedCountry) - setIsMantecaModalOpen(true) - } else { - setShowUserDetailsForm(true) - } - }} - selectedIdentityCountry={userClickedCountry} - selectedCountry={selectedCountryParams} - /> - )} - </div> - ) -} - -export default IdentityVerificationView diff --git a/src/components/Profile/views/RegionsPage.view.tsx b/src/components/Profile/views/RegionsPage.view.tsx deleted file mode 100644 index af40c49c5..000000000 --- a/src/components/Profile/views/RegionsPage.view.tsx +++ /dev/null @@ -1,44 +0,0 @@ -'use client' - -import NavHeader from '@/components/Global/NavHeader' -import { useIdentityVerification } from '@/hooks/useIdentityVerification' -import { useRouter } from 'next/navigation' -import IdentityVerificationCountryList from '../components/IdentityVerificationCountryList' -import { Button } from '@/components/0_Bruddle/Button' - -const RegionsPage = ({ path }: { path: string }) => { - const router = useRouter() - const { lockedRegions } = useIdentityVerification() - - const hideVerifyButtonPaths = ['latam', 'rest-of-the-world'] - - const region = lockedRegions.find((region) => region.path === path) - - if (!region) { - return null - } - - return ( - <div className="relative h-[80vh]"> - <div className="flex min-h-[inherit] flex-col space-y-8 pb-28"> - <NavHeader title={region.name} onPrev={() => router.back()} /> - - <IdentityVerificationCountryList region={region.path} /> - </div> - {!hideVerifyButtonPaths.includes(region.path) && ( - <div className="sticky bottom-4 flex justify-center"> - <Button - onClick={() => router.push(`/profile/identity-verification/${region.path}/bridge`)} - variant="purple" - shadowSize="4" - className="max-w-[280px]" - > - Verify to unlock - </Button> - </div> - )} - </div> - ) -} - -export default RegionsPage diff --git a/src/components/Profile/views/RegionsVerification.view.tsx b/src/components/Profile/views/RegionsVerification.view.tsx index 9323f71be..5fe754743 100644 --- a/src/components/Profile/views/RegionsVerification.view.tsx +++ b/src/components/Profile/views/RegionsVerification.view.tsx @@ -5,13 +5,110 @@ import { getCardPosition } from '@/components/Global/Card/card.utils' import EmptyState from '@/components/Global/EmptyStates/EmptyState' import { Icon } from '@/components/Global/Icons/Icon' import NavHeader from '@/components/Global/NavHeader' -import { useIdentityVerification, type Region } from '@/hooks/useIdentityVerification' +import StartVerificationModal from '@/components/IdentityVerification/StartVerificationModal' +import { SumsubKycModals } from '@/components/Kyc/SumsubKycModals' +import { KycProcessingModal } from '@/components/Kyc/modals/KycProcessingModal' +import { KycActionRequiredModal } from '@/components/Kyc/modals/KycActionRequiredModal' +import { KycRejectedModal } from '@/components/Kyc/modals/KycRejectedModal' +import { useIdentityVerification, getRegionIntent, type Region } from '@/hooks/useIdentityVerification' +import useUnifiedKycStatus from '@/hooks/useUnifiedKycStatus' +import { useMultiPhaseKycFlow } from '@/hooks/useMultiPhaseKycFlow' +import { useAuth } from '@/context/authContext' import Image from 'next/image' import { useRouter } from 'next/navigation' +import { useState, useCallback, useRef, useMemo } from 'react' +import { type KYCRegionIntent } from '@/app/actions/types/sumsub.types' + +type ModalVariant = 'start' | 'processing' | 'action_required' | 'rejected' + +// determine which modal to show based on sumsub status and clicked region intent +function getModalVariant( + sumsubStatus: string | null, + clickedRegionIntent: KYCRegionIntent | undefined, + existingRegionIntent: string | null +): ModalVariant { + // no verification or not started → start fresh + if (!sumsubStatus || sumsubStatus === 'NOT_STARTED') return 'start' + + // different region intent → allow new verification + if (existingRegionIntent && clickedRegionIntent && clickedRegionIntent !== existingRegionIntent) return 'start' + + switch (sumsubStatus) { + case 'PENDING': + case 'IN_REVIEW': + return 'processing' + case 'ACTION_REQUIRED': + return 'action_required' + case 'REJECTED': + case 'FAILED': + return 'rejected' + default: + return 'start' + } +} const RegionsVerification = () => { const router = useRouter() + const { user } = useAuth() const { unlockedRegions, lockedRegions } = useIdentityVerification() + const { sumsubStatus, sumsubRejectLabels, sumsubRejectType, sumsubVerificationRegionIntent } = useUnifiedKycStatus() + const [selectedRegion, setSelectedRegion] = useState<Region | null>(null) + // keeps the region display stable during modal close animation + const displayRegionRef = useRef<Region | null>(null) + if (selectedRegion) displayRegionRef.current = selectedRegion + // persist region intent for the duration of the kyc session so token refresh + // and status checks use the correct template after the confirmation modal closes + const [activeRegionIntent, setActiveRegionIntent] = useState<KYCRegionIntent | undefined>(undefined) + // skip StartVerificationView when re-submitting (user already consented) + const [autoStartSdk, setAutoStartSdk] = useState(false) + + const sumsubFailureCount = useMemo( + () => + user?.user?.kycVerifications?.filter((v) => v.provider === 'SUMSUB' && v.status === 'REJECTED').length ?? 0, + [user] + ) + + const clickedRegionIntent = selectedRegion ? getRegionIntent(selectedRegion.path) : undefined + const modalVariant = selectedRegion + ? getModalVariant(sumsubStatus, clickedRegionIntent, sumsubVerificationRegionIntent) + : null + + const handleFinalKycSuccess = useCallback(() => { + setSelectedRegion(null) + setActiveRegionIntent(undefined) + setAutoStartSdk(false) + }, []) + + const flow = useMultiPhaseKycFlow({ + regionIntent: activeRegionIntent, + onKycSuccess: handleFinalKycSuccess, + onManualClose: () => { + setSelectedRegion(null) + setActiveRegionIntent(undefined) + setAutoStartSdk(false) + }, + }) + + const handleRegionClick = useCallback((region: Region) => { + setSelectedRegion(region) + }, []) + + const handleModalClose = useCallback(() => { + setSelectedRegion(null) + }, []) + + const handleStartKyc = useCallback(async () => { + const intent = selectedRegion ? getRegionIntent(selectedRegion.path) : undefined + if (intent) setActiveRegionIntent(intent) + setSelectedRegion(null) + await flow.handleInitiateKyc(intent) + }, [flow.handleInitiateKyc, selectedRegion]) + + // re-submission: skip StartVerificationView since user already consented + const handleResubmitKyc = useCallback(async () => { + setAutoStartSdk(true) + await handleStartKyc() + }, [handleStartKyc]) return ( <div className="flex min-h-[inherit] flex-col space-y-8"> @@ -37,11 +134,47 @@ const RegionsVerification = () => { <RegionsList regions={unlockedRegions} isLocked={false} /> - <h1 className="mt-5 font-bold">Locked regions</h1> - <p className="mt-2 text-sm">Where do you want to send and receive money?</p> + {lockedRegions.length > 0 && ( + <> + <h1 className="mt-5 font-bold">Locked regions</h1> + <p className="mt-2 text-sm">Where do you want to send and receive money?</p> - <RegionsList regions={lockedRegions} isLocked={true} /> + <RegionsList regions={lockedRegions} isLocked={true} onRegionClick={handleRegionClick} /> + </> + )} </div> + + <StartVerificationModal + visible={modalVariant === 'start'} + onClose={handleModalClose} + onStartVerification={handleStartKyc} + selectedRegion={displayRegionRef.current} + isLoading={flow.isLoading} + /> + + <KycProcessingModal visible={modalVariant === 'processing'} onClose={handleModalClose} /> + + <KycActionRequiredModal + visible={modalVariant === 'action_required'} + onClose={handleModalClose} + onResubmit={handleResubmitKyc} + isLoading={flow.isLoading} + rejectLabels={sumsubRejectLabels} + /> + + <KycRejectedModal + visible={modalVariant === 'rejected'} + onClose={handleModalClose} + onRetry={handleResubmitKyc} + isLoading={flow.isLoading} + rejectLabels={sumsubRejectLabels} + rejectType={sumsubRejectType} + failureCount={sumsubFailureCount} + /> + + {flow.error && <p className="text-red-500 mt-2 text-sm">{flow.error}</p>} + + <SumsubKycModals flow={flow} autoStartSdk={autoStartSdk} /> </div> ) } @@ -51,9 +184,9 @@ export default RegionsVerification interface RegionsListProps { regions: Region[] isLocked: boolean + onRegionClick?: (region: Region) => void } -const RegionsList = ({ regions, isLocked }: RegionsListProps) => { - const router = useRouter() +const RegionsList = ({ regions, isLocked, onRegionClick }: RegionsListProps) => { return ( <div className="mt-3"> {regions.map((region, index) => ( @@ -71,8 +204,8 @@ const RegionsList = ({ regions, isLocked }: RegionsListProps) => { position={getCardPosition(index, regions.length)} title={region.name} onClick={() => { - if (isLocked) { - router.push(`/profile/identity-verification/${region.path}`) + if (isLocked && onRegionClick) { + onRegionClick(region) } }} isDisabled={!isLocked} diff --git a/src/components/Setup/Views/SetupPasskey.tsx b/src/components/Setup/Views/SetupPasskey.tsx index f6994f14e..3f1ea1c8f 100644 --- a/src/components/Setup/Views/SetupPasskey.tsx +++ b/src/components/Setup/Views/SetupPasskey.tsx @@ -39,7 +39,7 @@ const SetupPasskey = () => { // clear any previous inline errors setInlineError(null) setErrorName(null) - capturePasskeyDebugInfo('passkey-registration-started') + //capturePasskeyDebugInfo('passkey-registration-started') try { await withWebAuthnRetry(() => handleRegister(username), 'passkey-registration') diff --git a/src/components/TransactionDetails/TransactionDetailsReceipt.tsx b/src/components/TransactionDetails/TransactionDetailsReceipt.tsx index 9151ea3dd..a266ae8f9 100644 --- a/src/components/TransactionDetails/TransactionDetailsReceipt.tsx +++ b/src/components/TransactionDetails/TransactionDetailsReceipt.tsx @@ -332,12 +332,12 @@ export const TransactionDetailsReceipt = ({ useEffect(() => { const getTokenDetails = async () => { - if (!transaction) { + if (!transaction?.tokenDisplayDetails) { setIsTokenDataLoading(false) return } - if (transaction.tokenDisplayDetails?.tokenIconUrl && transaction.tokenDisplayDetails.tokenSymbol) { + if (transaction.tokenDisplayDetails.tokenIconUrl && transaction.tokenDisplayDetails.tokenSymbol) { setTokenData({ symbol: transaction.tokenDisplayDetails.tokenSymbol, icon: transaction.tokenDisplayDetails.tokenIconUrl, @@ -346,8 +346,13 @@ export const TransactionDetailsReceipt = ({ return } + if (!transaction.tokenDisplayDetails.chainName) { + setIsTokenDataLoading(false) + return + } + try { - const chainName = slugify(transaction.tokenDisplayDetails?.chainName ?? '') + const chainName = slugify(transaction.tokenDisplayDetails.chainName) const res = await fetch( `https://api.coingecko.com/api/v3/coins/${chainName}/contract/${transaction.tokenAddress}` ) @@ -370,7 +375,7 @@ export const TransactionDetailsReceipt = ({ } getTokenDetails() - }, []) + }, [transaction?.tokenDisplayDetails]) const convertedAmount = useMemo(() => { if (!transaction) return null @@ -506,9 +511,22 @@ export const TransactionDetailsReceipt = ({ value={formatDate(new Date(transaction.date))} hideBottomBorder={false} /> + {/* + * HACK: Strip payment UUID from reason field. + * + * The backend stores the payment UUID in the reason field for idempotency + * (e.g., "Alice became a Card Pioneer! (payment: uuid)") because PerkUsage + * lacks a dedicated requestPaymentUuid field. The code in purchase-listener.ts + * uses `reason: { contains: paymentUuid }` to prevent duplicate perk issuance. + * + * Proper fix (backend): Add requestPaymentUuid field to PerkUsage model with + * a unique constraint @@unique([userId, perkId, requestPaymentUuid]), similar + * to how mantecaTransferId/bridgeTransferId/simplefiTransferId are handled. + * Then store clean reason text without the UUID suffix. + */} <PaymentInfoRow label="Reason" - value={perkRewardData.reason} + value={perkRewardData.reason.replace(/\s*\(payment:\s*[a-f0-9-]+\)/i, '')} // hideBottomBorder={!perkRewardData.originatingTxId} hideBottomBorder={true} /> diff --git a/src/config/underMaintenance.config.ts b/src/config/underMaintenance.config.ts index a482aa4d5..70e56cb11 100644 --- a/src/config/underMaintenance.config.ts +++ b/src/config/underMaintenance.config.ts @@ -27,6 +27,13 @@ * - shows info message explaining cross-chain is temporarily unavailable * - same-chain operations continue to work * + * 6. disableCardPioneers: hides the card pioneers waitlist feature entirely + * - /card page redirects to /home + * - /lp/card marketing page redirects to / + * - card pioneers section hidden from landing page + * - card pioneer modal, carousel cta, and perk rewards hidden from home + * - set to false to enable the feature + * * note: if either mode is enabled, the maintenance banner will show everywhere * * I HOPE WE NEVER NEED TO USE THIS... @@ -41,14 +48,16 @@ interface MaintenanceConfig { disabledPaymentProviders: PaymentProvider[] disableSquidWithdraw: boolean disableSquidSend: boolean + disableCardPioneers: boolean } const underMaintenanceConfig: MaintenanceConfig = { enableFullMaintenance: false, // set to true to redirect all pages to /maintenance enableMaintenanceBanner: false, // set to true to show maintenance banner on all pages disabledPaymentProviders: [], // set to ['MANTECA'] to disable Manteca QR payments - disableSquidWithdraw: true, // set to true to disable cross-chain withdrawals (only allows USDC on Arbitrum) - disableSquidSend: true, // set to true to disable cross-chain sends (claim, request payments - only allows USDC on Arbitrum) + disableSquidWithdraw: false, // set to true to disable cross-chain withdrawals (only allows USDC on Arbitrum) + disableSquidSend: false, // set to true to disable cross-chain sends (claim, request payments - only allows USDC on Arbitrum) + disableCardPioneers: true, // set to false to enable the Card Pioneers waitlist feature } export default underMaintenanceConfig diff --git a/src/constants/bridge-requirements.consts.ts b/src/constants/bridge-requirements.consts.ts new file mode 100644 index 000000000..d50ae2868 --- /dev/null +++ b/src/constants/bridge-requirements.consts.ts @@ -0,0 +1,41 @@ +interface RequirementLabelInfo { + title: string + description: string +} + +// map of bridge additional_requirements to user-friendly labels +const BRIDGE_REQUIREMENT_LABELS: Record<string, RequirementLabelInfo> = { + proof_of_address: { + title: 'Proof of Address', + description: + 'Upload a utility bill, bank statement, or government letter showing your current address (dated within 3 months).', + }, + additional_identity_document: { + title: 'Additional Identity Document', + description: 'Upload an additional government-issued ID document.', + }, + proof_of_source_of_funds: { + title: 'Proof of Source of Funds', + description: 'Upload documentation showing the origin of your funds (e.g. pay stub, tax return).', + }, + proof_of_tax_identification: { + title: 'Tax Identification', + description: 'Upload a document showing your tax identification number.', + }, +} + +const FALLBACK_LABEL: RequirementLabelInfo = { + title: 'Additional Document', + description: 'Please provide the requested document.', +} + +/** get human-readable label for a bridge additional requirement */ +export function getRequirementLabel(requirement: string): RequirementLabelInfo { + return ( + BRIDGE_REQUIREMENT_LABELS[requirement] ?? { + // auto-format unknown requirement codes as title case + title: requirement.replace(/_/g, ' ').replace(/\b\w/g, (c) => c.toUpperCase()), + description: FALLBACK_LABEL.description, + } + ) +} diff --git a/src/constants/kyc.consts.ts b/src/constants/kyc.consts.ts new file mode 100644 index 000000000..f8fc5d507 --- /dev/null +++ b/src/constants/kyc.consts.ts @@ -0,0 +1,59 @@ +import { type SumsubKycStatus } from '@/app/actions/types/sumsub.types' +import { type MantecaKycStatus } from '@/interfaces' + +/** + * unified kyc status type across all providers. + * bridge uses lowercase strings, manteca uses its own enum, sumsub uses uppercase. + */ +export type KycVerificationStatus = MantecaKycStatus | SumsubKycStatus | string + +export type KycStatusCategory = 'completed' | 'processing' | 'failed' | 'action_required' + +// sets of status values by category — single source of truth +const APPROVED_STATUSES: ReadonlySet<string> = new Set(['approved', 'ACTIVE', 'APPROVED']) +const FAILED_STATUSES: ReadonlySet<string> = new Set(['rejected', 'INACTIVE', 'REJECTED']) +const PENDING_STATUSES: ReadonlySet<string> = new Set([ + 'under_review', + 'incomplete', + 'ONBOARDING', + 'PENDING', + 'IN_REVIEW', +]) +const ACTION_REQUIRED_STATUSES: ReadonlySet<string> = new Set(['ACTION_REQUIRED']) +const NOT_STARTED_STATUSES: ReadonlySet<string> = new Set(['not_started', 'NOT_STARTED']) + +// sumsub-specific set for flow-level gating (e.g. useQrKycGate blocks payments). +// ACTION_REQUIRED is intentionally included here — user hasn't completed verification +// yet, so they should still be gated from features that require approved kyc. +const SUMSUB_IN_PROGRESS_STATUSES: ReadonlySet<string> = new Set(['PENDING', 'IN_REVIEW', 'ACTION_REQUIRED']) + +/** check if a kyc status represents an approved/completed state */ +export const isKycStatusApproved = (status: string | undefined | null): boolean => + !!status && APPROVED_STATUSES.has(status) + +/** check if a kyc status represents a failed/rejected state */ +export const isKycStatusFailed = (status: string | undefined | null): boolean => !!status && FAILED_STATUSES.has(status) + +/** check if a kyc status represents a pending/in-review state */ +export const isKycStatusPending = (status: string | undefined | null): boolean => + !!status && PENDING_STATUSES.has(status) + +/** check if a kyc status represents an action-required state */ +export const isKycStatusActionRequired = (status: string | undefined | null): boolean => + !!status && ACTION_REQUIRED_STATUSES.has(status) + +/** check if a kyc status means "not started" (should not render status ui) */ +export const isKycStatusNotStarted = (status: string | undefined | null): boolean => + !status || NOT_STARTED_STATUSES.has(status) + +/** check if a sumsub status means verification is in progress */ +export const isSumsubStatusInProgress = (status: string | undefined | null): boolean => + !!status && SUMSUB_IN_PROGRESS_STATUSES.has(status) + +/** categorize any provider's kyc status into a display category */ +export const getKycStatusCategory = (status: string): KycStatusCategory => { + if (APPROVED_STATUSES.has(status)) return 'completed' + if (FAILED_STATUSES.has(status)) return 'failed' + if (ACTION_REQUIRED_STATUSES.has(status)) return 'action_required' + return 'processing' +} diff --git a/src/constants/points.consts.ts b/src/constants/points.consts.ts new file mode 100644 index 000000000..431ba3b41 --- /dev/null +++ b/src/constants/points.consts.ts @@ -0,0 +1,21 @@ +/** + * Points System Constants + * + * Shared constants for points display and calculations. + * Should match backend values in peanut-api-ts/src/points/constants.ts + */ + +/** + * Transitivity multiplier for referral points + * Users earn this percentage of their invitees' points + */ +export const TRANSITIVITY_MULTIPLIER = 0.5 // 50% of invitees' points + +/** + * Tier thresholds for display purposes + * Note: Actual tier calculation happens on backend + */ +export const TIER_THRESHOLDS = { + TIER_1: 1000, + TIER_2: 10000, +} as const diff --git a/src/constants/routes.ts b/src/constants/routes.ts index 59411a9df..0a7b4f639 100644 --- a/src/constants/routes.ts +++ b/src/constants/routes.ts @@ -56,6 +56,11 @@ export const RESERVED_ROUTES: readonly string[] = [...DEDICATED_ROUTES, ...STATI */ export const PUBLIC_ROUTES = ['request/pay', 'claim', 'pay', 'support', 'invite', 'qr', 'dev/payment-graph'] as const +/** + * Dev test routes that are public only in dev mode + */ +export const DEV_ONLY_PUBLIC_ROUTES = ['dev', 'dev/gift-test', 'dev/shake-test'] as const + /** * Regex pattern for public routes (used in layout.tsx) * Matches paths that don't require authentication @@ -65,6 +70,12 @@ export const PUBLIC_ROUTES = ['request/pay', 'claim', 'pay', 'support', 'invite' */ export const PUBLIC_ROUTES_REGEX = /^\/(request\/pay|claim|pay\/.+|support|invite|qr|dev\/payment-graph)/ +/** + * Regex for dev-only public routes (dev index, gift-test, shake-test) + * Only matched when IS_DEV is true + */ +export const DEV_ONLY_PUBLIC_ROUTES_REGEX = /^\/(dev$|dev\/gift-test|dev\/shake-test)/ + /** * Routes where middleware should run * @@ -104,7 +115,15 @@ export function isReservedRoute(path: string): boolean { /** * Helper to check if a path is public (no auth required) + * Dev test pages (gift-test, shake-test) are only public in dev mode */ -export function isPublicRoute(path: string): boolean { - return PUBLIC_ROUTES_REGEX.test(path) +export function isPublicRoute(path: string, isDev = false): boolean { + if (PUBLIC_ROUTES_REGEX.test(path)) { + return true + } + // Dev test pages are only public in dev mode + if (isDev && DEV_ONLY_PUBLIC_ROUTES_REGEX.test(path)) { + return true + } + return false } diff --git a/src/constants/sumsub-reject-labels.consts.ts b/src/constants/sumsub-reject-labels.consts.ts new file mode 100644 index 000000000..ab641bd76 --- /dev/null +++ b/src/constants/sumsub-reject-labels.consts.ts @@ -0,0 +1,101 @@ +interface RejectLabelInfo { + title: string + description: string +} + +// map of sumsub reject labels to user-friendly descriptions +const REJECT_LABEL_MAP: Record<string, RejectLabelInfo> = { + DOCUMENT_BAD_QUALITY: { + title: 'Low quality document', + description: 'The document image was blurry, dark, or hard to read. Please upload a clearer photo.', + }, + DOCUMENT_DAMAGED: { + title: 'Damaged document', + description: 'The document appears damaged or worn. Please use a document in good condition.', + }, + DOCUMENT_INCOMPLETE: { + title: 'Incomplete document', + description: 'Part of the document was cut off or missing. Make sure the full document is visible.', + }, + DOCUMENT_MISSING: { + title: 'Missing document', + description: 'A required document was not provided. Please upload all requested documents.', + }, + DOCUMENT_EXPIRED: { + title: 'Expired document', + description: 'The document has expired. Please use a valid, non-expired document.', + }, + SELFIE_MISMATCH: { + title: 'Selfie does not match', + description: 'The selfie did not match the photo on your document. Please try again with a clear selfie.', + }, + SELFIE_BAD_QUALITY: { + title: 'Low quality selfie', + description: 'The selfie was blurry or poorly lit. Please take a clear, well-lit selfie.', + }, + SELFIE_SPOOFING: { + title: 'Selfie issue detected', + description: 'A live selfie is required. Do not use a photo of a photo or a screen.', + }, + DOCUMENT_FAKE: { + title: 'Document could not be verified', + description: 'We were unable to verify the authenticity of your document.', + }, + GRAPHIC_EDITOR_USAGE: { + title: 'Edited document detected', + description: 'The document appears to have been digitally altered.', + }, + AGE_BELOW_ACCEPTED_LIMIT: { + title: 'Age requirement not met', + description: 'You must be at least 18 years old to use this service.', + }, + UNSUPPORTED_DOCUMENT: { + title: 'Unsupported document type', + description: "This type of document is not accepted. Please use a passport, national ID, or driver's license.", + }, + WRONG_DOCUMENT: { + title: 'Wrong document provided', + description: 'The uploaded document does not match what was requested. Please upload the correct document.', + }, + REGULATIONS_VIOLATIONS: { + title: 'Regulatory restriction', + description: 'Verification could not be completed due to regulatory requirements.', + }, +} + +const FALLBACK_LABEL_INFO: RejectLabelInfo = { + title: 'Verification issue', + description: 'There was an issue with your verification. Please try again or contact support.', +} + +// labels that indicate a permanent rejection — used as a frontend heuristic +// until backend provides rejectType +export const TERMINAL_REJECT_LABELS = new Set(['DOCUMENT_FAKE', 'GRAPHIC_EDITOR_USAGE', 'AGE_BELOW_ACCEPTED_LIMIT']) + +/** get human-readable info for a sumsub reject label, with a safe fallback */ +export const getRejectLabelInfo = (label: string): RejectLabelInfo => { + return REJECT_LABEL_MAP[label] ?? FALLBACK_LABEL_INFO +} + +/** check if any of the reject labels indicate a terminal (permanent) rejection */ +export const hasTerminalRejectLabel = (labels: string[]): boolean => { + return labels.some((label) => TERMINAL_REJECT_LABELS.has(label)) +} + +const MAX_RETRY_COUNT = 2 + +/** determine if a rejection is terminal (permanent, cannot be retried) */ +export const isTerminalRejection = ({ + rejectType, + failureCount, + rejectLabels, +}: { + rejectType?: 'RETRY' | 'FINAL' | null + failureCount?: number + rejectLabels?: string[] | null +}): boolean => { + if (rejectType === 'FINAL') return true + if (failureCount && failureCount >= MAX_RETRY_COUNT) return true + if (rejectLabels?.length && hasTerminalRejectLabel(rejectLabels)) return true + return false +} diff --git a/src/context/OnrampFlowContext.tsx b/src/context/OnrampFlowContext.tsx index 26b51f737..14878e58e 100644 --- a/src/context/OnrampFlowContext.tsx +++ b/src/context/OnrampFlowContext.tsx @@ -23,6 +23,10 @@ export interface IOnrampData { bic?: string accountHolderName?: string clabe?: string + // uk faster payments fields + sortCode?: string + accountNumber?: string + reference?: string } } diff --git a/src/context/authContext.tsx b/src/context/authContext.tsx index 02012fa2b..9b92b434d 100644 --- a/src/context/authContext.tsx +++ b/src/context/authContext.tsx @@ -42,7 +42,8 @@ interface AuthContextType { } }) => Promise<void> isFetchingUser: boolean - logoutUser: () => Promise<void> + userFetchError: Error | null + logoutUser: (options?: { skipBackendCall?: boolean }) => Promise<void> isLoggingOut: boolean invitedUsernamesSet: Set<string> } @@ -60,7 +61,7 @@ export const AuthProvider = ({ children }: { children: ReactNode }) => { const queryClient = useQueryClient() const WEB_AUTHN_COOKIE_KEY = 'web-authn-key' - const { data: user, isLoading: isFetchingUser, refetch: fetchUser } = useUserQuery() + const { data: user, isLoading: isFetchingUser, refetch: fetchUser, error: userFetchError } = useUserQuery() // Pre-compute a Set of invited usernames for O(1) lookups const invitedUsernamesSet = useMemo(() => { @@ -77,10 +78,10 @@ export const AuthProvider = ({ children }: { children: ReactNode }) => { } }, [user]) - const legacy_fetchUser = async () => { + const legacy_fetchUser = useCallback(async () => { const { data: fetchedUser } = await fetchUser() return fetchedUser ?? null - } + }, [fetchUser]) const [isLoggingOut, setIsLoggingOut] = useState(false) @@ -149,84 +150,107 @@ export const AuthProvider = ({ children }: { children: ReactNode }) => { }) } - const logoutUser = useCallback(async () => { - if (isLoggingOut) return + /** + * Clears all client-side auth state (cookies, localStorage, redux, caches) + * Used by both normal logout and force logout (when backend is down) + */ + const clearLocalAuthState = useCallback(async () => { + // clear user preferences (webauthn key in localStorage) + updateUserPreferences(user?.user.userId, { webAuthnKey: undefined }) - setIsLoggingOut(true) - try { - const response = await fetchWithSentry('/api/peanut/user/logout-user', { - method: 'GET', - headers: { - 'Content-Type': 'application/json', - }, - }) + // clear cookies + removeFromCookie(WEB_AUTHN_COOKIE_KEY) + document.cookie = 'jwt-token=; path=/; expires=Thu, 01 Jan 1970 00:00:01 GMT;' - if (response.ok) { - // clear user preferences (webauthn key in localStorage) - updateUserPreferences(user?.user.userId, { webAuthnKey: undefined }) + // clear redirect url + clearRedirectUrl() - // clear cookies - removeFromCookie(WEB_AUTHN_COOKIE_KEY) - document.cookie = 'jwt-token=; path=/; expires=Thu, 01 Jan 1970 00:00:01 GMT;' + // invalidate all queries + queryClient.invalidateQueries() - // clear redirect url - clearRedirectUrl() + // reset redux state (setup and zerodev) + dispatch(setupActions.resetSetup()) + dispatch(zerodevActions.resetZeroDevState()) + console.log('[Logout] Cleared redux state (setup and zerodev)') - // invalidate all queries - queryClient.invalidateQueries() + // Clear service worker caches to prevent user data leakage + // When User A logs out and User B logs in on the same device, cached API responses + // could expose User A's data (profile, transactions, KYC) to User B + // Only clears user-specific caches; preserves prices and external resources + if ('caches' in window) { + try { + const cacheNames = await caches.keys() + await Promise.all( + cacheNames + .filter((name) => USER_DATA_CACHE_PATTERNS.some((pattern) => name.includes(pattern))) + .map((name) => { + console.log('Logout: Clearing cache:', name) + return caches.delete(name) + }) + ) + } catch (error) { + console.error('Failed to clear caches on logout:', error) + // Non-fatal: logout continues even if cache clearing fails + } + } - // reset redux state (setup and zerodev) - dispatch(setupActions.resetSetup()) - dispatch(zerodevActions.resetZeroDevState()) - console.log('[Logout] Cleared redux state (setup and zerodev)') + // clear the iOS PWA prompt session flag + if (typeof window !== 'undefined') { + sessionStorage.removeItem('hasSeenIOSPWAPromptThisSession') + } + + // Reset Crisp session to prevent session merging with next user + // This resets both main window Crisp instance and any proxy page instances + if (typeof window !== 'undefined') { + resetCrispProxySessions() + } + }, [dispatch, queryClient, user?.user.userId]) - // Clear service worker caches to prevent user data leakage - // When User A logs out and User B logs in on the same device, cached API responses - // could expose User A's data (profile, transactions, KYC) to User B - // Only clears user-specific caches; preserves prices and external resources - if ('caches' in window) { - try { - const cacheNames = await caches.keys() - await Promise.all( - cacheNames - .filter((name) => USER_DATA_CACHE_PATTERNS.some((pattern) => name.includes(pattern))) - .map((name) => { - console.log('Logout: Clearing cache:', name) - return caches.delete(name) - }) - ) - } catch (error) { - console.error('Failed to clear caches on logout:', error) - // Non-fatal: logout continues even if cache clearing fails + /** + * Logs out the user + * @param options.skipBackendCall - If true, skips the backend logout call (useful when backend is down) + */ + const logoutUser = useCallback( + async (options?: { skipBackendCall?: boolean }) => { + if (isLoggingOut) return + + setIsLoggingOut(true) + try { + // Call backend logout unless skipped (e.g., when backend is down) + if (!options?.skipBackendCall) { + const response = await fetchWithSentry('/api/peanut/user/logout-user', { + method: 'GET', + headers: { + 'Content-Type': 'application/json', + }, + }) + + if (!response.ok) { + throw new Error('Backend logout failed') } } - // clear the iOS PWA prompt session flag - if (typeof window !== 'undefined') { - sessionStorage.removeItem('hasSeenIOSPWAPromptThisSession') - } + // Clear all client-side auth state + await clearLocalAuthState() - // Reset Crisp session to prevent session merging with next user - // This resets both main window Crisp instance and any proxy page instances - if (typeof window !== 'undefined') { - resetCrispProxySessions() + // fetch user (should return null after logout) - skip if backend call was skipped + if (!options?.skipBackendCall) { + await fetchUser() } - // fetch user (should return null after logout) - await fetchUser() - // force full page refresh to /setup to clear all state // this ensures no stale redux/react state persists after logout window.location.href = '/setup' + } catch (error) { + captureException(error) + console.error('Error logging out user', error) + toast.error('Error logging out') + } finally { + setIsLoggingOut(false) } - } catch (error) { - captureException(error) - console.error('Error logging out user', error) - toast.error('Error logging out') - } finally { - setIsLoggingOut(false) - } - }, [fetchUser, isLoggingOut, user]) + }, + [clearLocalAuthState, fetchUser, isLoggingOut, toast] + ) return ( <AuthContext.Provider @@ -237,6 +261,7 @@ export const AuthProvider = ({ children }: { children: ReactNode }) => { fetchUser: legacy_fetchUser, addAccount, isFetchingUser, + userFetchError: userFetchError ?? null, logoutUser, isLoggingOut, invitedUsernamesSet, diff --git a/src/context/kernelClient.context.tsx b/src/context/kernelClient.context.tsx index 66f8f145c..1710de8d6 100644 --- a/src/context/kernelClient.context.tsx +++ b/src/context/kernelClient.context.tsx @@ -16,6 +16,7 @@ import { createContext, type ReactNode, useCallback, useContext, useEffect, useS import { type Chain, http, type PublicClient, type Transport } from 'viem' import type { Address } from 'viem' import { captureException } from '@sentry/nextjs' +import { retryAsync } from '@/utils/retry.utils' import { PUBLIC_CLIENTS_BY_CHAIN } from '@/app/actions/clients' interface KernelClientContextType { @@ -171,7 +172,14 @@ export const KernelClientProvider = ({ children }: { children: ReactNode }) => { const userPreferences = getUserPreferences(user.user.userId) const storedWebAuthnKey = userPreferences?.webAuthnKey ?? getFromCookie(WEB_AUTHN_COOKIE_KEY) if (storedWebAuthnKey) { - setWebAuthnKey(storedWebAuthnKey) + // Only update if the key actually changed to avoid re-triggering kernel client init + // Note: WebAuthnKey contains BigInt fields (pubX, pubY) which JSON.stringify cannot handle, + // so we use a custom replacer that converts BigInts to strings for comparison purposes. + const bigIntSafeStringify = (obj: unknown) => + JSON.stringify(obj, (_, v) => (typeof v === 'bigint' ? v.toString() : v)) + setWebAuthnKey((prev) => + prev && bigIntSafeStringify(prev) === bigIntSafeStringify(storedWebAuthnKey) ? prev : storedWebAuthnKey + ) } else { // avoid mixed state logoutUser() @@ -231,16 +239,29 @@ export const KernelClientProvider = ({ children }: { children: ReactNode }) => { } } + if (!newClientsByChain[PEANUT_WALLET_CHAIN.id]) { + throw new Error('Primary chain client failed to initialize') + } + + // only update state after primary client check passes — + // avoids UI flicker (registering→not registering→registering) between retries if (isMounted) { - fetchUser() setClientsByChain(newClientsByChain) + fetchUser() dispatch(zerodevActions.setIsKernelClientReady(true)) dispatch(zerodevActions.setIsRegistering(false)) dispatch(zerodevActions.setIsLoggingIn(false)) } } - initializeClients() + retryAsync(initializeClients, { maxRetries: 2, baseDelay: 1000, maxDelay: 5000 }).catch(() => { + if (isMounted) { + console.error('[KernelClient] Primary chain client failed after retries — forcing logout') + dispatch(zerodevActions.setIsRegistering(false)) + dispatch(zerodevActions.setIsLoggingIn(false)) + logoutUser() + } + }) return () => { isMounted = false diff --git a/src/features/limits/views/LimitsPageView.tsx b/src/features/limits/views/LimitsPageView.tsx index 27c4ec23c..4ea063318 100644 --- a/src/features/limits/views/LimitsPageView.tsx +++ b/src/features/limits/views/LimitsPageView.tsx @@ -175,7 +175,7 @@ const LockedRegionsList = ({ regions, isBridgeKycPending }: LockedRegionsListPro title={region.name} onClick={() => { if (!isPending) { - router.push(`/profile/identity-verification/${region.path}`) + router.push('/profile/identity-verification') } }} isDisabled={isPending} diff --git a/src/features/payments/flows/semantic-request/SemanticRequestFlowContext.tsx b/src/features/payments/flows/semantic-request/SemanticRequestFlowContext.tsx index 401b3f927..c44c7b9e7 100644 --- a/src/features/payments/flows/semantic-request/SemanticRequestFlowContext.tsx +++ b/src/features/payments/flows/semantic-request/SemanticRequestFlowContext.tsx @@ -166,15 +166,24 @@ export function SemanticRequestFlowProvider({ const [isSuccess, setIsSuccess] = useState(false) const [isExternalWalletPayment, setIsExternalWalletPayment] = useState(false) - // derive recipient from parsed url + // derive recipient from parsed url OR charge const recipient = useMemo<SemanticRequestRecipient | null>(() => { + // If we have a charge, use its recipient address + if (charge?.requestLink?.recipientAddress) { + return { + identifier: charge.requestLink.recipientAddress, + recipientType: 'ADDRESS' as RecipientType, + resolvedAddress: charge.requestLink.recipientAddress as Address, + } + } + // Otherwise use parsed URL recipient if (!parsedUrl?.recipient) return null return { identifier: parsedUrl.recipient.identifier, recipientType: parsedUrl.recipient.recipientType, resolvedAddress: parsedUrl.recipient.resolvedAddress as Address, } - }, [parsedUrl]) + }, [parsedUrl, charge]) // reset flow const resetSemanticRequestFlow = useCallback(() => { diff --git a/src/features/payments/flows/semantic-request/SemanticRequestPageWrapper.tsx b/src/features/payments/flows/semantic-request/SemanticRequestPageWrapper.tsx index 09ac39904..ac6a382a8 100644 --- a/src/features/payments/flows/semantic-request/SemanticRequestPageWrapper.tsx +++ b/src/features/payments/flows/semantic-request/SemanticRequestPageWrapper.tsx @@ -43,6 +43,19 @@ export function SemanticRequestPageWrapper({ recipient }: SemanticRequestPageWra return } + // If we have a chargeId, skip URL parsing - charge will provide all needed data + // Use a dummy parsedUrl to satisfy the component contract + if (chargeIdFromUrl) { + setParsedUrl({ + recipient: null, // Will be populated from charge + amount: undefined, + token: undefined, + chain: undefined, + }) + setIsLoading(false) + return + } + setIsLoading(true) setError(null) @@ -66,7 +79,7 @@ export function SemanticRequestPageWrapper({ recipient }: SemanticRequestPageWra .finally(() => { setIsLoading(false) }) - }, [recipient]) + }, [recipient, chargeIdFromUrl]) // loading state if (isLoading) { diff --git a/src/features/payments/flows/semantic-request/useSemanticRequestFlow.ts b/src/features/payments/flows/semantic-request/useSemanticRequestFlow.ts index 5e8ceb2d2..dc43176f8 100644 --- a/src/features/payments/flows/semantic-request/useSemanticRequestFlow.ts +++ b/src/features/payments/flows/semantic-request/useSemanticRequestFlow.ts @@ -515,6 +515,7 @@ export function useSemanticRequestFlow() { sourceChainId: selectedChainID || undefined, sourceTokenAddress: selectedTokenAddress || undefined, sourceTokenSymbol: selectedTokenData?.symbol, + squidQuoteId: calculatedRoute?.rawResponse?.route?.quoteId, }) setPayment(paymentResult) diff --git a/src/features/payments/flows/semantic-request/views/SemanticRequestConfirmView.tsx b/src/features/payments/flows/semantic-request/views/SemanticRequestConfirmView.tsx index 4768ef23a..e0d30bcfb 100644 --- a/src/features/payments/flows/semantic-request/views/SemanticRequestConfirmView.tsx +++ b/src/features/payments/flows/semantic-request/views/SemanticRequestConfirmView.tsx @@ -29,8 +29,14 @@ import { PEANUT_WALLET_CHAIN, PEANUT_WALLET_TOKEN, PEANUT_WALLET_TOKEN_SYMBOL } import PeanutActionDetailsCard, { type PeanutActionDetailsCardRecipientType, } from '@/components/Global/PeanutActionDetailsCard' +import { useSearchParams, useRouter } from 'next/navigation' +import SendWithPeanutCta from '@/features/payments/shared/components/SendWithPeanutCta' export function SemanticRequestConfirmView() { + const router = useRouter() + const searchParams = useSearchParams() + const context = searchParams.get('context') + const isCardPioneer = context === 'card-pioneer' const { amount, usdAmount, @@ -156,6 +162,18 @@ export function SemanticRequestConfirmView() { } } + // handle back navigation - for card pioneer, go back to card flow instead of INITIAL view + // TODO: consider using router.back() for normal request flow too instead of goBackToInitial() + // which manipulates internal state. router.back() would be more consistent and handle + // browser history properly (e.g., if user came from a shared link vs navigating in-app) + const handleBack = () => { + if (isCardPioneer) { + router.push('/card?step=geo') + } else { + goBackToInitial() + } + } + // show loading if we don't have charge details yet or fetching if (!charge || isFetchingCharge) { return ( @@ -167,7 +185,7 @@ export function SemanticRequestConfirmView() { return ( <div className="flex min-h-[inherit] flex-col justify-between gap-8"> - <NavHeader onPrev={goBackToInitial} title="Confirm Payment" /> + <NavHeader onPrev={handleBack} title="Confirm Payment" /> <div className="my-auto flex h-full flex-col justify-center space-y-4 pb-5"> {recipient && recipient.recipientType && ( @@ -191,14 +209,16 @@ export function SemanticRequestConfirmView() { )} {/* payment details card */} <Card className="rounded-sm"> - <PaymentInfoRow - label="Min Received" - loading={!minReceived || isCalculatingRoute} - value={minReceived ?? '-'} - moreInfoText="This transaction may face slippage due to token conversion or cross-chain bridging." - /> + {!isCardPioneer && ( + <PaymentInfoRow + label="Min Received" + loading={!minReceived || isCalculatingRoute} + value={minReceived ?? '-'} + moreInfoText="This transaction may face slippage due to token conversion or cross-chain bridging." + /> + )} - {isCrossChainPayment && ( + {!isCardPioneer && isCrossChainPayment && ( <PaymentInfoRow label="Requested" value={ @@ -214,23 +234,30 @@ export function SemanticRequestConfirmView() { /> )} + {!isCardPioneer && ( + <PaymentInfoRow + label={isCrossChainPayment ? 'Sending' : 'Token and network'} + value={ + <TokenChainInfoDisplay + tokenIconUrl={sendingTokenIconUrl} + chainIconUrl={sendingChainIconUrl} + resolvedTokenSymbol={sendingResolvedTokenSymbol} + fallbackTokenSymbol={PEANUT_WALLET_TOKEN_SYMBOL} + resolvedChainName={sendingResolvedChainName} + fallbackChainName="Arbitrum" + /> + } + /> + )} + <PaymentInfoRow - label={isCrossChainPayment ? 'Sending' : 'Token and network'} - value={ - <TokenChainInfoDisplay - tokenIconUrl={sendingTokenIconUrl} - chainIconUrl={sendingChainIconUrl} - resolvedTokenSymbol={sendingResolvedTokenSymbol} - fallbackTokenSymbol={PEANUT_WALLET_TOKEN_SYMBOL} - resolvedChainName={sendingResolvedChainName} - fallbackChainName="Arbitrum" - /> - } + loading={isCalculatingRoute} + label="Network fee" + value={networkFee} + hideBottomBorder={isCardPioneer} /> - <PaymentInfoRow loading={isCalculatingRoute} label="Network fee" value={networkFee} /> - - <PaymentInfoRow hideBottomBorder label="Peanut fee" value="$ 0.00" /> + {!isCardPioneer && <PaymentInfoRow hideBottomBorder label="Peanut fee" value="$ 0.00" />} </Card> {/* buttons and error */} @@ -247,6 +274,12 @@ export function SemanticRequestConfirmView() { > Retry </Button> + ) : isCardPioneer ? ( + <SendWithPeanutCta + disabled={isLoading || isCalculatingRoute || isFeeEstimationError} + onClick={handleConfirm} + loading={isLoading || isCalculatingRoute} + /> ) : ( <Button disabled={isLoading || isCalculatingRoute || isFeeEstimationError} diff --git a/src/features/payments/flows/semantic-request/views/SemanticRequestSuccessView.tsx b/src/features/payments/flows/semantic-request/views/SemanticRequestSuccessView.tsx index bbd41286f..bd84a0570 100644 --- a/src/features/payments/flows/semantic-request/views/SemanticRequestSuccessView.tsx +++ b/src/features/payments/flows/semantic-request/views/SemanticRequestSuccessView.tsx @@ -9,12 +9,18 @@ * - provides reset callback on completion */ +import { useEffect } from 'react' +import { useRouter, useSearchParams } from 'next/navigation' import PaymentSuccessView from '@/features/payments/shared/components/PaymentSuccessView' import { useSemanticRequestFlow } from '../useSemanticRequestFlow' import { usePointsCalculation } from '@/hooks/usePointsCalculation' import { PointsAction } from '@/services/services.types' export function SemanticRequestSuccessView() { + const router = useRouter() + const searchParams = useSearchParams() + const context = searchParams.get('context') + const { usdAmount, recipient, @@ -26,6 +32,14 @@ export function SemanticRequestSuccessView() { isExternalWalletPayment, } = useSemanticRequestFlow() + // If this is a Card Pioneer payment, skip the generic success screen + // and redirect immediately to the Card Pioneer success page + useEffect(() => { + if (context === 'card-pioneer') { + router.push('/card?step=success') + } + }, [context, router]) + // determine recipient type from parsed url const recipientType = recipient?.recipientType || 'ADDRESS' @@ -37,6 +51,12 @@ export function SemanticRequestSuccessView() { payment?.uuid ) + // Don't render the generic success view for Card Pioneer payments + // (will redirect immediately via useEffect) + if (context === 'card-pioneer') { + return null + } + return ( <PaymentSuccessView type="SEND" diff --git a/src/features/payments/shared/hooks/usePaymentRecorder.ts b/src/features/payments/shared/hooks/usePaymentRecorder.ts index 487fd6c1f..a14932c61 100644 --- a/src/features/payments/shared/hooks/usePaymentRecorder.ts +++ b/src/features/payments/shared/hooks/usePaymentRecorder.ts @@ -30,6 +30,8 @@ export interface RecordPaymentParams { sourceChainId?: string sourceTokenAddress?: string sourceTokenSymbol?: string + // squid quote ID for cross-chain analytics + squidQuoteId?: string } // return type for the hook @@ -61,6 +63,7 @@ export const usePaymentRecorder = (): UsePaymentRecorderReturn => { sourceChainId: params.sourceChainId, sourceTokenAddress: params.sourceTokenAddress, sourceTokenSymbol: params.sourceTokenSymbol, + squidQuoteId: params.squidQuoteId, }) setPayment(paymentResponse) diff --git a/src/hooks/query/user.ts b/src/hooks/query/user.ts index d9db7651b..cd13d862a 100644 --- a/src/hooks/query/user.ts +++ b/src/hooks/query/user.ts @@ -8,6 +8,16 @@ import { usePWAStatus } from '../usePWAStatus' import { useDeviceType } from '../useGetDeviceType' import { USER } from '@/constants/query.consts' +// custom error class for backend errors (5xx) that should trigger retry +export class BackendError extends Error { + status: number + constructor(message: string, status: number) { + super(message) + this.name = 'BackendError' + this.status = status + } +} + export const useUserQuery = (dependsOn: boolean = true) => { const isPwa = usePWAStatus() const { deviceType } = useDeviceType() @@ -23,30 +33,36 @@ export const useUserQuery = (dependsOn: boolean = true) => { isPwa: isPwa, deviceType: deviceType, }) - dispatch(userActions.setUser(userData)) } - return userData - } else { - console.warn('Failed to fetch user, status:', userResponse.status) - // clear stale redux data so the app doesn't keep serving cached user - dispatch(userActions.setUser(null)) - return null } + + // 5xx = backend error, throw so tanstack retries + if (userResponse.status >= 500) { + console.error('Backend error fetching user:', userResponse.status) + throw new BackendError('Backend error fetching user', userResponse.status) + } + + // 4xx = auth failure, clear stale redux so layout redirects to /setup + console.warn('Failed to fetch user, status:', userResponse.status) + dispatch(userActions.setUser(null)) + return null } return useQuery({ queryKey: [USER], queryFn: fetchUser, - retry: 0, + retry: (failureCount, error) => { + if (error instanceof BackendError && failureCount < 2) return true + return false + }, + retryDelay: 1000, enabled: dependsOn, staleTime: 5 * 60 * 1000, gcTime: 10 * 60 * 1000, refetchOnMount: true, refetchOnWindowFocus: true, - // use redux data as placeholder while fetching (no flicker) - // but always validate against the backend placeholderData: authUser || undefined, }) } diff --git a/src/hooks/useBridgeKycFlow.ts b/src/hooks/useBridgeKycFlow.ts deleted file mode 100644 index 03feb4724..000000000 --- a/src/hooks/useBridgeKycFlow.ts +++ /dev/null @@ -1,188 +0,0 @@ -import { useState, useEffect, useRef, useCallback } from 'react' -import { useRouter } from 'next/navigation' -import { type IFrameWrapperProps } from '@/components/Global/IframeWrapper' -import { useWebSocket } from '@/hooks/useWebSocket' -import { useUserStore } from '@/redux/hooks' -import { type BridgeKycStatus, convertPersonaUrl } from '@/utils/bridge-accounts.utils' -import { type InitiateKycResponse } from '@/app/actions/types/users.types' -import { getKycDetails, updateUserById } from '@/app/actions/users' -import { type IUserKycVerification } from '@/interfaces' - -interface UseKycFlowOptions { - onKycSuccess?: () => void - flow?: 'add' | 'withdraw' | 'request_fulfillment' - onManualClose?: () => void -} - -export interface KycHistoryEntry { - isKyc: true - uuid: string - timestamp: string - verification?: IUserKycVerification - bridgeKycStatus?: BridgeKycStatus -} - -// type guard to check if an entry is a KYC status item in history section -export const isKycStatusItem = (entry: object): entry is KycHistoryEntry => { - return 'isKyc' in entry && entry.isKyc === true -} - -export const useBridgeKycFlow = ({ onKycSuccess, flow, onManualClose }: UseKycFlowOptions = {}) => { - const { user } = useUserStore() - const router = useRouter() - const [isLoading, setIsLoading] = useState(false) - const [error, setError] = useState<string | null>(null) - const [apiResponse, setApiResponse] = useState<InitiateKycResponse | null>(null) - const [liveKycStatus, setLiveKycStatus] = useState<BridgeKycStatus | undefined>( - user?.user?.bridgeKycStatus as BridgeKycStatus - ) - const prevStatusRef = useRef(liveKycStatus) - - const [iframeOptions, setIframeOptions] = useState<Omit<IFrameWrapperProps, 'onClose'>>({ - src: '', - visible: false, - closeConfirmMessage: undefined, - }) - const [isVerificationProgressModalOpen, setIsVerificationProgressModalOpen] = useState(false) - - // listen for websocket updates - useWebSocket({ - username: user?.user.username ?? undefined, - autoConnect: true, - onKycStatusUpdate: (newStatus) => { - setLiveKycStatus(newStatus as BridgeKycStatus) - }, - onTosUpdate: (data) => { - if (data.accepted) { - handleIframeClose('tos_accepted') - } - }, - }) - - // when the final status is received, close the verification modal - useEffect(() => { - // We only want to run this effect on updates, not on the initial mount - // to prevent `onKycSuccess` from being called when the component first renders - // with an already-approved status. - const prevStatus = prevStatusRef.current - prevStatusRef.current = liveKycStatus - if (prevStatus !== 'approved' && liveKycStatus === 'approved') { - setIsVerificationProgressModalOpen(false) - onKycSuccess?.() - } else if (prevStatus !== 'rejected' && liveKycStatus === 'rejected') { - setIsVerificationProgressModalOpen(false) - } - prevStatusRef.current = liveKycStatus - }, [liveKycStatus, onKycSuccess]) - - const handleInitiateKyc = async () => { - setIsLoading(true) - setError(null) - - try { - const response = await getKycDetails() - - if (response.error) { - setError(response.error) - setIsLoading(false) - return { success: false, error: response.error } - } - - if (response.data) { - setApiResponse(response.data) - // if there's a tos link and it's not yet approved, show it first. - if (response.data.tosLink && response.data.tosStatus !== 'approved') { - setIframeOptions({ src: response.data.tosLink, visible: true }) - } else if (response.data.kycLink) { - const kycUrl = convertPersonaUrl(response.data.kycLink) - setIframeOptions({ - src: kycUrl, - visible: true, - closeConfirmMessage: 'Are you sure? Your KYC progress will be lost.', - }) - } else { - const errorMsg = 'Could not retrieve verification links. Please contact support.' - setError(errorMsg) - return { success: false, error: errorMsg } - } - return { success: true, data: response.data } - } - } catch (e: any) { - setError(e.message) - return { success: false, error: e.message } - } finally { - setIsLoading(false) - } - } - - const handleIframeClose = useCallback( - (source: 'completed' | 'manual' | 'tos_accepted' = 'manual') => { - const wasShowingTos = iframeOptions.src === apiResponse?.tosLink - - // handle tos acceptance: only act if the tos iframe is currently shown. - if (source === 'tos_accepted') { - if (wasShowingTos && apiResponse?.kycLink) { - const kycUrl = convertPersonaUrl(apiResponse.kycLink) - setIframeOptions({ - src: kycUrl, - visible: true, - closeConfirmMessage: 'Are you sure? Your KYC progress will be lost.', - }) - } - // ignore late ToS events when KYC is already open - return - } - - // When KYC signals completion, close iframe and show progress modal - if (source === 'completed') { - setIframeOptions((prev) => ({ ...prev, visible: false })) - setIsVerificationProgressModalOpen(true) - // set the status to under review explicitly to avoild delays from bridge webhook - updateUserById({ - userId: user?.user.userId, - bridgeKycStatus: 'under_review' as BridgeKycStatus, - }) - return - } - - // manual abort: close modal; optionally redirect in add flow - if (source === 'manual') { - setIframeOptions((prev) => ({ ...prev, visible: false })) - if (flow === 'add') { - router.push('/add-money') - } else if (flow === 'request_fulfillment') { - onManualClose?.() - } - return - } - - // for any other sources, do nothing - }, - [iframeOptions.src, apiResponse, flow, router] - ) - - const closeVerificationProgressModal = () => { - setIsVerificationProgressModalOpen(false) - } - - const closeVerificationModalAndGoHome = () => { - setIsVerificationProgressModalOpen(false) - router.push('/home') - } - - const resetError = useCallback(() => { - setError(null) - }, []) - - return { - isLoading, - error, - iframeOptions, - isVerificationProgressModalOpen, - handleInitiateKyc, - handleIframeClose, - closeVerificationProgressModal, - closeVerificationModalAndGoHome, - resetError, - } -} diff --git a/src/hooks/useBridgeTosStatus.ts b/src/hooks/useBridgeTosStatus.ts new file mode 100644 index 000000000..46f8b86e5 --- /dev/null +++ b/src/hooks/useBridgeTosStatus.ts @@ -0,0 +1,17 @@ +import { useMemo } from 'react' +import { useUserStore } from '@/redux/hooks' +import { type IUserRail } from '@/interfaces' + +// derives bridge ToS status from the user's rails array +export const useBridgeTosStatus = () => { + const { user } = useUserStore() + + return useMemo(() => { + const rails: IUserRail[] = user?.rails ?? [] + const bridgeRails = rails.filter((r) => r.rail.provider.code === 'BRIDGE') + const needsBridgeTos = bridgeRails.some((r) => r.status === 'REQUIRES_INFORMATION') + const isBridgeFullyEnabled = bridgeRails.length > 0 && bridgeRails.every((r) => r.status === 'ENABLED') + + return { needsBridgeTos, isBridgeFullyEnabled, bridgeRails } + }, [user?.rails]) +} diff --git a/src/hooks/useCardPioneerInfo.ts b/src/hooks/useCardPioneerInfo.ts new file mode 100644 index 000000000..cea555a28 --- /dev/null +++ b/src/hooks/useCardPioneerInfo.ts @@ -0,0 +1,33 @@ +'use client' + +import { useQuery } from '@tanstack/react-query' +import { cardApi, type CardInfoResponse } from '@/services/card' +import { useAuth } from '@/context/authContext' +import underMaintenanceConfig from '@/config/underMaintenance.config' + +/** + * Hook to fetch Card Pioneer info for the authenticated user. + * Returns eligibility status, purchase status, and pricing. + */ +export const useCardPioneerInfo = () => { + const { user } = useAuth() + + const query = useQuery<CardInfoResponse>({ + queryKey: ['card-info', user?.user?.userId], + queryFn: () => cardApi.getInfo(), + enabled: !!user?.user?.userId && !underMaintenanceConfig.disableCardPioneers, + staleTime: 60_000, // 1 minute + retry: 1, + }) + + return { + cardInfo: query.data, + isLoading: query.isLoading, + error: query.error, + refetch: query.refetch, + // Convenience booleans - return undefined while loading to prevent flash + isEligible: query.isLoading ? undefined : (query.data?.isEligible ?? false), + hasPurchased: query.isLoading ? undefined : (query.data?.hasPurchased ?? false), + price: query.data?.price ?? 10, + } +} diff --git a/src/hooks/useHoldToClaim.ts b/src/hooks/useHoldToClaim.ts index 27acdb961..cc73ab021 100644 --- a/src/hooks/useHoldToClaim.ts +++ b/src/hooks/useHoldToClaim.ts @@ -7,18 +7,29 @@ interface UseHoldToClaimOptions { onComplete: () => void holdDuration?: number disabled?: boolean + /** Enable tap-to-progress mode (tap + hold both add progress, with decay) */ + enableTapMode?: boolean + /** Progress added per tap (0-100), default 15 */ + tapProgress?: number + /** Progress added per second while holding (0-100), default 80 */ + holdProgressPerSec?: number + /** Progress decay per second when not interacting (0-100), default 8 */ + decayRate?: number } interface UseHoldToClaimReturn { holdProgress: number isShaking: boolean shakeIntensity: ShakeIntensity + isHolding: boolean startHold: () => void cancelHold: () => void + handleTap: () => void buttonProps: { onPointerDown: () => void onPointerUp: () => void onPointerLeave: () => void + onPointerCancel: () => void onKeyDown: (e: React.KeyboardEvent) => void onKeyUp: (e: React.KeyboardEvent) => void onContextMenu: (e: React.MouseEvent) => void @@ -29,75 +40,201 @@ interface UseHoldToClaimReturn { /** * Custom hook for hold-to-claim button interactions - * Provides progress tracking, shake animation, haptic feedback, and accessibility support + * Supports two modes: + * 1. Hold-only mode (default): Progress only while holding, resets on release + * 2. Tap mode (enableTapMode=true): Tap + hold both add progress, with slow decay */ export function useHoldToClaim({ onComplete, holdDuration = PERK_HOLD_DURATION_MS, disabled = false, + enableTapMode = false, + tapProgress = 15, + holdProgressPerSec = 80, + decayRate = 8, }: UseHoldToClaimOptions): UseHoldToClaimReturn { const [holdProgress, setHoldProgress] = useState(0) const [isShaking, setIsShaking] = useState(false) const [shakeIntensity, setShakeIntensity] = useState<ShakeIntensity>('none') + const [isHolding, setIsHolding] = useState(false) + const holdTimerRef = useRef<NodeJS.Timeout | null>(null) const progressIntervalRef = useRef<NodeJS.Timeout | null>(null) const holdStartTimeRef = useRef<number | null>(null) + const animationFrameRef = useRef<number | null>(null) + const lastUpdateTimeRef = useRef<number>(Date.now()) + const progressRef = useRef<number>(0) + const lastHapticIntensityRef = useRef<ShakeIntensity>('none') + const isCompleteRef = useRef<boolean>(false) + const lastTapTimeRef = useRef<number>(0) // Cleanup timers on unmount useEffect(() => { return () => { if (holdTimerRef.current) clearTimeout(holdTimerRef.current) if (progressIntervalRef.current) clearInterval(progressIntervalRef.current) + if (animationFrameRef.current) cancelAnimationFrame(animationFrameRef.current) holdStartTimeRef.current = null } }, []) - const cancelHold = useCallback(() => { - const PREVIEW_DURATION_MS = 500 + // Tap mode: Main update loop for progress, decay, and haptics + useEffect(() => { + if (!enableTapMode || disabled || isCompleteRef.current) return + + const update = () => { + const now = Date.now() + const deltaTime = (now - lastUpdateTimeRef.current) / 1000 + lastUpdateTimeRef.current = now + + let newProgress = progressRef.current + + // Add progress if holding + if (isHolding) { + newProgress += holdProgressPerSec * deltaTime + } + // Decay if not holding + else if (progressRef.current > 0) { + newProgress -= decayRate * deltaTime + } + + newProgress = Math.max(0, Math.min(100, newProgress)) + progressRef.current = newProgress + setHoldProgress(newProgress) + + // Only shake/vibrate when progress is INCREASING (holding or just tapped) + // Not during decay - the gift should stabilize when you let go + const recentlyTapped = Date.now() - lastTapTimeRef.current < 150 + const isProgressIncreasing = (isHolding || recentlyTapped) && newProgress > 0 + setIsShaking(isProgressIncreasing) + + // Progressive shake intensity - only when actively interacting + let newIntensity: ShakeIntensity = 'none' + if (!isProgressIncreasing || newProgress <= 0) { + newIntensity = 'none' + } else if (newProgress < 25) { + newIntensity = 'weak' + } else if (newProgress < 50) { + newIntensity = 'medium' + } else if (newProgress < 75) { + newIntensity = 'strong' + } else { + newIntensity = 'intense' + } + + // Trigger haptic feedback when intensity changes (only while holding) + if ( + isHolding && + newIntensity !== lastHapticIntensityRef.current && + newIntensity !== 'none' && + 'vibrate' in navigator + ) { + switch (newIntensity) { + case 'weak': + navigator.vibrate(50) + break + case 'medium': + navigator.vibrate([100, 40, 100]) + break + case 'strong': + navigator.vibrate([150, 40, 150, 40, 150]) + break + case 'intense': + navigator.vibrate([200, 40, 200, 40, 200, 40, 200]) + break + } + lastHapticIntensityRef.current = newIntensity + } + + // Reset haptic tracking when not holding so next hold starts fresh + if (!isHolding) { + lastHapticIntensityRef.current = 'none' + } + + setShakeIntensity(newIntensity) + + // Check for completion + if (newProgress >= 100 && !isCompleteRef.current) { + isCompleteRef.current = true + onComplete() + return + } + + animationFrameRef.current = requestAnimationFrame(update) + } - // Calculate how long the user held + lastUpdateTimeRef.current = Date.now() + animationFrameRef.current = requestAnimationFrame(update) + + return () => { + if (animationFrameRef.current) { + cancelAnimationFrame(animationFrameRef.current) + } + } + }, [enableTapMode, disabled, isHolding, holdProgressPerSec, decayRate, onComplete]) + + // Handle tap (tap mode only) + const handleTap = useCallback(() => { + if (disabled || !enableTapMode || isCompleteRef.current) return + + progressRef.current = Math.min(progressRef.current + tapProgress, 100) + setHoldProgress(progressRef.current) + lastTapTimeRef.current = Date.now() + + // Haptic feedback for tap + if ('vibrate' in navigator) { + navigator.vibrate(20) + } + + // Check for completion + if (progressRef.current >= 100 && !isCompleteRef.current) { + isCompleteRef.current = true + onComplete() + } + }, [disabled, enableTapMode, tapProgress, onComplete]) + + // Legacy hold-only mode cancel + const cancelHoldLegacy = useCallback(() => { + const PREVIEW_DURATION_MS = 500 const elapsed = holdStartTimeRef.current ? Date.now() - holdStartTimeRef.current : 0 - // Clear the completion timer if (holdTimerRef.current) clearTimeout(holdTimerRef.current) holdTimerRef.current = null - // If it was a quick tap, let the preview animation continue for 500ms before resetting if (elapsed > 0 && elapsed < PREVIEW_DURATION_MS) { const remainingPreviewTime = PREVIEW_DURATION_MS - elapsed - - // Let animations continue for the preview duration const resetTimer = setTimeout(() => { - // Clean up after preview if (progressIntervalRef.current) clearInterval(progressIntervalRef.current) progressIntervalRef.current = null setHoldProgress(0) setIsShaking(false) setShakeIntensity('none') holdStartTimeRef.current = null - - if ('vibrate' in navigator) { - navigator.vibrate(0) - } + if ('vibrate' in navigator) navigator.vibrate(0) }, remainingPreviewTime) - holdTimerRef.current = resetTimer } else { - // Released after preview duration - reset immediately if (progressIntervalRef.current) clearInterval(progressIntervalRef.current) progressIntervalRef.current = null setHoldProgress(0) setIsShaking(false) setShakeIntensity('none') holdStartTimeRef.current = null - - if ('vibrate' in navigator) { - navigator.vibrate(0) - } + if ('vibrate' in navigator) navigator.vibrate(0) } }, []) - const startHold = useCallback(() => { + const cancelHold = useCallback(() => { + if (enableTapMode) { + // Tap mode: just stop holding, decay will handle the rest + setIsHolding(false) + } else { + cancelHoldLegacy() + } + }, [enableTapMode, cancelHoldLegacy]) + + // Legacy hold-only mode start + const startHoldLegacy = useCallback(() => { if (disabled) return setHoldProgress(0) @@ -107,54 +244,41 @@ export function useHoldToClaim({ holdStartTimeRef.current = startTime let lastIntensity: ShakeIntensity = 'weak' - // Update progress and shake intensity const interval = setInterval(() => { const elapsed = Date.now() - startTime const progress = Math.min((elapsed / holdDuration) * 100, 100) setHoldProgress(progress) - // Progressive shake intensity with haptic feedback let newIntensity: ShakeIntensity = 'weak' - if (progress < 25) { - newIntensity = 'weak' - } else if (progress < 50) { - newIntensity = 'medium' - } else if (progress < 75) { - newIntensity = 'strong' - } else { - newIntensity = 'intense' - } + if (progress < 25) newIntensity = 'weak' + else if (progress < 50) newIntensity = 'medium' + else if (progress < 75) newIntensity = 'strong' + else newIntensity = 'intense' - // Trigger haptic feedback when intensity changes if (newIntensity !== lastIntensity && 'vibrate' in navigator) { - // Progressive vibration patterns that match shake intensity switch (newIntensity) { case 'weak': - navigator.vibrate(50) // Short but noticeable pulse + navigator.vibrate(50) break case 'medium': - navigator.vibrate([100, 40, 100]) // Medium pulse pattern + navigator.vibrate([100, 40, 100]) break case 'strong': - navigator.vibrate([150, 40, 150, 40, 150]) // Strong pulse pattern + navigator.vibrate([150, 40, 150, 40, 150]) break case 'intense': - navigator.vibrate([200, 40, 200, 40, 200, 40, 200]) // INTENSE pulse pattern + navigator.vibrate([200, 40, 200, 40, 200, 40, 200]) break } lastIntensity = newIntensity } setShakeIntensity(newIntensity) - - if (progress >= 100) { - clearInterval(interval) - } + if (progress >= 100) clearInterval(interval) }, 50) progressIntervalRef.current = interval - // Complete after hold duration const timer = setTimeout(() => { onComplete() }, holdDuration) @@ -162,10 +286,23 @@ export function useHoldToClaim({ holdTimerRef.current = timer }, [onComplete, holdDuration, disabled]) + const startHold = useCallback(() => { + if (disabled || isCompleteRef.current) return + + if (enableTapMode) { + // Tap mode: count as tap + start holding + handleTap() + setIsHolding(true) + } else { + startHoldLegacy() + } + }, [disabled, enableTapMode, handleTap, startHoldLegacy]) + const buttonProps = { onPointerDown: startHold, onPointerUp: cancelHold, onPointerLeave: cancelHold, + onPointerCancel: cancelHold, onKeyDown: (e: React.KeyboardEvent) => { if ((e.key === 'Enter' || e.key === ' ') && !disabled) { e.preventDefault() @@ -179,7 +316,6 @@ export function useHoldToClaim({ } }, onContextMenu: (e: React.MouseEvent) => { - // Prevent context menu from appearing e.preventDefault() }, className: 'relative touch-manipulation select-none overflow-hidden', @@ -193,8 +329,10 @@ export function useHoldToClaim({ holdProgress, isShaking, shakeIntensity, + isHolding, startHold, cancelHold, + handleTap, buttonProps, } } diff --git a/src/hooks/useHomeCarouselCTAs.tsx b/src/hooks/useHomeCarouselCTAs.tsx index 70a43822c..8613eccf9 100644 --- a/src/hooks/useHomeCarouselCTAs.tsx +++ b/src/hooks/useHomeCarouselCTAs.tsx @@ -11,7 +11,9 @@ import { useModalsContext } from '@/context/ModalsContext' import { DeviceType, useDeviceType } from './useGetDeviceType' import { usePWAStatus } from './usePWAStatus' import { useGeoLocation } from './useGeoLocation' +import { useCardPioneerInfo } from './useCardPioneerInfo' import { STAR_STRAIGHT_ICON } from '@/assets' +import underMaintenanceConfig from '@/config/underMaintenance.config' export type CarouselCTA = { id: string @@ -27,6 +29,8 @@ export type CarouselCTA = { iconContainerClassName?: string secondaryIcon?: StaticImageData | string iconSize?: number + // perk claim indicator - shows pink dot instead of X close button + isPerkClaim?: boolean } export const useHomeCarouselCTAs = () => { @@ -41,6 +45,11 @@ export const useHomeCarouselCTAs = () => { const { setIsQRScannerOpen } = useModalsContext() const { countryCode: userCountryCode } = useGeoLocation() + const { + isEligible: isCardPioneerEligible, + hasPurchased: hasCardPioneerPurchased, + isLoading: isCardPioneerLoading, + } = useCardPioneerInfo() const generateCarouselCTAs = useCallback(() => { const _carouselCTAs: CarouselCTA[] = [] @@ -49,6 +58,31 @@ export const useHomeCarouselCTAs = () => { const hasKycApproval = isUserKycApproved || isUserMantecaKycApproved const isLatamUser = userCountryCode === 'AR' || userCountryCode === 'BR' + // Card Pioneer CTA - show to all users who haven't purchased yet + // Eligibility check happens during the flow (geo screen) + // Only show when we know for sure they haven't purchased (not while loading) + if (!underMaintenanceConfig.disableCardPioneers && hasCardPioneerPurchased === false) { + _carouselCTAs.push({ + id: 'card-pioneer', + title: ( + <span> + Get your <b>Peanut Card</b> + </span> + ), + description: ( + <span> + Join Card Pioneers for <b>early access</b> and earn <b>$5</b> per referral. + </span> + ), + iconContainerClassName: 'bg-purple-1', + icon: 'credit-card', + onClick: () => { + router.push('/card') + }, + iconSize: 16, + }) + } + // Generic invite CTA for non-LATAM users if (!isLatamUser) { _carouselCTAs.push({ @@ -99,14 +133,14 @@ export const useHomeCarouselCTAs = () => { _carouselCTAs.push({ id: 'qr-payment', title: ( - <p> + <span> Pay with <b>QR code payments</b> - </p> + </span> ), description: ( - <p> + <span> Get the best exchange rate, pay like a <b>local</b> and earn <b>points</b>. - </p> + </span> ), iconContainerClassName: 'bg-secondary-1', icon: 'qr-code', @@ -124,14 +158,14 @@ export const useHomeCarouselCTAs = () => { _carouselCTAs.push({ id: 'latam-cashback-invite', title: ( - <p> + <span> Earn <b>20% cashback</b> on QR payments - </p> + </span> ), description: ( - <p> + <span> Invite friends to <b>unlock more rewards</b>. The more they use, the more you earn! - </p> + </span> ), iconContainerClassName: 'bg-secondary-1', icon: 'gift', @@ -178,6 +212,9 @@ export const useHomeCarouselCTAs = () => { deviceType, isPwa, userCountryCode, + isCardPioneerEligible, + hasCardPioneerPurchased, + isCardPioneerLoading, ]) useEffect(() => { diff --git a/src/hooks/useIdentityVerification.tsx b/src/hooks/useIdentityVerification.tsx index 228722ac6..e3f396532 100644 --- a/src/hooks/useIdentityVerification.tsx +++ b/src/hooks/useIdentityVerification.tsx @@ -1,10 +1,12 @@ import { EUROPE_GLOBE_ICON, LATAM_GLOBE_ICON, NORTH_AMERICA_GLOBE_ICON, REST_OF_WORLD_GLOBE_ICON } from '@/assets' import type { StaticImageData } from 'next/image' import useKycStatus from './useKycStatus' +import useUnifiedKycStatus from './useUnifiedKycStatus' import { useMemo, useCallback } from 'react' import { useAuth } from '@/context/authContext' import { MantecaKycStatus } from '@/interfaces' import { BRIDGE_ALPHA3_TO_ALPHA2, MantecaSupportedExchanges, countryData } from '@/components/AddMoney/consts' +import { type KYCRegionIntent } from '@/app/actions/types/sumsub.types' import React from 'react' /** Represents a geographic region with its display information */ @@ -75,6 +77,11 @@ const BRIDGE_SUPPORTED_LATAM_COUNTRIES: Region[] = [ }, ] +/** maps a region path to the sumsub kyc template intent */ +export const getRegionIntent = (regionPath: string): KYCRegionIntent => { + return regionPath === 'latam' ? 'LATAM' : 'STANDARD' +} + /** * Hook for managing identity verification (KYC) status and region access. * @@ -96,7 +103,8 @@ const BRIDGE_SUPPORTED_LATAM_COUNTRIES: Region[] = [ */ export const useIdentityVerification = () => { const { user } = useAuth() - const { isUserBridgeKycApproved, isUserMantecaKycApproved } = useKycStatus() + const { isUserBridgeKycApproved, isUserMantecaKycApproved, isUserSumsubKycApproved } = useKycStatus() + const { sumsubVerificationRegionIntent } = useUnifiedKycStatus() /** * Check if a country is supported by Manteca (LATAM countries). @@ -149,9 +157,20 @@ export const useIdentityVerification = () => { const { lockedRegions, unlockedRegions } = useMemo(() => { const isBridgeApproved = isUserBridgeKycApproved const isMantecaApproved = isUserMantecaKycApproved + const isSumsubApproved = isUserSumsubKycApproved - // Helper to check if a region should be unlocked + // helper to check if a region should be unlocked const isRegionUnlocked = (regionName: string) => { + // sumsub approval scoped by the regionIntent used during verification. + // 'LATAM' intent → unlocks LATAM. 'STANDARD' intent → unlocks Bridge regions + rest of world. + // no intent (or rest-of-world) → unlocks rest of world only. + if (isSumsubApproved) { + if (sumsubVerificationRegionIntent === 'LATAM') { + return MANTECA_SUPPORTED_REGIONS.includes(regionName) || regionName === 'Rest of the world' + } + // STANDARD intent covers bridge regions + rest of world + return BRIDGE_SUPPORTED_REGIONS.includes(regionName) || regionName === 'Rest of the world' + } return ( (isBridgeApproved && BRIDGE_SUPPORTED_REGIONS.includes(regionName)) || (isMantecaApproved && MANTECA_SUPPORTED_REGIONS.includes(regionName)) @@ -161,9 +180,9 @@ export const useIdentityVerification = () => { const unlocked = SUPPORTED_REGIONS.filter((region) => isRegionUnlocked(region.name)) const locked = SUPPORTED_REGIONS.filter((region) => !isRegionUnlocked(region.name)) - // Bridge users get QR payment access in Argentina & Brazil - // even without full Manteca KYC (which unlocks bank transfers too) - if (isBridgeApproved && !isMantecaApproved) { + // bridge users get qr payment access in argentina & brazil + // even without full manteca kyc (which unlocks bank transfers too) + if (isBridgeApproved && !isMantecaApproved && !isSumsubApproved) { unlocked.push(...MANTECA_QR_ONLY_REGIONS, ...BRIDGE_SUPPORTED_LATAM_COUNTRIES) } @@ -171,7 +190,7 @@ export const useIdentityVerification = () => { lockedRegions: locked, unlockedRegions: unlocked, } - }, [isUserBridgeKycApproved, isUserMantecaKycApproved]) + }, [isUserBridgeKycApproved, isUserMantecaKycApproved, isUserSumsubKycApproved, sumsubVerificationRegionIntent]) /** * Check if a region is already unlocked by comparing region paths. diff --git a/src/hooks/useKycStatus.tsx b/src/hooks/useKycStatus.tsx index 0b6eb9c5f..36b2909f3 100644 --- a/src/hooks/useKycStatus.tsx +++ b/src/hooks/useKycStatus.tsx @@ -1,36 +1,20 @@ 'use client' -import { useAuth } from '@/context/authContext' -import { MantecaKycStatus } from '@/interfaces' -import { useMemo } from 'react' +import useUnifiedKycStatus from './useUnifiedKycStatus' /** - * Used to get the user's KYC status for all providers - currently only bridge and manteca - * NOTE: This hook can be extended to support more providers in the future based on requirements - * @returns {object} An object with the user's KYC status for all providers and a combined status for all providers, if user is verified for any provider, return true + * thin wrapper around useUnifiedKycStatus for backward compatibility. + * existing consumers keep the same api shape. */ export default function useKycStatus() { - const { user } = useAuth() + const { isBridgeApproved, isMantecaApproved, isSumsubApproved, isKycApproved, isBridgeUnderReview } = + useUnifiedKycStatus() - const isUserBridgeKycApproved = useMemo(() => user?.user.bridgeKycStatus === 'approved', [user]) - - const isUserMantecaKycApproved = useMemo( - () => - user?.user.kycVerifications?.some((verification) => verification.status === MantecaKycStatus.ACTIVE) ?? - false, - [user] - ) - - const isUserKycApproved = useMemo( - () => isUserBridgeKycApproved || isUserMantecaKycApproved, - [isUserBridgeKycApproved, isUserMantecaKycApproved] - ) - - const isUserBridgeKycUnderReview = useMemo( - // Bridge kyc status is incomplete/under_review when user has started the kyc process - () => user?.user.bridgeKycStatus === 'under_review' || user?.user.bridgeKycStatus === 'incomplete', - [user] - ) - - return { isUserBridgeKycApproved, isUserMantecaKycApproved, isUserKycApproved, isUserBridgeKycUnderReview } + return { + isUserBridgeKycApproved: isBridgeApproved, + isUserMantecaKycApproved: isMantecaApproved, + isUserSumsubKycApproved: isSumsubApproved, + isUserKycApproved: isKycApproved, + isUserBridgeKycUnderReview: isBridgeUnderReview, + } } diff --git a/src/hooks/useMantecaKycFlow.ts b/src/hooks/useMantecaKycFlow.ts deleted file mode 100644 index b0f0864ab..000000000 --- a/src/hooks/useMantecaKycFlow.ts +++ /dev/null @@ -1,110 +0,0 @@ -import { useCallback, useEffect, useState } from 'react' -import type { IFrameWrapperProps } from '@/components/Global/IframeWrapper' -import { mantecaApi } from '@/services/manteca' -import { useAuth } from '@/context/authContext' -import { type CountryData, MantecaSupportedExchanges } from '@/components/AddMoney/consts' -import { MantecaKycStatus } from '@/interfaces' -import { useWebSocket } from './useWebSocket' -import { BASE_URL } from '@/constants/general.consts' - -type UseMantecaKycFlowOptions = { - onClose?: () => void - onSuccess?: () => void - onManualClose?: () => void - country?: CountryData -} - -export const useMantecaKycFlow = ({ onClose, onSuccess, onManualClose, country }: UseMantecaKycFlowOptions) => { - const [isLoading, setIsLoading] = useState(false) - const [error, setError] = useState<string | null>(null) - const [iframeOptions, setIframeOptions] = useState<Omit<IFrameWrapperProps, 'onClose'>>({ - src: '', - visible: false, - closeConfirmMessage: undefined, - }) - const { user, fetchUser } = useAuth() - const [isMantecaKycRequired, setNeedsMantecaKyc] = useState<boolean>(false) - - const userKycVerifications = user?.user?.kycVerifications - - const handleIframeClose = useCallback( - async (source?: 'manual' | 'completed' | 'tos_accepted') => { - setIframeOptions((prev) => ({ ...prev, visible: false })) - await fetchUser() - if (source === 'completed') { - onSuccess?.() - return - } - if (source === 'manual') { - onManualClose?.() - return - } - onClose?.() - }, - [onClose, onSuccess, onManualClose] - ) - - useWebSocket({ - username: user?.user.username ?? undefined, - autoConnect: true, - onMantecaKycStatusUpdate: async (status) => { - if (status === MantecaKycStatus.ACTIVE || status === 'WIDGET_FINISHED') { - await handleIframeClose('completed') - } - }, - }) - - useEffect(() => { - // determine if manteca kyc is required based on geo data available in kycVerifications - const selectedGeo = country?.id - - if (selectedGeo && Array.isArray(userKycVerifications) && userKycVerifications.length > 0) { - const isuserActiveForSelectedGeo = userKycVerifications.some( - (v) => - v.provider === 'MANTECA' && - (v.mantecaGeo || '').toUpperCase() === selectedGeo.toUpperCase() && - v.status === MantecaKycStatus.ACTIVE - ) - setNeedsMantecaKyc(!isuserActiveForSelectedGeo) - return - } - - // if no verifications data available, keep as null (undetermined) - // only set to true if we have user data but no matching verification - if (user && userKycVerifications !== undefined) { - setNeedsMantecaKyc(true) - } - }, [userKycVerifications, country?.id, user]) - - const openMantecaKyc = useCallback(async (countryParam?: CountryData) => { - setIsLoading(true) - setError(null) - try { - const exchange = countryParam?.id - ? MantecaSupportedExchanges[countryParam.id as keyof typeof MantecaSupportedExchanges] - : MantecaSupportedExchanges.AR - const returnUrl = BASE_URL + '/kyc/success' - const { url } = await mantecaApi.initiateOnboarding({ returnUrl, exchange }) - setIframeOptions({ - src: url, - visible: true, - }) - return { success: true as const } - } catch (e: unknown) { - const message = e instanceof Error ? e.message : 'Failed to initiate onboarding' - setError(message) - return { success: false as const, error: message } - } finally { - setIsLoading(false) - } - }, []) - - return { - isLoading, - error, - iframeOptions, - openMantecaKyc, - handleIframeClose, - isMantecaKycRequired, - } -} diff --git a/src/hooks/useMultiPhaseKycFlow.ts b/src/hooks/useMultiPhaseKycFlow.ts new file mode 100644 index 000000000..0e722345a --- /dev/null +++ b/src/hooks/useMultiPhaseKycFlow.ts @@ -0,0 +1,292 @@ +import { useState, useCallback, useRef, useEffect } from 'react' +import { useAuth } from '@/context/authContext' +import { useSumsubKycFlow } from '@/hooks/useSumsubKycFlow' +import { useRailStatusTracking } from '@/hooks/useRailStatusTracking' +import { getBridgeTosLink, confirmBridgeTos } from '@/app/actions/users' +import { type KycModalPhase } from '@/interfaces' +import { type KYCRegionIntent } from '@/app/actions/types/sumsub.types' + +const PREPARING_TIMEOUT_MS = 30000 + +interface UseMultiPhaseKycFlowOptions { + onKycSuccess?: () => void + onManualClose?: () => void + regionIntent?: KYCRegionIntent +} + +/** + * reusable hook that wraps useSumsubKycFlow + useRailStatusTracking + * to provide a complete multi-phase kyc flow: + * verifying → preparing → bridge_tos (if applicable) → complete + * + * use this hook anywhere kyc is initiated. pair with SumsubKycModals + * for the modal rendering. + */ +export const useMultiPhaseKycFlow = ({ onKycSuccess, onManualClose, regionIntent }: UseMultiPhaseKycFlowOptions) => { + const { fetchUser } = useAuth() + + // multi-phase modal state + const [modalPhase, setModalPhase] = useState<KycModalPhase>('verifying') + const [forceShowModal, setForceShowModal] = useState(false) + const [preparingTimedOut, setPreparingTimedOut] = useState(false) + const preparingTimerRef = useRef<NodeJS.Timeout | null>(null) + const isRealtimeFlowRef = useRef(false) + + // bridge ToS state + const [tosLink, setTosLink] = useState<string | null>(null) + const [showTosIframe, setShowTosIframe] = useState(false) + const [tosError, setTosError] = useState<string | null>(null) + const [isLoadingTos, setIsLoadingTos] = useState(false) + + // ref for closeVerificationProgressModal (avoids circular dep with completeFlow) + const closeVerificationModalRef = useRef<() => void>(() => {}) + + // rail tracking + const { allSettled, needsBridgeTos, startTracking, stopTracking } = useRailStatusTracking() + + const clearPreparingTimer = useCallback(() => { + if (preparingTimerRef.current) { + clearTimeout(preparingTimerRef.current) + preparingTimerRef.current = null + } + }, []) + + // complete the flow — close everything, call original onKycSuccess + const completeFlow = useCallback(() => { + isRealtimeFlowRef.current = false + setForceShowModal(false) + setModalPhase('verifying') + setPreparingTimedOut(false) + setTosLink(null) + setShowTosIframe(false) + setTosError(null) + clearPreparingTimer() + stopTracking() + closeVerificationModalRef.current() + onKycSuccess?.() + }, [onKycSuccess, clearPreparingTimer, stopTracking]) + + // called when sumsub status transitions to APPROVED + const handleSumsubApproved = useCallback(async () => { + // for real-time flow, optimistically show "Identity verified!" while we check rails + if (isRealtimeFlowRef.current) { + setModalPhase('preparing') + setForceShowModal(true) + } + + const updatedUser = await fetchUser() + const rails = updatedUser?.rails ?? [] + + const bridgeNeedsTos = rails.some( + (r) => r.rail.provider.code === 'BRIDGE' && r.status === 'REQUIRES_INFORMATION' + ) + + if (bridgeNeedsTos) { + setModalPhase('bridge_tos') + setForceShowModal(true) + clearPreparingTimer() + return + } + + const anyPending = rails.some((r) => r.status === 'PENDING') + + if (anyPending || (rails.length === 0 && isRealtimeFlowRef.current)) { + // rails still being set up — show preparing and start tracking + setModalPhase('preparing') + setForceShowModal(true) + startTracking() + return + } + + // all settled — done + completeFlow() + }, [fetchUser, startTracking, clearPreparingTimer, completeFlow]) + + const { + isLoading, + error, + showWrapper, + accessToken, + liveKycStatus, + handleInitiateKyc: originalHandleInitiateKyc, + handleSdkComplete: originalHandleSdkComplete, + handleClose, + refreshToken, + isVerificationProgressModalOpen, + closeVerificationProgressModal, + } = useSumsubKycFlow({ onKycSuccess: handleSumsubApproved, onManualClose, regionIntent }) + + // keep ref in sync + useEffect(() => { + closeVerificationModalRef.current = closeVerificationProgressModal + }, [closeVerificationProgressModal]) + + // refresh user store when kyc status transitions to a non-success state + // so the drawer/status item reads the updated verification record + useEffect(() => { + if (liveKycStatus === 'ACTION_REQUIRED' || liveKycStatus === 'REJECTED') { + fetchUser() + } + }, [liveKycStatus, fetchUser]) + + // wrap handleSdkComplete to track real-time flow + const handleSdkComplete = useCallback(() => { + isRealtimeFlowRef.current = true + originalHandleSdkComplete() + }, [originalHandleSdkComplete]) + + // wrap handleInitiateKyc to reset state for new attempts + const handleInitiateKyc = useCallback( + async (overrideIntent?: KYCRegionIntent, levelName?: string) => { + setModalPhase('verifying') + setForceShowModal(false) + setPreparingTimedOut(false) + setTosLink(null) + setShowTosIframe(false) + setTosError(null) + isRealtimeFlowRef.current = false + clearPreparingTimer() + + await originalHandleInitiateKyc(overrideIntent, levelName) + }, + [originalHandleInitiateKyc, clearPreparingTimer] + ) + + // 30s timeout for preparing phase + useEffect(() => { + if (modalPhase === 'preparing' && !preparingTimedOut) { + clearPreparingTimer() + preparingTimerRef.current = setTimeout(() => { + setPreparingTimedOut(true) + }, PREPARING_TIMEOUT_MS) + } else { + clearPreparingTimer() + } + }, [modalPhase, preparingTimedOut, clearPreparingTimer]) + + // phase transitions driven by rail tracking + useEffect(() => { + if (modalPhase === 'preparing') { + if (needsBridgeTos) { + setModalPhase('bridge_tos') + clearPreparingTimer() + } else if (allSettled) { + setModalPhase('complete') + clearPreparingTimer() + stopTracking() + } + } else if (modalPhase === 'bridge_tos') { + // after ToS accepted, rails transition to ENABLED + if (allSettled && !needsBridgeTos) { + setModalPhase('complete') + stopTracking() + } + } + }, [modalPhase, needsBridgeTos, allSettled, clearPreparingTimer, stopTracking]) + + // handle "Accept Terms" click in bridge_tos phase + const handleAcceptTerms = useCallback(async () => { + setIsLoadingTos(true) + setTosError(null) + + try { + const response = await getBridgeTosLink() + + if (response.error || !response.data?.tosLink) { + setTosError( + response.error || 'Could not load terms. You can accept them later from your activity feed.' + ) + return + } + + setTosLink(response.data.tosLink) + setShowTosIframe(true) + } catch { + setTosError('Something went wrong. You can accept terms later from your activity feed.') + } finally { + setIsLoadingTos(false) + } + }, []) + + // handle ToS iframe close + const handleTosIframeClose = useCallback( + async (source?: 'manual' | 'completed' | 'tos_accepted') => { + setShowTosIframe(false) + + if (source === 'tos_accepted') { + // confirm with backend + const result = await confirmBridgeTos() + + if (!result.data?.accepted) { + // bridge may not have registered acceptance yet — retry after short delay + await new Promise((resolve) => setTimeout(resolve, 2000)) + const retryResult = await confirmBridgeTos() + if (!retryResult.data?.accepted) { + console.warn('[useMultiPhaseKycFlow] bridge ToS confirmation failed after retry') + } + } + + // optimistically complete — don't wait for rail status WebSocket + await fetchUser() + completeFlow() + } + // if manual close, stay on bridge_tos phase (user can try again) + }, + [fetchUser, completeFlow] + ) + + // handle "Skip for now" in bridge_tos phase + const handleSkipTerms = useCallback(() => { + completeFlow() + }, [completeFlow]) + + // handle modal close (Go to Home, etc.) + const handleModalClose = useCallback(() => { + isRealtimeFlowRef.current = false + setForceShowModal(false) + clearPreparingTimer() + stopTracking() + closeVerificationProgressModal() + }, [clearPreparingTimer, stopTracking, closeVerificationProgressModal]) + + // cleanup on unmount + useEffect(() => { + return () => { + clearPreparingTimer() + stopTracking() + } + }, [clearPreparingTimer, stopTracking]) + + const isModalOpen = isVerificationProgressModalOpen || forceShowModal + + return { + // initiation + handleInitiateKyc, + isLoading, + error, + liveKycStatus, + + // SDK wrapper + showWrapper, + accessToken, + handleSdkClose: handleClose, + handleSdkComplete, + refreshToken, + + // multi-phase modal + isModalOpen, + modalPhase, + handleModalClose, + handleAcceptTerms, + handleSkipTerms, + completeFlow, + tosError, + isLoadingTos, + preparingTimedOut, + + // ToS iframe + tosLink, + showTosIframe, + handleTosIframeClose, + } +} diff --git a/src/hooks/useQrKycGate.ts b/src/hooks/useQrKycGate.ts index c025d3561..747ef0e78 100644 --- a/src/hooks/useQrKycGate.ts +++ b/src/hooks/useQrKycGate.ts @@ -3,7 +3,7 @@ import { useCallback, useState, useEffect, useRef } from 'react' import { useAuth } from '@/context/authContext' import { MantecaKycStatus } from '@/interfaces' -import { getBridgeCustomerCountry } from '@/app/actions/bridge/get-customer' +import { isKycStatusApproved, isSumsubStatusInProgress } from '@/constants/kyc.consts' export enum QrKycState { LOADING = 'loading', @@ -61,6 +61,16 @@ export function useQrKycGate(paymentProcessor?: 'MANTECA' | 'SIMPLEFI' | null): return } + // sumsub approved users (including foreign users) can proceed to qr pay. + // note: backend enforces per-rail access separately — frontend gate only checks identity verification. + const hasSumsubApproved = currentUser.kycVerifications?.some( + (v) => v.provider === 'SUMSUB' && isKycStatusApproved(v.status) + ) + if (hasSumsubApproved) { + setKycGateState(QrKycState.PROCEED_TO_PAY) + return + } + const mantecaKycs = currentUser.kycVerifications?.filter((v) => v.provider === 'MANTECA') ?? [] const hasAnyMantecaKyc = mantecaKycs.length > 0 @@ -73,18 +83,8 @@ export function useQrKycGate(paymentProcessor?: 'MANTECA' | 'SIMPLEFI' | null): return } - if (currentUser.bridgeKycStatus === 'approved' && currentUser.bridgeCustomerId) { - try { - const { countryCode } = await getBridgeCustomerCountry(currentUser.bridgeCustomerId) - // if (countryCode && countryCode.toUpperCase() === 'AR') { - if (false) { - } else { - setKycGateState(QrKycState.PROCEED_TO_PAY) - } - } catch { - // fail to require identity verification to avoid blocking pay due to rare outages - setKycGateState(QrKycState.REQUIRES_IDENTITY_VERIFICATION) - } + if (currentUser.bridgeKycStatus === 'approved') { + setKycGateState(QrKycState.PROCEED_TO_PAY) return } @@ -100,6 +100,15 @@ export function useQrKycGate(paymentProcessor?: 'MANTECA' | 'SIMPLEFI' | null): return } + // sumsub verification in progress + const hasSumsubInProgress = currentUser.kycVerifications?.some( + (v) => v.provider === 'SUMSUB' && isSumsubStatusInProgress(v.status) + ) + if (hasSumsubInProgress) { + setKycGateState(QrKycState.IDENTITY_VERIFICATION_IN_PROGRESS) + return + } + setKycGateState(QrKycState.REQUIRES_IDENTITY_VERIFICATION) }, [user?.user, isFetchingUser, paymentProcessor, fetchUser]) diff --git a/src/hooks/useRailStatusTracking.ts b/src/hooks/useRailStatusTracking.ts new file mode 100644 index 000000000..10d3588ad --- /dev/null +++ b/src/hooks/useRailStatusTracking.ts @@ -0,0 +1,170 @@ +import { useState, useCallback, useRef, useEffect, useMemo } from 'react' +import { useUserStore } from '@/redux/hooks' +import { useAuth } from '@/context/authContext' +import { useWebSocket } from '@/hooks/useWebSocket' +import { type IUserRail, type ProviderDisplayStatus, type ProviderStatus } from '@/interfaces' +import { type RailStatusUpdate } from '@/services/websocket' + +interface RailStatusTrackingResult { + providers: ProviderStatus[] + allSettled: boolean + needsBridgeTos: boolean + needsAdditionalDocs: boolean + startTracking: () => void + stopTracking: () => void +} + +const POLL_INTERVAL_MS = 4000 + +// human-readable labels for provider groups +const PROVIDER_LABELS: Record<string, string> = { + BRIDGE: 'Bank transfers', + MANTECA: 'QR payments and bank transfers', +} + +function deriveProviderDisplayName(providerCode: string, rails: IUserRail[]): string { + const base = PROVIDER_LABELS[providerCode] ?? providerCode + // add country context from rail methods + const countries = [...new Set(rails.map((r) => r.rail.method.country).filter(Boolean))] + if (countries.length > 0) { + return `${base} (${countries.join(', ')})` + } + return base +} + +function deriveStatus(rail: IUserRail): ProviderDisplayStatus { + switch (rail.status) { + case 'ENABLED': + return 'enabled' + case 'REQUIRES_EXTRA_INFORMATION': + return 'requires_documents' + case 'REQUIRES_INFORMATION': + return 'requires_tos' + case 'FAILED': + case 'REJECTED': + return 'failed' + case 'PENDING': + default: + return 'setting_up' + } +} + +// pick the "most advanced" status for a provider group +function deriveGroupStatus(rails: IUserRail[]): ProviderDisplayStatus { + const statuses = rails.map(deriveStatus) + // priority: requires_documents > requires_tos > enabled > failed > setting_up + if (statuses.includes('requires_documents')) return 'requires_documents' + if (statuses.includes('requires_tos')) return 'requires_tos' + if (statuses.includes('enabled')) return 'enabled' + if (statuses.includes('failed')) return 'failed' + return 'setting_up' +} + +export const useRailStatusTracking = (): RailStatusTrackingResult => { + const { user } = useUserStore() + const { fetchUser } = useAuth() + const [isTracking, setIsTracking] = useState(false) + const pollTimerRef = useRef<NodeJS.Timeout | null>(null) + const isMountedRef = useRef(true) + + // listen for rail status WebSocket events + useWebSocket({ + username: user?.user.username ?? undefined, + autoConnect: isTracking, + onRailStatusUpdate: useCallback( + (_data: RailStatusUpdate) => { + // refetch user to get updated rails from server + if (isTracking) { + fetchUser() + } + }, + [isTracking, fetchUser] + ), + }) + + // derive provider statuses from current rails + const providers = useMemo((): ProviderStatus[] => { + const rails: IUserRail[] = user?.rails ?? [] + if (rails.length === 0) return [] + + // group by provider + const byProvider = new Map<string, IUserRail[]>() + for (const rail of rails) { + const code = rail.rail.provider.code + const list = byProvider.get(code) ?? [] + list.push(rail) + byProvider.set(code, list) + } + + return Array.from(byProvider.entries()).map(([code, providerRails]) => ({ + providerCode: code, + displayName: deriveProviderDisplayName(code, providerRails), + status: deriveGroupStatus(providerRails), + rails: providerRails, + })) + }, [user?.rails]) + + const allSettled = useMemo(() => { + if (providers.length === 0) return false + return providers.every((p) => p.status !== 'setting_up') + }, [providers]) + + const needsBridgeTos = useMemo(() => { + return providers.some((p) => p.providerCode === 'BRIDGE' && p.status === 'requires_tos') + }, [providers]) + + const needsAdditionalDocs = useMemo(() => { + return providers.some((p) => p.status === 'requires_documents') + }, [providers]) + + // stop polling when all settled + useEffect(() => { + if (allSettled && isTracking) { + if (pollTimerRef.current) { + clearInterval(pollTimerRef.current) + pollTimerRef.current = null + } + } + }, [allSettled, isTracking]) + + const startTracking = useCallback(() => { + setIsTracking(true) + + // start polling as fallback + if (pollTimerRef.current) clearInterval(pollTimerRef.current) + pollTimerRef.current = setInterval(() => { + if (isMountedRef.current) { + fetchUser() + } + }, POLL_INTERVAL_MS) + }, [fetchUser]) + + const stopTracking = useCallback(() => { + setIsTracking(false) + if (pollTimerRef.current) { + clearInterval(pollTimerRef.current) + pollTimerRef.current = null + } + }, []) + + // cleanup on unmount + useEffect(() => { + isMountedRef.current = true + return () => { + isMountedRef.current = false + if (pollTimerRef.current) { + clearInterval(pollTimerRef.current) + pollTimerRef.current = null + } + } + }, []) + + return { + providers, + allSettled, + needsBridgeTos, + needsAdditionalDocs, + startTracking, + stopTracking, + } +} diff --git a/src/hooks/useSavedAccounts.tsx b/src/hooks/useSavedAccounts.tsx index 8f3bba74c..f34fb4a2b 100644 --- a/src/hooks/useSavedAccounts.tsx +++ b/src/hooks/useSavedAccounts.tsx @@ -16,7 +16,11 @@ export default function useSavedAccounts() { const savedAccounts = useMemo(() => { return ( user?.accounts.filter( - (acc) => acc.type === AccountType.IBAN || acc.type === AccountType.US || acc.type === AccountType.CLABE + (acc) => + acc.type === AccountType.IBAN || + acc.type === AccountType.US || + acc.type === AccountType.CLABE || + acc.type === AccountType.GB ) ?? [] ) }, [user]) diff --git a/src/hooks/useSumsubKycFlow.ts b/src/hooks/useSumsubKycFlow.ts new file mode 100644 index 000000000..2c107db32 --- /dev/null +++ b/src/hooks/useSumsubKycFlow.ts @@ -0,0 +1,221 @@ +import { useState, useEffect, useRef, useCallback } from 'react' +import { useRouter } from 'next/navigation' +import { useWebSocket } from '@/hooks/useWebSocket' +import { useUserStore } from '@/redux/hooks' +import { initiateSumsubKyc } from '@/app/actions/sumsub' +import { type KYCRegionIntent, type SumsubKycStatus } from '@/app/actions/types/sumsub.types' + +interface UseSumsubKycFlowOptions { + onKycSuccess?: () => void + onManualClose?: () => void + regionIntent?: KYCRegionIntent +} + +export const useSumsubKycFlow = ({ onKycSuccess, onManualClose, regionIntent }: UseSumsubKycFlowOptions = {}) => { + const { user } = useUserStore() + const router = useRouter() + + const [accessToken, setAccessToken] = useState<string | null>(null) + const [showWrapper, setShowWrapper] = useState(false) + const [isLoading, setIsLoading] = useState(false) + const [error, setError] = useState<string | null>(null) + const [isVerificationProgressModalOpen, setIsVerificationProgressModalOpen] = useState(false) + const [liveKycStatus, setLiveKycStatus] = useState<SumsubKycStatus | undefined>(undefined) + const [rejectLabels, setRejectLabels] = useState<string[] | undefined>(undefined) + const prevStatusRef = useRef(liveKycStatus) + // tracks the effective region intent across initiate + refresh so the correct template is always used + const regionIntentRef = useRef<KYCRegionIntent | undefined>(regionIntent) + // tracks the level name across initiate + refresh (e.g. 'peanut-additional-docs') + const levelNameRef = useRef<string | undefined>(undefined) + // guard: only fire onKycSuccess when the user initiated a kyc flow in this session. + // prevents stale websocket events or mount-time fetches from auto-closing the drawer. + const userInitiatedRef = useRef(false) + + useEffect(() => { + regionIntentRef.current = regionIntent + }, [regionIntent]) + + // listen for sumsub kyc status updates via websocket + useWebSocket({ + username: user?.user.username ?? undefined, + autoConnect: true, + onSumsubKycStatusUpdate: (newStatus, newRejectLabels) => { + setLiveKycStatus(newStatus as SumsubKycStatus) + if (newRejectLabels) setRejectLabels(newRejectLabels) + }, + }) + + // react to status transitions + useEffect(() => { + const prevStatus = prevStatusRef.current + prevStatusRef.current = liveKycStatus + + if (prevStatus !== 'APPROVED' && liveKycStatus === 'APPROVED') { + if (userInitiatedRef.current) { + onKycSuccess?.() + } + } else if ( + liveKycStatus && + liveKycStatus !== prevStatus && + liveKycStatus !== 'APPROVED' && + liveKycStatus !== 'PENDING' + ) { + // close modal for any non-success terminal state (REJECTED, ACTION_REQUIRED, FAILED, etc.) + setIsVerificationProgressModalOpen(false) + } + }, [liveKycStatus, onKycSuccess]) + + // fetch current status to recover from missed websocket events. + // skip when regionIntent is undefined to avoid creating an applicant with the wrong template + // (e.g. RegionsVerification mounts with no region selected yet). + useEffect(() => { + if (!regionIntent) return + + const fetchCurrentStatus = async () => { + try { + const response = await initiateSumsubKyc({ regionIntent }) + if (response.data?.status) { + setLiveKycStatus(response.data.status) + } + } catch { + // silent failure - we just show the user an error when they try to initiate the kyc flow if the api call is failing + } + } + + fetchCurrentStatus() + }, [regionIntent]) + + // polling fallback for missed websocket events. + // when the verification progress modal is open, poll status every 5s + // so the flow can transition even if the websocket event never arrives. + useEffect(() => { + if (!isVerificationProgressModalOpen) return + + const pollStatus = async () => { + try { + const response = await initiateSumsubKyc({ + regionIntent: regionIntentRef.current, + levelName: levelNameRef.current, + }) + if (response.data?.status) { + setLiveKycStatus(response.data.status) + } + } catch { + // silent — polling is a best-effort fallback + } + } + + const interval = setInterval(pollStatus, 5000) + return () => clearInterval(interval) + }, [isVerificationProgressModalOpen]) + + const handleInitiateKyc = useCallback( + async (overrideIntent?: KYCRegionIntent, levelName?: string) => { + userInitiatedRef.current = true + setIsLoading(true) + setError(null) + + try { + const response = await initiateSumsubKyc({ + regionIntent: overrideIntent ?? regionIntent, + levelName, + }) + + if (response.error) { + setError(response.error) + return + } + + // sync status from api response + if (response.data?.status) { + setLiveKycStatus(response.data.status) + } + + // update effective intent + level for token refresh + const effectiveIntent = overrideIntent ?? regionIntent + if (effectiveIntent) regionIntentRef.current = effectiveIntent + levelNameRef.current = levelName + + // if already approved, no token is returned. + // set prevStatusRef so the transition effect doesn't fire onKycSuccess a second time. + if (response.data?.status === 'APPROVED') { + prevStatusRef.current = 'APPROVED' + onKycSuccess?.() + return + } + + if (response.data?.token) { + setAccessToken(response.data.token) + setShowWrapper(true) + } else { + setError('Could not initiate verification. Please try again.') + } + } catch (e: unknown) { + const message = e instanceof Error ? e.message : 'An unexpected error occurred' + setError(message) + } finally { + setIsLoading(false) + } + }, + [regionIntent, onKycSuccess] + ) + + // called when sdk signals applicant submitted + const handleSdkComplete = useCallback(() => { + userInitiatedRef.current = true + setShowWrapper(false) + setIsVerificationProgressModalOpen(true) + }, []) + + // called when user manually closes the sdk modal + const handleClose = useCallback(() => { + setShowWrapper(false) + onManualClose?.() + }, [onManualClose]) + + // token refresh function passed to the sdk for when the token expires. + // uses regionIntentRef + levelNameRef so refresh always matches the template used during initiation. + const refreshToken = useCallback(async (): Promise<string> => { + const response = await initiateSumsubKyc({ + regionIntent: regionIntentRef.current, + levelName: levelNameRef.current, + }) + + if (response.error || !response.data?.token) { + throw new Error(response.error || 'Failed to refresh token') + } + + setAccessToken(response.data.token) + return response.data.token + }, []) + + const closeVerificationProgressModal = useCallback(() => { + setIsVerificationProgressModalOpen(false) + }, []) + + const closeVerificationModalAndGoHome = useCallback(() => { + setIsVerificationProgressModalOpen(false) + router.push('/home') + }, [router]) + + const resetError = useCallback(() => { + setError(null) + }, []) + + return { + isLoading, + error, + showWrapper, + accessToken, + liveKycStatus, + rejectLabels, + handleInitiateKyc, + handleSdkComplete, + handleClose, + refreshToken, + isVerificationProgressModalOpen, + closeVerificationProgressModal, + closeVerificationModalAndGoHome, + resetError, + } +} diff --git a/src/hooks/useTransactionHistory.ts b/src/hooks/useTransactionHistory.ts index dbf841f7b..1dde0a566 100644 --- a/src/hooks/useTransactionHistory.ts +++ b/src/hooks/useTransactionHistory.ts @@ -86,10 +86,8 @@ export function useTransactionHistory({ // Two-tier caching: TQ in-memory (30s) → SW disk cache (1 week) → Network // Balance: Fresh enough for home page + reduces redundant SW cache hits if (mode === 'latest') { - // if filterMutualTxs is true, we need to add the username to the query key to invalidate the query when the username changes - const queryKeyTxn = TRANSACTIONS + (filterMutualTxs ? username : '') return useQuery({ - queryKey: [queryKeyTxn, 'latest', { limit }], + queryKey: [TRANSACTIONS, 'latest', { limit, targetUsername: filterMutualTxs ? username : undefined }], queryFn: () => fetchHistory({ limit }), enabled, // 30s cache: Fresh enough for home page widget diff --git a/src/hooks/useUnifiedKycStatus.ts b/src/hooks/useUnifiedKycStatus.ts new file mode 100644 index 000000000..bc5b410ae --- /dev/null +++ b/src/hooks/useUnifiedKycStatus.ts @@ -0,0 +1,88 @@ +'use client' + +import { useAuth } from '@/context/authContext' +import { MantecaKycStatus } from '@/interfaces' +import { useMemo } from 'react' +import { type SumsubKycStatus } from '@/app/actions/types/sumsub.types' +import { isSumsubStatusInProgress } from '@/constants/kyc.consts' + +/** + * single source of truth for kyc status across all providers (bridge, manteca, sumsub). + * all kyc status checks should go through this hook. + */ +export default function useUnifiedKycStatus() { + const { user } = useAuth() + + const isBridgeApproved = useMemo(() => user?.user.bridgeKycStatus === 'approved', [user]) + + const isMantecaApproved = useMemo( + () => + user?.user.kycVerifications?.some( + (v) => v.provider === 'MANTECA' && v.status === MantecaKycStatus.ACTIVE + ) ?? false, + [user] + ) + + // pick the most recently updated sumsub verification in case of retries + const sumsubVerification = useMemo( + () => + user?.user.kycVerifications + ?.filter((v) => v.provider === 'SUMSUB') + .sort((a, b) => new Date(b.updatedAt ?? 0).getTime() - new Date(a.updatedAt ?? 0).getTime())[0] ?? null, + [user] + ) + + const isSumsubApproved = useMemo(() => sumsubVerification?.status === 'APPROVED', [sumsubVerification]) + + const sumsubStatus = useMemo(() => (sumsubVerification?.status as SumsubKycStatus) ?? null, [sumsubVerification]) + + const sumsubRejectLabels = useMemo(() => sumsubVerification?.rejectLabels ?? null, [sumsubVerification]) + + const sumsubRejectType = useMemo( + () => (sumsubVerification?.rejectType as 'RETRY' | 'FINAL' | null) ?? null, + [sumsubVerification] + ) + + // region intent used during the sumsub verification (stored in metadata by initiate-kyc) + const sumsubVerificationRegionIntent = useMemo( + () => (sumsubVerification?.metadata?.regionIntent as string) ?? null, + [sumsubVerification] + ) + + const isKycApproved = useMemo( + () => isBridgeApproved || isMantecaApproved || isSumsubApproved, + [isBridgeApproved, isMantecaApproved, isSumsubApproved] + ) + + const isBridgeUnderReview = useMemo( + () => user?.user.bridgeKycStatus === 'under_review' || user?.user.bridgeKycStatus === 'incomplete', + [user] + ) + + const isSumsubActionRequired = useMemo(() => sumsubStatus === 'ACTION_REQUIRED', [sumsubStatus]) + + const isSumsubInProgress = useMemo(() => isSumsubStatusInProgress(sumsubStatus), [sumsubStatus]) + + const isKycInProgress = useMemo( + () => isBridgeUnderReview || isSumsubInProgress, + [isBridgeUnderReview, isSumsubInProgress] + ) + + return { + // combined + isKycApproved, + isKycInProgress, + // bridge + isBridgeApproved, + isBridgeUnderReview, + // manteca + isMantecaApproved, + // sumsub + isSumsubApproved, + isSumsubActionRequired, + sumsubStatus, + sumsubRejectLabels, + sumsubRejectType, + sumsubVerificationRegionIntent, + } +} diff --git a/src/hooks/useWebSocket.ts b/src/hooks/useWebSocket.ts index 68f006e7f..94d435cdc 100644 --- a/src/hooks/useWebSocket.ts +++ b/src/hooks/useWebSocket.ts @@ -1,5 +1,5 @@ import { useEffect, useState, useCallback, useRef } from 'react' -import { PeanutWebSocket, getWebSocketInstance } from '@/services/websocket' +import { PeanutWebSocket, getWebSocketInstance, type PendingPerk, type RailStatusUpdate } from '@/services/websocket' import { type HistoryEntry } from './useTransactionHistory' type WebSocketStatus = 'connecting' | 'connected' | 'disconnected' | 'error' @@ -10,7 +10,10 @@ interface UseWebSocketOptions { onHistoryEntry?: (entry: HistoryEntry) => void onKycStatusUpdate?: (status: string) => void onMantecaKycStatusUpdate?: (status: string) => void + onSumsubKycStatusUpdate?: (status: string, rejectLabels?: string[]) => void onTosUpdate?: (data: { accepted: boolean }) => void + onPendingPerk?: (perk: PendingPerk) => void + onRailStatusUpdate?: (data: RailStatusUpdate) => void onConnect?: () => void onDisconnect?: () => void onError?: (error: Event) => void @@ -23,7 +26,10 @@ export const useWebSocket = (options: UseWebSocketOptions = {}) => { onHistoryEntry, onKycStatusUpdate, onMantecaKycStatusUpdate, + onSumsubKycStatusUpdate, onTosUpdate, + onPendingPerk, + onRailStatusUpdate, onConnect, onDisconnect, onError, @@ -37,7 +43,10 @@ export const useWebSocket = (options: UseWebSocketOptions = {}) => { onHistoryEntry, onKycStatusUpdate, onMantecaKycStatusUpdate, + onSumsubKycStatusUpdate, onTosUpdate, + onPendingPerk, + onRailStatusUpdate, onConnect, onDisconnect, onError, @@ -49,12 +58,26 @@ export const useWebSocket = (options: UseWebSocketOptions = {}) => { onHistoryEntry, onKycStatusUpdate, onMantecaKycStatusUpdate, + onSumsubKycStatusUpdate, onTosUpdate, + onPendingPerk, + onRailStatusUpdate, onConnect, onDisconnect, onError, } - }, [onHistoryEntry, onKycStatusUpdate, onMantecaKycStatusUpdate, onTosUpdate, onConnect, onDisconnect, onError]) + }, [ + onHistoryEntry, + onKycStatusUpdate, + onMantecaKycStatusUpdate, + onSumsubKycStatusUpdate, + onTosUpdate, + onPendingPerk, + onRailStatusUpdate, + onConnect, + onDisconnect, + onError, + ]) // Connect to WebSocket const connect = useCallback(() => { @@ -141,6 +164,14 @@ export const useWebSocket = (options: UseWebSocketOptions = {}) => { } } + const handleSumsubKycStatusUpdate = (data: { status: string; rejectLabels?: string[] }) => { + if (callbacksRef.current.onSumsubKycStatusUpdate) { + callbacksRef.current.onSumsubKycStatusUpdate(data.status, data.rejectLabels) + } else { + console.log(`[WebSocket] No onSumsubKycStatusUpdate callback registered for user: ${username}`) + } + } + const handleTosUpdate = (data: { status: string }) => { if (callbacksRef.current.onTosUpdate) { callbacksRef.current.onTosUpdate({ accepted: data.status === 'approved' }) @@ -149,6 +180,18 @@ export const useWebSocket = (options: UseWebSocketOptions = {}) => { } } + const handlePendingPerk = (perk: PendingPerk) => { + if (callbacksRef.current.onPendingPerk) { + callbacksRef.current.onPendingPerk(perk) + } + } + + const handleRailStatusUpdate = (data: RailStatusUpdate) => { + if (callbacksRef.current.onRailStatusUpdate) { + callbacksRef.current.onRailStatusUpdate(data) + } + } + // Register event handlers ws.on('connect', handleConnect) ws.on('disconnect', handleDisconnect) @@ -156,7 +199,10 @@ export const useWebSocket = (options: UseWebSocketOptions = {}) => { ws.on('history_entry', handleHistoryEntry) ws.on('kyc_status_update', handleKycStatusUpdate) ws.on('manteca_kyc_status_update', handleMantecaKycStatusUpdate) + ws.on('sumsub_kyc_status_update', handleSumsubKycStatusUpdate) ws.on('persona_tos_status_update', handleTosUpdate) + ws.on('pending_perk', handlePendingPerk) + ws.on('user_rail_status_changed', handleRailStatusUpdate) // Auto-connect if enabled if (autoConnect) { @@ -171,7 +217,10 @@ export const useWebSocket = (options: UseWebSocketOptions = {}) => { ws.off('history_entry', handleHistoryEntry) ws.off('kyc_status_update', handleKycStatusUpdate) ws.off('manteca_kyc_status_update', handleMantecaKycStatusUpdate) + ws.off('sumsub_kyc_status_update', handleSumsubKycStatusUpdate) ws.off('persona_tos_status_update', handleTosUpdate) + ws.off('pending_perk', handlePendingPerk) + ws.off('user_rail_status_changed', handleRailStatusUpdate) } }, [autoConnect, connect, username]) diff --git a/src/interfaces/interfaces.ts b/src/interfaces/interfaces.ts index f121fc926..56965109c 100644 --- a/src/interfaces/interfaces.ts +++ b/src/interfaces/interfaces.ts @@ -1,7 +1,21 @@ import { interfaces as peanutInterfaces } from '@squirrel-labs/peanut-sdk' +import { type SumsubKycStatus } from '@/app/actions/types/sumsub.types' export type RecipientType = 'address' | 'ens' | 'iban' | 'us' | 'username' +// phases for the multi-phase kyc verification modal +export type KycModalPhase = 'verifying' | 'preparing' | 'bridge_tos' | 'complete' + +// per-provider rail status for tracking after kyc approval +export type ProviderDisplayStatus = 'setting_up' | 'requires_tos' | 'requires_documents' | 'enabled' | 'failed' + +export interface ProviderStatus { + providerCode: string + displayName: string + status: ProviderDisplayStatus + rails: IUserRail[] +} + // Moved here from bridge-accounts.utils.ts to avoid circular dependency export type BridgeKycStatus = 'not_started' | 'under_review' | 'approved' | 'rejected' | 'incomplete' @@ -165,12 +179,12 @@ export interface IBridgeAccount { id: string customer_id: string last_4: string - currency?: 'usd' | 'eur' | 'mxn' + currency?: 'usd' | 'eur' | 'mxn' | 'gbp' bank_name?: string account_owner_name: string account_number?: string routing_number?: string - account_type: 'iban' | 'us' | 'clabe' + account_type: 'iban' | 'us' | 'clabe' | 'gb' iban?: { account_number: string bic?: string @@ -181,7 +195,8 @@ export interface IBridgeAccount { } account?: { account_number: string - routing_number: string + routing_number?: string + sort_code?: string // uk bank accounts checking_or_savings?: string } account_owner_type: 'individual' | 'business' @@ -230,13 +245,17 @@ export enum MantecaKycStatus { } export interface IUserKycVerification { - provider: 'MANTECA' | 'BRIDGE' + provider: 'MANTECA' | 'BRIDGE' | 'SUMSUB' mantecaGeo?: string | null bridgeGeo?: string | null - status: MantecaKycStatus + status: MantecaKycStatus | SumsubKycStatus | string approvedAt?: string | null providerUserId?: string | null providerRawStatus?: string | null + sumsubApplicantId?: string | null + rejectLabels?: string[] | null + rejectType?: 'RETRY' | 'FINAL' | null + metadata?: { regionIntent?: string; [key: string]: unknown } | null createdAt: string updatedAt: string } @@ -280,6 +299,7 @@ export enum AccountType { IBAN = 'iban', US = 'us', CLABE = 'clabe', + GB = 'gb', // uk bank accounts (sort code + account number) EVM_ADDRESS = 'evm-address', PEANUT_WALLET = 'peanut-wallet', BRIDGE = 'bridgeBankAccount', @@ -305,6 +325,7 @@ export interface Account { connectorUuid: string | null bic?: string routingNumber?: string + sortCode?: string // uk bank accounts connector?: { iconUrl: string name: string @@ -318,6 +339,26 @@ interface userInvites { inviteeUsername: string } +export type UserRailStatus = + | 'PENDING' + | 'ENABLED' + | 'REQUIRES_INFORMATION' + | 'REQUIRES_EXTRA_INFORMATION' + | 'REJECTED' + | 'FAILED' + +export interface IUserRail { + id: string + railId: string + status: UserRailStatus + metadata?: { bridgeCustomerId?: string; additionalRequirements?: string[]; [key: string]: unknown } | null + rail: { + id: string + provider: { code: string; name: string } + method: { code: string; name: string; country: string; currency: string } + } +} + export interface IUserProfile { // OLD Points V1 fields removed - use pointsV2 in stats instead // Points V2: Use stats.pointsV2.totalPoints, pointsV2.inviteCount, etc. @@ -328,6 +369,7 @@ export interface IUserProfile { totalPoints: number // Kept for backward compatibility - same as pointsV2.totalPoints hasPwaInstalled: boolean user: User + rails: IUserRail[] invitesSent: userInvites[] showEarlyUserModal: boolean invitedBy: string | null // Username of the person who invited this user diff --git a/src/lib/url-parser/types/payment.ts b/src/lib/url-parser/types/payment.ts index 1c7a9b31e..5953b6dec 100644 --- a/src/lib/url-parser/types/payment.ts +++ b/src/lib/url-parser/types/payment.ts @@ -9,7 +9,7 @@ export interface ParsedURL { identifier: string recipientType: RecipientType resolvedAddress: string - } + } | null amount?: string token?: interfaces.ISquidToken chain?: interfaces.ISquidChain & { tokens: interfaces.ISquidToken[] } diff --git a/src/services/card.ts b/src/services/card.ts new file mode 100644 index 000000000..64bd890d3 --- /dev/null +++ b/src/services/card.ts @@ -0,0 +1,68 @@ +/** + * Card Pioneers API Service + * + * Handles API calls for the Card Pioneers early-access program. + * Uses server actions to securely include API keys. + */ + +import { getCardInfo, purchaseCard } from '@/app/actions/card' +import type { CardInfoResponse, CardPurchaseResponse } from '@/app/actions/card' + +export type { CardInfoResponse, CardPurchaseResponse } + +/** + * Custom error class for card purchase failures + */ +export class CardPurchaseError extends Error { + code: string + chargeUuid?: string + + constructor(code: string, message: string, chargeUuid?: string) { + super(message) + this.name = 'CardPurchaseError' + this.code = code + this.chargeUuid = chargeUuid + } +} + +export const cardApi = { + /** + * Get card pioneer info for the authenticated user + * Returns eligibility, purchase status, and pricing + */ + getInfo: async (): Promise<CardInfoResponse> => { + const result = await getCardInfo() + + if (result.error || !result.data) { + throw new Error(result.error || 'Failed to get card info') + } + + return result.data + }, + + /** + * Initiate card pioneer purchase + * Creates a charge that the user must pay + */ + purchase: async (): Promise<CardPurchaseResponse> => { + const result = await purchaseCard() + + if (result.error || !result.data) { + // Handle specific error cases + if (result.errorCode === 'ALREADY_PURCHASED') { + throw new CardPurchaseError(result.errorCode, result.error || 'Already purchased') + } + + if (result.errorCode === 'NOT_ELIGIBLE') { + throw new CardPurchaseError(result.errorCode, result.error || 'Not eligible') + } + + throw new CardPurchaseError( + result.errorCode || 'UNKNOWN_ERROR', + result.error || 'Failed to initiate purchase' + ) + } + + return result.data + }, +} diff --git a/src/services/charges.ts b/src/services/charges.ts index 409a6f332..a24255254 100644 --- a/src/services/charges.ts +++ b/src/services/charges.ts @@ -74,6 +74,7 @@ export const chargesApi = { sourceChainId, sourceTokenAddress, sourceTokenSymbol, + squidQuoteId, }: { chargeId: string chainId: string @@ -83,6 +84,7 @@ export const chargesApi = { sourceChainId?: string sourceTokenAddress?: string sourceTokenSymbol?: string + squidQuoteId?: string }): Promise<PaymentCreationResponse> => { const response = await fetchWithSentry(`/api/proxy/charges/${chargeId}/payments`, { method: 'POST', @@ -97,6 +99,7 @@ export const chargesApi = { sourceChainId, sourceTokenAddress, sourceTokenSymbol, + squidQuoteId, }), }) diff --git a/src/services/perks.ts b/src/services/perks.ts new file mode 100644 index 000000000..67fd37dbd --- /dev/null +++ b/src/services/perks.ts @@ -0,0 +1,105 @@ +import Cookies from 'js-cookie' +import { fetchWithSentry } from '@/utils/sentry.utils' +import { PEANUT_API_URL } from '@/constants/general.consts' + +export type PendingPerk = { + id: string + name?: string + description?: string + reason?: string + amountUsd: number + createdAt: string +} + +export type PendingPerksResponse = { + success: boolean + perks: PendingPerk[] + error?: string +} + +export type ClaimPerkResponse = { + success: boolean + perk?: { + sponsored: boolean + amountSponsored: number + discountPercentage: number + txHash?: string + } + error?: string + message?: string +} + +export const perksApi = { + /** + * Get pending (claimable) perks for the current user + */ + getPendingPerks: async (): Promise<PendingPerksResponse> => { + try { + const jwtToken = Cookies.get('jwt-token') + if (!jwtToken) { + console.error('getPendingPerks: No JWT token found') + return { success: false, perks: [], error: 'Not authenticated' } + } + + const response = await fetchWithSentry(`${PEANUT_API_URL}/perks/pending`, { + method: 'GET', + headers: { + Authorization: `Bearer ${jwtToken}`, + 'Content-Type': 'application/json', + }, + }) + + if (!response.ok) { + console.error('getPendingPerks: API request failed', response.status, response.statusText) + return { success: false, perks: [], error: 'Failed to fetch pending perks' } + } + + const data = await response.json() + return { success: true, perks: data.perks || [] } + } catch (error) { + console.error('getPendingPerks: Unexpected error', error) + return { success: false, perks: [], error: 'Unexpected error' } + } + }, + + /** + * Claim a perk by usage ID (V2) + */ + claimPerk: async (usageId: string): Promise<ClaimPerkResponse> => { + try { + const jwtToken = Cookies.get('jwt-token') + if (!jwtToken) { + console.error('claimPerk: No JWT token found') + return { success: false, error: 'NOT_AUTHENTICATED', message: 'Not authenticated' } + } + + const response = await fetchWithSentry(`${PEANUT_API_URL}/perks/claim`, { + method: 'POST', + headers: { + Authorization: `Bearer ${jwtToken}`, + 'Content-Type': 'application/json', + }, + body: JSON.stringify({ usageId }), + }) + + const data = await response.json() + + if (!response.ok) { + console.error('claimPerk: API request failed', response.status, data) + return { + success: false, + error: data.error || 'CLAIM_FAILED', + message: data.message || 'Failed to claim perk', + } + } + + return { + success: true, + perk: data.perk, + } + } catch (error) { + console.error('claimPerk: Unexpected error', error) + return { success: false, error: 'UNEXPECTED_ERROR', message: 'Unexpected error' } + } + }, +} diff --git a/src/services/points.ts b/src/services/points.ts index ad2dc3748..3e72d6b58 100644 --- a/src/services/points.ts +++ b/src/services/points.ts @@ -338,6 +338,47 @@ export const pointsApi = { return fetchInvitesGraph('/invites/user-graph') }, + getCashStatus: async (): Promise<{ + success: boolean + data: { + cashbackAllowance: number | null + lifetimeEarned: number + lifetimeBreakdown: { + cashback: number + inviterRewards: number + withdrawPerks: number + depositPerks: number + other: number + } + } | null + }> => { + try { + const jwtToken = Cookies.get('jwt-token') + if (!jwtToken) { + console.error('getCashStatus: No JWT token found') + return { success: false, data: null } + } + + const response = await fetchWithSentry(`${PEANUT_API_URL}/points/cash-status`, { + method: 'GET', + headers: { + Authorization: `Bearer ${jwtToken}`, + 'Content-Type': 'application/json', + }, + }) + if (!response.ok) { + console.error('getCashStatus: API request failed', response.status, response.statusText) + return { success: false, data: null } + } + + const data = await response.json() + return { success: true, data } + } catch (error) { + console.error('getCashStatus: Unexpected error', error) + return { success: false, data: null } + } + }, + getExternalNodes: async ( apiKey: string, options?: { diff --git a/src/services/websocket.ts b/src/services/websocket.ts index 20933b7d7..8c64ec8e0 100644 --- a/src/services/websocket.ts +++ b/src/services/websocket.ts @@ -1,5 +1,12 @@ import { type HistoryEntry } from '@/hooks/useTransactionHistory' -import { jsonStringify } from '@/utils/general.utils' +import { type PendingPerk } from '@/services/perks' +export type { PendingPerk } + +export interface RailStatusUpdate { + railId: string + status: string + provider?: string +} export type WebSocketMessage = { type: @@ -8,8 +15,11 @@ export type WebSocketMessage = { | 'history_entry' | 'kyc_status_update' | 'manteca_kyc_status_update' + | 'sumsub_kyc_status_update' | 'persona_tos_status_update' - data?: HistoryEntry + | 'pending_perk' + | 'user_rail_status_changed' + data?: HistoryEntry | PendingPerk | RailStatusUpdate } export class PeanutWebSocket { @@ -123,12 +133,30 @@ export class PeanutWebSocket { } break + case 'sumsub_kyc_status_update': + if (message.data && 'status' in (message.data as object)) { + this.emit('sumsub_kyc_status_update', message.data) + } + break + case 'persona_tos_status_update': if (message.data && 'status' in (message.data as object)) { this.emit('persona_tos_status_update', message.data) } break + case 'pending_perk': + if (message.data && 'id' in (message.data as object)) { + this.emit('pending_perk', message.data) + } + break + + case 'user_rail_status_changed': + if (message.data && 'railId' in (message.data as object)) { + this.emit('user_rail_status_changed', message.data) + } + break + default: // Handle other message types if needed this.emit(message.type, message.data) @@ -150,7 +178,6 @@ export class PeanutWebSocket { } private handleError(event: Event): void { - console.error('WebSocket error:', jsonStringify(event)) this.emit('error', event) } diff --git a/src/styles/globals.css b/src/styles/globals.css index a431af22e..ce97f85fa 100644 --- a/src/styles/globals.css +++ b/src/styles/globals.css @@ -486,3 +486,202 @@ input::placeholder { flex: 0 0 100%; min-width: 0; } + +/* Slide animations for perk claim transitions */ +@keyframes slideOutLeft { + from { + transform: translateX(0); + opacity: 1; + } + to { + transform: translateX(-100%); + opacity: 0; + } +} + +@keyframes slideInRight { + from { + transform: translateX(100%); + opacity: 0; + } + to { + transform: translateX(0); + opacity: 1; + } +} + +.animate-slide-out-left { + animation: slideOutLeft 0.3s ease-out forwards; +} + +.animate-slide-in-right { + animation: slideInRight 0.3s ease-out forwards; +} + +/* Gift box opening animations */ +@keyframes giftOpening { + 0%, + 100% { + transform: translateY(0) rotate(0deg) scale(1); + } + 10%, + 30%, + 50%, + 70%, + 90% { + transform: translateY(-4px) rotate(-2deg) scale(1.02); + } + 20%, + 40%, + 60%, + 80% { + transform: translateY(-4px) rotate(2deg) scale(1.02); + } +} + +@keyframes giftRevealed { + 0% { + transform: scale(1.05); + opacity: 0.8; + } + 50% { + transform: scale(1.02); + opacity: 1; + } + 100% { + transform: scale(1); + opacity: 1; + } +} + +@keyframes giftExit { + 0% { + transform: scale(1) translateY(0); + opacity: 1; + } + 100% { + transform: scale(0.95) translateY(-10px); + opacity: 0; + } +} + +@keyframes fadeIn { + from { + opacity: 0; + transform: translateY(10px); + } + to { + opacity: 1; + transform: translateY(0); + } +} + +.animate-gift-opening { + animation: giftOpening 0.12s ease-in-out infinite; + transform-origin: center center; +} + +.animate-gift-revealed { + animation: giftRevealed 0.4s ease-out forwards; +} + +.animate-gift-exit { + animation: giftExit 0.4s ease-out forwards; +} + +.animate-fade-in { + animation: fadeIn 0.5s ease-out forwards; +} + +/* Gift arrival animation - gentle fade in with subtle scale (for initial page load) */ +@keyframes giftArriveGentle { + 0% { + transform: scale(0.95); + opacity: 0; + } + 100% { + transform: scale(1); + opacity: 1; + } +} + +.animate-gift-arrive-gentle { + animation: giftArriveGentle 0.4s ease-out forwards; +} + +/* Gift arrival animation - drops in from above with a bounce (for WebSocket real-time) */ +@keyframes giftArrive { + 0% { + transform: translateY(-50px) scale(0.9); + opacity: 0; + } + 60% { + transform: translateY(5px) scale(1.02); + opacity: 1; + } + 80% { + transform: translateY(-3px) scale(0.99); + } + 100% { + transform: translateY(0) scale(1); + opacity: 1; + } +} + +.animate-gift-arrive { + animation: giftArrive 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards; +} + +/* Gift attention animation - very subtle pulse to draw attention after idle */ +@keyframes giftAttention { + /* Gentle pulsate - very subtle */ + 0% { + transform: scale(1); + } + 15% { + transform: scale(1.02); + } + 30% { + transform: scale(1); + } + 45% { + transform: scale(1.02); + } + 60% { + transform: scale(1); + } + /* Rest before loop */ + 100% { + transform: scale(1); + } +} + +.animate-gift-attention { + animation: giftAttention 4s ease-in-out infinite; + transform-origin: center center; +} + +/* Gift box holographic shine effect */ +@keyframes giftShine { + 0% { + left: -100%; + } + 50%, + 100% { + left: 150%; + } +} + +.gift-box-shine::before { + content: ''; + position: absolute; + top: 0; + left: -100%; + width: 50%; + height: 100%; + background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent); + animation: giftShine 3s ease-in-out infinite; + pointer-events: none; + z-index: 5; + border-radius: inherit; +} diff --git a/src/types/sumsub-websdk.d.ts b/src/types/sumsub-websdk.d.ts new file mode 100644 index 000000000..4d6b7c5c7 --- /dev/null +++ b/src/types/sumsub-websdk.d.ts @@ -0,0 +1,27 @@ +// type declarations for sumsub websdk loaded via CDN script +// https://static.sumsub.com/idensic/static/sns-websdk-builder.js + +declare global { + interface SnsWebSdkInstance { + launch(container: HTMLElement): void + destroy(): void + } + + interface SnsWebSdkBuilderChain { + withConf(conf: { lang?: string; theme?: string }): SnsWebSdkBuilderChain + withOptions(opts: { addViewportTag?: boolean; adaptIframeHeight?: boolean }): SnsWebSdkBuilderChain + // eslint-disable-next-line @typescript-eslint/no-explicit-any -- sumsub sdk event handlers have varying untyped signatures + on(event: string, handler: (...args: any[]) => void): SnsWebSdkBuilderChain + build(): SnsWebSdkInstance + } + + interface SnsWebSdkBuilder { + init(token: string, refreshCallback: () => Promise<string>): SnsWebSdkBuilderChain + } + + interface Window { + snsWebSdk: SnsWebSdkBuilder + } +} + +export {} diff --git a/src/utils/__tests__/bridge.utils.test.ts b/src/utils/__tests__/bridge.utils.test.ts index b18efe4e3..6ca21339e 100644 --- a/src/utils/__tests__/bridge.utils.test.ts +++ b/src/utils/__tests__/bridge.utils.test.ts @@ -35,8 +35,30 @@ describe('bridge.utils', () => { }) }) + it('should return GBP with Faster Payments for UK', () => { + const onrampConfig = getCurrencyConfig('GB', 'onramp') + expect(onrampConfig).toEqual({ + currency: 'gbp', + paymentRail: 'faster_payments', + }) + + const offrampConfig = getCurrencyConfig('GB', 'offramp') + expect(offrampConfig).toEqual({ + currency: 'gbp', + paymentRail: 'faster_payments', + }) + }) + + it('should handle GBR country code for UK', () => { + const config = getCurrencyConfig('GBR', 'onramp') + expect(config).toEqual({ + currency: 'gbp', + paymentRail: 'faster_payments', + }) + }) + it('should return EUR with SEPA for other countries', () => { - const countries = ['DE', 'FR', 'IT', 'ES', 'NL', 'CA', 'GB', 'AU', 'JP'] + const countries = ['DE', 'FR', 'IT', 'ES', 'NL', 'CA', 'AU', 'JP'] countries.forEach((country) => { const onrampConfig = getCurrencyConfig(country, 'onramp') @@ -124,6 +146,16 @@ describe('bridge.utils', () => { expect(minimum).toBe(1) }) + it('should return 3 for UK', () => { + const minimum = getMinimumAmount('GB') + expect(minimum).toBe(3) + }) + + it('should return 3 for GBR country code', () => { + const minimum = getMinimumAmount('GBR') + expect(minimum).toBe(3) + }) + it('should return 1 for other countries', () => { const minimum = getMinimumAmount('DE') expect(minimum).toBe(1) @@ -156,6 +188,7 @@ describe('bridge.utils', () => { expect(getPaymentRailDisplayName('sepa')).toBe('SEPA Transfer') expect(getPaymentRailDisplayName('spei')).toBe('SPEI Transfer') expect(getPaymentRailDisplayName('wire')).toBe('Wire Transfer') + expect(getPaymentRailDisplayName('faster_payments')).toBe('Faster Payments') }) it('should return uppercase payment rail for unsupported rails', () => { @@ -187,6 +220,15 @@ describe('bridge.utils', () => { expect(onrampConfig.currency).toBe(offrampConfig.currency) }) + it('should use same payment rails for UK onramp vs offramp', () => { + const onrampConfig = getCurrencyConfig('GB', 'onramp') + const offrampConfig = getCurrencyConfig('GB', 'offramp') + + expect(onrampConfig.paymentRail).toBe('faster_payments') + expect(offrampConfig.paymentRail).toBe('faster_payments') + expect(onrampConfig.currency).toBe(offrampConfig.currency) + }) + it('should use same payment rails for EU countries onramp vs offramp', () => { const onrampConfig = getCurrencyConfig('DE', 'onramp') const offrampConfig = getCurrencyConfig('DE', 'offramp') diff --git a/src/utils/bridge-accounts.utils.ts b/src/utils/bridge-accounts.utils.ts index 61bd013c6..1fffc7be3 100644 --- a/src/utils/bridge-accounts.utils.ts +++ b/src/utils/bridge-accounts.utils.ts @@ -118,3 +118,23 @@ export function isValidRoutingNumber(routingNumber: string): boolean { return sum % 10 === 0 } + +/** + * Validates a UK sort code (6 digits, optionally formatted as XX-XX-XX) + */ +export function isValidSortCode(sortCode: string): boolean { + // remove dashes and spaces + const cleaned = sortCode.replace(/[-\s]/g, '') + // must be exactly 6 digits + return /^\d{6}$/.test(cleaned) +} + +/** + * Validates a UK bank account number (6-8 digits, zero-padded to 8 for processing) + */ +export function isValidUKAccountNumber(accountNumber: string): boolean { + // remove spaces + const cleaned = accountNumber.replace(/\s/g, '') + // uk account numbers are 6-8 digits (legacy accounts may have 6-7, padded to 8 downstream) + return /^\d{6,8}$/.test(cleaned) +} diff --git a/src/utils/bridge.utils.ts b/src/utils/bridge.utils.ts index d022b6e41..ba9cb7eba 100644 --- a/src/utils/bridge.utils.ts +++ b/src/utils/bridge.utils.ts @@ -28,6 +28,13 @@ export const getCurrencyConfig = (countryId: string, operationType: BridgeOperat } } + if (countryId === 'GB' || countryId === 'GBR') { + return { + currency: 'gbp', + paymentRail: 'faster_payments', // UK Faster Payments + } + } + // All other countries use EUR/SEPA return { currency: 'eur', @@ -50,6 +57,7 @@ export const getCurrencySymbol = (currency: string): string => { usd: '$', eur: '€', mxn: 'MX$', + gbp: '£', } return symbols[currency.toLowerCase()] || currency.toUpperCase() } @@ -62,6 +70,11 @@ export const getMinimumAmount = (countryId: string): number => { return 50 } + // UK has a minimum of 3 GBP + if (countryId === 'GB' || countryId === 'GBR') { + return 3 + } + // Default minimum for all other countries (including US and EU) return 1 } @@ -76,10 +89,15 @@ export const getPaymentRailDisplayName = (paymentRail: string): string => { sepa: 'SEPA Transfer', spei: 'SPEI Transfer', wire: 'Wire Transfer', + faster_payments: 'Faster Payments', } return displayNames[paymentRail] || paymentRail.toUpperCase() } +export function getCountryFromPath(countryPath: string): CountryData | undefined { + return ALL_METHODS_DATA.find((c) => c.path.toLowerCase() === countryPath.toLowerCase()) +} + export function getCountryFromAccount(account: Account): CountryData | undefined { const threeLetterCountryCode = (account.details.countryCode ?? '').toUpperCase() @@ -156,6 +174,11 @@ export const inferBankAccountType = (accountId: string): string => { return 'ACH' } + // UK Faster Payments: 8-digit account number (sort code stored separately) + if (/^\d{8}$/.test(accountId)) { + return 'Faster Payments (UK)' + } + // Fallback for other numeric formats if (/^\d+$/.test(accountId)) { return 'Bank Account' diff --git a/src/utils/general.utils.ts b/src/utils/general.utils.ts index afb85130a..87ea6ce20 100644 --- a/src/utils/general.utils.ts +++ b/src/utils/general.utils.ts @@ -936,6 +936,20 @@ export const generateInviteCodeLink = (username: string) => { return { inviteLink, inviteCode } } +/** + * Extract invitee name from perk reason string. + * Perk reasons follow the format: "Username became a Card Pioneer! (payment: uuid)" + * + * @param reason - The perk reason string + * @param fallback - Fallback name if extraction fails (default: 'Your friend') + * @returns The extracted invitee name or fallback + */ +export const extractInviteeName = (reason: string | undefined | null, fallback = 'Your friend'): string => { + if (!reason) return fallback + const name = reason.split(' became')[0] + return name || fallback +} + export const getValidRedirectUrl = (redirectUrl: string, fallbackRoute: string) => { let decodedRedirect = redirectUrl try { diff --git a/src/utils/kyc-grouping.utils.ts b/src/utils/kyc-grouping.utils.ts new file mode 100644 index 000000000..7da3aedcd --- /dev/null +++ b/src/utils/kyc-grouping.utils.ts @@ -0,0 +1,70 @@ +import { type User, type BridgeKycStatus } from '@/interfaces' +import { type KycHistoryEntry } from '@/components/Kyc/KycStatusItem' + +export type KycRegion = 'STANDARD' | 'LATAM' + +export interface RegionKycEntry extends KycHistoryEntry { + region: KycRegion +} + +/** + * groups kyc data into one activity entry per region. + * STANDARD = bridgeKycStatus + sumsub verifications with regionIntent STANDARD + * LATAM = manteca/sumsub verifications with regionIntent LATAM + */ +export function groupKycByRegion(user: User): RegionKycEntry[] { + const entries: RegionKycEntry[] = [] + const verifications = user.kycVerifications ?? [] + + // --- STANDARD region --- + const standardVerification = verifications.find( + (v) => v.provider === 'SUMSUB' && v.metadata?.regionIntent === 'STANDARD' + ) + + if (standardVerification) { + entries.push({ + isKyc: true, + region: 'STANDARD', + uuid: 'region-STANDARD', + timestamp: + standardVerification.approvedAt ?? standardVerification.updatedAt ?? standardVerification.createdAt, + verification: standardVerification, + bridgeKycStatus: user.bridgeKycStatus as BridgeKycStatus | undefined, + }) + } else if (user.bridgeKycStatus && user.bridgeKycStatus !== 'not_started') { + // legacy: user only has bridgeKycStatus (pre-sumsub migration) + const bridgeKycTimestamp = (() => { + if (user.bridgeKycStatus === 'approved') return user.bridgeKycApprovedAt + if (user.bridgeKycStatus === 'rejected') return user.bridgeKycRejectedAt + return user.bridgeKycStartedAt + })() + entries.push({ + isKyc: true, + region: 'STANDARD', + uuid: 'region-STANDARD', + timestamp: bridgeKycTimestamp ?? user.createdAt ?? new Date().toISOString(), + bridgeKycStatus: user.bridgeKycStatus as BridgeKycStatus, + }) + } + + // --- LATAM region --- + const latamVerifications = verifications.filter( + (v) => v.metadata?.regionIntent === 'LATAM' || v.provider === 'MANTECA' + ) + // pick the most recently updated one + const latamVerification = [...latamVerifications].sort( + (a, b) => new Date(b.updatedAt).getTime() - new Date(a.updatedAt).getTime() + )[0] + + if (latamVerification) { + entries.push({ + isKyc: true, + region: 'LATAM', + uuid: 'region-LATAM', + timestamp: latamVerification.approvedAt ?? latamVerification.updatedAt ?? latamVerification.createdAt, + verification: latamVerification, + }) + } + + return entries +} diff --git a/src/utils/retry.utils.ts b/src/utils/retry.utils.ts index fb9fd8309..983bf17dc 100644 --- a/src/utils/retry.utils.ts +++ b/src/utils/retry.utils.ts @@ -54,3 +54,43 @@ export const RETRY_STRATEGIES = { retry: false, }, } as const + +/** + * Generic async retry wrapper with exponential backoff. + * Use for imperative code outside of React Query (e.g. kernel client init). + * + * @param fn - Async function to retry. Return value is forwarded on success. + * @param options.maxRetries - Total retry attempts after the first failure (default: 2) + * @param options.baseDelay - Initial delay in ms before first retry (default: 1000) + * @param options.maxDelay - Cap on delay in ms (default: 5000) + * @param options.shouldRetry - Optional predicate; return false to bail early + * @returns The resolved value of `fn` + */ +export async function retryAsync<T>( + fn: () => Promise<T>, + { + maxRetries = 2, + baseDelay = 1000, + maxDelay = 5000, + shouldRetry, + }: { + maxRetries?: number + baseDelay?: number + maxDelay?: number + shouldRetry?: (error: unknown, attempt: number) => boolean + } = {} +): Promise<T> { + const backoff = createExponentialBackoff(baseDelay, maxDelay) + let lastError: unknown + for (let attempt = 0; attempt <= maxRetries; attempt++) { + try { + return await fn() + } catch (error) { + lastError = error + if (attempt === maxRetries) break + if (shouldRetry && !shouldRetry(error, attempt)) break + await new Promise((r) => setTimeout(r, backoff(attempt))) + } + } + throw lastError +} diff --git a/src/utils/sentry.utils.ts b/src/utils/sentry.utils.ts index 3eb59e6b9..2e100e95f 100644 --- a/src/utils/sentry.utils.ts +++ b/src/utils/sentry.utils.ts @@ -8,9 +8,10 @@ import { type JSONValue } from '../interfaces/interfaces' * Pattern can be a string (exact match) or regex. */ const SKIP_REPORTING: Array<{ pattern: string | RegExp; statuses: number[] }> = [ - // 400 on get-user-from-cookie is expected when no valid session { pattern: /get-user-from-cookie/, statuses: [400, 401, 403, 404] }, { pattern: /users/, statuses: [400, 401, 403, 404] }, + { pattern: /perks/, statuses: [400, 401, 403, 404] }, + { pattern: /qr-payment\/init/, statuses: [400] }, ] /**